:root {
  --main-color-gray: #353535;
  --main-color-yellow: #ffed00;
}

.flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

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

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.row-reverse {
  flex-direction: row-reverse;
}

.column-reverse {
  flex-direction: column-reverse;
}

.text-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

/* 多行{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
} */

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
}

.span-t-80 {
  padding-top: 80px;
}

.span-b-80 {
  padding-bottom: 80px;
}

.span-t-90 {
  padding-top: 90px;
}

.span-b-90 {
  padding-bottom: 90px;
}

.span-t-100 {
  padding-top: 100px;
}

.span-b-100 {
  padding-bottom: 100px;
}

.span-t-110 {
  padding-top: 110px;
}

.span-b-110 {
  padding-bottom: 110px;
}

.span-t-120 {
  padding-top: 120px;
}

.span-b-120 {
  padding-bottom: 120px;
}

.pointer {
  cursor: pointer;
}

.img-cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 999999;
}

.header .wrap {
  position: relative;
  z-index: 2;
  padding-left: calc(65 / 1920 * 100vw);
  padding-right: calc(65 / 1920 * 100vw);
  height: 86px;
  background-color: var(--main-color-gray);
}

.header .wrap > .container {
  max-width: 100%;
}

.header .logo {
  padding-top: 14px;
}

.header .logo img {
  display: block;
  width: 141px;
}

.header .menu {
  margin-left: calc(140 / 1920 * 100vw);
}

.header .menu li {
  margin-right: calc(75 / 1920 * 100vw);
}

.header .menu li:last-child {
  margin-right: 0;
}

.header .menu li .title a {
  position: relative;
  display: block;
  padding-top: 14px;
  height: 86px;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  line-height: 72px;
  overflow: hidden;
}

.header .menu li .title a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 2px;
  background-color: var(--main-color-yellow);
  transition: width 0.3s ease;
}

.header .menu li.active .title a:after {
  width: 100%;
}

.header .menu li .xiala{
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  width: 100%;
  background-color: #f4f4f2;
}

.header .menu li .xiala .container{
  max-width: 1470px;
}

.header .menu li .xiala .list .item a{
  height: 260px;
}

.header .menu li .xiala .list .item a .icon{
  display: flex;
  align-items: center;
  height: 160px;
}

.header .menu li .xiala .list .item a .icon img{
  position: relative;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s ease;
}

.header .menu li:nth-child(2) .xiala .list .item a .icon img{
  height: 50px;
}

.header .menu li .xiala .list .item a:hover .icon img{
  transform: scale(1.05);
  opacity: 0.8;
}

.header .menu li .xiala .list .item a span{
  margin-top: 10px;
  font-size: 22px;
  color: #686663;
  transition: all 0.3s ease;
}

.header .menu li .xiala .list .item a:hover span{
  color: #a5a29d;
}

