.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    pointer-events: auto;
    height: 115px;
}

.header.black {
    background-color: #000;
    padding-top: 15px;
    padding-bottom: 15px
}

.header.black .page-name {
    font-size: 20px
}

.header.op0 {
    opacity: 0;
    pointer-events: none
}

.header.black .hd-logo,
.header.black .hd-slogan {
    width: 46.65px
}

.hd-l {
    display: flex;
    align-items: center
}

.hd-logo {
    width: 48px;
    box-sizing: content-box;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s
}

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

.hd-logo2 {
    height: 40px;
    margin-left: 40px;
    margin-top: 8px;
}

.hd-logo2 a {
    width: 150px;
    /* height: 40px; */
    display: flex;
    justify-content: center;
    object-fit: contain;

}

.hd-logo2 a img {
    display: block;
    max-height: 100%;
    width: auto;
    padding-bottom: 20px;
    object-fit: contain;
}

.hd-logo2 a+a {
    width: 150px;
    margin: 0 auto;
    /* height: auto; */
    /* padding-top: 20px; */
}

.hd-logo2 a+a img {
    display: block;
    width: 100%;
    /*height: 100%;*/
}

.hd-logo2 .hover-img {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.hd-logo2:hover .hover-img {
    opacity: 1;
    pointer-events: auto
}

.hd-slogan {
    width: 50px;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s
}

.hd-slogan img {
    display: block;
    width: 100%
}

.hd-r {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.hd-r .user {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .08);
    margin-right: 15px
}

.hd-r .user img {
    display: block;
    width: 100%
}

.hd-r .menu {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding-top: 12px;
    padding-left: 10px
}

.hd-r .menu b {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    position: relative;
    -webkit-transition: all .3s cubic-bezier(.25, .46, .45, .94);
    -moz-transition: all .3s cubic-bezier(.25, .46, .45, .94);
    -ms-transition: all .3s cubic-bezier(.25, .46, .45, .94);
    -o-transition: all .3s cubic-bezier(.25, .46, .45, .94);
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
    transform-origin: center center
}

.hd-r .menu b+b {
    margin-top: 4px
}

.hd-r .menu.open b:nth-child(1) {
    transform: translate(0, 7px) rotate(45deg)
}

.hd-r .menu.open b:nth-child(2) {
    opacity: 0
}

.hd-r .menu.open b:nth-child(3) {
    transform: translate(0, -5px) rotate(-45deg)
}

.site-hamburger-animation {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    transition: background-color .4s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .4s cubic-bezier(.4, 0, .2, 1);
    transition: clip-path .4s cubic-bezier(.4, 0, .2, 1), background-color .4s cubic-bezier(.4, 0, .2, 1);
    transition: clip-path .4s cubic-bezier(.4, 0, .2, 1), background-color .4s cubic-bezier(.4, 0, .2, 1), -webkit-clip-path .4s cubic-bezier(.4, 0, .2, 1);
    transition-delay: .6s, 1s;
    pointer-events: none;
    clip-path: circle(0 at 96.35vw 4.166vw);
    z-index: 980
}

.page-nav.open+.site-hamburger-animation {
    transition-delay: .2s, 0s;
    background-color: #000;
    -webkit-clip-path: circle(100%) !important;
    clip-path: circle(100%) !important;
    pointer-events: none
}

.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    pointer-events: none;
    z-index: 990;
    padding-left: 80px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: transform .8s cubic-bezier(.4, 0, .2, 1), background-color .8s cubic-bezier(.4, 0, .2, 1);
    -o-transition: transform .8s cubic-bezier(.4, 0, .2, 1), background-color .8s cubic-bezier(.4, 0, .2, 1);
    transition: transform .8s cubic-bezier(.4, 0, .2, 1), background-color .8s cubic-bezier(.4, 0, .2, 1);
    transition-delay: .4s, 1s
}

.page-nav.open {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    transition-delay: .6s, 1s;
    pointer-events: auto
}

.page-nav-warp {
    display: flex
}

.page-nav-war {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* margin-bottom: .16rem; */
    color: #fff
}

.page-nav-war li a:hover {
    color: #000
}

.page-nav-war a {
    z-index: 1;
    color: #fff;
    height: auto;
}

