@charset "utf-8";

/* ====================公共样式========================= */
/* 头部 */
.Header {
    width: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: #000;
    user-select: none;
}

.Header-logo {
    float: left;
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

.Header-logo img {
    max-width: 100%;
}

.Header-lang {
    float: right;
    display: flex;
    align-items: center;
    height: 50px;
    margin-left: 10px;
    font-size: 15px;
    color: #fff
}

.Header-lang::before {
    content: "\e519";
    font-family: "icon";
    margin: 2px 4px 0 0;
}

.Header-search {
    float: right;
}

.Header-search-click {
    width: 40px;
    height: 50px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.Header-search-click::after {
    content: "\e649";
    font-family: "icon";
}

.Header-search-click.active::after {
    content: "\e64e";
}

.Header-search-item {
    display: none;
    position: absolute;
    width: 100%;
    height: 50px;
    line-height: 44px;
    top: 0;
    left: 0;
    z-index: 99;
    text-align: right;
}

.Header-search-item .contain {
    padding-right: 114px;
}

.Header-search-item.active {
    display: block;
}

.Header-search-item input,
.Header-search-item button {
    display: inline-block;
    vertical-align: middle;
}

.Header-search-item input[type="text"] {
    width: 0px;
    height: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'OR';
    font-size: 15px;
    color: #fff;
    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: 40px;
    height: 30px;
    font-size: 16px;
    color: #fff;
    background: transparent;
    cursor: pointer;
    margin-right: 0;
}

.Header-search-item button::after {
    content: "\e649";
    font-family: "icon";
}

body.onSearch .Header-navbar {
    visibility: hidden;
    opacity: 0;
}

.Header-navbar {
    float: right;
    margin-right: 84px;
    visibility: visible;
    opacity: 1;
}

body.PC .Header-navbar {
    display: block !important;
}

.Header-navbar li {
    float: left;
    margin-right: 40px;
    position: relative;
    z-index: 9;
}

.Header-navbar li:last-child {
    margin-right: 0;
}

.Header-menu {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
    transition: color .4s ease;
}

.Header-menu::before {
    content: "";
    width: 100%;
    left: 0;
    opacity: 0;
    height: 4px;
    position: absolute;
    bottom: 0;
    background: #e95f35;
    transition: all .4s ease;
}

.Header-navbar li:hover .Header-menu,
.Header-navbar li.active .Header-menu {
    color: #e95f35;
}

.Header-navbar li.active .Header-menu::before {
    opacity: 1;
}

.Header-arrow {
    display: none;
}

.Header-drop {
    display: none;
    position: absolute;
    background: #000;
    top: 50px;
    left: 50%;
    width: 230px;
    margin-left: -100px;
    padding: 12px 0;
}

.Header-drop>a {
    display: flex;
    width: 100%;
    height: 40px;
    font-size: 14px;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}

.Header-drop>a.active,
.Header-drop>a:hover {
    background: #e95f35;
    color: #fff;
}

/* -- */
.Header-drop.Header-product {
    width: 240px;
    margin-left: -120px;
}

.Header-product-menu {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8px 0 12px;
    justify-content: space-between;
}

.Header-product-menu>a {
    display: flex;
    height: 40px;
    font-size: 14px;
    color: #fff;
    align-items: center;
    transition: all .4s ease;
}

.Header-product-menu:hover>a {
    color: #e95f35;
}

.Header-product-menu>i {
    font-size: 14px;
    color: #fff;
    height: 40px;
    line-height: 44px;
    transition: all .4s ease
}

.Header-product-menu:hover>i {
    color: #e95f35;
}

.Header-product-drop {
    position: absolute;
    left: 240px;
    top: -12px;
    background: #111;
    display: none;
    width: 282px;
    padding: 12px 0
}

.Header-product-drop a {
    display: flex;
    height: 40px;
    font-size: 14px;
    color: #fff;
    align-items: center;
    padding: 0 12px;
    transition: all .4s ease;
}

.Header-product-drop a:hover {
    background: #e95f35;
    color: #fff;
}

.Header-navclick {
    display: none;
    width: 24px;
    height: 50px;
    cursor: pointer;
    float: right;
    user-select: none;
    align-items: center;
}

.Header-navclick span {
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
    position: relative;
    transition: all .2s linear;
}

.Header-navclick span:before,
.Header-navclick span:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #fff;
    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: #1d1d1d;
    position: relative;
    z-index: 9;
    padding: 90px 100px 0 160px;
}

.Footer-navbar {
    max-width: 100%;
    /* width: 1450px; */
    width: 94%;
    margin: 0 auto;
}

.Footer-navbar ul {
    justify-content: space-between;
}

.Footer-navbar li {
    width: auto;
    position: relative;
}

.Footer-menu {
    font-size: 18px;
    color: #b5b5b5;
    display: flex;
    user-select: none;
}

.Footer-arrow {
    display: none;
    user-select: none;
}

.Footer-drop {
    width: 100%;
    margin-top: 4px;
    font-size: 16px;
    user-select: none;
}

body.PC .Footer-drop {
    display: block !important;
}

.Footer-drop a {
    display: block;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    padding: 8px 0;
    transition: all .4s ease;
}

.Footer-drop a:hover {
    color: rgb(215, 23, 24);
}

.Footer-cont {
    max-width: 280px;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    margin-top: 10px;
}

.Footer-info {
    max-width: 296px;
    margin-top: 10px;
}

.Footer-info p {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
}

.Footer-info p:not(:first-child) {
    margin-top: 16px;
}

.Footer-info p.dz {
    background: url('../images/common/Fic1.svg') no-repeat left top/22px auto;
}

.Footer-info p.dh {
    background: url('../images/common/Fic2.svg') no-repeat left top 2px/18px auto;
}

.Footer-info p.cz {
    background: url('../images/common/Fic3.svg') no-repeat left top 2px/20px auto;
}

.Footer-info p.yx {
    background: url('../images/common/Fic4.svg') no-repeat left top 2px/20px auto;
}

.Footer-info p.ws {
    background: url('../images/common/Fic5.svg') no-repeat left top 2px/21px auto;
}

.Footer-code {
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
}

.Footer-code img {
    width: 130px;
}

.Footer-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 24px;
}