.header .wrap .right-wrap {
  flex: 1;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.header .wrap .right-wrap .tool {
  padding-top: 14px;
  display: flex;
  align-items: center;
}

.header .search-form {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding-left: calc(65 / 1920 * 100vw);
  padding-right: calc(65 / 1920 * 100vw);
  background-color: var(--main-color-gray);
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.header .search-form.active {
  transform: translateY(65px);
}

.header .search-form form,
.header .search-form-mobile form {
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header .search-form form input,
.header .search-form-mobile form input {
  display: block;
  margin: 0;
  padding: 0 15px 0 0;
  width: 300px;
  height: 40px;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  background-color: transparent;
  border: none;
  box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.1);
}

.header .search-form form input:focus,
.header .search-form-mobile form input:focus {
  box-shadow: inset 0 -2px 0 0 var(--main-color-yellow);
}

.header .search-form form button,
.header .search-form-mobile form button {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: transparent;
  border: none;
  transform: translateY(-50%);
}

.header .search-form form button i,
.header .search-form-mobile form button i {
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
}

.header .search-form form button:hover i,
.header .search-form-mobile form button:hover i {
  color: var(--main-color-yellow);
}

.header .search {
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

.header .search:hover {
  background-color: var(--main-color-yellow);
}

.header .search i {
  font-size: 14px;
  color: var(--main-color-gray);
  font-weight: bold;
}

.header .email {
  margin-left: calc(15 / 1920 * 100vw);
}

.header .email i {
  width: 22px;
  height: 22px;
  font-size: 14px;
  color: var(--main-color-gray);
  text-align: center;
  line-height: 22px;
  background-color: #ffffff;
  border-radius: 50%;
}

.header .email:hover i {
  background-color: var(--main-color-yellow);
}

.header .email span {
  margin-left: calc(30 / 1920 * 100vw);
  font-family: "Barlow";
  font-size: 24px;
  color: #ffffff;
}

.header .email:hover span {
  color: var(--main-color-yellow);
}

.banner-swiper img {
  display: block;
  width: 100%;
}

.banner-swiper .swiper-pagination {
  bottom: 20px;
  font-size: 0;
}

.banner-swiper .swiper-pagination span {
  margin-left: 5px;
  margin-right: 5px;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.banner-swiper .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: var(--main-color-yellow);
}

.banner {
  position: relative;
}

.banner img {
  display: block;
  width: 100%;
}

.banner .video-wrap{
  height: calc(872 / 1920 * 100vw);
  background-color: #000000;
}

.banner .video-wrap .videos{
  width: 100%;
  height: 100%;
}

.banner .wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.banner .wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.banner .wrap .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.banner .wrap .title {
  font-size: 60px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.banner.develop .wrap .text {
  font-size: 36px;
  line-height: initial;
}

.banner.develop img,
.banner.neo img{
  height: calc(815 / 1920 * 100vw);
  object-fit: cover;
}

.banner .wrap .line {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 72px;
  height: 4px;
  background-color: #ffffff;
}

.banner .wrap .text {
  font-size: 26px;
  color: #ffffff;
  text-align: center;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.banner.why .wrap .text {
  font-size: 30px;
  line-height: 54px;
}

.banner.china .wrap .text {
  line-height: 54px;
}

.banner.spa .wrap .text {
  font-size: 30px;
  line-height: 54px;
}


.play-icon {
  background-image: url(../images/icon-play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.index-section-3 {
  background-color: #333333;
}

.footer .top-wrap .container {
  display: flex;
}

.footer .top-wrap .left-wrap {
  padding-right: 30px;
  width: 360px;
}

.footer .top-wrap .left-wrap .logo a img {
  display: block;
  width: 141px;
}

.footer .top-wrap .left-wrap .contact {
  margin-top: 30px;
  color: #ffffff;
}

.footer .top-wrap .left-wrap .contact a {
  color: #ffffff;
}

.footer .top-wrap .left-wrap .contact a:hover {
  color: var(--main-color-yellow);
}

.footer .top-wrap .left-wrap .contact .title {
  font-size: 20px;
  line-height: 30px;
}

.footer .top-wrap .left-wrap .contact .address {
  font-size: 16px;
  line-height: 30px;
}

.footer .top-wrap .left-wrap .contact .text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 30px;
}

.footer .top-wrap .right-wrap ul li {
  margin-right: 50px;
}

.footer .top-wrap .right-wrap ul li:last-child {
  margin-right: 0;
}

.footer .top-wrap .right-wrap ul li .title a {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  line-height: 40px;
}

.footer .top-wrap .right-wrap ul li .title a:hover {
  color: var(--main-color-yellow);
}

.footer .top-wrap .right-wrap ul li .item a {
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
}

.footer .top-wrap .right-wrap ul li .item a:hover {
  color: var(--main-color-yellow);
}

.footer .bot-wrap {
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

.footer .copyright {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
  text-align: center;
}

.title-1 .text {
  position: relative;
  padding-left: 60px;
  padding-right: 50px;
  font-size: 36px;
  color: #000000;
  font-weight: bold;
}

.title-1 .text span {
 display: block;
 position: absolute;
}

.title-1 .text span:first-child{
  left: 0;
  top: -20px;
}

.title-1 .text span:last-child{
  right: 0;
  top: 20px;
}

.text-1 {
  max-width: calc(880 / 1200 * 100%);
  font-size: 18px;
  color: #000000;
  line-height: 40px;
}

.text-2 .title {
  font-size: 36px;
  color: #000000;
  font-weight: bold;
}

.text-2 .line {
  margin-top: 20px;
  width: 29px;
  height: 5px;
  background-color: #333333;
}

.text-2 .text {
  margin-top: 20px;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
}

.text-2 .text a {
  color: #000000;
  text-decoration: underline;
}

.text-2 .text a:hover {
  font-weight: bold;
}

.text-2 .text .txt2 {
  margin-top: 30px;
}

.text-3 .title {
  font-size: 48px;
  color: #686663;
  font-weight: bold;
}

.text-3 .title span {
  font-family: Arial, Helvetica, sans-serif;
}

.text-3 .title span.l {
  margin-right: 15px;
}

.text-3 .title span.r {
  margin-left: 15px;
}

.text-3 .text {
  margin-top: 30px;
  font-size: 18px;
  color: #686663;
  line-height: 30px;
}

.why-section-2 .text-3 .title,
.why-section-2 .text-3 .text {
  color: #000000;
}

.text-4 {
  margin-top: 60px;
}

.text-4 .item:nth-child(n + 2) {
  margin-top: 50px;
}

.text-4 .title i {
  width: 40px;
  font-size: 38px;
  color: #6d6d6d;
  text-align: center;
  line-height: 40px;
}

.text-4 .title span {
  padding-left: 10px;
  font-size: 30px;
  color: #686663;
  font-weight: bold;
  line-height: 40px;
}

.text-4 .item.icon .title span{
  max-width: calc(100% - 300px);
}

.text-4 .item.icon .title img {
  margin-left: 20px;
}

.text-4 ul {
  margin-top: 20px;
  padding-left: 50px;
}

.text-4 ul li {
  font-size: 20px;
  color: #686663;
  line-height: 50px;
}

.text-4 ul li a {
  color: #686663;
}

.text-4 ul li a:hover {
  color: #000000;
  font-weight: bold;
  text-decoration: underline;
}

.china-section-1 .text-4 ul {
  padding-left: 0;
}

.china-section-1 .text-4 ul li {
  line-height: 30px;
}

.text-5 {
  margin-top: 35px;
}

.text-5 ul li {
  width: calc(50% - 30px);
}

.text-5 ul li:nth-child(n + 3) {
  margin-top: 25px;
}

.text-5 ul li:last-child {
  margin-top: 60px;
}

.text-5 ul li input {
  display: block;
  width: 100%;
  height: 67px;
  font-size: 16px;
  color: #000000;
  line-height: 66px;
  background-color: transparent;
  border: none;
  box-shadow: inset 0 -1px 0 #dedede;
}

.text-5 ul li textarea {
  display: block;
  padding-top: 13px;
  padding-bottom: 13px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 177px;
  min-height: 177px;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
  background-color: transparent;
  border: none;
  box-shadow: inset 0 -1px 0 #dedede;
}

.text-5 ul li input::-webkit-input-placeholder,
.text-5 ul li textarea::-webkit-input-placeholder {
  color: #686663;
}

.text-5 ul li input:-moz-placeholder,
.text-5 ul li textarea:-moz-placeholder {
  color: #686663;
}

.text-5 ul li input::-moz-placeholder,
.text-5 ul li textarea::-moz-placeholder {
  color: #686663;
}

.text-5 ul li input:-ms-input-placeholder,
.text-5 ul li textarea:-ms-input-placeholder {
  color: #686663;
}

.text-5 ul li input:focus,
.text-5 ul li textarea:focus {
  box-shadow: inset 0 -2px 0 #000000;
}

.text-5 ul li button {
  width: 192px;
  height: 54px;
  background-color: var(--main-color-yellow);
  border: solid 2px #e3d523;
  box-shadow: 2px 2px 8px rgba(202, 190, 38, 0.35);
  border-radius: 0 3px 3px 0;
  transition: all 0.3s ease;
}

.text-5 ul li button:hover {
  border-color: #ccb41a;
}

.text-5 ul li button span {
  width: 136px;
  height: 50px;
  font-size: 16px;
  color: #000000;
  line-height: 50px;
  text-align: center;
  border-right: solid 2px #e3d523;
  transition: all 0.3s ease;
}

.text-5 ul li button:hover span {
  border-color: #ccb41a;
}

.text-5 ul li button i {
  width: 56px;
  height: 50px;
  font-size: 16px;
  color: #000000;
  font-weight: bold;
}

.text-6{
  padding-top: 10px;
}

.text-6 .title {
  position: relative;
  padding-left: 80px;
  padding-right: 70px;
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
}

.text-6 .title span{
  display: block;
  position: absolute;
}
 

.text-6 .title span:first-child {
  left: 0;
  top: -20px;
}

.text-6 .title span:last-child {
  right: 0;
  top: 30px;
}

.text-6 .text {
  margin-top: 20px;
  padding-left: 80px;
  padding-right: 80px;
  font-size: 24px;
  color: #ffffff;
}

.video-wrap .videos{
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.video-btn{
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  opacity: 0;
}

.video-container{
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.video-container video{
  position: relative;
  width: 100%;
  height: 100%;
}

.picture-1 {
  position: relative;
  /* padding-top: calc(640 / 1200 * 100%); */
  padding-top: calc(1 / 2.39 * 100vw);
  background-color: #000000;
  /* border-radius: 20px; */
  overflow: hidden;
  cursor: pointer;
}

.picture-1 .video-container{
  border-radius: 20px;
  overflow: hidden;
}

.picture-1 .cont{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.picture-1 .cover {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.picture-1 .cover img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.picture-1:hover .cover img {
  transform: scale(1.1);
  opacity: 0.4;
}

.picture-1 .play-icon {
  position: absolute;
  left: 50%;
  top: calc(236 / 640 * 100%);
  z-index: 2;
  width: 60px;
  height: 60px;
  transform: translateX(-50%);
}

.picture-1 .tips {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(125 / 640 * 100%);
  z-index: 2;
  font-size: 30px;
  color: #ffffff;
}

.picture-1 .tips span:nth-child(1) {
  margin-right: 20px;
  font-family: "Gemunu Libre";
  font-size: 36px;
}

.picture-1 .tips span:nth-child(2) {
  margin-right: 30px;
}

.picture-1 .tips span:nth-child(2),
.picture-1 .tips span:nth-child(3) {
  font-weight: lighter;
}

.spa-section-1 .picture-1 .cover img {
  opacity: 0.6;
}

.picture-2 {
  position: relative;
}

.picture-2 .pic {
  position: relative;
  width: calc(670 / 1200 * 100%);
}

.picture-2 .box{
  position: relative;
  padding-top: calc(430 / 670 * 100%);
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
}

.picture-2 .cont{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.picture-2 .pic .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.picture-2 .pic .cover img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.picture-2 .pic.pointer .cover img,
.picture-8 .pic.pointer .cover img{
  transition: all 0.3s ease;
}

.picture-2 .pic.pointer:hover .cover img,
.picture-8 .pic.pointer:hover .cover img{
  transform: scale(1.1);
  opacity: 0.4;
}

.picture-2 .pic .play-icon,
.picture-8 .pic .play-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
}

.picture-2 .wrap {
  width: calc(450 / 1200 * 100%);
}

.picture-2 .wrap .title {
  font-size: 36px;
  color: #000000;
  font-weight: bold;
}

.picture-2 .wrap .title span {
  font-family: Arial, Helvetica, sans-serif;
}

.picture-2 .wrap .title span.l {
  margin-right: 15px;
}

.picture-2 .wrap .title span.r {
  margin-left: 15px;
}

.picture-2 .wrap .line {
  margin-top: 20px;
  width: 29px;
  height: 5px;
  background-color: #333333;
}

.picture-2 .wrap .text {
  margin-top: 20px;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
}

.picture-2 .wrap.white .title,
.picture-2 .wrap.white .text {
  color: #ffffff;
}

.picture-2 .wrap.white .line {
  background-color: var(--main-color-yellow);
}
 
.picture-3 {
  position: relative;
  background-color: #a5a19d;
}

.picture-3.mask:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: calc(1405 / 1920 * 100%);
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0)
  );
}

.picture-3 .wrap {
  position: relative;
  z-index: 2;
  max-width: 560px;
  height: calc(870 / 1920 * 100vw);
}

.develop-section-2.picture-3 .wrap {
  padding-top: 13%;
}

.picture-3 .title {
  font-size: 48px;
  color: #ffffff;
  font-weight: bold;
  line-height: 88px;
}

.picture-3 .text {
  margin-top: 40px;
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
}

.picture-4 ul li {
  width: calc(560 / 1200 * 100%);
}

.picture-4 ul li:nth-child(n + 3) {
  margin-top: 30px;
}

.picture-4 ul li a {
  height: 125px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 13px 13px 30px rgba(0, 0, 0, 0.06), inset 0 0 0 1px #e4e4e4;
  transition: all 0.3s ease;
}

.picture-4 ul li a:hover {
  box-shadow: 13px 13px 30px rgba(0, 0, 0, 0.06), inset 0 0 0 1px #000000;
  transform: translateY(-10px);
}

.picture-4 ul li a .cover {
  width: 175px;
  height: 125px;
  border-radius: 10px 0 0 10px;
  background-color: #000000;
  overflow: hidden;
}

.picture-4 ul li a .cover img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.picture-4 ul li a .wrap {
  padding-left: 45px;
  width: calc(100% - 175px);
}

.picture-4 ul li a .wrap .left-wrap {
  padding-right: 20px;
  width: calc(100% - 140px);
  line-height: 30px;
}

.picture-4 ul li a .wrap .left-wrap .title {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}

.picture-4 ul li a .wrap .left-wrap .text {
  font-size: 16px;
  color: #666666;
  font-weight: lighter;
}

.picture-4 ul li a .wrap .right-wrap {
  width: 140px;
}

.picture-4 ul li a .wrap .right-wrap i {
  font-size: 20px;
  color: #414141;
}

.picture-4 ul li a .wrap .right-wrap span {
  font-size: 12px;
  color: #000000;
  line-height: 30px;
}

.picture-5 {
  position: relative;
  margin-top: 30px;
  margin-left: -12px;
  margin-right: -12px;
}

.picture-5-item {
  position: relative;
  padding-top: 22px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.picture-5-item .box{
  padding-top: 20px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.05), inset 0 0 0 1px #ebebeb;
  border-radius: 10px;
}

.picture-5-item .box .pic {
  position: relative;
  padding-top: calc(176 / 215 * 100%);
}

.picture-5-item .box .pic img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.picture-5-item .box .wrap {
  margin-top: 10px;
  height: 224px;
}

.picture-5-item .box .wrap .title {
  font-size: 20px;
  color: #000000;
  font-weight: bold;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.picture-5-item .box .wrap .text {
  margin-top: 20px;
  font-size: 14px;
  color: #000000;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.picture-5 .swiper-button,
.picture-7 .swiper-button {
  margin-top: -40px;
  width: 58px;
  height: 80px;
  background-color: #ffffff;
  background-image: none;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.05), inset 0 0 0 1px #ebebeb;
  opacity: 1;
  transition: all 0.3s ease;
}

.picture-5 .swiper-button:hover,
.picture-7 .swiper-button:hover {
  background-color: var(--main-color-gray);
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px var(--main-color-gray);
}

.picture-5 .swiper-button.swiper-button-prev,
.picture-7 .swiper-button.swiper-button-prev {
  left: -88px;
}

.picture-5 .swiper-button.swiper-button-next,
.picture-7 .swiper-button.swiper-button-next {
  right: -88px;
}

.picture-5 .swiper-button i,
.picture-7 .swiper-button i {
  font-size: 32px;
  color: #303030;
  transition: all 0.3s ease;
}

.picture-5 .swiper-button.swiper-button-prev i,
.picture-7 .swiper-button.swiper-button-prev i {
  transform: rotateY(180deg);
}

.picture-5 .swiper-button:hover i,
.picture-7 .swiper-button:hover i {
  color: var(--main-color-yellow);
}

.picture-6 ul li {
  width: calc(50% - 10px);
}

.picture-6 ul li:nth-child(n + 3) {
  margin-top: 20px;
}

.picture-6 ul li a {
  position: relative;
  display: block;
  padding-top: calc(584 / 950 * 100%);
  overflow: hidden;
}

.picture-7{
  position: relative;
  margin: -12px;
}

.picture-7-item{
  padding: 12px;
}
 
.picture-7-item .box{
  position: relative;
  padding: 2px;
  height: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.05);
}

.picture-7-item .cover {
  position: relative;
  padding-top: calc(182 / 279 * 100%);
  border-radius: 8px 8px 0 0;
  background-color: #000000;
  overflow: hidden;
}

.picture-7-item .cover img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.picture-7-item .wrap {
  padding: 35px;
}

.picture-7-item .wrap .title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
}

.picture-7-item .wrap .title span {
  margin-right: 5px;
  font-family: "Barlow";
  font-weight: normal;
}

.picture-7-item .wrap .text {
  margin-top: 20px;
  height: 144px;
  font-size: 14px;
  color: #000000;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.picture-8 .box{
  position: relative;
  overflow: hidden;
}

.picture-8 .pic {
  width: 50%;
}

.picture-8 .pic .cover {
  position: relative;
  padding-top: calc(640 / 960 * 100%);
  background-color: #000000;
  overflow: hidden;
}

.picture-8 .pic .cover img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.picture-8 .wrap {
  padding-left: 110px;
  padding-right: calc((100vw - 1600px) / 2);
  width: 50%;
}

.picture-8.row-reverse .wrap {
  padding-left: calc((100vw - 1600px) / 2);
  padding-right: 110px;
}

.picture-8 .wrap .title {
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
}

.picture-8 .wrap .title span {
  font-family: Arial, Helvetica, sans-serif;
}

.picture-8 .wrap .title span.l {
  margin-right: 15px;
}

.picture-8 .wrap .title span.r {
  margin-left: 15px;
}

.picture-8 .wrap .subtitle {
   margin-top: 10px;
  font-size: 24px;
  color: #ffffff;
}

.picture-8 .wrap .line {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 29px;
  height: 5px;
  background-color: var(--main-color-yellow);
}

.picture-8 .wrap .text {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
  font-weight: lighter;
}

.picture-9 .wrap .title {
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}

.picture-9 .wrap .line {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 29px;
  height: 5px;
  background-color: var(--main-color-yellow);
}

.picture-9 .wrap .text {
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
  font-weight: lighter;
  text-align: center;
}

.picture-9 .pic {
  position: relative;
  margin-top: 50px;
  user-select: none;
  -webkit-user-select: none;
}

.picture-9 .pic .cover {
  position: relative;
  padding-top: calc(750 / 1200 * 100%);
  background-color: #000000;
  overflow: hidden;
}

.picture-9 .pic img{
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.picture-9 .pic .mask{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.picture-9 .pic .mask .mask-cover{
  position: relative;
  width: 1200px;
  height: 100%;
}

.picture-9 .pic .dragbar{
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  margin-left: -2px;
  width: 4px;
  height: 100%;
  background-color: #ffffff;
}

.picture-9 .pic .dragbar .draggable{
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -24px;
  margin-top: -24px;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  cursor: move;
}

.picture-9 .pic .dragbar .draggable i{
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 4px;
  width: 50%;
  height: 100%;
  font-size: 30px;
  color: #999999;
}

.picture-9 .pic .dragbar .draggable i:nth-child(1){
  left: 0;
  transform: rotateY(180deg);
}

.picture-9 .pic .dragbar .draggable i:nth-child(2){
  right: 0;
}

.picture-10 ul {
  position: relative;
  padding-top: calc(1285 / 1920 * 100vw);
}

.picture-10 ul li {
  transition: all 0.3s ease;
}

.picture-10 ul li:nth-child(1) {
  position: absolute;
  left: 0;
  top: 0;
  width: calc((100% - 14px * 2) / 3);
  height: calc((1285 / 1920 * 100vw - 14px * 2) / 3);
}

.picture-10 ul li:nth-child(2) {
  position: absolute;
  left: calc((100% - 14px * 2) / 3 + 14px);
  top: 0;
  width: calc((100% - 14px * 2) / 3);
  height: calc((1285 / 1920 * 100vw - 14px * 2) / 3);
}

.picture-10 ul li:nth-child(3) {
  position: absolute;
  right: 0;
  top: 0;
  width: calc((100% - 14px * 2) / 3);
  height: calc((1285 / 1920 * 100vw - 14px * 2) / 3 * 2 + 14px);
}

.picture-10 ul li:nth-child(4) {
  position: absolute;
  left: 0;
  top: calc((1285 / 1920 * 100vw - 14px * 2) / 3 + 14px);
  width: calc((100% - 14px * 2) / 3 * 2 + 14px);
  height: calc((1285 / 1920 * 100vw - 14px * 2) / 3 * 2 + 14px);
}

.picture-10 ul li:nth-child(5) {
  position: absolute;
  right: 0;
  top: calc((1285 / 1920 * 100vw - 14px * 2) / 3 * 2 + 14px * 2);
  width: calc((100% - 14px * 2) / 3);
  height: calc((1285 / 1920 * 100vw - 14px * 2) / 3);
}

.picture-10 ul li:nth-child(n + 6) {
  margin-right: 14px;
  margin-top: 14px;
  width: calc((100% - 14px * 2) / 3);
}

.picture-10 ul li:nth-child(3n + 8) {
  margin-right: 0;
}

.picture-10 ul li a {
    position: relative;
  display: block;
  overflow: hidden;
}

.picture-10 ul li:nth-child(-n + 5) a {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.picture-10 ul li:nth-child(n + 6) a {
  position: relative;
  padding-top: calc(420 / 630 * 100%);
}

.picture-6 ul li .cover,
.picture-10 ul li .cover {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.picture-6 ul li .wrap,
.picture-10 ul li .wrap {
  position: absolute;
  left: -100%;
  top: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.picture-6 ul li .wrap.trans,
.picture-10 ul li .wrap.trans {
  transition: all 0.2s;
  backface-visibility: hidden;
}

.picture-6 ul li .cover img,
.picture-10 ul li .cover img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.picture-6 ul li a .wrap .icon,
.picture-10 ul li a .wrap .icon {
  position: absolute;
  left: 50%;
  top: calc(150 / 420 * 100%);
  width: calc(284 / 630 * 100%);
  transform: translateX(-50%);
}

.picture-6 ul li a .wrap .icon img,
.picture-10 ul li a .wrap .icon img {
  display: block;
  width: 100%;
}

.picture-6 ul li a .wrap i,
.picture-10 ul li a .wrap i {
  position: absolute;
  left: 50%;
  bottom: calc(60 / 420 * 100%);
  width: 38px;
  height: 38px;
  font-size: 20px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  border: solid 2px #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
}

::selection {
  color: #373737;
  background-color: rgba(233, 203, 5, 0.6);
}

.yh-l,
.yh-r{
  width: 46px;
  height: 46px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.yh-l{
  background-image: url(../images/icon-yh-l.png);
}

.yh-r{
  background-image: url(../images/icon-yh-r.png);
}

.goTop{
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 0;
  bottom: 65px;
  z-index: 99999;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  border-radius: 8px 0 0 8px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.goTop.active{
  display: flex;
}

.goTop:hover{
  /* color: var(--main-color-yellow);
  background-color: rgba(0, 0, 0, 0.7); */
  opacity: 1;
}

.goTop i{
  font-size: 20px;
}

#global-loader {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  text-align: center;
}

#global-loader svg {
  width: 20vw;
  height: 20vw;
}

#album-container{
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;
}

#album-container .mask{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000000;
  overflow: hidden;
  opacity: .7;
  animation: slbOverlay .5s;
}

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

  100%{
    opacity: .7;
  }
}

#album-container .wrapper{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 100%;
}

#album-container .wrapper .box{
  position: relative;
  margin: 0 auto;
  animation: slbEnter .3s;
}

@keyframes slbEnter {
  0%{
    opacity: 0;
    transform: translate3d(0, -1em, 0);
  }
  100%{
    opacity: 1;
    transform: translateZ(0);
  }
}

#album-container .wrapper .box .close{
  position: absolute;
  right: -10px;
  top: -60px;
  z-index: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

#album-container .wrapper .box .close:before,
#album-container .wrapper .box .close:after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -14px;
  width: 28px;
  height: 4px;
  background-color: #bababa;
  border-radius: 1px;
}

#album-container .wrapper .box .close:hover:before,
#album-container .wrapper .box .close:hover:after{
  background-color: #686868;
}

#album-container .wrapper .box .close:before{
  transform: rotate(45deg);
}

#album-container .wrapper .box .close:after{
  transform: rotate(-45deg);
}

#album-container .wrapper .box img{
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 160px);
  line-height: 0;
}

#album-container .wrapper .box video{
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 160px);
  line-height: 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-device-pixel-ratio: 2) {
  .play-icon {
    background-image: url(../images/icon-play@2x.png);
  }
  .yh-l{
    background-image: url(../images/icon-yh-l@2x.png);
  }
  .yh-r{
    background-image: url(../images/icon-yh-r@2x.png);
  }
}

