﻿/* ====================公共样式========================= */
/* 头部 */
.Header {
    width: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    height: 90px;
    background: transparent;
    user-select: none;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
    transition: all .4s ease;
}

.Header::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all .4s ease;
}

.Header::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: #cccccc;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: all .4s ease;
    display: none
}

.Header-logo {
    float: left;
    width: 180px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

.Header-logo img {
    max-width: 100%;
}

.Header-logo img.s {
    display: none;
}

.Header-lang {
    float: right;
    position: relative;
    z-index: 999;
    padding-left: 40px;
    height: 100%;
    margin-left: 65px;
}

.Header-lang a {
    display: none ;
}

.Header-lang::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background-color: #aaaaaa;
    transition: all .4s ease;
    display: none ;
}

.Header-lang-menu {
    display: flex;
    align-items: center;
    height: 100%;
    color: #666;
    transition: color .4s ease;
}

.Header-lang-menu span {
    font-size: 16px;
    font-family: "BS";
}

.Header-lang-menu i {
    font-size: 22px;
    margin-right: 4px;
}

.Header-lang.active .Header-lang-menu {
    color: #23b3f6;
}

/* 多个语言 Header-lang-more添加class="hasIcon" 就会启用图标 */
.Header-lang-more {
    display: none;
    z-index: 9;
    width: 140px;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    margin-left: -70px;
    border-top: 4px solid #23b3f6;
    border-radius: 5px 5px 0 0;
    transition: top .4s ease;
}

.Header-lang-more:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 8px 8px;
    border-color: transparent transparent #23b3f6 transparent;
    position: absolute;
    top: -8px;
    left: 50%;
    margin: 0 0 0 -8px;
}

.Header-lang-more a {
    display: flex;
    font-size: 16px;
    color: #666;
    justify-content: center;
    padding: 10px 0;
    transition: all .4s ease;
}

.Header-lang-more.hasIcon a span {
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 28px;
    min-width: 60px;
}

.Header-lang-more.hasIcon a.cn span {
    background-image: url('../images/icon-cn.png');
}

.Header-lang-more.hasIcon a.tw span {
    background-image: url('../images/icon-tw.png');
}

.Header-lang-more.hasIcon a.en span {
    background-image: url('../images/icon-en.png');
}

.Header-lang-more.hasIcon a.en2 span {
    background-image: url('../images/icon-mg.png');
}

.Header-lang-more.hasIcon a.de span {
    background-image: url('../images/icon-de.png');
}

.Header-lang-more.hasIcon a.br span {
    background-image: url('../images/icon-br.png');
}

.Header-lang-more.hasIcon a.es span {
    background-image: url('../images/icon-es.png');
}

.Header-lang-more.hasIcon a.fr span {
    background-image: url('../images/icon-fr.png');
}

.Header-lang-more.hasIcon a.jp span {
    background-image: url('../images/icon-jp.png');
}

.Header-lang-more.hasIcon a.ru span {
    background-image: url('../images/icon-ru.png');
}

.Header-lang-more.hasIcon a.ita span {
    background-image: url('../images/icon-ita.png');
}

.Header-lang-more.hasIcon a.kr span {
    background-image: url('../images/icon-kr.png');
}

.Header-lang-more a:hover {
    color: #fff;
    background: #23b3f6;
}

.Header-lang.active .Header-lang-more {
    display: block;
    animation: langInUp .4s ease-out;
}