.menu-item {
    /* margin-left: 26px; */
    /* display: flex; */
    align-items: center
}

.page-nav-warp .menu-item {
    border: 1px solid #f0f0f0;
    border-radius: 100vw;
    margin-left: .26rem;
    position: relative;
    z-index: 2;
    padding: 6px
}

.page-nav-warp li {
    display: block !important
}

.page-nav-warp .menu-item a {
    margin-bottom: .16rem;
    color: #fff;
    padding: .12rem 1.24rem .08rem
}

.page-nav-warp .menu-item.current-menu-item,
.page-nav-warp .menu-item:hover {
    color: transparent
}

.page-nav-war li {
    position: relative;
    background-color: transparent
}

.page-nav-war li::before {
    content: '';
    position: absolute;
    border-radius: 100vw;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: #fff;
    transition: width .4s ease-out;
    color: #000
}

.page-nav-war li:hover::before {
    width: 100%
}

.page-nav-war li:hover a {
    color: #000
}


.fd-wp {
    max-width: 1500px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.fd-l {
    display: flex;
    align-items: center
}

.fd-logo {
    width: 224px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden
}

.fd-logo img {
    display: none;
    max-width: 100%;
    max-height: 100%
}

.btn-group {
    margin-left: 57px;
    max-height: 26px
}

.btn-group a {
    display: inline-block;
    margin-right: 27px
}

.btn-group a img {
    width: 20px;
    height: 20px
}

.copyright {
    font-size: 16px;
    color: #fff;
    margin-left: 86px
}

.fd-r {
    float: right;
    overflow: hidden;
    width: 68px;
    height: 68px;
    line-height: 68px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    position: relative;
    cursor: pointer
}

.fd-r i {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    background-image: url(https://event.c.mi.com/global/xiaomiImagery/wp-content/themes/xiaomi-imagery/assets/pc/images/arrow-up.svg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain
}

.g-btn.fd-r .h__container {
    z-index: 1
}

.g-btn.fd-r:hover i {
    background-image: url('https://event.c.mi.com/global/xiaomiImagery/wp-content/themes/xiaomi-imagery/assets/pc/images/arrow-up-b.svg')
}

.g-btn.fd-r:hover .h__c {
    transform: translate3d(0, -50%, 1px) translateY(-33px)
}

/* .g-btn {
    position: relative
} */

.g-btn .h__container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 100px;
    z-index: -1
}

.g-btn .h__c {
    position: absolute;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background-color: #fff;
    transition: transform .5s ease;
    top: 100%;
    z-index: -1
}

.g-btn:hover .h__c {
    transform: translate3d(0, -50%, 1px) translateY(-24px)
}

.g-btn:hover {
    background: 0 0
}

.g-btn:hover i {
    background-image: url(../images/arrow-rt-b.svg)
}

/* .g-btn span {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-transform: capitalize
} */

.g-btn i {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.g-btn:hover span {
    color: #000
}

.s-banner {
    height: 100vh;
    position: relative
}

.s-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover
}

.s-banner h1 {
    text-transform: capitalize;
    font-size: 130px;
    font-family: CamphorProForXiaoMi-Heavy;
    font-weight: 800;
    color: rgba(255, 255, 255, 0);
    line-height: 135px;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
    text-align: center
}


/* .g-btn {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 100vw;
    z-index: 2
} */

.g-btn.disabled {
    pointer-events: none
}

.g-btn-content {
    border: 1px solid #f0f0f0;
    border-radius: 100vw;
    padding: 10px 22px 10px;
    position: relative;
    z-index: 2
}

.g-btn_text_wrapper {
    height: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.g-btn_text {
    line-height: 1;
    font-size: 16px;
    text-transform: capitalize;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    transform-style: preserve-3d;
    will-change: trsform;
    color: #000;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -o-transition: all .4s linear;
    transition: all .4s linear
}

.g-btn_text.top {
    margin-bottom: 16px;
    color: #fff
}

.g-btn:hover .g-btn_text {
    transform: translate3d(0, -31px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    transform-style: preserve-3d
}

.g-btn_bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 0%;
    height: 100%;
    border-radius: 100vw;
    background-color: #f8f8f8;
    will-change: width, height;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -o-transition: all .4s linear;
    transition: all .4s linear
}

.g-btn:hover .g-btn_bg {
    width: 100%;
    height: 100%
}

.list-btn {
    opacity: 1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 45px;
    z-index: 10;
    background: 0 0;
    border-radius: 30px;
    padding: 0
}

.list-btn .g-btn-content {
    width: 75px;
    height: 45px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.list-btn .g-btn_text_wrapper {
    height: 27px;
    width: 27px;
    flex-direction: row
}

.list-btn .g-btn_text {
    flex: 0 0 27px;
    height: 27px;
    width: 27px;
    margin-bottom: 0;
    margin-right: 27px;
    display: flex;
    align-items: center;
    justify-content: center
}

.list-btn .g-btn_text img {
    display: block;
    width: 100%
}

.list-btn.g-btn:hover .g-btn_text {
    transform: translate3d(-54px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    transform-style: preserve-3d
}

.list-btn.prev .g-btn_bg {
    left: auto;
    right: 0
}

.list-btn.next.g-btn .g-btn_text {
    transform: translate3d(-54px, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    transform-style: preserve-3d
}

.list-btn.next.g-btn:hover .g-btn_text {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0deg, 0deg);
    transform-style: preserve-3d
}

.list-btn.show {
    opacity: 1
}

.list-btn.next {
    left: auto;
    right: 90px
}

.list-btn.disabled {
    pointer-events: none
}

/* .global-btn1 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 465px;
	height: 90px;
	border: 1px solid rgba(255, 255, 255, .3);
	background: linear-gradient(to right, rgba(13, 13, 13, .8) 0, rgba(34, 34, 34, .8) 100%);
	border-radius: 45px;
	margin: 0 auto;
	cursor: pointer;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
} */
/* 
.global-btn1 span {
	text-transform: capitalize;
	font-size: 26px;
	color: #fff;
	margin-right: 20px;
	font-family: CamphorProForXiaoMi-SemiBold;
	position: relative;
} */

/* .global-btn1 i {
	display: block;
	background-image: url(../images/plus.svg);
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	width: 24px;
	height: 24px;
} */

.global-btn1:hover i {
    background-image: url(../images/plus-b.svg);
}

.campaigns+.g-btn.global-btn1:hover .h__c {
    transform: translate3d(0, 0, 1px) translateY(-60%);
}

.forMob {
    display: none !important;
}

.wp-1490 {
    margin: 0 auto;
    max-width: 1490px;
    width: 100%;

}


.main {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
}

.courses-title {
    -webkit-text-stroke: 1px #f0f0f0;
    text-stroke: 1px #f0f0f0;
    font-size: 69px;
    font-weight: 700;
    text-align: center;
    white-space: pre-line;
    /* text-transform: capitalize; */
    color: transparent;
    line-height: 79px;
    font-family: CamphorProForXiaoMi-Heavy;
    margin-bottom: 20px;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(30%);
    z-index: 50;
}

.courses-banner {
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 110vh;
    transform: translate(0%, 0%);
}

.courses-banner .center-img {
    width: 100%;
    height: 63%;
    position: relative;
}

.courses-banner .center-img:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: #000;
    opacity: 0.3;
}

.courses-banner .center-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.courses-banner .leaf {
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #000;
    width: calc(50% - 300px);
    display: flex;
    align-items: center;
    padding: 50px;
    z-index: 3;
}

.courses-banner .leaf .leaf-col {
    width: 70%;
    flex: 0 0 70%;
}

.courses-banner .leaf .leaf-col+.leaf-col {
    margin-left: 50px;
}

.courses-banner .leaf .pic1 {
    height: 454px;
}

.courses-banner .leaf .pic2 {
    height: 362px;
}

.courses-banner .leaf .pic3 {
    height: 231px;
}

.courses-banner .leaf .leaf-pic {
    width: 100%;
}

.courses-banner .leaf .leaf-pic img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.courses-banner .leaf .leaf-pic+.leaf-pic {
    margin-top: 50px;
}

.courses-banner .leaf:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.7;
    z-index: 2;
}

.courses-banner .left-leaf {
    left: 0;
}

.courses-banner .left-leaf .leaf-col {
    -webkit-transform: translateX(-70%);
    -moz-transform: translateX(-70%);
    -ms-transform: translateX(-70%);
    -o-transform: translateX(-70%);
    transform: translateX(-70%);
}

.courses-banner .right-leaf {
    right: 0;
}

.global-tab {
    max-width: 1490px;
    margin: 0 auto;
    border-radius: 49px;
    border: 2px solid rgba(255, 255, 255, .2);
    height: 90px;
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
    justify-content: center;
}

.g-t-item {
    font-family: CamphorProForXiaoMi-Medium;
    color: #6d6d6d;
    font-size: 24px;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: capitalize;
    height: 100%;
}

.g-t-item.on {
    font-family: CamphorProForXiaoMi-Bold;
    color: #fff
}

.g-t-bg {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    width: calc(50% - 10px);
    border-radius: 39px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .1) 100%);
    pointer-events: none;
    -webkit-transition: all .45s ease-in-out, -webkit-transform .45s ease-in-out;
    transition: all .45s ease-in-out, -webkit-transform .45s ease-in-out;
    transition: all .45s ease-in-out, transform .45s ease-in-out;
    transition: all .45s ease-in-out, transform .45s ease-in-out, -webkit-transform .45s ease-in-out;
}

