body{
    margin: 0;
}

@font-face {
    font-family: 'Alibaba_PuHuiT';
    src: url('../../../fonts/Puhuiti/Alibaba_PuHuiTi_2.0_35_Thin_35_Thin.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'Alibaba_PuHuiT';
    src: url('../../../fonts/Puhuiti/Puhuiti_regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Alibaba_PuHuiT';
    src: url('../../../fonts/Puhuiti/Puhuiti_medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Alibaba_PuHuiT';
    src: url('../../../fonts/Puhuiti/Puhuiti_bold.ttf') format('truetype');
    font-weight: bold;
}

* {
    box-sizing: border-box;
    font-family: 'Alibaba_PuHuiT' ;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
:root {
    --color-primary: #4F63E8;
    --color-bg: rgba(79, 99, 232, 0.4);
    --padding-height:60px;
}
.d-col-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.flex-wrap{
    flex-wrap: wrap;
}
.d-flex{
    display: flex;
}
.d-flex-center{
    display: flex;
    justify-content: center;
}
.align-c{
    align-items: center;
}
.d-flex-between{
    display: flex;
    justify-content: space-between;
}
.d-flex-end{
    display: flex;
    justify-content: flex-end;
}
.text-c{
    text-align: center;
}
.d-flex-center{
    display: flex;
    justify-content: center;
    width: 100%;
}

.limit{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.limit2{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.limit3{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.page-btn{
    padding: 16px 30px;
    background: linear-gradient( 90deg, #27F6FF 0%, #4F63E8 100%);
    border-radius: 26px 26px 26px 26px;
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    transition: all .3s;
    white-space: nowrap;
    border: 1px solid #fff;
    text-decoration: none;
}
.page-btn .el-iconfont{
    font-size: 20px;
    margin-left: 9px;
}
.page-btn:hover{
    border: 1px solid #4F63E8;
    background: #fff;
    color: var(--color-primary);
}
.page-btn:hover .el-iconfont{
    background: -webkit-linear-gradient(#4F63E8,#27F6FF);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}
.page-btn.outline{
    border: 1px solid #4F63E8;
    background: #fff;
    color: var(--color-primary);
}
.page-btn.outline .el-iconfont{
    background: -webkit-linear-gradient(#4F63E8,#27F6FF);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}
.page-btn.outline:hover{
    border: 1px solid #fff;
    background: linear-gradient( 90deg, #27F6FF 0%, #4F63E8 100%);
    color: #FFFFFF;
}
.page-btn.outline:hover .el-iconfont{
    color: #FFFFFF;
}

.el-option{
    display: none;
}

/*头部*/
.hof-cont{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}
.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    top: 0;
    width: 100%;
    transition: all .3s;
    position: sticky;
    background: var(--color-bg);
    backdrop-filter: blur(10px);
}
.header.blur{
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.4) !important;
}
.header .line1{
    padding: 20px 0;
    align-items: center;
}
.header .line1 .logo{
    width: 63px;
    height: 40px;
    object-fit: contain;
    margin-right: 158px;
}
.header .line1 .right-link{
    display: flex;
    align-items: center;
}
.header .line1 .right-link .link{
    padding: 8px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-primary);
    line-height: 20px;
    text-decoration: none;
}
.header .line1 .right-link .link .el-iconfont{
    font-size: 13px;
    margin-left: 9px;
    background: -webkit-linear-gradient(#4F63E8,#27F6FF);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
}
.header .line1 .right-link .page-btn{
    padding: 8px 20px;
}
.header .line1 .right-link .page-btn .el-iconfont{
    font-size: 13px;
}
.header .line1 .menu-item{
   padding: 0 20px;
    font-size: 14px;
}
.menu-item-label{
    display: flex;
    align-items: center;
}
.header .line1 .menu-item .menu-item-label img,.menu-item-options img{
    width: 14px;
    object-fit: contain;
    margin-right: 4px;
}
.menu-item-label .el-iconfont{
    font-size: 12px;
    margin-left: 4px;
}
.menu-toggle{
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px 12px;
    cursor: pointer;
}
.menu-toggle span{
    display: block;
    height: 3px;
    width: 100%;
    margin: 6px 0;
    background: #121212;
    transition: all .3s;
    position: relative;
    border-radius: 5px;
}
.menu-toggle.on span:nth-child(1){
    transform: rotate(45deg);
    top: 9px;
}
.menu-toggle.on span:nth-child(2){
    display: none;
}
.menu-toggle.on span:nth-child(3){
    transform: rotate(-45deg);
}
.header .line2{
    margin-top: 20px;
}
.header .line2 .menu-item{
    margin-right: 34px;
    position: relative;
}
.header .line2 .menu-item .menu-item-label{
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #202229;
    line-height: 22px;
    text-decoration: none;
    transition: all .3s;
    padding: 9px 0;
}
.header .line2 .menu-item .menu-item-label .el-iconfont{
    font-size: 10px;
    margin-left: 5px;
}
.header .line2 .menu-item .menu-item-label.on{
    color: var(--color-primary);
}
.header .line2 .menu-item .menu-item-label:hover{
    color: var(--color-primary);
}
.menu-item-options{
    position: absolute;
    height: 0;
    transition: all .3s;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 30px 0 #eee;
    z-index: 2;
}
.menu-item-options a{
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
    transition: all .3s;
    width: fit-content;
}
.menu-item:hover .menu-item-options{
    height: fit-content;
}
.menu-item-options a:hover{
    background: var(--color-primary);
    color: #fff !important;
}

.menu-item-options .on{
    background: var(--color-primary);
    color: #fff !important;
}
.footer .line1{
    padding-top: 44px;
    padding-bottom: 120px;
    background: #fff;
}
.footer .line1 .container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
}
.footer .footer-item .logo{
    width: 154px;
    object-fit: contain;
}
.footer .footer-item .name{
    font-size: 20px;
    color: #202229;
    line-height: 28px;
    margin-bottom: 20px;
}
.footer .footer-item .text{
    font-size: 14px;
    color: #202229;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer .footer-item .qr-line{
    margin-top: 10px;
}
.footer .footer-item .item img{
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}
.mb-20{
    margin-bottom: 20px;
}
.footer .footer-item .text img{
    width: 20px;
    height: 20px;
    margin-right: 4px;
}
.footer .line2{
    background: #333333;
    padding: 15px 0;
    font-size: 14px;
    color: #fff;
}
.footer .line2 span{

}
.footer .line2 a{
    color: #fff;
    text-decoration: none;
    margin: 0 9px;
}
.footer .line2 a img{
    width: 18px;
    object-fit: contain;
    margin-right: 4px;
    position: relative;
    top: -2px;
}
.pc-hide{
    display: none;
}
@media (max-width: 992px) {
    .pc-hide{
        display: flex;
    }
    .header .line1{
        padding-bottom: 20px;
        justify-content: space-between;
    }
    .header .line1 .logo{
        margin-right: 0;
    }
   .wap-hide{
        display: none !important;
    }
    .menu-toggle{
        display: block;
    }
    .header .line2{
        position: fixed;
        flex-direction: column;
        background: #fff;
        width: 100vw;
        height: 100vh;
        margin-top: 0;
        left: 0;
        padding: 20px;
        transform: translateX(100%);
        transition: all .3s;
    }
    .header .line2.on{
        transform: translateX(0);
    }
    .header .line2 .menu-item{
        padding: 20px 0;
        margin-right: 0;
    }
    .header .line2 .menu-item .menu-item-label{
        justify-content: center;
    }
    .menu-item-options{
        width: fit-content;
        text-align: center;
        right: 0;
    }
    .menu-item-options a{
        padding: 20px;
    }
    .footer .line1{
        padding: 40px 0;
    }
    .footer .line1 .container{
        grid-template-columns: repeat(2, 1fr);
    }
    .page-text{
        font-size: 14px;
        line-height: 24px;
    }
}
@media (max-width: 768px){
    .footer .line1 .container{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
    }
    .page-btn{
        padding: 9px 15px;
    }
    .footer .footer-item .logo{
        /*width: 100%;*/
        height: 100px;
    }

}