.Footer-icon a {
    line-height: 1;
}

.Footer-icon a:not(:first-child) {
    margin-left: 12px;
}

.Footer-icon a i {
    font-size: 30px;
    color: #fff;
    transition: all .4s ease;
}

.Footer-icon a i.icon-facebook,
.Footer-icon a i.icon-twitter {
    background: #fff;
    color: #1d1d1d;
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 3px;
    overflow: hidden;
}

.Footer-icon a i.icon-youtube {
    font-size: 32px;
}

.Footer-icon a i.icon-facebook {
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 26px;
}

.Footer-icon a i.icon-facebook:before {
    margin: 0 -5px -1px 0;
}

.Footer-icon a i.icon-twitter {
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.Footer-icon a:hover i {
    color: rgb(215, 23, 24);
}

.Footer-icon a i.icon-facebook:hover,
.Footer-icon a i.icon-twitter:hover {
    background: rgb(215, 23, 24);
    color: #1d1d1d;
}

.Footer-logo {
    width: 100%;
    margin-top: -16px;
}

.Footer-logo img {
    max-width: 202px;
}

.Footer-copyright {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 28px 0;
    margin-top: 54px
}

.Footer-copyright p {
    font-size: 15px;
    color: #fff;
}

.Footer-copyright a {
    font-size: 15px;
    color: #fff;
}

/* 置顶 */
.backTop {
    display: none;
    right: 40px;
    bottom: 60px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 23px;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    cursor: pointer;
    z-index: 9999;
    background: rgb(215, 23, 24);
}

.backTop::after {
    content: "\e684";
    font-family: "icon";
}

@media all and (max-width:1590px) {
    .backTop {
        right: 30px;
        bottom: 40px;
    }
}

@media all and (max-width:640px) {
    .backTop {
        right: 8px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        background-size: 20px auto;
    }
}

/* 视频弹窗 */
.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 {
    width: 1000px;
    position: relative;
    opacity: 0;
}

.popVideo-video {
    width: 100%;
}

.popVideo-video video {
    width: 100%;
}

.popVideo-video iframe {
    width: 100%;
    height: 500px;
}

.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 {
        height: 400px;
    }
}

