/*layout*/
* {
    margin: 0px;
    padding: 0px;
}
body{
    background-color: #F8F8F8;
}

.row {
    display: flex;
}

/*header start*/
#header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
}

#header .header-main {
    width: 100%;
    height: 80px;
}

#header .header-main .header-content {
    height: 100%;
}

#header .header-main .logo {
    width: 190px;
    max-height: 50px;
}

#header .header-main .nav-menu {
    height: 100%;
}

#header .header-main .nav-menu .item {
    height: 100%;
    width: 130px;
    text-align: center;
    border-bottom: 3px solid transparent;
    position: relative;
}

#header .header-main .nav-menu .item a {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 80px;
    display: block;
}

#header .header-main .nav-menu .item a:hover {
    color: #FEBF2C !important;
}

#header .header-main .nav-menu .item.on > a {
    color: #FEBF2C !important;
}

/*header end*/
#main-container {
    margin-top: 80px;
}
#footer{
    background: #282E33;
    padding:12px 0;
}
/*footer start*/
#footer .copyright {
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    padding:4px 0;
    color: #fff;
}

#footer .copyright a {
    color: #fff !important;
}

/*footer end*/

.top_menu{
    position: fixed;
    left: 0;
    top:80px;
    width:100%;
    height: 50px;
    line-height: 50px;
    background: #FF5741;
}
.top_box{
    justify-content: flex-start;
    overflow: scroll;
}
.category_item{
    padding:0 12px;
    font-size: 13px;
    font-family: PingFangSC-Medium, PingFang SC;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
}
.category_activate_item,.category_item:hover{
    background-color: #DA1900;
}
.goods_box{
    margin-top:160px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.goods_item{
    width: 280px;
    background-color: #fff;
    margin-bottom:20px;
    margin-left:20px;
    border-radius: 16px;
    cursor: pointer;
}
.goods_img_box{
    height: 230px;
    text-align: center;
    overflow: hidden;
    border-radius: 16px 16px 0 0 ;
}
.goods_img_item{
    width: 140px;
    height: 182px;
    margin: 24px auto;
}
.goods_info_box{
    padding:0 13px 30px 13px;
}
.goods_name_item{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    height: 37px;
    line-height: 37px;
}
.goods_author_item{
    height: 20px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #767880;
    line-height: 20px;
}
.goods_price_item{
    height: 28px;
    font-size: 20px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #EA4C3E;
    line-height: 28px;
}
.goods_img_item_mini_code{
    width: 174px;
    display: none;
    margin: 13px auto;
}
.goods_item:hover .goods_img_box{
    background-color: rgba(0,0,0,0.3);
}
.goods_item:hover .goods_img_item{
    display: none;
}.goods_item:hover .goods_img_item_mini_code{
    display: flex;
}