.header{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins';
}

.header-height{
    height: 140px;
}
.header-top{
    position: relative;
    z-index: 2;
}
.header-top .line1{
    padding: 20px 0;
    background: #E4EEF2;
}
.header-top .line1 ._l{
    flex: 1;
    margin-right: 58px;
}
.header-top .line1 ._l .logo{
    height: 38px;
    object-fit: contain;
    margin-right: 72px;
    position: unset;
    width: fit-content !important;
}
.header-top .line1 ._l .search-line{
    display: flex;
    height: 40px;
    background: #fff;
    border: 1px solid var(--base-color);
    align-items: center;
    padding: 0 4px;
    border-radius: 40px;
    width: 100%;
    position: relative;
    max-width: 480px;
}
.header-top .line1 ._l .search-line .search-type{
    position: relative;
    width: 140px;
    height: 24px;
    flex-shrink: 0;
    border-right: 1px solid #DDDDDD;
}
.header-top .line1 ._l .search-line .search-type ._val{
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    cursor: pointer;
}
.header-top .line1 ._l .search-line .search-type ._val .iconfont{
    font-size: 16px;
    margin-left: 8px;
    color: var(--text-color);
    transition: all .3s;
}
.header-top .line1 ._l .search-line .search-type ._list{
    position: absolute;
    left: 0;
    background: #fff;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.1);
    border-radius: 0px 0px 8px 8px;
    display: none;
    width: 100%;
    z-index: 11;
    font-weight: 500;
    cursor: pointer;
}
.header-top .line1 ._l .search-line .search-type:hover ._list{
    display: block;
}
.header-top .line1 ._l .search-line .search-type:hover ._val .iconfont{
    transform: rotate(180deg);
}
.header-top .line1 ._l .search-line .search-type ._list div{
    padding:  7px 20px;
}
.header-top .line1 ._l .search-line .search-type ._list div:hover{
    background: #E4EEF2;
    color: var(--text-color);
}
.header-top .line1 ._l .search-line input{
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    border: none;
    outline: none;
}
.header-top .line1 ._l .search-line ._submit{
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 32px;
    background: var(--base-color);
    border-radius: 24px 24px 24px 24px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    flex-shrink: 0;
}
.header-top .line1 ._l .search-line ._submit:hover{
    box-shadow: 0px 0 10px 0px #4fc2b8;
}
.header-top .line1 ._l .search-line ._submit .iconfont{
    font-size: 24px;
    margin-right: 12px;
}
.header-search-result,
.header-search-hot-keys{
    position: absolute;
    z-index: 6;
    top: 102%;
    width: 100%;
    padding: 8px 0;
    background: #fff;
    box-shadow: 0 3px 12px -1px rgba(0, 0, 0, .15);
    border-radius: 12px;
    max-height: 350px;
    overflow-y: auto;
    left: 0;
}
.header-search-result .result-item{
    display: flex;
    padding: 8px 16px;
    text-decoration: none;
    background: #fff;
    transition: all .3s ease-in;
    color: #333;
    cursor: pointer;
}
.header-search-result .result-item .pic{
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #f4f4f4;
    flex-shrink: 0;
    margin-right: 12px;
}
.header-search-result .result-item .result-item-title{
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}
.header-search-result .result-item .info p{
    font-size: 12px;
    margin-bottom: 0;
}
.header-search-result .result-item:hover{
    background: rgba(16,131,145,0.1);
    color: var(--text-color);
}
.header-search-hot-keys{
    line-height: 32px;
    font-size: 14px;
    padding: 8px;
    color: #222222;
}
.header-search-hot-keys ._key-list {
    flex-wrap: wrap;
    gap: 10px;
}
.header-search-hot-keys ._key-list a {
    display: block;
    font-size: 14px;
    color: #222222;
    font-weight: 500;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid var(--base-color);
}
.header-top .line1 ._r *{
    cursor: pointer;
}
.header-top .line1 ._r .btn1,
.header-top-r-btn1{
    font-weight: bold;
    font-size: 16px;
    color: #F79131;
    margin-right: 36px;
}
.header-top .line1 ._r .btn1 img,
.header-top-r-btn1 img{
    margin-right: 9px;
    width: 37px;
}
.header-top .line1 ._r .btn2,
.header-top-r-btn2{
    font-weight: 600;
    font-size: 14px;
    color: #222222;
    text-decoration: none;
    margin-right: 28px;
}
.header-top .line1 ._r .btn2 .iconfont,
.header-top-r-btn2 .iconfont{
    margin-right: 16px;
    font-size: 24px;
    font-weight: normal;
}
.header-top-r-btn1,
.header-top-r-btn2{
    justify-content: right;
    margin: 10px 20px;
}
.header-top .line1 ._r .btn3{
    background: #F79131;
    border-radius: 20px 20px 20px 20px;
    padding: 0 24px;
    font-weight: 500;
    font-size: 14px;
    height: 40px;
    text-decoration: none;
    color: #FFFFFF;
}
.header-top .line1 ._r .btn3 .iconfont{
    margin-right: 10px;
    font-size: 24px;
}