.global-tab[data-index="0"] .g-t-bg {
    right: auto;
    left: 0
}

.global-tab[data-index="1"] .g-t-bg {
    right: auto;
    left: 50%
}

.nav-item+.nav-item {
    margin-left: 1rem;
}

.wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal {
    width: 100px;
    height: 38px;
    text-align: center;
    margin-left: 40px;
    line-height: 38px;
    margin-left: 1rem;

}

.wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal ul {
    width: 100%;
    border-radius: 1vw;


}

.wpml1 {
    background-image: url(https://imagery-xms-web-bj-dev.v-dk.com/wp-content/themes/xiaomi-imagery/assets/pc/images/xlk.svg);
    background-position: calc(100% - 5px) center;
    background-repeat: no-repeat;
    /* padding-right: 20px; */
    box-sizing: border-box;

    transition: background-image 0.3s ease;
    /* 添加过渡效果 */
    background-size: 16px 16px;

}

.wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal ul {
    background: rgba(255, 255, 255, .1);
}

.wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal ul:hover li:first-child {
    background-image: url(https://imagery-xms-web-bj-dev.v-dk.com/wp-content/themes/xiaomi-imagery/assets/pc/images/xlks.svg);
    transition: background-image 0.3s ease;
    /* 添加过渡效果 */
}


.wpml {
    background-color: rgba(255, 255, 255, 0.05);
    ;


}

.wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal ul li {
    width: 100%;
    height: 100%;
    position: relative;
    top: 20%;
    border-radius: 100vw;
    /* padding-right: 20px; */

}

span.wpml-ls-native {
    font-size: 16px;
}

.wpml-ls-link {
    color: #fff;
}

.hd-tools {
    width: 35px;
    height: 38px;
}

span.wpml-ls-display {
    display: none;
}


@media only screen and (max-width:1199px) {
    .header {
        padding: 20px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        /* background-color: #000 */
    }

    .page-nav-warp .menu-item a {
        margin-bottom: .16rem;
        color: #fff;
        padding: 0rem 0rem 0rem
    }

    /* .hd-logo2 a {
        height: 30px
    } */

    /* .hd-logo2 a+a {
        height: 34px;
    } */

    .hd-logo {
        width: 30px
    }

    .hd-r .menu {
        display: block;
        cursor: pointer;
        width: 40px;
        height: 40px;
        padding-top: 12px;
        padding-left: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    .hd-r .page-nav-war {
        display: none
    }

    .page-nav-warp {
        display: block;
        width: 100%;
        text-align: left;
        list-style-type: none;
        /* white-space: pre-line */
    }

    .page-nav-warp .menu-item {
        border: none;
        padding: 0;
        font-size: 34px;
        color: #fff;
        line-height: 6vh;
        text-transform: capitalize;
        -webkit-text-stroke: .5px #fff;
        text-stroke: .5px #fff;
        font-family: CamphorProForXiaoMi-Bold;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s
    }

    .s-banner h1 {
        font-size: 60px
    }

    .wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal {
        display: block;
        cursor: pointer;
        /* width: 40px; */
        height: 40px;
        padding-top: 12px;
        padding-left: 10px;
        position: absolute;
        top: 42%;
        left: 60%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);

    }

    .wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal ul {
        width: 100%;
        border-radius: 1vw;


    }

    .wpml1 {
        background-image: url(https://imagery-xms-web-bj-dev.v-dk.com/wp-content/themes/xiaomi-imagery/assets/pc/images/xlk.svg);
        background-position: calc(100% - 5px) center;
        background-repeat: no-repeat;
        /* padding-right: 20px; */
        box-sizing: border-box;

        transition: background-image 0.3s ease;
        /* 添加过渡效果 */
        background-size: 16px 16px;

    }

    .wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal ul {
        background: content-box;
    }

    .wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal ul:hover li:first-child {
        background-image: url(https://imagery-xms-web-bj-dev.v-dk.com/wp-content/themes/xiaomi-imagery/assets/pc/images/xlks.svg);
        transition: background-image 0.3s ease;
        /* 添加过渡效果 */
    }


    .wpml {
        background-color: rgba(255, 255, 255, 0.05);
        ;


    }

    .wpml-ls-statics-shortcode_actions.wpml-ls.wpml-ls-legacy-list-horizontal ul li {
        width: 100%;
        height: 100%;
        position: relative;
        top: 20%;
        border-radius: 100vw;
        padding-right: 20px;

    }

    span.wpml-ls-native {
        font-size: 16px;
    }

    .wpml-ls-link {
        color: #fff;
    }

    .hd-tools {
        width: 35px;
        height: 38px;
    }

    span.wpml-ls-display {
        display: none;
    }




}

@media only screen and (max-width:959px) {
    .page-nav-warp .menu-item a {
        -webkit-text-stroke: 1px #fff;
        text-stroke: 1px #fff;
        color: inherit
    }

    .page-nav {
        padding-left: 0;
        background-color: #000;
    }

    .page-nav-warp .menu-item {
        margin-left: 0 !important;
        text-align: center;
        height: auto
    }

    .header {
        padding: 10px 20px
    }

    .s-banner h1 {
        font-size: 33px;
        line-height: 1;
        text-stroke: .5px #fff;
        -webkit-text-stroke: .5px #fff
    }

    .footer {
        padding: 35px 0
    }

    .fd-wp {
        padding: 0 20px;
        align-items: flex-end
    }

    .fd-l {
        display: block
    }

    .fd-logo img {
        display: block
    }

    .btn-group {
        margin: 20px 0 13px
    }

    .copyright {
        margin-left: 0
    }

    .fd-r {
        width: 33px;
        height: 33px
    }

    .fd-r i {
        width: 12px;
        height: 12px
    }

    .g-btn.fd-r:hover .h__c {
        transform: translate3d(0, -50%, 1px) translateY(-16px)
    }

    .fd-logo {
        height: 30px;
        width: auto
    }

    .fd-logo a {
        display: inline-block;
        height: 100%
    }

    .fd-logo img {
        width: auto;
        height: 100%
    }

    .btn-group a img {
        width: 15px;
        height: 15px
    }

    .copyright {
        font-size: 12px
    }

    .forPc {
        display: none !important;
    }

    .forMob {
        display: block !important;
    }

}

@media only screen and (max-width:767px) {
    .fd-logo img {
        width: auto;
        height: 100%;
    }

    .hd-logo2 a {
        width: 100px;
        object-fit: contain;
    }

    .header {
        height: 80px;
    }

    .mc-banner {
        height: auto;
    }
}


.nav-item+.nav-item {
    position: relative;
}

.sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    /* width: 100%; */
    text-align: left;
    /* pointer-events: none; */
    z-index: 1;
}

.sub-nav .g-btn {
    opacity: 0;
    pointer-events: none;
    margin-top: .16rem;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.nav-item:hover .sub-nav {
    pointer-events: auto
}

.nav-item:hover .sub-nav .g-btn {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}



.sub-nav .g-btn {
    background-color: rgba(0, 0, 0, 0.6);
}