/* ====================公共样式========================= */

video::-internal-media-controls-overflow-menu-list-item {
    display: none !important;
}
/* pc端显示 手机端隐藏 */

@media screen and (max-width: 768px) {
 .mnone{
display:none; }
}
/* PC端隐藏 手机端显示 */
.pcnone{
    display: none;
}
@media (max-width: 767px) {
  .pcnone{
    display: block !important;
  }
}

/* 头部 */

.Header-wrapper {
    width: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: transparent;
    user-select: none;
    /* border-bottom: 1px solid #e7e7e7 */
}

.Header-logo {
    float: left;
    height: 90px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

.Header-logo img {
    /*height: auto;*/
    height: 68px;
}

.Header-stock {
    float: left;
    height: 90px;
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    padding-left: 20px;
    margin-left: 20px
}


.Header-stock:after {
    content: '';
    height: 40px;
    width: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    border-left: 1px dashed #ababab;
    transform: translateY(-50%)
}

.Header-stock p:nth-child(1) {
    font-size: 1.8em;font-weight:bold;
    color: #000
}

.Header-stock p:nth-child(2) {
    font-size: 10.8px;
    color: #666
}

.Header-lang {
    float: right;
    position: relative;
    z-index: 999;
    margin-left: 20px
}

.Header-lang-menu {
    display: flex;
    align-items: center;
    height: 90px;
}

.Header-lang-menu span {
    display: block;
    padding-left: 20px;
    background: url('../image/lang.svg') no-repeat left center /20px auto;
    line-height: 22px;
    font-size: 0
}

.Header-lang.active .Header-lang-menu span {
    color: #195d34;
}


/* 多个语言 */

.Header-lang-more {
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 9;
    width: 80px;
    background: #fff;
    position: absolute;
    top: 90px;
    left: -30px
}

.Header-lang-more:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 8px 8px;
    border-color: transparent transparent #efefef transparent;
    position: absolute;
    top: -8px;
    left: 50%;
    margin: 0 0 0 -8px;
}

.Header-lang-more a {
    display: block;
    font-size: 16px;
    color: #666;
    text-align: center;
    padding: 10px 0;
}

.Header-lang-more a span {
    display: inline-block;
}

.Header-lang-more a:hover {
    color: #fff;
    background: #195d34;
}

.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;
}

.Header-search-click {
    width: 40px;
    height: 90px;
    cursor: pointer;
    background: url('../image/search.svg') no-repeat center /26px auto;
    position: relative;
    z-index: 999;
}

.Header-search-click.active {
    background: url('../image/close.svg') no-repeat center/20px auto;
}

.Header-search-item {
    display: none;
    position: absolute;
    width: 100%;
    height: 90px;
    line-height: 90px;
    top: 0;
    left: 0;
    z-index: 99;
    text-align: right;
}

.Header-search-item .contain {
    padding-right: 148px;
}

.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: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #747474;
    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;
    background: url('../image/search.svg') no-repeat center /26px auto;
    cursor: pointer;
    margin-right: 0;
}

body.onSearch .Header-navbar {
    visibility: hidden;
    opacity: 0;
}

.Header-navbar {
    float: right;
    margin-right: 40px;
    visibility: visible;
    opacity: 1
}

body.PC .Header-navbar {
    display: block !important
}

.Header-navbar li {
    float: left;
    padding: 0 30px;
    z-index: 9;
    position: relative
}

.Header-navbar li:last-child {
    margin-right: 0
}

.Header-navbar li:first-child {
    margin-left: 0
}

.Header-menu {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #000;
    transition: color .4s ease
}

.Header-menu::before {
    content: "";
    width: 100%;
    left: 0;
    opacity: 0;
    height: 3px;
    position: absolute;
    bottom: -1px;
    background: #195d34;
    transition: all .4s ease
}

.Header-navbar li.active .Header-menu,
.Header-navbar li:hover .Header-menu {
    color: #195d34
}

.Header-navbar li.active .Header-menu::before {
    opacity: 1
}

.Header-arrow {
    display: none
}