@media all and (max-width:640px) {
    .popVideo-video iframe {
        height: 200px;
    }
}

/* 留言 */
.toMessage {
    background: #fff;
    z-index: 14;
    overflow: visible !important;
}

.toMessage.bg {
    background: #f4f6f9
}

.toMessage-title {
    width: 100%;
    text-align: center;
    color: #000
}

.toMessage.cm .toMessage-title {
    color: #d84a27
}

.toMessage-form {
    width: 100%
}

.toMessage-form ul {
    justify-content: space-between;
    margin-top: -20px
}

.toMessage-form li {
    width: calc(50% - 30px);
    margin-top: 20px;
    position: relative
}

.toMessage-form li.long {
    width: calc(100% - 30px);
}

.toMessage-form li input {
    height: 54px;
    border-bottom: 1px solid #b5b5b5;
    width: 100%;
    font-size: 16px;
    color: #000;
    padding-top: 18px;
    background: transparent
}

.toMessage-form li .hint {
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    line-height: 1;
    transition: all .4s ease;
    transform: translateY(18px);
    user-select: none;
    pointer-events: none
}

.toMessage-form li .hint span {
    color: #ff0000;
    font-weight: 700;
    margin-left: 4px;
}

.toMessage-form li.active .hint {
    transform: translateY(0);
    opacity: .6
}

.toMessage-form li:last-child {
    width: 100%;
    margin-top: 42px
}

.toMessage-form li button {
    margin: 0 auto;
    width: fit-content;
    height: 48px;
    border: 1px solid #d8d8d8;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2px 20px 0 30px;
    cursor: pointer;
    justify-content: space-between;
    transition: border .4s ease
}

.toMessage-form li button * {
    position: relative;
    z-index: 4;
    transition: all .4s ease
}

.toMessage-form li button span {
    font-size: 15px;
    color: #000
}

.toMessage-form li button i {
    width: 16px;
    height: 7px;
    margin-left: 10px;
    background: url('../images/index/indlyArr.png') no-repeat center
}

.toMessage-form li button::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    background: #d84a27;
    top: 0;
    right: 0;
    opacity: 0;
    transition: width .4s ease, opacity .1s ease .4s
}

.toMessage-form li button:hover {
    border-color: #d84a27
}

.toMessage-form li button:hover span {
    color: #fff
}

.toMessage-form li button:hover i {
    background-image: url('../images/index/indlyArrH.png')
}

.toMessage-form li button:hover::before {
    opacity: 1;
    width: 100%;
    right: auto;
    left: 0;
    transition: width .4s ease .1s, opacity .1s ease
}

/* -- */
.isSelect {
    position: relative;
}

.customSelect {
    display: block;
    width: 100%;
    position: relative;
    user-select: none;
}

.customSelect.noEvent {
    pointer-events: none;
    opacity: 0.5;
}

.customSelect-name {
    font-size: 16px;
    height: 54px;
    color: #000;
    padding-top: 18px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #b5b5b5;
}

.customSelect-name p {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 92%;
}

.customSelect-name,
.customSelect-drop {
    border-radius: 0px;
}

.customSelect-name::after {
    content: "\e6b5";
    position: absolute;
    font-family: "icon";
    font-size: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    right: 0;
    top: 0;
}

.customSelect-drop {
    width: 100%;
    background: #fff;
    display: none;
    position: absolute;
    z-index: 10;
    top: calc(100% - 1px);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    left: 0;
    overflow: hidden;
    padding: 16px 0;
}

.customSelect-drop .scroll {
    width: 100%;
    max-height: 340px;
    overflow-x: hidden;
    overflow-y: auto;
}

.customSelect-drop .scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 4px;
}

.customSelect-drop .scroll::-webkit-scrollbar-thumb {
    background: #d84a27;
}

