* {
    margin: 0;
    padding: 0;
    font-family: Source Han sans-serif;
    box-sizing: border-box;


}



body {
    background: #f7f7f7;
}

a {
    text-decoration: none;
}

.left-right-layout {
    width: 1200px;
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.left-right-layout .left-menu {
    width: 184px;
    background: #f7f7f7;
    border-radius: 4px;
    position: sticky;
    top: 84px;
    margin-bottom: 56px;
}

.left-right-layout .right-content {
    width: 996px;
    margin-left: 20px;
}


/* 左边菜单css开始  */

.navRight {
    width: 184px;
    background: #FFFFFF;
    font-family: Source Han sans-serif;
    position: relative;
    padding: 4px;
    margin-bottom: 12px;
    border-radius: 4px;
}





.navRight .navItem .navItemTitle {
    height: 40px;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    padding: 0 6px 0 28px;
    align-items: center;
    font-size: 16px;
    font-family: Source Han Sans;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    position: relative;
}

.navRight .navItem .navItemTitle a {
    font-size: 18px;
    color: #333333;

}

.navRight .navItem .navItemTitle img {
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 3px;
}

.navRight .navItem .navItemTitle p {
    font-family: Source Han Sans;
    font-weight: 600;
    background: #FFFFFF;

}

/* .navRight .navItem .navItemTitle>p {
       font-weight: bold;
   } */

.navRight .navItem .navItemTitle::after {
    width: 20px;
    height: 20px;
    display: block;
    content: "";
    background: url("/static/v2/img/navturn.png") no-repeat;
    background-size: 100% 100%;
    transition: all .3s ease;
}

.navRight .navItem .noDown::after {
    width: 20px;
    height: 20px;
    display: block;
    content: "";
    background: url("") no-repeat !important;
    background-size: 100% 100%;
    transition: all .3s ease;
}

.navRight .navItem .navItemTitle:hover {
    color: #0099AD;
}

.navRight .navItem .navItemList {
    max-height: 0px;
    overflow: hidden;
    transition: all .3s ease;
}

.navRight .navItem .navItemList>a {
    display: block;
    width: 176px;
    background: #FFFFFF;
    line-height: 20px;
    color: #666666;
    padding: 10px 22px 10px 28px;
    position: relative;
    font-size: 14px;

}


.navRight .navItem .navItemList>.hotTag::after {
    display: inline-block;
    content: "";
    width: 26px;
    height: 13px;
    background: url(/static/v2/img/home-hot1.png) no-repeat;
    background-size: 100% 100%;
    margin-left: 4px;
}

.navRight .navItem .navItemList>.newTag::after {
    display: inline-block;
    content: "";
    width: 29px;
    height: 13px;
    background: url(/static/v2/img/home-new1.png) no-repeat;
    background-size: 100% 100%;
    margin-left: 4px;
}

.navRight .navItem .navItemList>.active {
    font-family: Source Han Sans;
    font-weight: 600;
    color: #333333;
}

.navRight .navItem .navItemList>.active::before {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-right: 8px solid transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #0099AD;
    left: 10px;
    top: 15px;
    /* transform: translate(0, -50%); */
}

.navRight .navItem .navItemList>a:hover {
    font-family: Source Han Sans;
    font-weight: 600;
    background: #f7f7f7;
    color: #333333;
}



.navRight .navItem .navItemList .currentItem {
    color: #0099AD;
}



.navRight>.current .navItemTitle::after {
    transform: rotate(-180deg);
}

.navRight>.current .navItemList {
    max-height: 500px;
}

.navRight>.current .line4 {
    background: #f7f7f7;
    width: 192px;
    height: 4px;
    overflow: hidden;
    margin: 0 -10px;
    padding: 0 10px;
}

.navRight>.navItem .navItemList .code {
    margin-top: 4px;
    padding-top: 16px;
    padding-bottom: 14px;
    width: 184px;

    background: #FFFFFF;
    border-radius: 4px;
}

.navRight>.navItem .navItemList .code>img {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 120px;
}

.navRight>.navItem .navItemList .code>p:nth-of-type(1) {
    margin-top: 6px;
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    color: #666666;
    opacity: 0.8;
}

.navRight>.navItem .navItemList .code>p:nth-of-type(2) {
    margin-top: 6px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
}



.ma_hide {
    display: none !important;
}

#menuBox .searchBox {

    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menuBox .searchBox>img {
    display: block;
    margin: 12px 6px;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
}

#menuBox .searchBox .search {
    background: #FFFFFF;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 4px;
}

#menuBox .searchBox>input {
    flex: 1;
    height: 40px;
    background: #FFFFFF;
    font-size: 14px;
}

.navRight .navItem .noImg::after {
    background: none !important;
}

/* 左边菜单结束 */