.header {
    width: 100%;
    height: 68px;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
}

.header .bg {
    width: 100%;
    height: 60px;
    background-color: #376ef2;
    opacity: 0;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 0;
}

.header.scroll .bg {
    opacity: 1;
    height: 68px;
}

.header .container {
    box-sizing: content-box;
    position: relative;
    z-index: 9;
    height: 68px;
    width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1920px;
}

.header .container .logo {
    display: flex;
    align-items: center;
    color: #fff;
}

.header .container .logo>a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.header .container .logo>a img {
    width: 139px;
}

.header .container .logo .we-work-service-icon {
    margin-left: 10px;
    font-size: 13px;
    color: #0082f0;
    line-height: 17px;
    border-radius: 5px;
    border: 1px solid #cae7ff;
    padding: 4px 10px 4px 8px;
    cursor: default;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background-color: #f7f9ff;
}

.header .container .logo .we-work-service-icon img {
    width: 20px;
    margin-right: 5px;
}

.header .container .menu {
    margin-left: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4px;
}

.header .container .menu .menu-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .container .menu .menu-list .list-item {
    cursor: pointer;
    font-size: 16px;
    border-bottom: 2px solid transparent;
}

.header .container .menu .menu-list .list-item .list-item-nav {
    font-size: 16px;
}

.header .container .menu .menu-list .list-item .list-item-nav {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0 25px;
    color: #fff;
    height: 68px;
    line-height: 72px;
    position: relative;
}

.header .container .menu .menu-list .list-item.active {
    border-bottom: 2px solid #FFFFFF;
}

.header .container .menu .menu-list .list-item .list-item-nav i {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    margin-left: 2px;
    transition: all 0.3s;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content {
    position: absolute;
    top: 66px;
    left: 50%;
    transition: all 0.3s;
    transform: translateX(-50%);
    transform-origin: top left;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content.hidden {
    display: none;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content.show {
    animation: fadeIn 0.3s 1;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content.fade {
    animation: fadeUp 0.3s 1 forwards;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content .inner {
    margin-top: 8px;
    display: flex;
    padding: 32px 20px 40px;
    color: #333;
    box-shadow: 0 20px 60px -20px rgba(26, 26, 51, 0.3);
    border-radius: 6px;
    border: 1px solid #e6e7eb;
    background-color: #fff;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content .inner .con-item {
    margin: 0 20px;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content .inner .con-item .con-item-title {
    white-space: nowrap;
    height: 60px;
    line-height: 60px;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a33;
    padding-left: 16px;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content .inner .con-item .con-item-list .con-item-list-item {
    display: block;
    white-space: nowrap;
    /* width: 160px; */
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #1a1a33;
    padding: 0 16px;
    border-radius: 4px;
}

.header .container .menu .menu-list .list-item .list-item-nav .list-item-nav-content .inner .con-item .con-item-list .con-item-list-item:hover {
    background-color: #f5f5f7;
    color: #376ef2;
}

.header .container .menu .menu-list .list-item:hover .list-item-nav i {
    transform: rotate(-180deg);
}

.header .container .menu .btn {
    margin-left: 30px;
}

.el-button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid #DCDFE6;
    border-color: #DCDFE6;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
}

.el-button--medium {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
}

.el-button + .el-button {
    margin-left: 10px;
}

.el-button--primary {
    color: #FFFFFF;
    background-color: rgba(255,255,255, .2);
    border-color: rgba(255,255,255, .2);
}

.el-button--default:hover {
    color: #376ef2;
}

.el-button--primary:hover {
    background-color: rgba(255,255,255, .4);
}

@keyframes fadeIn {
    0% {
        transform: scale(0.8) translate(-50%, -9999px);
        opacity: 0;
    }

    1% {
        transform: scale(0.8) translate(-50%, 0);
        opacity: 0;
    }

    100% {
        transform: scale(1) translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: scale(1) translate(-50%, 0);
        opacity: 1;
    }

    99% {
        transform: scale(0.8) translate(-50%, 0);
        opacity: 0;
    }

    100% {
        display: none;
        transform: scale(0.8) translate(-50%, -9999px);
    }
}


.footer{color: #fff;background-color: #383d43;}
.footer .flex {display: flex;}
.footer a{color: #fff;}
.footer-inner {padding-top: 40px;display: flex;justify-content: center;}
.footer-inner .right {display: flex;text-align: left;}
.footer-inner .right .flex-item {margin-left: 60px;}
.footer-inner .footer01{font-size: 14px;position: relative;}
.footer-inner .footer01 .company-name{margin-bottom: 10px;}
.footer-inner .footer01::after {display: block;content: '';height: 220px;width: 1px;background: rgba(255,255,255,.1);position: absolute;right: 0;top: 0;}
.footer-inner .footer01 img{width: 158px;margin-bottom: 14px;vertical-align: middle;}
.footer-inner .footer01 .language{margin-top: 20px;}
.footer-inner .footer01 .flex .qr{margin-right: 60px;}
.footer-inner .footer-menus dt{font-size: 18px;margin-bottom: 30px;}
.footer-inner .footer-menus dd p{margin-bottom: 20px;font-size: 14px;color: #999;}
.footer-inner .footer-menus dd a{color: #999;font-size: 14px;}
.footer-inner .footer-menus dd a:hover{color: #fff;opacity: 1;transition: all .3s;}

.footer .copyright{padding: 32px 0;text-align: center;border-top: 1px solid rgba(255,255,255,.1);border-bottom: 1px solid rgba(255,255,255,.1);margin-top: 60px;}
.footer .copyright p{color: #999;font-size: 14px;}
.footer .copyright p a{color: #999;}
.footer .copyright p a:hover{color: #fff;transition: all .3s;}
.footer_bq { text-align:center; padding:10px 0;}
.footer_bq p { font-size:12px; color:#999; line-height:30px; }
.footer_bq p span { color:#666; margin:0 10px; }
.footer_bq p em { font-style:normal; font-size:12px; color:#797979; }
.footer_bq p em a { color:#797979; }
.footer_bq p a { color:#999; }

.bottom {
    background: url(../images/footback.png) no-repeat 0 center;
    background-size: 100% calc(100% + 2px);
    height: 281px;
    text-align: center;
}
.bottom-text {
    padding-top: 75px;
    font-size: 36px;
    font-weight: 400;
    color: #FFFFFF;
}
.bottom-btn {
    cursor: pointer;
    margin: 0 auto;
    margin-top: 46px;
    width: 176px;
    height: 52px;
    line-height: 51px;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
}
.bottom-btn p {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
}