.customSelect-drop .scroll::-webkit-scrollbar-track {
    background: #dcdcdc;
}

.customSelect-drop .select {
    height: 36px;
    font-size: 16px;
    color: #000;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all .4s ease;
    cursor: pointer;
    padding: 0 20px;
}

.customSelect-drop .select:hover,
.customSelect-drop .select.active {
    color: #d84a27;
}

.customSelect-null {
    display: none;
}

.customSelect-name.noRadius::after {
    transform: rotateX(180deg);
}

.isSelect.on .hint {
    transform: translateY(0);
    opacity: .6
}

/* -- */
.isSelectDuo .customSelect-drop {
    padding: 20px 0 20px 20px;
}

.isSelectDuo .customSelect-drop .menu,
.isSelectDuo .customSelect-drop .teshu {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    padding: 12px 0 6px;
}

.isSelectDuo .customSelect-drop .menu:first-of-type {
    margin-top: 0;
}

.isSelectDuo .customSelect-drop .text {
    font-size: 16px;
    color: #000;
    padding: 4px 0;
}

.isSelectDuo .customSelect-drop .xuanze {
    transition: color .4s ease;
    cursor: pointer;
    align-items: center;
    display: flex;
}

.isSelectDuo .customSelect-drop .xuanze i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-style: normal;
    border: 1px solid #9b9b9b;
    margin-right: 10px;
    position: relative;
    transition: border .4s ease;
}

.isSelectDuo .customSelect-drop .xuanze i::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d84a27;
    left: 50%;
    top: 50%;
    margin: -4px 0 0 -4px;
    opacity: 0;
    transition: opacity .4s ease;
}

.isSelectDuo .customSelect-drop .xuanze:hover {
    color: #d84a27;
}

.isSelectDuo .customSelect-drop .xuanze:hover i {
    border-color: #d84a27;
}

.isSelectDuo .customSelect-drop .xuanze.active i::before {
    opacity: 1;
}

.isSelectDuo .customSelect-drop .xuanze.active i {
    border-color: #d84a27;
}

.isSelectDuo .customSelect-drop .xuanze.active {
    color: #d84a27;
}

@media all and (max-width:1270px) {
    .toMessage-form ul {
        margin-top: -15px
    }

    .toMessage-form li {
        width: calc(50% - 20px);
        margin-top: 15px
    }

    .toMessage-form li.long {
        width: calc(100% - 20px);
    }

    .toMessage-form li:last-child {
        margin-top: 32px
    }

    .toMessage-form li button {
        width: 200px
    }
}

@media all and (max-width:1000px) {
    .toMessage-form li {
        width: calc(50% - 10px)
    }
}

@media all and (max-width:640px) {
    .toMessage-form li {
        width: 100% !important
    }

    .toMessage-form li input {
        height: 45px;
        padding-top: 14px
    }

    .toMessage-form li .hint {
        transform: translateY(15px)
    }

    .toMessage-form {
        margin-top: 20px
    }

    .toMessage-form li:last-child {
        margin-top: 28px
    }

    .toMessage-form li button {
        width: 160px;
        height: 42px;
        padding: 2px 16px 0 20px
    }

    /* -- */
    .customSelect-name {
        height: 45px;
        padding-top: 14px;
    }

    .customSelect-drop .scroll {
        max-height: 240px;
    }
}

/* 中间+共用部分 */
.Container {
    width: 100%;
    margin-top: 50px;
}

.section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contain-1600,
.contain-1536,
.contain-1460,
.contain {
    margin: 0 auto;
}

.contain-1600 {
    width: 1600px;
}

.contain-1536 {
    width: 1536px;
}

.contain-1460 {
    width: 1460px;
}

.contain {
    width: 1280px;
}




/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {

    /* 1600 × (900) */
    .contain-1600,
    .contain-1536,
    .contain-1460 {
        width: 1400px;
    }

    .Footer {
        padding: 80px 80px 0 100px;
    }

    .Footer-drop a {
        font-size: 16px;
        max-width: 202px;
    }
}