.Header-drop {
    position: absolute;
    background: rgba(40, 158, 144, .96);
    top: 91px;
    right: -120px;
    padding: 50px;
    display: none
}

.Header-drop-inner {
    width: 100%;
    justify-content: center;
    display: flex
}

.Header-drop-l {
    width: 236px
}

.Header-drop-l img {
    width: 100%;
    object-fit: cover
}

.Header-drop-r {
    min-width: 360px;
    padding-left: 42px;
    position: relative
}

.Header-drop.style-2 .Header-drop-r {
    min-width: 190px
}

.Header-drop-r:after {
    content: '';
    height: 96%;
    width: 1px;
    background: #4990c1;
    position: absolute;
    left: 50%;
    top: 2%
}

.Header-drop.style-2 .Header-drop-r:after {
    display: none
}

.Header-drop-menu:not(:first-of-type) {
    margin-top: 12px
}

.Header-drop-item {
    font-size: 16px;
    color: #fff;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all .4s ease
}

.Header-drop-item:hover,
.Header-drop-list a:hover,
.Header-drop-menu.on .Header-drop-item {
    color: #68cffe
}

.Header-drop-list {
    position: absolute;
    left: calc(55% + 30px);
    top: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    margin-top: -10px;
    max-width: 36%
}

.Header-drop-list.on {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: all 1s ease
}

.Header-drop-list a {
    display: block;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 10px;
    transition: all .4s ease
}

.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: #777;
    display: block;
    position: relative;
    transition: all .2s linear;
}

.Header-navclick span:before,
.Header-navclick span:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #777;
    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-wrapper {
    width: 100%;
    background: #383838;
    position: relative;
    z-index: 9;
    border-top: 0px solid #195d34
}

.Footer-items {
    width: 100%;
    padding: 60px 0 44px
}

.Footer-items .contain {
    display: flex
}

.Footer-info {
    width: 45%;
    border-right: 1px solid #494949;
    display: flex
}

.Footer-info .lft {
    width: 50%
}

.Footer-info .rgt {
    width: 20%;
    margin-left: 15%;
    text-align: center
}

.Footer-info .rgt p {
    font-size: 14px;
    color: #888;
    line-height: 1;
    margin-top: 5px
}

.Footer-sns a+a {
    margin-left: 5px
}

.Footer-info-txt {
	font-size: 18px;
	 color: #ccc;
    margin-top: 18px;
    display: flex;
    align-items: center
}

.Footer-info .rgt img {
    display: block;
    width: 100%
}

.Footer-info-txt .txt {
    width: 100%
}

.Footer-info-txt p+p {
    margin-top: 15px
}

.Footer-info-txt p {
    position: relative;
    padding-left: 26px;
    color: #888;
    font-size: 14px;
    line-height: 16px;
    margin-top: 15px
}

.Footer-info-txt p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0
}

.Footer-info-txt p:nth-child(1):after {
    background: url(../image/Footer-info1.png) no-repeat center/100%;
    width: 17px;
    height: 16px
}

.Footer-info-txt p:nth-child(2):after {
    background: url(../image/Footer-info2.png) no-repeat center/100%;
    width: 15px;
    height: 13px
}

.Footer-info-txt p:nth-child(3):after {
    background: url(../image/Footer-info3.png) no-repeat center/100%;
    width: 14px;
    height: 17px
}

.Footer-navbar {
    width: 55%;
    overflow: hidden;
    user-select: none;
    padding-left: 100px
}

.Footer-navbar ul {
    display: flex;
    justify-content: space-between
}

.Footer-navbar li {
    max-width: 25%
}

.Footer-menu {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    display: block
}

.Footer-drop {
    width: 100%;
    margin-top: 12px
}

body.PC .Footer-drop {
    display: block !important
}

.Footer-drop a {
    display: block;
    font-size: 14px;
    color: #969da6;
    line-height: 1;
    padding: 7px 0;
    transition: all .4s ease
}

.Footer-drop a:hover {
    color: #ffffff
}