@media screen and (max-width: 1629px) {
  .header .menu{
    margin-left: 4vw;
  }
  .header .menu li{
    margin-right: 3vw;
  }
  .picture-8 .wrap {
    padding-left: 80px;
    padding-right: 3vw;
  }
  .picture-8.row-reverse .wrap {
    padding-left: 3vw;
    padding-right: 80px;
  }
}

@media screen and (max-width: 1439px) {
  .span-t-80 {
    padding-top: 50px;
  }
  .span-b-80 {
    padding-bottom: 50px;
  }
  .span-t-90 {
    padding-top: 60px;
  }
  .span-b-90 {
    padding-bottom: 60px;
  }
  .span-t-100 {
    padding-top: 70px;
  }
  .span-b-100 {
    padding-bottom: 70px;
  }
  .span-t-110 {
    padding-top: 80px;
  }
  .span-b-110 {
    padding-bottom: 80px;
  }
  .span-t-120 {
    padding-top: 90px;
  }
  .span-b-120 {
    padding-bottom: 90px;
  }
  .header .wrap {
    padding-left: 0;
    padding-right: 0;
    height: 80px;
  }
  .header .logo {
    padding-top: 10px;
  }
  .header .logo img {
    width: 100px;
  }
  .header .menu {
    margin-left: 5vw;
  }
  .header .menu li {
    margin-right: 4vw;
  }
  .header .menu li .title a {
    padding-top: 10px;
    height: 80px;
    font-size: 16px;
    line-height: 70px;
  }
  .header .menu li .title a:before {
    padding-top: 10px !important;
  }
  .header .menu li .xiala .container{
    max-width: 990px;
  }
  .header .menu li .xiala .list .item a{
    height: 200px;
  }
  .header .menu li .xiala .list .item a .icon{
    height: 100px;
  }
  .header .menu li:nth-child(2) .xiala .list .item a .icon img{
    height: 30px;
  }
  .header .menu li .xiala .list .item a span{
    font-size: 16px;
  }
  .header .email span {
    font-size: 20px;
  }
  .header .wrap .right-wrap .tool {
    padding-top: 10px;
  }
  .header .search-form {
    padding-left: 0;
    padding-right: 0;
  }
  .header .search-form.active {
    transform: translateY(61px);
  }
  .header .search-form form,
  .header .search-form-mobile form {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header .search-form form input,
  .header .search-form-mobile form input {
    font-size: 14px;
  }
  .header .search-form form button i,
  .header .search-form-mobile form button i {
    font-size: 20px;
  }
  .footer .top-wrap .left-wrap .logo a img {
    width: 100px;
  }
  .footer .top-wrap .left-wrap .contact .title {
    font-size: 18px;
  }
  .footer .top-wrap .left-wrap .contact .address {
    font-size: 14px;
  }
  .footer .top-wrap .left-wrap .contact .text {
    font-size: 14px;
    line-height: 26px;
  }
  .footer .top-wrap .right-wrap ul li .title a {
    font-size: 16px;
    line-height: 34px;
  }
  .footer .top-wrap .right-wrap ul li .item a {
    font-size: 14px;
    line-height: 34px;
  }
  .footer .bot-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer .copyright {
    font-size: 14px;
    line-height: 24px;
  }
  .banner .wrap .title {
    font-size: 48px;
  }
  .banner .wrap .line {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 60px;
    height: 3px;
  }
  .banner .wrap .text,
  .banner.spa .wrap .text,
  .banner.china .wrap .text,
  .banner.why .wrap .text {
    font-size: 24px;
    line-height: 40px;
  }
  .banner.develop .wrap .text,
  .title-1 .text {
    font-size: 30px;
  }
  .text-1 {
    font-size: 16px;
    line-height: 30px;
  }
  .text-2 .title {
    font-size: 30px;
  }
  .text-2 .text {
    font-size: 14px;
    line-height: 26px;
  }
  .text-2 .text .txt2 {
    margin-top: 20px;
  }
  .text-3 .title {
    font-size: 36px;
  }
  .text-3 .text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
  }
  .text-4 {
    margin-top: 50px;
  }
  .text-4 .item:nth-child(n + 2) {
    margin-top: 30px;
  }
  .text-4 .title i {
    width: 30px;
    font-size: 24px;
    line-height: 34px;
  }
  .text-4 .title span {
    font-size: 24px;
    line-height: 34px;
  }
  .text-4 ul {
    padding-left: 40px;
  }
  .text-4 ul li {
    font-size: 18px;
    line-height: 40px;
  }
  .text-4 .item.icon .title img {
    max-width: 200px;
  }
  .china-section-1 .text-4 ul li {
    line-height: 26px;
  }
  .text-6{
    padding-top: 0;
  }
  .text-6 .title {
    padding-left: 60px;
    padding-right: 50px;
    font-size: 30px;
  }
  .text-6 .title span:last-child{
    top: 20px;
  }
  .text-6 .text {
    padding-left: 70px;
    font-size: 20px;
  }
  .picture-1 .tips {
    font-size: 24px;
  }
  .picture-1 .tips span:nth-child(1) {
    font-size: 30px;
  }
  .picture-2 .wrap .title {
    font-size: 30px;
  }
  .picture-2 .wrap .text {
    font-size: 14px;
    line-height: 26px;
  }
  .picture-3 .title {
    font-size: 38px;
    line-height: 60px;
  }
  .develop-section-2.picture-3 .wrap {
    padding-top: 0;
  }
  .picture-3 .text {
    font-size: 14px;
    line-height: 26px;
  }
  .picture-4 ul li a .wrap {
    padding-left: 30px;
  }
  .picture-4 ul li a .wrap .left-wrap {
    width: calc(100% - 100px);
  }
  .picture-4 ul li a .wrap .left-wrap .title {
    font-size: 18px;
  }
  .picture-4 ul li a .wrap .left-wrap .text {
    font-size: 14px;
  }
  .picture-4 ul li a .wrap .right-wrap {
    width: 100px;
  }
  .picture-5 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 60px;
    padding-right: 60px;
  }
  .picture-5-item .box {
    padding: 30px;
  }
  .picture-5-item .box .wrap .title {
    font-size: 18px;
    line-height: 26px;
  }
  .picture-5 .swiper-button,
  .picture-7 .swiper-button {
    margin-top: -35px;
    width: 50px;
    height: 70px;
  }
  .picture-5 .swiper-button.swiper-button-prev,
  .picture-7 .swiper-button.swiper-button-prev {
    left: 0;
  }
  .picture-5 .swiper-button.swiper-button-next,
  .picture-7 .swiper-button.swiper-button-next {
    right: 0;
  }
  .picture-5 .swiper-button i,
  .picture-7 .swiper-button i {
    font-size: 28px;
  }
  .picture-5-item .box .wrap {
    height: 264px;
  }
  .picture-5-item .box .wrap .text {
    height: 192px;
    font-size: 13px;
    -webkit-line-clamp: 8;
  }
  .picture-6 ul li a .wrap i,
  .picture-10 ul li a .wrap i {
    margin-left: -17px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .picture-7{
    margin-left: 0;
    margin-right: 0;
    padding-left: 60px;
    padding-right: 60px;
  }
  .picture-7-item .wrap {
    padding: 25px;
  }
  .picture-7-item .wrap .title {
    font-size: 20px;
  }
  .picture-7-item .wrap .text {
    font-size: 13px;
  }
  .picture-8 .wrap .title,
  .picture-9 .wrap .title {
    font-size: 30px;
  }
  .picture-8 .wrap .subtitle {
    font-size: 18px;
  }
  .picture-8 .wrap .text,
  .picture-9 .wrap .text {
    font-size: 14px;
    line-height: 26px;
  }
  .picture-9 .pic {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1229px) {
  .picture-9 .pic .mask .mask-cover{
    width: calc(100vw - 30px);
  }
}

@media screen and (max-width: 1199px) {
  .span-t-80 {
    padding-top: 40px;
  }
  .span-b-80 {
    padding-bottom: 40px;
  }
  .span-t-90 {
    padding-top: 40px;
  }
  .span-b-90 {
    padding-bottom: 40px;
  }
  .span-t-100 {
    padding-top: 40px;
  }
  .span-b-100 {
    padding-bottom: 40px;
  }
  .span-t-110 {
    padding-top: 40px;
  }
  .span-b-110 {
    padding-bottom: 40px;
  }
  .span-t-120 {
    padding-top: 40px;
  }
  .span-b-120 {
    padding-bottom: 40px;
  }
  .header .menu {
    margin-left: 3vw;
  }
  .header .menu li {
    margin-right: 2vw;
  }
  .header .menu li .xiala .container{
    max-width: 830px;
  }
  .header .menu li .xiala .list .item a{
    height: 140px;
  }
  .header .menu li .xiala .list .item a .icon{
    height: 80px;
  }
  .header .menu li .xiala .list .item a span{
    font-size: 14px;
  }
  .banner .wrap .title {
    font-size: 36px;
  }
  .banner .wrap .text,
  .banner.spa .wrap .text,
  .banner.china .wrap .text,
  .banner.why .wrap .text {
    font-size: 18px;
    line-height: 30px;
  }
  .yh-l, 
  .yh-r{
    width: 36px;
    height: 36px;
  }
  .banner.develop .wrap .text{
     font-size: 24px;
  }
  .title-1 .text {
    padding-left: 50px;
    padding-right: 40px;
    font-size: 24px;
  }
  .title-1 .text span:first-child{
    top: -15px;
  }
  .title-1 .text span:last-child{
    top: 15px;
  }
  .text-1 {
    max-width: initial;
    font-size: 14px;
    line-height: 26px;
  }
  .text-3 .title {
    font-size: 30px;
  }
  .text-3 .text {
    font-size: 14px;
    line-height: 24px;
  }
  .text-4 .title span {
    font-size: 20px;
    line-height: 30px;
  }
  .text-4 .title i {
    width: 24px;
    font-size: 20px;
    line-height: 30px;
  }
  .text-4 ul {
    padding-left: 34px;
  }
  .text-4 ul li {
    font-size: 16px;
    line-height: 30px;
  }
  .text-4 .item.icon .title img {
    max-width: 120px;
  }
  .text-5 ul li input {
    height: 51px;
    font-size: 14px;
    line-height: 50px;
  }
  .text-5 ul li textarea {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 150px;
    min-height: 150px;
    font-size: 14px;
  }
  .text-5 ul li:last-child {
    margin-top: 40px;
  }
  .text-5 ul li button {
    width: 160px;
    height: 50px;
  }
  .text-5 ul li button span {
    width: calc(100% - 44px);
    height: 46px;
    font-size: 14px;
    line-height: 46px;
  }
  .text-5 ul li button i {
    width: 44px;
    height: 46px;
  }
  .text-6 .title {
    padding-left: 50px;
    padding-right: 40px;
  }
  .text-6 .title span:first-child{
    top: -15px;
  }
  .text-6 .title span:last-child{
    top: 15px;
  }
  .text-6 .text{
    padding-left: 60px;
  }
  .footer .top-wrap .left-wrap {
    width: 300px;
  }
  .footer .top-wrap .right-wrap ul li {
    margin-right: 3vw;
  }
  .picture-2 .wrap .title {
    font-size: 24px;
  }
  .picture-3 .title {
    font-size: 30px;
    line-height: 50px;
  }
  .picture-3 .text {
    margin-top: 20px;
  }
  .picture-4 ul li {
    width: calc(50% - 20px);
  }
  .picture-8 .wrap {
    padding-left: 5vw;
  }
  .picture-8.row-reverse .wrap {
    padding-right: 5vw;
  }
  .picture-8 .wrap .title,
  .picture-9 .wrap .title {
    font-size: 24px;
  }
  .picture-8 .wrap .subtitle {
    font-size: 16px;
  }
  .picture-10 ul {
    padding-top: 0;
  }
  .picture-10 ul li {
    position: initial !important;
    left: initial !important;
    top: initial !important;
    right: initial !important;
    margin-right: 14px !important;
    width: calc((100% - 28px) / 3) !important;
    height: auto !important;
  }
  .picture-10 ul li:nth-child(3n + 3) {
    margin-right: 0 !important;
  }
  .picture-10 ul li:nth-child(n + 4) {
    margin-top: 14px !important;
  }
  .picture-10 ul li a {
    position: relative !important;
    left: initial !important;
    top: initial !important;
    right: initial !important;
    bottom: initial !important;
    padding-top: calc(420 / 630 * 100%) !important;
  }
}

@media screen and (min-width: 992px) {
  /* .img-fixed {
    background-attachment: fixed;
  } */
  .menu-check,
  .header .search-form-mobile,
  .header .menu li .title i,
  .footer .top-wrap .right-wrap ul li .title i {
    display: none;
  }
  .header .menu li .title a:before {
    content: attr(data-title);
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 14px;
    width: 0;
    height: 100%;
    color: var(--main-color-yellow);
    transition: width 0.3s ease;
    overflow: hidden;
  }
  .header .menu li.active .title a:before,
  .header .menu li:hover .title a:before {
    width: 100%;
  }
  .header .menu li:hover .title a:after {
    width: 100%;
  }
  .picture-6 ul li a:hover .cover img,
  .picture-10 ul li a:hover .cover img {
    transform: scale(1.1);
    opacity: 0;
  }
  .footer .top-wrap .right-wrap ul li .list {
    display: block !important;
  }
}

@media screen and (max-width: 991px) {
  .header .wrap {
    height: auto;
  }
  .header .wrap > .container {
    height: 70px;
  }
  .header .logo {
    padding-top: 0;
  }
  .header .logo img {
    width: 80px;
  }
  .header .menu-check {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .header .menu-check b {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    width: 40px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
  }
  .header .menu-check b:nth-child(1) {
    margin-top: -10px;
    transition: all 0.1s ease;
  }
  .header .menu-check b:nth-child(2),
  .header .menu-check b:nth-child(3) {
    margin-top: -2px;
    transition: all 0.3s ease;
  }
  .header .menu-check b:nth-child(4) {
    margin-top: 6px;
    transition: all 0.1s ease;
  }
  .header .menu-check.active b:nth-child(1),
  .header .menu-check.active b:nth-child(4) {
    margin-top: -2px;
    opacity: 0;
  }
  .header .menu-check.active b:nth-child(2),
  .header .menu-check.active b:nth-child(3) {
    background-color: var(--main-color-yellow);
  }
  .header .menu-check.active b:nth-child(2) {
    transform: rotate(45deg);
  }
  .header .menu-check.active b:nth-child(3) {
    transform: rotate(-45deg);
  }
  .header .wrap .right-wrap {
    position: fixed;
    left: -100%;
    top: 70px;
    z-index: 99999;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding: 30px 10vw;
    width: 100%;
    height: calc(100% - 70px);
    background-color: var(--main-color-gray);
    border-top: solid 1px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.3s;
  }
  .header .wrap .right-wrap.active {
    left: 0;
  }
  .header .tool {
    width: 100%;
  }
  .header .menu {
    flex-direction: column;
    align-items: start;
    margin-left: 0;
    width: 100%;
  }
  .header .menu li {
    margin-right: 0;
    width: 100%;
  }
  .header .menu li .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  }
  .header .menu li .title a {
    display: flex;
    padding-top: 0;
    height: auto;
    line-height: 60px;
  }
  .header .menu li.active a {
    color: var(--main-color-yellow);
  }
  .header .menu li.active .title a:after {
    width: 100%;
  }
  .header .menu li .title i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
  }
  .header .menu li .title i:before {
    transform: rotate(90deg);
    transition: all 0.3s ease;
  }
  .header .menu li .title i.active:before {
    transform: rotate(-90deg);
  }
  .header .menu li .xiala{
    position: initial;
    left: initial;
    top: initial;
    margin-left: -10vw;
    margin-right: -10vw;
    width: auto;
  }
  .header .menu li .xiala .container{
    padding-left: 0;
    padding-right: 0;
    max-width: initial;
  }
  .header .menu li .xiala .list{
    flex-direction: column;
  }
  .header .menu li:nth-child(2) .xiala .list{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .header .menu li:nth-child(2) .xiala .list .item{
    flex: auto;
    width: 50%;
  }
  .header .menu li .xiala .list .item a{
    flex-direction: row;
    justify-content: start;
    padding-left: 10vw;
    padding-right: 10vw;
    height: 50px;
  }
  .header .menu li .xiala .list .item a .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 0;
  }
  .header .menu li .xiala .list .item a .icon img{
    height: 44px;
    object-fit: contain;
  }
  .header .menu li:nth-child(2) .xiala .list .item a .icon img{
    height: 22px;
  }
  .header .menu li .xiala .list .item a span{
    margin-top: 0;
    padding-left: 20px;
  }
  .header .menu li .xiala .list .item.active a span{
    color: #000000;
  }
  .header .wrap .right-wrap .tool {
    justify-content: end;
    position: relative;
    padding-top: 60px;
    margin-bottom: 20px;
  }
  .header .search-form-mobile {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    width: 100%;
  }
  .header .search-form-mobile form {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header .search-form-mobile form input {
    width: 100%;
  }
  .header .search {
    display: none;
  }
  .header .search-form {
    display: none;
  }
  .header .email {
    margin-left: 0;
  }
  .text-5 ul li{
    width: 100%;
  }
  .text-5 ul li:nth-child(n+2){
    margin-top: 30px;
  }
  .text-6 .text{
    font-size: 18px;
  }
  .picture-1 .play-icon {
    width: 50px;
    height: 50px;
  }
  .picture-1 .tips {
    font-size: 20px;
  }
  .picture-1 .tips span:nth-child(1) {
    font-size: 24px;
  }
  .picture-2 {
    flex-direction: column-reverse;
  }
  .picture-2 .wrap,
  .picture-2 .pic {
    width: 100%;
  }
  .picture-2 .pic {
    margin-top: 30px;
  }
  .picture-2 .pic .play-icon,
  .picture-8 .pic .play-icon {
    width: 50px;
    height: 50px;
  }
  .picture-4 ul li{
    width: 100%;
  }
  .picture-4 ul li:nth-child(n+2){
    margin-top: 30px;
  }
  .picture-5 {
    padding-left: 0;
    padding-right: 0;
    margin-left: -10px;
  }
  .picture-5-item {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .picture-5-item .box {
    padding: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05), inset 0 0 0 1px #ebebeb;
  }
  .picture-5 .swiper-button,
  .picture-7 .swiper-button{
    display: none;
  }
  .picture-5-item .box .wrap {
    height: 192px;
  }
  .picture-5-item .box .wrap .title {
    font-size: 16px;
  }
  .picture-5-item .box .wrap .text {
    height: 120px;
    -webkit-line-clamp: 5;
  }
  .picture-6 ul li{
    width: 100%;
  }
  .picture-6 ul li:nth-child(n+2){
    margin-top: 10px;
  }
  .picture-7{
    padding-left: 0;
    padding-right: 0;
    margin-top: -10px;
    margin-bottom: -10px;
    margin-left: -10px;
  }
  .picture-7-item{
    padding: 10px;
  }
  .picture-7-item .box{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
  }
  .picture-7-item .wrap {
    padding: 20px;
  }
  .picture-7-item .wrap .title {
    font-size: 18px;
  }
  .picture-7-item .wrap .text{
    height: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
  .picture-8{
    flex-direction: column-reverse;
    align-items: start;
    padding-left: 15px;
    padding-right: 15px;
  }
  .picture-8 .wrap{
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
  }
  .picture-8 .pic{
    margin-top: 30px;
    width: 100%;
  }
  .picture-10 ul li{
    margin-right: 20px !important;
    width: calc(50% - 10px) !important;
  }
  .picture-10 ul li:nth-child(3n + 3){
    margin-right: 20px !important;
  }
  .picture-10 ul li:nth-child(2n+2){
    margin-right: 0 !important;
  }
  .picture-10 ul li:nth-child(n+3){
    margin-top: 20px !important;
  }
   .picture-6 ul li a .wrap,
  .picture-10 ul li a .wrap {
    display: none;
  }
  .footer .top-wrap .container {
    flex-direction: column-reverse;
  }
  .footer .top-wrap .left-wrap {
    padding-right: 0;
    margin-top: 30px;
    width: 100%;
  }
  .footer .top-wrap .right-wrap .menu {
    margin-left: -15px;
    margin-right: -15px;
  }
  .footer .top-wrap .right-wrap ul {
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .top-wrap .right-wrap ul li {
    margin-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .top-wrap .right-wrap ul li .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    height: 58px;
  }
  .footer .top-wrap .right-wrap ul li .title i {
    position: relative;
    width: 58px;
    height: 58px;
  }
  .footer .top-wrap .right-wrap ul li .title i:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -4px;
    margin-left: -6px;
    border-left: solid 6px transparent;
    border-right: solid 6px transparent;
    border-top: solid 8px #a5a29d;
    transition: all 0.3s ease;
  }
  .footer .top-wrap .right-wrap ul li .title i.active:before {
    transform: rotate(180deg);
  }
  .footer .top-wrap .right-wrap ul li .list {
    display: none;
  }
  .footer .top-wrap .right-wrap ul li .item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer .top-wrap .right-wrap ul li .item:nth-child(n + 2) {
    margin-top: 8px;
  }
  .footer .top-wrap .right-wrap ul li .item:last-child {
    margin-bottom: 20px;
  }
  .footer .top-wrap .right-wrap ul li .item a {
    line-height: 24px;
  }
  .footer .copyright {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .header .menu-check b{
    margin-left: -40%;
    width: 80%;
    height: 2px;
  }
  .banner-swiper img{
    height: 62.5vw;
    object-fit: cover;
  }
  .banner img{
    height: 56vw;
    object-fit: cover;
  }
  .banner .video-wrap{
    height: 56vw;
  }
  .banner .wrap .title{
    font-size: 24px;
  }
  .banner .wrap .line{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 50px;
  }
  .banner .wrap .text,
  .banner.spa .wrap .text,
  .banner.china .wrap .text,
  .banner.why .wrap .text {
    font-size: 14px;
    line-height: 24px;
  }
  .picture-1 .play-icon {
    top: 30%;
  }
  .picture-1 .tips {
    bottom: 15%;
    font-size: 16px;
  }
  .picture-1 .tips span:nth-child(1) {
    margin-right: 10px;
    font-size: 18px;
  }
  .picture-1 .tips span:nth-child(2) {
    margin-right: 10px;
  }
  .picture-3 .wrap{
    padding-top: 80px;
    padding-bottom: 80px;
    height: auto;
  }
  .develop-section-2.picture-3 .wrap{
    padding-top: 20%;
    padding-bottom: 0;
    height: 62.5vw;
  }
  .develop-section-2.picture-3 .title{
    font-size: 24px;
    line-height: 34px;
  }
  .picture-9 .pic .dragbar .draggable{
    margin-left: -16px;
    margin-top: -16px;
    width: 32px;
    height: 32px;
  }
  .picture-9 .pic .dragbar .draggable i{
    font-size: 20px;
  }
  .picture-10 ul li{
    margin-right: 0 !important;
    width: 100% !important;
  }
  .picture-10 ul li:nth-child(3n + 3){
    margin-right: 0 !important;
  }
  .picture-10 ul li:nth-child(2n+2){
    margin-right: 0 !important;
  }
  .picture-10 ul li:nth-child(n+2){
    margin-top: 10px !important;
  }
  .goTop{
    width: 44px;
    height: 44px;
    border-radius: 5px 0 0 5px;
  }
  .goTop i{
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
    .ddddddd{line-height:26px!important;margin-top:11px;padding-bottom:6px;}
  .yh-l, .yh-r {
    width: 30px;
    height: 30px;
  }
  .title-1 .text{
    padding-left: 40px;
    padding-right: 40px;
  }
  .title-1 .text span:first-child{
    top: -10px;
  }
  .title-1 .text span:last-child{
    top: 10px;
  }
  .text-2 .title {
    font-size: 24px;
  }
  .text-3 .title{
    font-size: 24px;
  }
  .text-4 ul li{
    font-size: 14px;
  }
  .text-5 ul li:nth-child(n+2) {
    margin-top: 20px;
  }
  .text-6 .title{
    padding-left: 40px;
    padding-right: 40px;
  }
  .text-6 .title span:first-child{
    top: -10px;
  }
  .text-6 .title span:last-child{
    top: 10px;
  }
  .picture-4 ul li a{
    flex-direction: column;
    height: auto;
  }
  .picture-4 ul li a .cover{
    width: 100%;
    height: calc(125 / 175 * (100vw - 30px));
    border-radius: 10px 10px 0 0;
  }
  .picture-4 ul li a .wrap{
    padding: 20px 0 20px 20px;
    width: 100%;
  }
  .picture-4 ul li a .wrap .left-wrap{
    line-height: 26px;
  }
  .picture-4 ul li a .wrap .left-wrap .title{
    font-size: 16px;
  }
  .picture-4 ul li a .wrap .left-wrap .text{
    font-size: 13px;
  }
  .picture-7-item .wrap .text{
    margin-top: 15px;
  }
}