@media all and (max-width:1590px) {

    /* 1440 × (700)  */
    .contain-1600,
    .contain-1536,
    .contain-1460 {
        width: 1200px;
    }

    .contain {
        width: 1080px;
    }

    .Footer {
        padding: 70px 70px 0 80px;
    }

    .Footer-menu {
        font-size: 16px;
    }

    .Footer-drop a {
        font-size: 14px;
        padding: 7px 0;
        max-width: 180px;
    }

    .Footer-cont {
        max-width: 260px;
        font-size: 14px;
        line-height: 24px;
        margin-top: 6px;
    }

    .Footer-info p {
        font-size: 14px;
        line-height: 24px;
    }

    .Footer-info p:not(:first-child) {
        margin-top: 12px;
    }

    .Footer-code img {
        width: 130px;
    }

    .Footer-icon a i {
        font-size: 26px;
    }

    .Footer-icon a i.icon-youtube {
        font-size: 28px;
    }

    .Footer-icon a i.icon-facebook,
    .Footer-icon a i.icon-twitter {
        width: 26px;
        height: 26px;
    }

    .Footer-icon a i.icon-twitter {
        font-size: 18px;
    }

    .Footer-icon a i.icon-facebook {
        font-size: 22px;
    }

    .Footer-icon a i.icon-facebook:before {
        margin: 0 -3px -1px 0;
    }

    .Footer-info {
        max-width: 280px;
        margin-top: 8px;
    }

    .Footer-code {
        margin-top: 12px;
    }

    .Header-navbar li {
        margin-right: 30px;
    }
}

@media all and (max-width:1430px) {

    /* 1360 */
    .Footer {
        padding: 60px 50px 0 60px;
    }

    .Footer-icon a:not(:first-child) {
        margin-left: 10px;
    }
}

@media all and (max-width:1350px) {

    /* 1280 */
    .Footer-navbar li {
        width: 33.3333%;
        margin-top: 20px;
    }

    .Footer-code {
        text-align: left;
    }

    .Footer-icon {
        justify-content: flex-start;
    }

    .Footer-navbar li:nth-child(-n+3) {
        margin-top: 0;
    }

    .Footer-logo {
        margin-top: 24px;
    }
}

@media all and (max-width:1270px) {

    /* 1152 × (700) */
    .contain-1600,
    .contain-1536,
    .contain-1460 {
        width: 960px;
    }

    .contain {
        width: 880px;
    }

    @keyframes HeaderSearch {
        0% {
            width: 0;
        }

        100% {
            width: 400px;
        }
    }

    .Footer {
        padding: 50px 50px 0;
    }
}