.Footer-copyright {
    width: 100%;
    border-top: 1px solid #494949;
    padding: 24px 0
}

.Footer-copyright h6,
.Footer-copyright p {
    color: #888;
    line-height: 18px
}

.Footer-copyright h6 {
    font-size: 14px;
    float: left
}

.Footer-copyright p {
    font-size: 14px;
    float: right
}

.Footer-copyright-list {
    float: right;
    line-height: 18px;
    margin-left: 24px
}

.Footer-copyright-list a {
    color: #888;
    font-size: 14px;
    position: relative
}

.Footer-copyright-list a+a {
    margin-left: 8px;
    padding-left: 12px
}

.Footer-copyright-list a+a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 1px;
    background: #b1b1b1;
    height: 12px
}

.FooterCode {
    width: 100%;
    font-size: 0;
    margin-top: 32px;
}

.FooterCode a {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.FooterCode a {
    width: 32px;
    text-align: center;
    margin: 0 5px;
}

.FooterCode a>img {
    width: 22px;
}

.FooterCode-img {
    display: none;
    width: 152px;
    height: 152px;
    padding: 6px;
    position: absolute;
    bottom: 36px;
    left: 50%;
    margin-left: -76px;
    background: #fff;
    border-radius: 4px;
}

.FooterCode-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;
}

.FooterCode-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.FooterCode a:hover .FooterCode-img {
    display: block;
    animation: FooterCode .6s ease-in-out both;
}

@keyframes FooterCode {
    0% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}


/* 置顶 */

.backTop {
    display: none;
    right: 40px;
    bottom: 60px;
    width: 44px;
    height: 44px;
    position: fixed;
    cursor: pointer;
    z-index: 9999;
    background: #195d34 url('../image/top.svg') no-repeat center/22px auto;
}


/* 中间+共用部分 */

.Container-wrapper {
    width: 100%;
     margin-top: 90px; 
}

.contain-1600,
.contain-1400,
.contain,
.Header-container {
    margin: 0 auto;
}

.contain-1600 {
    width: 1600px;
}

.contain-1400 {
    width: 1400px;
}

.contain {
    width: 1550px
}

.Header-container {
    width: 85%
}


/* 视频弹窗 */

.popVideo {
    display: none;
    opacity: 0;
    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;
    display: none;
    padding: 34px 34px 0;
}

.popVideo-video {
    width: 100%;
}

.popVideo-video video {
    width: 100%;
}

.popVideo-video iframe {
    width: 100%;
    height: 500px;
}

.popVideo-close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    background: url('../image/closeW.svg') no-repeat center/24px auto;
    cursor: pointer;
    opacity: .7;
    transition: all .6s ease;
}

.popVideo-close:hover {
    opacity: 1;
}

@media all and (max-width:1100px) {
    .popVideo-items {
        width: 92%;
        padding: 34px 0 0;
    }

    .popVideo-close {
        right: 0;
    }

    .popVideo-video iframe {
        height: 400px;
    }
}

@media all and (max-width:640px) {
    .popVideo-video iframe {
        height: 200px;
    }
}


/* 动画 */

@keyframes text-active-animation {
    from {
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        filter: Alpha(opacity=100);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}


/* common */

.full-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease
}

.full-width {
    width: 100%;
    object-fit: cover;
    transition: all .8s ease
}

.full-maxWidth {
    max-width: 100%;
    object-fit: cover;
    height: auto;
    transition: all .8s ease
}

.full-maxHeight {
    max-height: 100%;
    width: auto;
    object-fit: cover;
    transition: all .8s ease
}

.full-auto {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover
}

.placeholder {
    visibility: hidden !important;
    height: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center
}


/*flex*/

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.flex-direction-row {
    flex-direction: row
}

.flex-direction-row-reverse {
    flex-direction: row-reverse
}

.flex-direction-column {
    flex-direction: column
}

.flex-wrap-nowrap {
    flex-wrap: nowrap
}

.flex-wrap-wrap {
    flex-wrap: wrap
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse
}

.flex-justify-start {
    justify-content: flex-start
}