.header-top .line1 ._r .btn4{
    color: #F79131;
    position: relative;
    /*width: 195px;*/
}
.header-top .line1 ._r .btn4 span{
    color: #F79131;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 195px;
}

.header-top .line1 ._r  .iconfont{
    margin-right: 10px;
    font-size: 24px;
}
.header-top .line1 ._r  .usermuelist{
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    border-radius: 8px;width: 167px;
    padding: 10px 0;
    position: absolute;
    right: 0;
    top: 35px;
    z-index: 9;
    display: none;
}
.header-top .line1 ._r .btn4:hover .usermuelist{
    display: block;
}
.header-top .line1 ._r  .usermuelist .item{
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    color: #222222;
    text-align: left;
    padding: 0 20px;
    transition: all 0.3s;
    display: block;
    white-space: nowrap;
}

.header-top .line1 ._r  .usermuelist .item:hover{
    background: #E4EEF2;color: #108391;
    transition: all 0.3s;
}
.header-top .line2{
    background: #E4EEF2;
    height: 60px;
}
.header-top .line2 .cate-item{
    position: relative;
    display: flex;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: #222222;
    align-items: center;
    text-decoration: none;
    height: 60px;
    text-align: center;
}
.header-top .line2 .cate-item .iconfont{
    font-size: 16px;
    margin-right: 8px;
}
.header-top .line2 .cate-item:hover{
    color: var(--text-color);
}
.header-top .line2 .cate-item:hover::after{
    position: absolute;
    display: block;
    content: '';
    width: 80px;
    height: 4px;
    border-radius: 4px;
    background: var(--base-color);
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
}
.header-top .line2 .foc {
    color: var(--text-color);
}
.header-top .line2 .foc::after{
    position: absolute;
    display: block;
    content: '';
    width: 80px;
    height: 4px;
    border-radius: 4px;
    background: var(--base-color);
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
}
.header-btm{
    flex-grow: 1;
    background: rgba(51, 51, 51, 0.7);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: absolute;
    top: 140px;
    height: 0;
    opacity: 0;
}
.header-btm .cate-cont{
    position: relative;
}
.header-btm .cate-cont .cate-list{
    display: none;
    position: absolute;
    top: -2px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.1);
    border-radius: 0px 0px 8px 8px;
    overflow: hidden;
    left: 0;
    width: fit-content;
    max-width: 100%;
}
.header-btm .cate-cont .cate-list .cate-list-item{
    cursor: pointer;
    padding: 7px 13px 7px 20px;
    font-weight: 500;
    font-size: 16px;
    color: #222222;
    line-height: 20px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    align-items: center;
}
.header-btm .cate-cont .cate-list .cate-list-item .iconfont{
    color: #E4E4E4;
    font-size: 12px;
    margin-left: 20px;
}
.header-btm .cate-cont .cate-list .cate-list-item:hover{
    background: #E4EEF2;
    color: var(--text-color);
}
.header-btm .cate-cont .cate-list .cate-list-item:hover .iconfont{
    color: var(--text-color);
}
.header-btm .cate-cont .cate-list .cate-inner{
    width: 380px;
    min-width: 229px;
    height: auto;
    max-height: calc(100vh - 400px);
    overflow-y: auto;
    padding: 10px 0;
    scrollbar-color: #4FC2B8 transparent;
    scrollbar-width: thin;
}
/*.header-btm .cate-cont .cate-list .cate-inner::-webkit-scrollbar{*/
/*    width: 6px;*/
/*}*/
/*.header-btm .cate-cont .cate-list .cate-inner::-webkit-scrollbar-thumb{*/
/*    background: var(--base-color);*/
/*    border-radius: 4px;*/
/*    width: 6px;*/
/*    border-right: 2px solid #fff;*/
/*    border-top: 10px solid #fff;*/
/*    border-bottom: 10px solid #fff;*/
/*}*/
.header-btm .cate-cont .cate-list .cate-inner:not(.first){
    border-left: 1px solid #E4E4E4;
    display: none;
}
.footer-part1{
    background: #fff;
    padding: 30px 0 40px;
}
.footer-part1 .container{
   margin: 0 auto;
    justify-content: space-between;
    gap: 20px;
}
.footer-part1 ._item{

}
.footer-part1 ._item ._item-title{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 12px;
    color: #555555;
}
.footer-part1 ._item ._item-title::after{
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    margin-top: 6px;
    background: var(--text-color);
}
.footer-part1 ._item ._item-text{
    font-weight: 500;
    font-size: 14px;
    color: #555555;
    line-height: 20px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 10px;
}
.no-pointer{
    cursor: inherit !important;
}
.footer-part1 .follow-items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: fit-content;
}
.footer-part1 .follow-items>img{
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
}
.footer-part1 .follow-items img:hover{
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.footer-part1 .more-box{
    position: relative;
}
.footer-part1 .more-box ._label{
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
}
.footer-part1 .more-box-cont{
    position: absolute;
    padding: 10px;
    background: rgba(16, 131, 145, 0.4);
    gap: 10px;
    border-radius: 8px;
    left: 33%;
    display: none;
    transform: translateX(-50%);
}
.footer-part1 .more-box:hover .more-box-cont{
    display: flex;
}
.footer-part1 .more-box-cont img{
    width: 145px;
    height: 100px;
    max-width: unset;
}

.footer-part2{
    padding: 13px 0;
    background: rgba(16, 131, 145, 0.2);
}
.footer-part2 .container{
    height: 100%;
    align-items: center;
    gap: 50px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.footer-part2 .container img{
    object-fit: contain;
   width: 100%;
    cursor: pointer;
    max-width: unset;
}
.footer-part3{
    background: #F5F5F5;
    padding: 20px 0;
    line-height: 20px;
}
.footer-part3 .container{
    /*height: 100%;*/
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #555555;
}
.footer-part3 .container a{
    color: #555555;
    text-decoration: none;
}
.footer-part3 .container img{
    width: 14px;
    margin: 0 4px;
    object-fit: contain;
}
.footer-part3 .container .footer-logo{
    width: 132px;
    margin: 0 9px;
}
.crumbs{
    display: flex;
    padding: 20px 0;
    gap: 6px 14px;
    font-size: 14px;
    color: #000000;
    flex-wrap: wrap;
    align-items: center;
}
.crumbs a{
    cursor: pointer;
    color: #999999 !important;
}
.crumbs .iconfont{
    font-size: 14px;
    color: #999999;
}
.pagination{
    background: #FFFFFF;
    border-radius: 8px;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.pagegation{
    display: flex;
    gap: 4px;
    margin: 0;
}
.pagination li{
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    min-width: 32px;
    text-align: center;
    padding: 0 7px;
    list-style: none;
    line-height: 32px;
    height: 32px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}
.pagination li:hover{
    background: #eee;
}
.pagination .go-page-btn.disabled{
    background: #F5F5F5;
    color: #898989;
}
.pagination li a{
    display: block;}
.pagination li.pagenumact{
    background: #4FC2B8;
}
.pagination li.pagenumact a{color: #fff}
.pagination .go-page-btn{
    padding:0 15px;
}
.wap-show{
    display: none;
}
.wap-header{
    /*position: fixed;*/
    font-family: 'Poppins';
    background: #E4EEF2;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);

    /*z-index: 4;*/
    width: 100%;
    /*top: 0;*/
    padding: 0 10px;
}
.wap-header .container{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wap-header .logo{
    width: 123px;
    object-fit: contain;
    position: initial;
}
.wap-header .user-btn,#headerWapUser .usertop  .user-btn{
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    width: 28px;
    height: 28px;
    background: #F79131;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    flex-shrink: 0;
}
#headerWapUser .usertop  .user-btn{
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.wap-header .menu-btn{
    cursor: pointer;
    font-size: 20px;
    color: var(--text-color);
}
.wap-header-height{
    height: 60px;
}
.header-center-btn{
    font-size: 16px;
    color: #FFFFFF;
    width: 102px;
    height: 28px;
    background: #008492;
    border-radius: 8px;
    text-align: center;
    line-height: 28px;
    display: none;
}
.pc-show.sticky,
.wap-show.sticky{
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 9;
}
.header-menu-label{
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    padding:10px  20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-menu-label:not(.collapsed){
    background: var(--text-color);
    color: #fff;
}
.header-menu-label:not(.collapsed) .iconfont{
    color: #fff;
    transform: rotate(90deg);
}
.header-menu-label a{
    color: #000000;
    width: 100%;
}



.subscribe{
    border-radius: 12px;
    background-image: url("../img/home/post-bg.png");
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 40px;
    height: 220px;
    margin-bottom: 40px;
}
.subscribe ._t1{
    font-weight: 500;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 45px;
}
.subscribe ._t2{
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 23px;
}
.subscribe ._t3{
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}
.subscribe ._t3 a{
    color: #EBDE63;
}
.subscribe ._t4{
    font-size: 12px;
    color: #FFFFFF;
}
.subscribe ._t4 .iconfont{
    font-size: 15px;
    margin-right: 2px;
}
.subscribe .part1{
    max-width: 541px;
    margin-right: 33px;
}
.subscribe .part2{
    width: 278px;
    object-fit: contain;
    margin-right: 26px;
}
.subscribe .part1 ._search{
    border-radius: 12px;
    overflow: hidden;
    margin: 4px 0 8px;
}
.subscribe .part1 ._search input{
    border: none;
    outline: none;
    width: 444px;
    height: 43px;
    background: #F0F1F2;
    padding: 0 20px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.subscribe .part1 ._search input::placeholder{
    color: #BBBBBB;
}
.subscribe .part1 ._search div{
    width: 102px;
    height: 43px;
    background: #008492;
    text-align: center;
    line-height: 43px;
    font-size: 16px;
    cursor: pointer;
    color: #FFFFFF;
    flex-shrink: 0;
}
.subscribe .part1 ._t1{
    margin-bottom: 5px;
}
.subscribe .part3 ._t2{
    margin-top: 16px;
}
.subscribe .part3 ._t4{
    margin-top: 4px;
}
@media (max-width: 1400px){
    .subscribe{
        justify-content: space-between;
        padding-right: 40px;
    }
    .subscribe .part2{
        display: none;
    }
}
@media (max-width: 1200px) {
    .header-top .line1 ._l .search-line ._submit{
        width: fit-content;
        padding: 0 20px;
    }
    .header-top .line1 ._l .search-line ._submit span{
        display: none;
    }
    .header-top .line1 ._l .search-line ._submit .iconfont{
        margin-right: 0;
    }
    .header-top .line1 ._r .iconfont{
        margin-right: 0 !important;
    }
    .header-top .line1 ._r span{
        display: none;
    }
    .header-top .line1 ._r .btn1{
        margin-right: 10px;
    }
    .header-top .line1 ._r .btn2{
        margin-right: 20px;
    }
    .header-top .line2 .cate-item{
        line-height: 16px;
        font-size: 14px;
    }
}
@media (max-width: 992px){
    .footer-no-footer {
        display: none;
    }
    .pc-show.sticky, .wap-show.sticky{
        z-index: 99999;
    }
    .pc-show{
        display: none !important;
    }
    #headerWapMenu .modal-fullscreen{
        left: -80vw;
        transition: all 0.3s;
    }

    #headerWapMenu.show .modal-fullscreen{
        left:0; transition: all 0.3s;
        width: 80vw;
    }
    .modal .requ{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
    .header-menu-label a i{
        font-size: 20px;
        margin-right: 11px;}
    .header-menu-label div i{
        font-size: 20px;
        margin-right: 11px;
        font-size: 20px;
    }
    .header-menu-label  img{
        width: 26px;
        margin-right: 1px;
        margin-left: -3px;}
    .menulist{
        padding-top: 60px;}
    .wap-show{
        display: block;
    }
    .footer-part2{
        overflow-x: auto;
        height: 70px;
        justify-content: unset;
    }
    .footer-part2 .container{
        display: flex;
        gap: 30px;
        width: 100%;
    }
    .footer-part2 .container img{
        height: 30px;
        width: fit-content;
        flex-shrink: 0;
        cursor: pointer;
    }
    .footer-part3{
        padding: 15px 0 47px;
    }
    .footer-part3 .container{
        font-weight: 400;
        font-size: 10px;
        justify-content: center;
    }

    .footer-part-wap{
        padding:10px 0 30px;
        background: #fff;
    }
    .footer-part-wap .accordion-item{
        border: none;
    }
    .footer-part-wap ._item-title{
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 500;
        font-size: 16px;
        color: #222222;
        padding: 10px 0;
    }
    .footer-part-wap ._item-title .iconfont{
        width: 22px;
        height: 22px;
        background: #4FC2B8;
        border-radius: 50%;
        text-align: center;
        line-height: 22px;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
    }
    .footer-part-wap ._item-title:not(.collapsed) .iconfont{
        transform: rotate(90deg);
    }
    .footer-part-wap .accordion-collapse{
        padding-bottom: 2px;
    }
    .footer-part-wap ._item-text{
        font-weight: 500;
        font-size: 14px;
        color: #555555;
        line-height: 21px;
        display: block;
        padding: 0 20px;
        margin-bottom: 8px;
    }
    .footer-part-wap .follow-items{
        gap: 12px;
        margin-top: 2px;
    }
    .footer-part-wap .follow-items>img{
        width: 36px;
        height: 36px;
    }

    .subscribe{
        padding: 20px;
        margin-bottom: 24px;
    }
    .subscribe .part3{
        display: none;
    }
    .subscribe .part1 {
        max-width: unset;
        margin-right: 0;
        width: 100%;
    }
    .subscribe .part1 ._search input{
        width: calc(100% - 102px);;
    }
    .subscribe .part1 ._t1{
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    .subscribe .part1 ._search{
        margin: 10px 0 8px;
    }


    #headerWapUser.show .modal-fullscreen{
        margin-left: 20vw;
         transition: all 0.3s;
    }
    #headerWapUser .modal-fullscreen{
        width: 80vw;
        margin-left: 100vw;
    }
    .header-center-btn{
        display: block;
    }
}
@media (max-width: 576px){
    .footer-part2 .container{
        gap: 20px;
    }
    .crumbs{
        display: none;
    }
}