@media all and (max-width:1140px) {
    /* 1024 */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

    /* 平板设备 720 适配 */
    body.onSearch .Header-navbar {
        visibility: visible;
        opacity: 1;
    }

    .contain-1600,
    .contain-1536,
    .contain-1460,
    .contain {
        width: 92%;
    }

    .Header .contain {
        width: 100%;
    }

    .Header::after {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        background: rgba(255, 255, 255, 0.2);
        left: 0;
        bottom: 0;
    }

    .Header-logo {
        margin-left: 4%;
        width: 100px;
    }

    .Header-navclick {
        display: flex;
        margin-right: 4%;
    }

    .Header-search {
        margin-right: 8px;
    }

    .Header-search-item {
        display: none;
        width: 100%;
        line-height: normal;
        height: 45px;
        top: 50px;
        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;
        color: #000;
    }

    .Header-search-item.active input[type="text"] {
        animation: none;
    }

    .Header-search-item button {
        position: absolute;
        right: 0;
        top: 0;
        width: 45px;
        height: 45px;
        background: #e95f35;
        z-index: 2;
        color: #fff;
    }

    .Header-navbar {
        display: none;
        position: absolute;
        width: 100%;
        margin-right: 0;
        height: calc(100vh - 50px);
        top: 50px;
        left: 0;
        padding: 20px 0;
        background: #000;
    }

    .Header-navbar ul {
        display: block;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch
    }

    .Header-navbar li {
        display: block;
        width: 100%;
        opacity: 0;
        transform: translateY(32px);
        transition: all .4s ease;
        margin: 0;
    }

    .Header-navbar.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .Header-menu {
        height: 44px;
        padding: 0 4%;
        transform: translate3d(0, 0, 0);
    }

    .Header-menu::before {
        display: none;
    }

    .Header-arrow {
        display: block;
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 16px;
        font-style: normal;
        color: #fff;
        text-align: center;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
    }

    .Header-arrow::after {
        content: "\e61f";
        font-family: "icon";
    }

    .Header-arrow.active::after {
        content: "\e61e";
    }

    .Header-navbar li:hover .Header-menu {
        color: #fff;
    }

    .Header-navbar li.active .Header-menu {
        color: #e95f35;
    }

    .Header-drop {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
        overflow: hidden;
        padding: 8px 0;
        background: #1d1d1d;
    }

    .Header-drop>a {
        height: 34px;
        justify-content: flex-start;
        padding: 0 4%;
        font-size: 15px;
    }

    .Header-drop.Header-product {
        width: 100%;
        margin-left: 0;
        padding: 0
    }

    .Header-product-menu {
        padding: 0;
        flex-wrap: wrap;
    }

    .Header-product-menu:hover>a {
        color: #fff;
    }

    .Header-product-menu:hover>i {
        color: #fff;
    }

    .Header-product-menu>a {
        width: 100%;
        height: 38px;
        justify-content: flex-start;
        padding: 0 4%;
        font-size: 15px;
    }

    .Header-product-menu>i {
        position: absolute;
        width: 44px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        z-index: 2;
        top: 0;
        right: 0
    }

    .Header-product-menu>i.active {
        color: #e95f35;
    }

    .Header-product-drop {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        padding: 8px 0
    }

    .Header-product-drop a {
        height: 34px;
        font-size: 14px;
        padding: 0 4%;
    }

    .Header-lang {
        margin: 0 16px 0 0;
    }

    .Footer {
        padding: 24px 0 0;
    }

    .Footer-navbar {
        width: 100%;
    }

    .Footer-navbar li {
        width: 100% !important;
        margin: 0 !important;
    }

    .Footer-menu {
        height: 36px;
        align-items: center;
        padding: 0 4%;
        position: relative;
    }

    .Footer-arrow {
        display: block;
        width: 44px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
        font-style: normal;
        color: #fff;
        text-align: center;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
    }

    .Footer-arrow::after {
        content: "\e61f";
        font-family: "icon";
    }

    .Footer-arrow.active::after {
        content: "\e61e";
    }

    .Footer-drop a {
        padding: 6px 4%;
        font-size: 14px;
        max-width: none;
    }

    /* .Footer-drop{display: none;margin-top: 0;} */
    .Footer-cont,
    .Footer-info {
        max-width: 100%;
        width: 100%;
        padding: 0 4%;
        margin: 0 0 10px 0;
    }

    .Footer-info p:not(:first-child) {
        margin-top: 8px;
    }

    .Footer-code {
        width: 100%;
        padding: 0 4%;
        margin-top: 4px;
    }

    .Footer-code img {
        width: 110px;
    }

    .Footer-icon {
        margin-top: 16px;
        width: 100%;
        padding: 0 4%;
    }

    .Footer-logo {
        display: none;
    }

    .Footer-icon a i {
        font-size: 24px;
    }

    .Footer-icon a i.icon-youtube {
        font-size: 26px;
    }

    .Footer-icon a i.icon-facebook,
    .Footer-icon a i.icon-twitter {
        width: 24px;
        height: 24px;
    }

    .Footer-icon a i.icon-twitter {
        font-size: 16px;
    }

    .Footer-icon a i.icon-facebook {
        font-size: 20px;
    }

    .Footer-copyright {
        padding: 20px 4%;
        margin-top: 24px;
        text-align: left;
    }

    .Footer-copyright p,
    .Footer-copyright a {
        font-size: 12px;
    }
}

@media all and (max-width:640px) {

    /* 移动终端以上 360 适配 */

    /* licf add */
    .toMessage-form li button {
        width: fit-content;
    }
}