.flex-justify-end {
    justify-content: flex-end
}

.flex-justify-center {
    justify-content: center
}

.flex-justify-between {
    justify-content: space-between
}

.flex-align-start {
    align-items: flex-start
}

.flex-align-end {
    align-items: flex-end
}

.flex-align-center {
    align-items: center
}

.height100 {
    height: 100%
}


/*font justify*/

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.inline-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.swiper-button-disabled {
    cursor: not-allowed !important;
    opacity: .6
}

.relative {
    position: relative
}

.swiper-pagination {
    font-size: 0
}


/* -------------------------PC端--------------------------- */

@media all and (max-width:1700px) {

    /* 1600 × (900) */
    .contain-1600,
    .Header-container,
    .contain {
        width: 1400px;
    }
}

@media all and (max-width:1599px) {

    /* 1440 × (700)  */
    .contain-1600,
    .contain-1400,
    .Header-container,
    .contain {
        width: 1200px;
    }

    .backTop {
        right: 30px;
        bottom: 40px;
    }

    .Header-navbar li {
        padding: 0 15px
    }

    .Header-stock {
        margin-left: 15px;
        padding-left: 15px
    }

    .Header-stock p:nth-child(1) {
        font-size: 13px
    }

    .Header-stock p:nth-child(2) {
        font-size: 16px
    }

    .Footer-navbar {
        padding-left: 80px
    }

    .Footer-info-txt p {
        max-width: 90%
    }

    .Header-drop {
        right: 50%;
        transform: translateX(50%)
    }

    .Header-drop-menu:not(:first-of-type) {
        margin-top: 10px
    }

    .Header-drop-r {
        padding-left: 30px
    }

    .Header-navbar {
        margin-right: 30px
    }

    .Footer-info .lft {
        width: 60%
    }

    .Footer-info .rgt {
        margin-left: 5%
    }
}

@media all and (max-width:1439px) {
    /* 1360 */
}

@media all and (max-width:1359px) {
    /* 1280 */
}

@media all and (max-width:1279px) {

    /* 1152 × (700) */
    .contain-1600,
    .contain-1400,
    .contain,
    .Header-container {
        width: 960px;
    }

    .Header-stock {
        display: none
    }

    .Header-lang {
        margin-left: 10px
    }

    .Header-menu {
        font-size: 14px
    }

    .Header-navbar li {
        padding: 0 10px
    }

    .Header-navbar {
        margin-right: 20px
    }

    .Footer-copyright h6,
    .Footer-copyright p {
        text-align: center;
        width: 100%
    }

    .Footer-copyright-list {
        width: 100%;
        margin: 10px 0;
        text-align: center
    }

    .Header-drop-item {
        font-size: 14px
    }

    .Header-drop-l {
        width: 220px
    }

    .Header-drop-r {
        min-width: 380px
    }

    .Header-drop {
        padding: 30px
    }

    .Header-drop-list {
        margin-top: -8px
    }

    .Header-drop-list a {
        margin-top: 6px
    }

    .Header-drop-list a {
        font-size: 13px
    }

    .Footer-info {
        width: 50%
    }

    .Footer-info .lft {
        width: 65%
    }

    .Footer-info .rgt {
        margin-left: 0
    }

    .Footer-navbar {
        padding-left: 50px
    }
}

@media all and (max-width:1151px) {
    /* 1024 */
}


/* ------------------------手机端-------------------------- */