@keyframes langInUp {
    0% {
        transform: translateY(20px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.Header-search {
    float: right;
    height: 100%;
}

.Header-search-click {
    height: 100%;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    transition: color .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.Header-search-click::after {
    content: "\e6a6";
    font-family: "icon";
}

.Header-search-click.active::after {
    content: "\e903";
    font-size: 17px;
}

.Header-search-click:hover {
    color: #23b3f6 !important;
}

.Header-search-item {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 99;
    text-align: right;
}

.Header-search-item .contain {
    padding-right: 148px;
}

.Header-search-item.active {
    display: flex;
}

.Header-search-item input,
.Header-search-item button {
    display: inline-block;
    vertical-align: middle;
}

.Header-search-item input[type="text"] {
    width: 0px;
    height: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #666;
    background: transparent;
}

.Header-search-item.active input[type="text"] {
    animation: HeaderSearch 0.8s ease both;
}

@keyframes HeaderSearch {
    0% {
        width: 0;
    }

    100% {
        width: 520px;
    }
}

.Header-search-item button {
    width: 50px;
    height: 40px;
    font-size: 20px;
    color: #666;
    background: transparent;
    cursor: pointer;
    margin-right: 0;
}

.Header-search-item button::after {
    content: "\e6a6";
    font-family: "icon";
}

body.bodySearch .Header-navbar {
    visibility: hidden;
    opacity: 0;
}

.Header-navbar {
    float: right;
    margin-right: 40px;
    visibility: visible;
    opacity: 1;
    height: 100%;
}

body.PC .Header-navbar {
    display: block !important;
}

.Header-navbar>ul {
    height: 100%;
}

.Header-navbar>ul>li {
    float: left;
    margin: 0 25px;
    position: relative;
    z-index: 9;
    height: 100%;
}

.Header-navbar>ul>li:last-child {
    margin-right: 0;
}

.Header-navbar>ul>li:first-child {
    margin-left: 0;
}

.Header-menu {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    font-weight: 700;
    transition: color .4s ease;
}

.Header-menu::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: #23b3f6;
    transition: all .4s ease;
}

.Header-navbar>ul>li:hover .Header-menu::before {
    width: 100%;
}

.Header-navbar>ul>li.active .Header-menu {
    color: #23b3f6;
}

.Header-arrow {
    display: none;
}

.Header-drop {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    left: 50%;
    width: 160px;
    margin-left: -80px;
    top: calc(100% - 0px);
    min-width: 100%;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    transition: top .4s ease;
}

/* .Header-drop::before{content: "";display: block;width: 0px;height: 0px;border-style: solid;border-width: 0 8px 8px;border-color: transparent transparent #23b3f6 transparent;position: absolute;top: -8px;left: 50%;margin: 0 0 0 -8px;} */
.Header-drop-menu {
    display: flex;
    width: 100%;
    position: relative;
}

.Header-drop-menu>a {
    display: flex;
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 24px;
    padding: 10px 4px;
    text-align: center;
    color: #666;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.Header-drop-menu.active,
.Header-drop-menu>a:hover {
    background: #23b3f6;
    color: #fff;
}

/* 如果需要透明：页面body添加class="Lucency noGap"，样式修改 */
@media all and (min-width:1100px) {
    .Lucency .Header-logo img.s {
        opacity: 1;
    }

    .Lucency .Header-logo img.h {
        opacity: 0;
    }

    .Lucency .Header {
        background: transparent;
        box-shadow: none;
        height: 120px;
    }

    .Lucency .Header::after {
        background: rgba(255, 255, 255, 0);
        opacity: 1;
    }

    .Lucency .Header-menu {
        color: #fff;
    }

    .Lucency .Header-lang-menu {
        color: #fff;
    }

    .Lucency .Header-search-click {
        color: #fff;
    }

    .Lucency .Header-lang::before {
        background-color: #fff;
    }

    .Lucency .Header::before {
        top: -100%;
    }

    .bodyMouse .Header,
    .bodySearch .Header {
        background: transparent;
        box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
        height: 90px;
    }

    .bodyMouse .Header::before,
    .bodySearch .Header::before {
        top: 0px;
    }

    .bodyMouse .Header-menu,
    .bodySearch .Header-menu {
        color: #666;
    }

    .bodyMouse .Header-lang::before,
    .bodySearch .Header-lang::before {
        background-color: #aaaaaa;
    }

    .bodyMouse .Header::after,
    .bodySearch .Header::after {
        background: #cccccc;
        opacity: 0;
    }

    .bodyMouse .Header-logo img.s,
    .bodySearch .Header-logo img.s {
        opacity: 0;
    }

    .bodyMouse .Header-logo img.h,
    .bodySearch .Header-logo img.h {
        opacity: 1;
    }

    .bodyMouse .Header-lang-menu,
    .bodySearch .Header-lang-menu {
        color: #666;
    }

    .bodyMouse .Header-search-click,
    .bodySearch .Header-search-click {
        color: #666;
    }

    .noGap .Header-logo img {
        position: absolute;
        transition: opacity .4s ease;
        top: 0;
        bottom: 0;
        margin: auto 0;
    }

    .noGap .Container {
        margin-top: 0;
    }

    .noGap .Header-logo img.s {
        display: block;
    }
}

.Header-navclick {
    display: none;
    width: 24px;
    height: 60px;
    cursor: pointer;
    float: right;
    user-select: none;
    align-items: center;
}

.Header-navclick span {
    width: 100%;
    height: 2px;
    background: #666;
    display: block;
    position: relative;
    transition: all .2s linear;
}

.Header-navclick span:before,
.Header-navclick span:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #666;
    display: block;
    left: 0;
    width: 100%;
    transition: all .2s linear;
}

.Header-navclick span:before {
    top: -7px;
}

.Header-navclick span:after {
    top: 7px;
}

.Header-navclick.active span {
    -moz-animation: buttonAnimation 0.3s ease forwards;
    -webkit-animation: buttonAnimation 0.3s ease forwards;
    animation: buttonAnimation 0.3s ease forwards;
}

.Header-navclick.active span:before {
    -moz-animation: buttonAnimationBefore 0.3s ease forwards;
    -webkit-animation: buttonAnimationBefore 0.3s ease forwards;
    animation: buttonAnimationBefore 0.3s ease forwards;
}

.Header-navclick.active span:after {
    -moz-animation: buttonAnimationAfter 0.3s ease forwards;
    -webkit-animation: buttonAnimationAfter 0.3s ease forwards;
    animation: buttonAnimationAfter 0.3s ease forwards;
}

@-moz-keyframes buttonAnimationBefore {
    0% {
        -moz-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -moz-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@-webkit-keyframes buttonAnimationBefore {
    0% {
        -webkit-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -webkit-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@keyframes buttonAnimationBefore {
    0% {
        -moz-transform: translateY(0px) rotate(0);
        -ms-transform: translateY(0px) rotate(0);
        -webkit-transform: translateY(0px) rotate(0);
        transform: translateY(0px) rotate(0);
    }

    50% {
        -moz-transform: translateY(7px) rotate(0);
        -ms-transform: translateY(7px) rotate(0);
        -webkit-transform: translateY(7px) rotate(0);
        transform: translateY(7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(7px) rotate(45deg);
        -ms-transform: translateY(7px) rotate(45deg);
        -webkit-transform: translateY(7px) rotate(45deg);
        transform: translateY(7px) rotate(45deg);
    }
}

@-moz-keyframes buttonAnimationAfter {
    0% {
        -moz-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -moz-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@-webkit-keyframes buttonAnimationAfter {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -webkit-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@keyframes buttonAnimationAfter {
    0% {
        -moz-transform: translateY(0) rotate(0);
        -ms-transform: translateY(0) rotate(0);
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }

    50% {
        -moz-transform: translateY(-7px) rotate(0);
        -ms-transform: translateY(-7px) rotate(0);
        -webkit-transform: translateY(-7px) rotate(0);
        transform: translateY(-7px) rotate(0);
    }

    100% {
        -moz-transform: translateY(-7px) rotate(-45deg);
        -ms-transform: translateY(-7px) rotate(-45deg);
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@-moz-keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

@keyframes buttonAnimation {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(255, 255, 255, 0);
    }

    100% {
        background: rgba(255, 255, 255, 0);
    }
}

/* 底部 */
.Footer {
    width: 100%;
    background: #1a2436;
    position: relative;
    z-index: 9;
}

.Footer-items {
    width: 100%;
    padding: 70px 0 70px;
}

.Footer-navbar {
    width: 100%;
    user-select: none;
}

.Footer-navbar>ul {
    justify-content: space-between;
}

.Footer-navbar>ul>li {
    width: auto;
    position: relative;
}

.Footer-menu {
    font-size: 16px;
    color: #23b3f6;
    font-weight: 700;
    display: flex;
}

.Footer-arrow {
    display: none;
}

.Footer-drop {
    width: 100%;
    margin-top: 12px;
}

body.PC .Footer-drop {
    display: block !important;
}

.Footer-drop-menu {
    display: flex;
    position: relative;
    width: 100%;
}

.Footer-drop-menu>a {
    font-size: 14px;
    padding: 6px 0;
    color: #969da6;
    display: flex;
    line-height: 1.24;
    transition: all .4s ease;
}

.Footer-drop-menu>a:hover {
    color: #fff;
}

.Footer-code {
    width: 100%;
    margin-top: 32px;
    display: flex;
}

.Footer-code a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 16px;
}

.Footer-code a span {
    font-size: 20px;
    color: #fff;
}

.Footer-code a:last-child {
    margin-right: 0;
}

.Footer-code-img {
    display: none;
    width: 152px;
    height: 152px;
    padding: 6px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -76px;
    background: #fff;
    border-radius: 4px;
}

.Footer-code-img::after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border: 8px solid transparent;
    border-top-color: #fff;
    position: absolute;
    bottom: -16px;
    left: 50%;
    margin-left: -8px;
}

.Footer-code-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Footer-code a:hover .Footer-code-img {
    display: block;
    animation: FooterCode .6s ease-in-out both;
}

@keyframes FooterCode {
    0% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

.Footer-friend {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.Footer-friend-hint,
.Footer-friend-link a {
    color: #969da6;
    line-height: 24px;
    font-size: 14px;
}

.Footer-friend-link {
    flex: 1;
}

.Footer-friend-link a {
    transition: all .4s ease;
    margin-right: 14px;
}

.Footer-friend-link a:last-of-type {
    margin-right: 0;
}

.Footer-friend-link a:hover {
    color: #fff;
}

.Footer-copyright {
    width: 100%;
    background: #141d2e;
}

.Footer-copyright .contain {
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.Footer-copyright .info {
    color: rgba(255, 255, 255, .3);
    line-height: 18px;
    font-size: 14px;
}

.Footer-copyright .info p:not(:first-child) {
    margin-left: 16px;
}

.Footer-copyright .info a {
    transition: all .4s ease;
}

.Footer-copyright .info a:hover {
    color: #fff;
}

/* 侧边栏 */
.side-view {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.side-list {
    border-radius: 40px;
    background: #23b3f6;
    padding: 20px 0;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.side-list li {
    position: relative;
}

.side-menu {
    width: 48px;
    height: 48px;
    transition: all .4s ease;
}

.side-menu span {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.side-list li:last-child .side-menu span {
    border: unset;
}

.side-menu img {
    transition: all .4s ease;
    max-width: 100%;
}

.side-menu .h {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.side-drop {
    white-space: nowrap;
    display: none;
    font-size: 16px;
    padding: 25px 35px;
    position: absolute;
    right: 100%;
    top: 0;
    border-bottom-left-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.side-drop img {
    width: 110px;
    max-width: unset;
}

.side-list li:nth-child(2) .side-drop {
    padding: 10px;
}

.side-drop p {
    margin-top: 10px;
}

.side-drop p:first-child {
    margin-top: 0;
}

.side-drop p a {
    color: #23b3f6;
    font-weight: 700;
}

.side-list li:hover .side-menu {
    background: #fff;
}

.side-list li:hover .side-menu .s {
    opacity: 0;
}

.side-list li:hover .side-menu .h {
    opacity: 1;
}

.side-list li:hover .side-drop {
    display: block;
}

.backTop {
    user-select: none;
    cursor: pointer;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    width: 48px;
    height: 48px;
    transition: all .4s ease;
    line-height: 48px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    z-index: 9999;
    background: #23b3f6;
}

.backTop::after {
    content: "\e727";
    font-family: "icon";
}

.side-view.on {
    display: block;
}

.backTop:hover {
    background: #fff;
    color: #23b3f6;
}

@media all and (max-width:720px) {
    .side-view {
        right: 15px;
    }

    .side-list {
        padding: 10px 0;
    }

    .side-menu {
        width: 30px;
        height: 30px;
    }

    .backTop {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }

    .side-drop {
        padding: 10px;
        border-bottom-left-radius: 5px;
        font-size: 12px;
    }

    .side-drop p {
        margin-top: 5px;
    }

    .side-drop img {
        width: 60px;
    }

    .side-list li:nth-child(2) .side-drop {
        padding: 5px;
    }
}

/* 横竖屏 */
.popOrient {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 9999999999999999;
    color: #696969;
    font-size: 16px;
    text-align: center;
}

.popOrient svg {
    height: 60px;
    margin-bottom: 12px;
}

body.landscape .popOrient {
    display: flex
}

/* 视频弹窗 */
.popVideo {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
}

.popVideo-items {
    max-width: 1000px;
    position: relative;
    opacity: 0;
}

.popVideo-video {
    width: 100%;
    display: flex;
    justify-content: center;
}

.popVideo-video video {
    max-height: 82vh;
}

.popVideo-video iframe {
    width: 1000px;
    height: 600px;
}

.popVideo-close {
    width: 40px;
    height: 40px;
    right: -40px;
    top: -40px;
    line-height: 40px;
    opacity: 0.7;
    text-align: center;
    position: absolute;
    z-index: 3;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: all .6s ease;
}

.popVideo-close:hover {
    opacity: 1;
}

.popVideo.active {
    display: flex;
}

.popVideo.active .popVideo-items {
    animation: popVideRun 1s ease both .4s;
}

@keyframes popVideRun {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media all and (max-width:1100px) {
    .popVideo-items {
        width: 92%;
    }

    .popVideo-close {
        right: -8px;
    }

    .popVideo-video iframe {
        width: 100%;
        height: 450px;
    }
}

@media all and (max-width:720px) {
    .popVideo-video iframe {
        height: 220px;
    }
}

/* 简历弹窗 */
.onResume {
    display: none;
    z-index: 999999;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    user-select: none;
    padding: 0 4%;
}

.onResume-contain {
    background-color: #fff;
    border-radius: 5px;
    padding: 45px;
    width: 530px;
    position: relative;
    opacity: 0;
}

.onResume.active {
    display: flex;
}

.onResume.active .onResume-contain {
    animation: onResumeRun .6s ease both;
}

@keyframes onResumeRun {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.onResume-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    transition: all .4s ease;
    color: #23b3f6;
}

.onResume-close i {
    font-size: inherit;
}

.onResume-close:hover {
    color: #f00;
}

.onResume-title {
    font-size: 20px;
    color: #333;
}

.onResume-form {
    width: 100%;
    margin-top: 12px;
}

.onResume-name {
    width: 100%;
    height: 45px;
}

.onResume-name input,
.onResume-wrap .onResume-hint {
    height: 100%;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08) inset;
    border: 1px solid #e6e6f1;
    padding: 0 16px;
}

.onResume-name input {
    width: 100%;
    border-radius: 5px;
}

.onResume-wrap {
    position: relative;
    width: 100%;
    height: 45px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 8px;
}

.onResume-wrap .onResume-hint {
    width: 66%;
    border-radius: 5px 0 0 5px;
}

.onResume-wrap .btn {
    width: 34%;
    height: 100%;
    background-color: #23b3f6;
    position: relative;
}

.onResume-wrap .btn .onResume-upload {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.onResume-button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.onResume-button button {
    width: 100%;
    height: 45px;
    background-color: #23b3f6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

@media all and (max-width: 720px) {
    .onResume-contain {
        padding: 24px 16px;
        width: 100%;
    }

    .onResume-title {
        font-size: 18px;
    }

    .onResume-name,
    .onResume-wrap {
        height: 40px;
    }

    .onResume-button {
        margin-top: 12px;
    }

    .onResume-button button {
        height: 40px;
        font-size: 14px;
    }

    .onResume-close {
        top: 10px;
        right: 10px;
        font-size: 16px;
    }

    .onResume-wrap .btn .onResume-upload {
        font-size: 14px;
    }

    .onResume-name input,
    .onResume-wrap .onResume-hint {
        padding: 0 14px;
    }
}

/* 中间+共用部分 */
.Container {
    width: 100%;
    margin-top: 90px;
}

.section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contain {
    width: 1400px;
    margin: 0 auto;
}

.Header>.contain {
    width: 100%;
    padding: 0px 35px 0px 45px;
    height: 100%;
}

.Header-search-item .contain {
    width: 100%;
    padding-right: 190px;
}

.Footer-logo {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 50px;
}

.erweima_right {
    display: flex ;
    gap: 0px 20px ;
}


.Footer-logo .logo {
    width: 165px;
}

.Footer-logo .logo img {
    width: 100% ;
    display: block ;
}

.Footer-logo .muen a {
    margin-left: 45px;
}

.Footer-logo .muen a:first-child {
    margin-left: 0px;
}

.Footer-cont .cont-l {
    width: 50%;
    padding-right: 100px;
}

.Footer-cont .cont-r {
    width: 50%;
    padding-left: 110px;
}

.Footer-from {
    margin-right: -10px;
}

.Footer-from .list {
    width: calc(100%/2 - 10px);
    margin-right: 10px;
}

.Footer-from .list input {
    width: 100%;
    height: 44px;
    background-color: transparent;
    color: #fff;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.Footer-from .list input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
}

.Footer-from .list input:-moz-placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
}

.Footer-from .list input::-moz-placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
}

.Footer-from .list input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
}

.Footer-from .list:nth-child(5) {
    width: calc(100%/1 - 10px)
}

.Footer-from .list:nth-child(6) {
    display: flex;
}

.Footer-from .list:nth-child(6),
.Footer-from .list:nth-child(7) {
    margin-top: 10px;
}

.Footer-from .list:nth-child(6) input {
    flex: 1;
}

.Footer-from .list:nth-child(6) img {
    margin-left: 10px;
    height: 40px;
}

.Footer-from .list textarea {
    width: 100%;
    height: 74px;
    background-color: transparent;
    color: #fff;
    font-size: 12px;
    padding-top: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.Footer-from .list textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
}

.Footer-from .list textarea:-moz-placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
}

.Footer-from .list textarea::-moz-placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
}

.Footer-from .list textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 12px;
}

.Footer-from .list .btn {
    width: 100%;
    height: 40px;
    background-color: #23b3f6;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
}

.Footer-from .list .btn:hover {
    background-color: #00aaf8;
}

.Footer-hit {
    justify-content: space-between;
}

.Footer-hit li {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 14px;
}

.Footer-hit li:last-child {
    margin-bottom: 0px;
}

.Footer-hit .img {
    display: flex;
    flex-direction: column;
    width: 110px;
    text-align: center;
}

.Header-drop-cont {
    position: fixed;
    width: 100vw;
    left: 0px;
    top: 90px;
    margin-left: 0px;
    border: 0px;
    border-radius: 0px;
    backdrop-filter: none;
    background-color: #fff;
    padding: 50px 0px 80px 0px;
}

.Header-drop-cont::before {
    display: none;
}

.Header-drop-contA-contain {
    padding: 0px calc((100% - 1150px) / 2);
}

.Header-drop-contA-contain .cont-l {
    width: calc(100% - 415px);
    padding-right: 95px;
}

.Header-drop-contA-contain .cont-r {
    width: 415px;
    height: 225px;
    overflow: hidden;
}

.Header-drop-contA-contain .cont-r img {
    width: 100%;
    height: 100%;
    transition: all .4s ease;
}

.Header-drop-contA-contain .cont-r img:hover {
    transform: scale(1.04);
}

.Header-drop-contA-list {
    margin-right: -60px;
    height: 100%;
}

.Header-drop-contA-list .list {
    width: calc(100%/2 - 60px);
    margin-right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: calc(100% / 3);
    border-bottom: 1px solid #ddd;
}

.Header-drop-contA-list .list::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background-color: #23b3f6;
    transition: all .4s ease;
}

.Header-drop-contA-list .list:hover::before {
    width: 100%;
}

.Header-drop-contA-list .list>div {
    max-width: calc(100% - 20px);
    transition: all .4s ease;
}

.Header-drop-contA-list .list i {
    width: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: rotate(180deg);
    transition: all .4s ease;
}

.Header-drop-contA-list .list:hover i {
    color: #23b3f6;
}

.Header-drop-contA-list .list:hover>div {
    color: #23b3f6;
}

.Header-drop-contB-contain {
    padding: 0px calc((100% - 1150px) / 2);
}

.Header-drop-contB-contain::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 620px;
    background-color: #f5f5f5;
}

.Header-drop-contB-contain .cont-l {
    width: 290px;
    position: relative;
    z-index: 2;
}

.Header-drop-contB-contain .cont-r {
    width: calc(100% - 290px);
    padding-left: 45px;
}

.Header-drop-contB-muen {
    width: 100%;
}

.Header-drop-contB-muen .item {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0px 30px;
    position: relative;
}

.Header-drop-contB-muen .item:last-child {
    margin-bottom: 0px;
}

.Header-drop-contB-muen .item::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 0%;
    height: 100%;
    background-color: #23b3f6;
    transition: all .4s ease;
}

.Header-drop-contB-muen .item span {
    position: relative;
    z-index: 2;
    transition: all .4s ease;
    line-height: 1.2;
}

.Header-drop-contB-muen .item.active {
    color: #fff;
}

.Header-drop-contB-muen .item.active::before {
    width: 100%;
}

.Header-drop-contB-list {
    width: 385px;
    padding-right: 95px;
}

.Header-drop-contB-list .list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 55px;
    border-bottom: 1px solid #ddd;
}

.Header-drop-contB-list .list::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background-color: #23b3f6;
    transition: all .4s ease;
}

.Header-drop-contB-list .list div {
    max-width: calc(100% - 20px);
    transition: all .4s ease;
}

.Header-drop-contB-list .list i {
    width: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: rotate(180deg);
    transition: all .4s ease;
}

.Header-drop-contB-list .list.active::before {
    width: 100%;
}

.Header-drop-contB-list .list.active i {
    color: #23b3f6;
}

.Header-drop-contB-list .list.active div {
    color: #23b3f6;
}

.Header-drop-contB-img {
    width: calc(100% - 385px);
    height: 225px;
    overflow: hidden;
}

.Header-drop-contB-img img {
    display: none;
    width: 100%;
    height: 100%;
    transition: all .4s ease;
}

.Header-drop-contB-img img:hover {
    transform: scale(1.04);
}

.Header-drop-contB-img img.active {
    display: block;
    animation: HeaderDropContBImg .4s ease;
}

@keyframes HeaderDropContBImg {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.Header-drop-contB-hide {
    display: none;
}

.Header-drop-contB-hide.active {
    display: flex;
    animation: HeaderDropContBHide .4s ease;
}

@keyframes HeaderDropContBHide {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.Header-drop-contC-contain {
    padding: 0px calc((100% - 1280px) / 2);
}

.Header-drop-contC-list {
    margin: 0 -20px -20px 0;
}

.Header-drop-contC-list .list {
    width: calc(100%/6 - 20px);
    margin: 0 20px 20px 0;
    display: block;
}

.Header-drop-contC-list .list .img {
    height: 130px;
    overflow: hidden;
}

.Header-drop-contC-list .list .img img {
    width: 100%;
    height: 100%;
    transition: all .4s ease;
}

.Header-drop-contC-list .list:hover .img img {
    transform: scale(1.04);
}

.Header-drop-contC-list .list .title {
    transition: all .4s ease;
}

.Header-drop-contC-list .list:hover .title {
    color: #23b3f6;
}

.IndTitle.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.IndTitle .name {
    display: flex;
    align-items: flex-start;
}

.IndTitle .name img {
    display: block;
    margin-left: 8px;
    width: 10px;
}

.IndTitle .text a {
    color: #23b3f6;
    text-decoration: underline;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: .2;
    margin: 0px 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #23b3f6;
}

.CommonBtn {
    width: 150px;
    position: relative;
}

.CommonBtn .link {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.CommonBtn .link:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
    background-image: linear-gradient(110deg, #23b3f6, #23b3f6);
}

.CommonBtn a {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.CommonBtn a:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
    background-image: linear-gradient(110deg, #23b3f6, #23b3f6);
}

.CommonBtn .text {
    font-size: 16px;
    line-height: 45px;
    position: relative;
    z-index: 9;
    transition: all .8s cubic-bezier(.55, .17, .37, .94);
    text-transform: uppercase;
}

.CommonBtn .icon {
    margin-right: 15px;
    position: relative;
    z-index: 9;
    font-size: 20px;
    color: #fff;
    transform: rotate(180deg);
    padding-top: 1px;
}

.CommonBtn:hover .link:before {
    width: 100%;
    height: 50px;
    border-radius: 50px;
}

.CommonBtn:hover .link .text {
    padding-left: 0.78125vw;
    color: #fff;
}

.CommonBtn:hover a:before {
    width: 100%;
    height: 50px;
    border-radius: 50px;
}

.CommonBtn:hover a .text {
    padding-left: 0.78125vw;
    color: #fff;
}


.Footer-iphone .iphone:nth-child(1) {
    letter-spacing: 1px;
}






/* -------------------------PC端--------------------------- */
/* -------------------------2k端--------------------------- */
@media all and (min-width:2000px) and (max-width:3000px) {

    /* 1920设计稿 2560分辨率【所有宽度 × (2560÷1920 ≈ 1.5)】【电脑缩放1920÷2560 = 75%】 */
    .Header-drop-contB-contain::before {
        width: 900px;
    }
}

@media all and (max-width:2000px) {

    /* 1600 × (900) */
    .Header-drop-contB-contain::before {
        width: 550px;
    }
}

@media all and (max-width:1590px) {

    /* 1440 × (700)  */
    .contain {
        width: 1200px;
    }

    .Header-drop-contB-contain::before {
        width: 400px;
    }

    .Footer-cont .cont-l {
        width: 50%;
        padding-right: 70px;
    }

    .Footer-cont .cont-r {
        width: 50%;
        padding-left: 70px;
    }

    .Footer-logo .muen a {
        margin-left: 32px;
    }

    .Footer-from .list input {
        height: 40px;
    }

    .Footer-from .list textarea {
        height: 60px;
    }
}

@media all and (max-width:1430px) {
    /* 1360 */
}

@media all and (max-width:1350px) {

    /* 1280 */
    .Header-drop-contB-contain::before {
        width: 300px;
    }

    .Header-drop-contC-contain {
        padding: 0px calc((100% - 980px) / 2);
    }

    .Header-drop-contC-list .list {
        width: calc(100%/5 - 20px);
    }
}

@media all and (max-width:1270px) {

    /* 1152 × (700) */
    .contain {
        width: 960px;
    }

    .Header-drop-contA-contain {
        padding: 0px calc((100% - 960px) / 2);
    }

    .Header-drop-contB-contain {
        padding: 0px calc((100% - 960px) / 2);
    }

    .Header-drop-contC-contain {
        padding: 0px calc((100% - 960px) / 2);
    }

    .Header-drop-contB-contain::before {
        width: 360px;
    }

    .Header-drop-contC-list .list .img {
        height: 130px;
    }

    .Header-drop-contB-list {
        width: 320px;
        padding-right: 70px;
    }

    .Header-drop-contB-img {
        width: calc(100% - 320px);
    }

    .Footer-logo .muen a {
        margin-left: 20px;
    }

    .Footer-cont .cont-l {
        padding-right: 30px;
        width: 45%;
    }

    .Footer-cont .cont-r {
        padding-left: 30px;
        width: 55%;
    }

    .Header-navbar>ul>li {
        margin: 0 15px;
    }

    .Footer-copyright .info.link {
        margin-top: 10px;
    }

}

/* ------------------------平板端（开始改变头部底部）-------------------------- */
@media all and (max-width:1100px) {

    /* 1024 横屏 */
    #newBridge #nb_toolbar_wrap.qiao-toolbar-btn-two a.qiao-toolbar-btn-last {
        background: #23b3f6 !important;
    }

    body.bodySearch .Header-navbar {
        visibility: visible;
        opacity: 1;
    }

    .contain {
        width: 92%;
    }

    .Container {
        margin-top: 0px ;
    }

    .Header .contain {
        width: 100%;
    }

    .Header::after {
        opacity: 1;
        display: block
    }

    .Header-logo,
    .Header-search-click,
    .Header-lang-menu {
        height: 60px;
    }

    .Header-logo {
        margin-left: 4%;
        width: 110px;
    }

    .Header-navclick {
        display: flex;
        margin-right: 4%;
    }

    .Header-lang.active .Header-lang-menu {
        color: #666;
    }

    .Header-lang-more {
        width: 120px;
        margin-left: -60px;
    }

    .Header-lang-more a {
        padding: 6px 0;
    }

    .Header-search-click:hover {
        color: #666 !important;
    }

    .Header-search-item {
        display: none;
        width: 100%;
        line-height: normal;
        height: 45px;
        top: 60px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0;
        background: #fff;
    }

    .Header-search-item .contain {
        padding-right: 0;
    }

    .Header-search-item input[type="text"] {
        width: 100%;
        height: 44px;
        padding: 0 50px 0 4%;
        border-bottom: none;
    }

    .Header-search-item.active input[type="text"] {
        animation: none;
    }

    .Header-search-item button {
        position: absolute;
        right: 0;
        top: 0;
        width: 44px;
        height: 46px;
        top: -1px;
        background: #23b3f6;
        z-index: 2;
        color: #fff;
    }

    .Header-navbar {
        display: none;
        position: absolute;
        width: 100%;
        margin-right: 0;
        height: calc(100vh - 60px);
        top: 60px;
        left: 0;
        padding: 20px 0;
        background: #fff;
    }

    .Header-navbar>ul {
        display: block;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .Header-navbar>ul>li {
        display: block;
        width: 100%;
        opacity: 0;
        transform: translateY(32px);
        transition: all .4s ease;
        margin: 0;
    }

    .Header-navbar.active>ul>li {
        opacity: 1;
        transform: translateY(0);
    }

    .Header-menu {
        height: 44px;
        padding: 0 4%;
    }

    .Header-arrow {
        display: block;
        width: 44px;
        height: 44px;
        line-height: 44px;
        transform: rotate(180deg);
        font-size: 18px;
        font-style: normal;
        color: #666;
        text-align: center;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
    }

    .Header-arrow::after {
        content: "\e727";
        font-family: "icon";
    }

    .Header-arrow.active {
        transform: rotate(0);
    }

    .Header-navbar>ul>li:hover .Header-menu {
        color: #666;
    }

    .Header-navbar>ul>li.active .Header-menu {
        color: #23b3f6;
    }

    .Header-drop {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
        overflow: hidden;
        padding: 8px 0;
        border-radius: 0;
        border: none;
        background: #f9f9f9;
        backdrop-filter: inherit;
        box-shadow: none;
    }

    .Header-drop::before {
        display: none;
    }

    .Header-drop-menu>a {
        justify-content: flex-start;
        padding: 8px 4%;
        font-size: 14px;
    }

    .Footer-items {
        padding: 32px 0 36px;
    }

    .Footer-items .contain {
        width: 100%;
    }

    .Footer-navbar {
        width: 100%;
    }

    .Footer-navbar>ul>li {
        width: 100% !important;
    }

    .Footer-menu {
        height: 40px;
        align-items: center;
        padding: 0 4%;
        position: relative;
    }

    .Footer-arrow {
        display: block;
        width: 44px;
        height: 40px;
        line-height: 40px;
        transform: rotate(180deg);
        font-size: 18px;
        font-style: normal;
        color: #fff;
        text-align: center;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
    }

    .Footer-arrow::after {
        content: "\e727";
        font-family: "icon";
    }

    .Footer-arrow.active {
        transform: rotate(0);
    }

    .Footer-drop {
        display: none;
        margin-top: 0;
    }

    .Footer-drop-menu>a {
        padding: 7px 4%;
        width: 100%;
    }

    .Footer-code {
        justify-content: center;
        margin-top: 28px;
        padding: 0 4%;
    }

    .Footer-friend {
        display: none;
    }

    .Footer-copyright .contain {
        padding: 20px 0;
    }

    .Footer-copyright .info.text {
        display: block;
    }

    .Footer-copyright .info.text p {
        display: inline;
    }

    .Footer-copyright .info.link {
        width: 100%;
        margin-top: 8px;
    }

    .Footer-copyright .info p:not(:first-child) {
        margin-left: 8px;
    }

    .Header .contain {
        padding: 0px;
    }

    .Header-lang {
        margin: 0px 15px;
        padding-left: 15px;
    }

    .Header-search-click {
        font-size: 16px;
    }

    .Header-lang::before {
        width: 2px;
        height: 16px;
    }

    .Header-menu::before {
        display: none;
    }

    .Header-drop-contA-contain {
        padding: 0px;
    }

    .Header-drop-contA-contain .cont-l {
        width: 100%;
        padding-right: 0px;
    }

    .Header-drop-contA-contain .cont-r {
        display: none;
    }

    .Header-drop-contA-list {
        margin-right: 0px;
    }

    .Header-drop-contA-list .list {
        width: 100%;
        margin-right: 0px;
        height: auto;
        border-bottom: 0px;
    }

    .Header-drop-contA-list .list div {
        width: 100%;
        max-width: 100%;
        padding: 8px 4%;
        font-size: 14px;
        line-height: 24px;
    }

    .Header-drop-contA-list .list i {
        display: none;
    }

    .Header-drop-contA-list .list::before {
        display: none;
    }

    .Header-drop-contB-contain {
        padding: 0px;
    }

    .Header-drop-contC-contain {
        padding: 0px;
    }

    .Header-drop-contC-list {
        margin: 0px;
    }

    .Header-drop-contC-list .list {
        width: 100%;
        margin: 0px;
    }

    .Header-drop-contC-list .list .img {
        display: none;
    }

    .Header-drop-contC-list .list .title {
        margin-top: 0px;
        font-size: 14px;
        line-height: 24px;
        padding: 8px 4%;
    }

    .Header-drop-contB-contain::before {
        display: none;
    }

    .Header-drop-contB-contain .cont-l {
        width: 100%;
        padding: 0px 4%;
        display: none;
    }

    .Header-drop-contB-contain .cont-r {
        width: 100%;
        padding-left: 0px;
    }

    .Header-drop-contB-hide {
        display: flex;
    }

    .Header-drop-contB-list .list.active div {
        color: #333;
    }

    .Header-drop-contB-list {
        width: 100%;
        padding-right: 0px;
    }

    .Header-drop-contB-img {
        display: none;
    }

    .Header-drop-contB-list .list {
        width: 100%;
        margin-right: 0px;
        height: auto;
        border-bottom: 0px;
    }

    .Header-drop-contB-list .list div {
        width: 100%;
        max-width: 100%;
        padding: 8px 4%;
        font-size: 14px;
        line-height: 24px;
    }

    .Header-drop-contB-list .list i {
        display: none;
    }

    .Header-drop-contB-list .list::before {
        display: none;
    }

    .Header-drop-contB-muen .item {
        height: 45px;
        padding: 0px 15px;
    }

    .Footer-logo {
        padding: 0px 4%;
        padding-bottom: 20px;
    }

    .Footer-logo .muen {
        margin-top: 15px;
        width: 100%;
        justify-content: space-between;
    }

    .Footer-logo .muen a {
        margin-left: 0px;
    }

    .Footer-cont {
        padding: 0px 4%;
    }

    .Footer-cont .cont-l {
        width: 100%;
        padding-right: 0px;
    }

    .Footer-cont .cont-r {
        width: 100%;
        padding-left: 0px;
        margin-top: 25px;
    }

    .Footer-hit .img {
        width: 50%;
        align-items: center;
        margin-top: 25px;
    }

    .Footer-hit .img img {
        width: 100% ;
        display: block ;
    }

    .Footer-from {
        margin-right: -10px;
        margin-bottom: -10px;
    }

    .Footer-from .list {
        width: calc(100%/2 - 10px);
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .Footer-from .list:nth-child(5) {
        width: calc(100%/1 - 10px);
    }

    .Footer-from .list textarea {
        height: 50px;
        padding-top: 5px;
    }

    .Footer-copyright .info.link {
        justify-content: center;
    }

    .Footer-copyright .info {
        font-size: 12px;
    }

    .Footer-copyright .info.text {
        text-align: center;
    }

    .Header-navbar>ul>li {
        height: auto;
    }

    .Header {
        height: 60px;
    }

    .CommonBtn .link:before {
        width: 45px;
        height: 45px;
    }

    .CommonBtn a:before {
        width: 45px;
        height: 45px;
    }

    .CommonBtn .icon {
        margin-right: 12px;
        padding-top: 2px;
    }

    .Footer-from .list:nth-child(6) {
        width: 100%;
    }

    .Footer-from .list .btn {
        width: 100%;
        font-size: 15px;
    }

    .Footer-from .list:nth-child(6) input {
        flex: unset;
        width: calc(50% - 5px);
    }

    .Footer-from .list:last-child {
        width: 100%;
    }

    .IndTitle .title {
        margin-top: 10px;
        font-size: 18px;
        line-height: 24px;
    }

    .Footer-iphone .iphone:nth-child(1) {
        letter-spacing: 0.5px;
    }

    .Footer-copyright .info {
        font-size: 12px;
    }

    .Footer-iphone {
        display: flex;
    }

    .Footer-iphone .iphone:nth-child(2) {
        margin: 0 0 0 10px;
    }

}

@media all and (max-width:1000px) {
    /* 720 竖屏 */
}

/* ------------------------手机端-------------------------- */
@media all and (max-width:720px) {
    /* 移动终端 360 适配 */
}