@media all and (max-width:1000px) {

    /* 平板设备 720 适配 */
    body.onSearch .Header-navbar {
        visibility: visible;
        opacity: 1;
    }

    .contain-1600,
    .contain-1400,
    .contain {
        width: 92%;
    }

    .Container-wrapper {
        margin-top: 60px;
    }

    .Header-container {
        width: 100%;
    }

    .Header-wrapper::after {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        background: rgba(0, 0, 0, 0.1);
        left: 0;
        bottom: 0;
    }

    .Header-logo,
    .Header-search-click,
    .Header-lang-menu {
        height: 60px;
    }

    .Header-logo {
        margin-left: 4%;
    }

    .Header-logo img {
        width: auto;
        max-height: 40px;
    }

    .Header-navclick {
        display: flex;
        margin-right: 4%;
    }

    .Header-lang {
        margin: 0 12px 0 4px;
    }

    .Header-lang-more {
        width: 120px;
        margin-left: -60px;
        top: 60px;
    }

    .Header-lang-more a {
        padding: 6px 0;
    }

    .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 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-drop-list {
        width: 50%;
        max-width: 50%
    }

    .Header-drop-r:after {
        left: 40%
    }

    .Header-menu {
        height: 44px;
        padding: 0 4%;
    }

    .Header-menu::before {
        display: none;
    }

    .Header-arrow {
        display: block;
        width: 44px;
        height: 44px;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
        background: url('../image/select.svg') no-repeat center /18px auto;
    }

    .Header-arrow.active {
        transform: rotate(180deg);
    }

    .Header-navbar li:hover .Header-menu {
        color: #747474;
    }

    .Header-navbar li.active .Header-menu {
        color: #195d34;
    }

    .Header-drop {
        position: static;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
        overflow: hidden;
        padding: 10px;
        transform: none
    }

    .Header-navbar li {
        padding: 0
    }

    .Footer-info {
        width: 100%
    }

    .Header-drop a {
        height: 34px;
        line-height: 34px;
        text-align: left;
        padding: 0 4%;
    }

    .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: #195d34 url('../image/searchW.svg') no-repeat center /26px auto !important;
        z-index: 2;
    }

    .Header-search-click.active {
        background-image: url('../image/close.svg') !important;
    }

    .Header-search-click {
        background-image: url('../image/search.svg') !important;
    }

    .Header-drop-l {
        display: none
    }

    .Header-drop-r {
        width: 100%;
        padding: 0
    }

    .Header-drop a {
        width: 100%
    }

    .Footer-items {
        padding: 32px 0 36px;
    }

    .Footer-items .contain {
        width: 100%;
        flex-wrap: wrap
    }

    .Footer-info {
        border: 0
    }

    .Footer-navbar {
        width: 100%;
        padding: 20px 0 0
    }

    .Footer-navbar li {
        width: 100% !important;
    }

    .Footer-menu {
        height: 40px;
        line-height: 40px;
        padding: 0 4%;
        position: relative;
    }

    .Footer-menu::after {
        content: "";
        width: 44px;
        height: 40px;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
        background: url('../image/select.svg') no-repeat center /18px auto;
    }

    .Footer-menu.active::after {
        transform: rotate(180deg);
    }

    .Footer-drop a {
        padding: 7px 4%;
    }

    .Footer-drop {
        display: none;
        margin-top: 0;
    }

    .Footer-copyright h6 {
        width: 100%
    }

    .Footer-copyright {
        padding: 20px 0;
    }

    .FooterCode {
        text-align: center;
        margin-top: 28px;
    }

    .Footer-info {
        width: 92%;
        margin-left: 4%;
        padding: 0 0 20px
    }

    .Footer-navbar ul {
        flex-direction: column
    }

    .Footer-navbar li {
        max-width: 100%;
        width: 100%
    }
}

@media all and (max-width:640px) {

    /* 移动终端以上 360 适配 */
    .backTop {
        right: 8px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        background-size: 20px auto;
    }

    .Footer-copyright h6,
    .Footer-copyright p,
    .Footer-copyright-list a {
        font-size: 12px
    }

    .Footer-copyright-list a+a:after {
        height: 8px;
        top: 4px
    }

    .Header-drop-menu {
        position: relative
    }

    .Header-drop-list {
        position: static;
        opacity: 1;
        visibility: visible;
        max-width: 100%;
        width: 100%;
        transform: none
    }

    .Header-drop-r:after {
        display: none
    }

    .Footer-info {
        flex-wrap: wrap
    }

    .Footer-info .lft {
        width: 100%
    }

    .Footer-info .rgt {
        margin: 20px auto 0;
        width: 30%
    }
}