/* ========================================================================
   公共样式
 ========================================================================== */

/*  Font  
-------------------------- */
@font-face {
  font-family: 'WorkSans-Regular';
  src: url('../fonts/WorkSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'WorkSans-Bold';
  src: url('../fonts/WorkSans-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'WorkSans-Medium';
  src: url('../fonts/WorkSans-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'WorkSans-SemiBold';
  src: url('../fonts/WorkSans-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'iconfont';
  src: url('../fonts/iconfont.woff2?t=1763979377741') format('woff2'),
    url('../fonts/iconfont.woff?t=1763979377741') format('woff'),
    url('../fonts/iconfont.ttf?t=1763979377741') format('truetype');
}

/*  Agent style 
-------------------------- */
body {
  font-family: WorkSans-Regular;
  font-size: 16px;
  margin: 0;
  text-transform: none;
  color: #717071;
  word-wrap: break-word;
}

ul,
img,
video {
  vertical-align: top;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

input,
textarea,
button {
  border: none;
  appearance: none;
  background: transparent;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

textarea {
  resize: none;
}

a {
  outline: none;
  color: #717071;
  text-decoration: none;
}

input:focus,
textarea:focus,
button:focus a:focus,
input:active,
textarea:active,
button:active a:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: none;
}


.iconfont {
  font-family: "iconfont";
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================================
   Animate
 ========================================================================== */


/* ========================================================================
   tool style
 ========================================================================== */





/* ========================================================================
   页面公共部分
 ========================================================================== */



/*  header 
-------------------------- */
.header {
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, .8);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  transition: all .3s linear;
  border-bottom: 1px solid transparent;
}

.header.active {
  background-color: #fff;
}

.header .logo {
  padding: 15px;
}

.header .logo img {
  width: 171px;
  height: 45px;
}



body.scroll .header {
  border-color: #f2f2f2;
  background-color: #fff;
}

body.header-hide .header {
  transform: translateY(-100%);
}





.header .nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 76px;
  bottom: 0;
  overflow-y: auto;
  background-color: #fff;
}

.header .nav.active {
  display: block;
}

.header .nav a {
  word-break: break-all;
  color: #000;
}

.header .nav>ul>li {
  padding: 20px 15px;
  position: relative;
  border-bottom: 1px solid #f2f2f2;
}

.header .nav>ul>li>a {
  font-size: 14px;
}

.header .nav>ul>li::after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(132deg) translateX(-2px);
  position: absolute;
  right: 15px;
  top: 23px;
}

.header .nav li.active>a {
  color: #d09029;
}

.header .nav li.active::after {
  border-color: #d09029;
  transform: rotate(-44deg);
}

.header .nav>ul ul {
  display: none;
  background-color: #fff;
  width: 100%;
}

.header .nav>ul ul li {
  padding-left: 30px;
  padding-right: 15px;
  margin-top: 30px;
}

.header .nav>ul ul.active {
  display: block;
}

.header .nav>ul ul a {
  font-size: 12px;
}


.header .menu {
  position: relative;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5px;
  margin-left: auto;
}

.header .menu span {
  width: 20px;
  height: 2px;
  background-color: #333;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  transform-origin: center;
}

.header .menu.active span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.header .menu.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.header .menu.active span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}


.header .ins {
  margin-left: 15px;
  margin-right: 15px;
}

.header .ins span {
  display: none;
}

@media (min-width: 992px) {

  .header.active {
    background-color: rgba(255, 255, 255, .8);
  }

  .header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 259px;
    height: 110px;
    padding: 0;
    background-color: #fff;
  }



  .header .nav {
    display: block;
    flex: 1;
    position: static;
    background-color: transparent;
    overflow-y: initial;
    align-self: normal;
  }

  .header .nav>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .header .nav>ul>li {
    height: 100%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    display: flex;
    align-items: center;
    padding: 0;
    position: static;
    border-bottom-color: transparent;
  }

  .header .nav>ul>li>a {
    transition: all .3s linear;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .header .nav>ul>li::after {
    position: static;
    margin-left: 10px;
    transition: all .3s linear;
  }

  .header .nav li.active>a {
    color: #000;
  }

  .header .nav>ul>li:hover>a {
    color: #d09029;
  }

  .header .nav li.active::after {
    border-color: #000;
    transform: rotate(132deg);
  }

  .header .nav>ul>li:hover::after {
    border-color: #d09029;
    transform: rotate(-44deg);
  }

  .header .nav>ul ul.active {
    display: none;
  }

  .header .nav>ul>li>ul {
    position: absolute;
    top: 111px;
    margin-left: -32px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .header .nav>ul>li>ul>li {
    padding: 4px 32px;
    margin-top: 0;
  }

  .header .nav>ul>li>ul>li>a {
    display: inline-block;
    padding-bottom: 12px;
    padding-top: 12px;
    border-bottom: 1px solid transparent;
    transition: all .3s linear;
  }

  .header .nav>ul>li:hover>ul {
    display: block;
    width: 292px;
  }

  .header .nav>ul>li>ul>li>a:hover {
    border-color: #d08f29;
    color: #d08f29;
  }


  .header .menu {
    display: none;
  }


  .header .ins {
    margin-left: 0;
  }

  .header .ins span,
  .header .ins svg path {
    transition: all .3s linear;
  }

  .header .ins:hover span {
    color: #d09029;
  }

  .header .ins:hover svg path {
    fill: #d09029;
  }
}

@media (min-width: 1480px) {
  .header .logo img {
    height: 110px;
  }

  .header .ins {
    margin-right: 37px;
    display: flex;
    align-items: center;
  }

  .header .ins span {
    display: block;
    font-size: 14px;
    color: #000;
    margin-left: 12px;
  }
}


/*  banner 
-------------------------- */
.banner {
  height: 345px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 76px;
  color: #fff;
  box-sizing: border-box;
}

.banner .h1 {
  font-family: 'WorkSans-Bold';
  font-size: 30px;
  text-transform: uppercase;
}

.banner .p {
  font-size: 16px;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .banner {
    padding-left: 8.54%;
    padding-right: 8.54%;
  }
}

@media (min-width: 992px) {
  .banner {
    height: 645px;
    padding-top: 111px;
    padding-right: 40%;
  }

  .banner .h1 {
    font-size: 58px;
  }

  .banner .p {
    font-size: 18px;
  }
}

/*  跳转按钮 
-------------------------- */
.link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background-color: #d09029;
  padding: 11px 21px;
  border: 1px solid #d09029;
}

.link span {
  font-size: 20px;
  margin-right: 22px;
}

@media (min-width: 992px) {

  .link,
  .link svg path {
    transition: all .4s linear;
  }

  .link:hover {
    color: #d09029;
    background: transparent;
  }

  .link:hover svg path {
    stroke: #d09029;
  }
}



/*  合作伙伴
-------------------------- */
.partner {
  padding-top: 30px;
  padding-bottom: 30px;
}

.partner .title {
  font-size: 30px;
  font-family: 'WorkSans-Bold';
  text-transform: uppercase;
  color: #000;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.partner .partner-marquee {
  width: 100%;
  height: 117px;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}

.partner img {
  height: 115px;
  border-radius: 20px;
  border: 1px solid #CCC9C4;
  overflow: hidden;
  margin-right: 15px;
}

@media (min-width: 768px) {
  .partner {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .partner .title {
    font-size: 46px;
  }

  .partner .partner-marquee {
    margin-top: 100px;
  }

  .partner img {
    margin-right: 48px;
  }
}

/*  联系留言 
-------------------------- */
.contact {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f8f8f8 url('../images/contact_bg.png') no-repeat left top;
}

@media (min-width: 768px) {
  .contact {
    padding-top: 167px;
    padding-bottom: 174px;
    padding-left: 13.54%;
    /*260px*/
    padding-right: 13.54%;
  }
}

.contact .title {
  font-family: 'WorkSans-Bold';
  font-size: 30px;
  color: #000;
  text-transform: uppercase;
}

.contact .line {
  width: 97px;
  height: 7px;
  background-color: #d09029;
  margin-top: 30px;
}

.contact .item {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.contact .words {
  padding-left: 34px;
  flex: 1;
  box-sizing: border-box;
  word-break: break-all;
}

.contact .h2 {
  font-size: 20px;
  font-family: 'WorkSans-Medium';
  color: #d09029;
}

.contact .p {
  font-family: 'WorkSans-Medium';
  font-size: 18px;
  color: #000;
  margin-top: 5px;
}

.contact a {
  color: #000;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .contact .title {
    font-size: 46px;
  }

  .contact .line {
    margin-top: 84px;
  }

  .contact .item0 {
    margin-top: 90px;
  }

  .contact .item {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  .contact a {
    transition: all .4s linear;
  }

  .contact a:hover {
    color: #d09029;
  }
}


.contact .right {
  margin-top: 30px;
}

.contact .form-label {
  font-family: 'WorkSans-Medium';
  font-size: 18px;
  color: #070707;
}

.contact .form-label span {
  color: #d09029;
}

.contact .form-input {
  margin-top: 16px;
}

.contact input,
.contact textarea {
  font-family: 'WorkSans-Medium';
  font-size: 18px;
  width: 100%;
  background-color: #fff;
  padding: 16px;
  border: 1px solid #fff;
  box-sizing: border-box;
  color: #717071;
}

.contact textarea {
  height: 10em;
  box-sizing: border-box;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #d09029;
}

.contact .form-error {
  height: 30px;
  display: flex;
  align-items: center;
  color: #f00;
}

.contact .form-submit {
  display: flex;
  justify-content: flex-end;
}

.contact .form-btn {
  font-family: 'WorkSans-Medium';
  width: 194px;
  height: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #d09029;
  border: 1px solid #d09029;
  margin-top: 9px;
}

@media (min-width: 768px) {
  .contact .right {
    margin-top: 174px;
  }

  .contact .form-row {
    display: flex;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
  }

  .contact .form-row .form-item {
    width: 50%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact .form-error {
    height: 56px;
  }
}

@media (min-width: 992px) {
  .contact .form-btn {
    transition: all .4s linear;
  }

  .contact .form-btn:hover {
    background-color: transparent;
    color: #d09029;
  }
}

@media (min-width: 1400px) {
  .contact {
    display: flex;
    justify-content: space-between;
  }

  .contact .left {
    width: 36%;
  }

  .contact .right {
    width: 43.2%;
    margin-top: 0;
  }
}



/*  footer
-------------------------- */
.footer {
  background-color: #ece8df;
  padding-top: 34px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .footer {
    padding-left: 8.54%;
    /* 164px */
    padding-right: 8.54%;
  }
}


/* footer1 */
.footer1 {
  display: flex;
  flex-wrap: wrap;
}

.footer1 dl {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 4.4%;
}

.footer1 dl:last-child {
  margin-right: 0;
}

.footer1 dt {
  font-family: 'WorkSans-Bold';
  font-size: 20px;
  margin-bottom: 29px;
  margin-top: 29px;
}

.footer1 dt a {
  color: #000;
}

.footer1 dd {
  font-size: 16px;
  margin-left: 0;
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .footer a {
    transition: all .4s linear;
  }

  .footer a:hover {
    color: #d09029;
  }
}

@media (min-width: 1400px) {
  .footer1 {
    justify-content: flex-end;
  }
}


/* footer2 */
.footer2 .logo {
  text-align: center;
  padding-top: 19px;
}

.footer2 dl {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 51px;
}

.footer2 dt {
  color: #000;
  font-size: 20px;
  font-family: 'WorkSans-Medium';
}

.footer2 dd {
  margin-left: 0;
  margin-top: 13px;
  display: flex;
  align-items: center;
}

.footer2 dd a {
  width: 29px;
  margin-right: 12px;
}

.footer2 dd a:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .footer2 {
    display: flex;
    justify-content: space-between;
  }

  .footer2 dd a svg path {
    transition: all .4s linear;
  }

  .footer2 dd a:hover svg path {
    fill: #d09029;
  }
}



/* footer3 */
.footer3 {
  margin-top: 10px;
  padding-top: 20px;
  padding-bottom: 16px;
  border-top: 1px solid #d6d2ca;
}

@media (min-width: 768px) {
  .footer3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .footer3 a {
    transition: all .4s linear;
  }

  .footer3 a:hover {
    color: #d09029;
  }
}



/*  whatsapp
-------------------------- */
.whatsapp-fix {
  position: fixed;
  right: 0px;
  bottom: 10%;
  z-index: 99;

  padding: 20px;
  display: flex;
  align-items: center;
  background-color: #62CB57;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0px 0px 20px 0px #00000040;

}

.whatsapp-fix span {
  font-family: 'WorkSans-Bold';
  flex: 1;
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  margin-left: 15px;
}

@media (min-width: 768px) {
  .whatsapp-fix {
    padding: 18px 36px 18px 25px;
  }
}





/* ========================================================================
   首页
 ========================================================================== */

/*  banner
-------------------------- */
.banner-wrap {
  height: 350vh;
  position: relative;
}

.banner-wrap .pin {
  position: sticky;
  height: 100vh;
  top: 0;
  overflow: hidden;
}

.home-banner-swiper {
  height: 100%;
}

.home-banner-swiper .swiper-slide {
  position: relative;
}

.home-banner-swiper .pic,
.home-banner-swiper video {
  width: 100vw;
  height: 100vh;
}

.home-banner-swiper .pic {
  object-fit: cover;
}

.home-banner-swiper .mask {
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
}

.home-banner-swiper .title {
  font-family: 'WorkSans-Bold';
  font-size: 55px;
  color: #d08f29;
  text-transform: uppercase;
  opacity: 0;
}

.home-banner-swiper .txt {
  color: #fff;
  font-size: 28px;
  padding-bottom: 7.7%;
  opacity: 0;
}

.home-banner-swiper .link-box {
  opacity: 0;
}

@media (min-width: 768px) {
  .home-banner-swiper .mask {
    padding-left: 3%;
    padding-right: 3%;
  }

  .home-banner-swiper .title {
    font-size: 120px;
  }
}

@media (min-width: 992px) {
  .home-banner-swiper .mask {
    padding-top: 111px;
  }

  .home-banner-swiper .link:hover {
    color: #fff;
    border-color: #fff;
  }

  .home-banner-swiper .link:hover svg path {
    stroke: #fff;
  }
}

.home-banner-swiper .swiper-slide-active .title,
.home-banner-swiper .swiper-slide-active .txt,
.home-banner-swiper .swiper-slide-active .link-box {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.home-banner-swiper .swiper-slide-active .title {
  animation-delay: .3s;
}

.home-banner-swiper .swiper-slide-active .txt {
  animation-delay: 0.6s;
}

.home-banner-swiper .swiper-slide-active .link-box {
  animation-delay: 0.9s;
}


/*  
-------------------------- */
.earth-bg{
  position:absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, .5);
  opacity: 0;
}
.earth_anchor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 615px;
  height: 639px;
  border: 41px solid #D08F29;
  box-sizing: border-box;
  border-radius: 615px;
  z-index: 3;
}

.earth {
  width: 71vw;
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0) rotate(40deg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 3;
}

.earth .earth_marker {
  text-align: center;
  display: inline-block;
  position: absolute;
  left: 28%;
  top: 19%;
  z-index: 5;
  opacity: 0;
  transform: scale(0);
}

.earth .map {
  width: 40px;
}

.earth .txt {
  font-family: 'WorkSans-SemiBold';
  font-size: 16px;
  width: 100px;
  height: 38px;
  border-radius: 38px;
  background-color: #fff;
  color: #d08f29;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.earth .txt::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 5px;
  ;
  background-color: #d08f29;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .earth .mask {
    bottom: 34.5%;
    left: 24.8%;
  }

  .earth .map {
    width: 124px;
    height: 134px;
    margin-bottom: 15px;
  }

  .earth .txt {
    font-size: 40px;
    width: 220px;
    height: 78px;
    border-radius: 78px;
  }

  .earth .txt::before {
    width: 14px;
    height: 14px;
    border-radius: 14px;
    margin-right: 20px;
  }
}





/*  
-------------------------- */
.home-rote {
  background: url('../images/pop_bg.png') no-repeat center top;
  padding-top: 65px;
  padding-left: 15px;
  padding-right: 15px;
}

.home-rote .title {
  font-family: 'WorkSans-Bold';
  color: #000;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .home-rote {
    padding-left: 3%;
    padding-right: 3%;
  }

  .home-rote .title {
    font-size: 46px;
    padding-bottom: 50px;
  }
}

@media (min-width: 1480px) {
  .home-rote {
    padding-left: 13.48%;
    padding-right: 13.48%;
  }
}




.rote-tabs-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.rote-tabs {
  overflow: hidden;
  cursor: grab;
  justify-content: center;
}

.rote-tabs ul {
  display: flex;
}

.rote-tabs li {
  width: 178px;
  height: 90px;
  flex-shrink: 0;
  padding-left: 25px;
  padding-right: 25px;
}

.rote-tabs a {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: 'WorkSans-Medium';
  font-size: 16px;
  position: relative;
  transition: color .3s linear;
}


.rote-tabs a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #eaeaea;
  transition: all .3s linear;
}

.rote-tabs li.active a {
  font-family: 'WorkSans-SemiBold';
  color: #000;
}

.rote-tabs li.active a::before {
  background-color: rgba(208, 143, 41, 1);
}

@media (min-width: 768px) {
  .rote-tabs li {
    padding-left: 17px;
    padding-right: 17px;
  }
}

@media (min-width: 992px) {
  .rote-tabs li a:hover {
    color: #000;
  }

  .rote-tabs li a:hover::before {
    background-color: rgba(208, 143, 41, 1);
  }
}



.rote-content {
  display: none;
}

.rote-content.active {
  display: block;
}

.home-rote .item {
  text-align: center;
  margin-top: 30px;
}

.home-rote .item .pic {
  display: inline-block;
  position: relative;
  aspect-ratio: 315 / 547;
}

.home-rote .h2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 81.6%);
  padding-left: 39px;
  padding-right: 39px;
  padding-bottom: 41px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
  font-size: 28px;
  font-family: 'WorkSans-Medium';
}

.home-rote .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(208, 143, 41, .9);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: left;
  color: #fff;
  padding-left: 39px;
  padding-right: 39px;
  padding-bottom: 32px;
  opacity: 0;
}

.home-rote .h1 {
  font-size: 28px;
  font-family: 'WorkSans-Medium';
}

.home-rote .p {
  font-size: 20px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .rote-content.active {
    display: flex;
    flex-wrap: wrap;
  }

  .rote-content {
    margin-left: -15px;
    margin-right: -15px;
  }

  .home-rote .item {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 115px;
    box-sizing: border-box;
  }
}

@media (min-width: 992px) {
  .home-rote .item {
    width: 25%;
  }

  .home-rote .h2,
  .home-rote .mask {
    transition: all .3s linear;
  }

  .home-rote .item:hover .mask {
    opacity: 1;
  }

  .home-rote .item:hover .h2 {
    opacity: 0;
  }
}

@media (min-width: 1480px) {
  .rote-content {
    margin-left: -24px;
    margin-right: -24px;
  }

  .home-rote .item {
    padding-left: 24px;
    padding-right: 24px;
  }
}



.home-rote .link-box {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .home-rote .link-box {
    padding-top: 77px;
    padding-bottom: 174px;
  }
}



/*  快链
-------------------------- */
.home-quick .pannel {
  position: relative;
  overflow: hidden;
}

.home-quick .pic {
  text-align: center;
  position: relative;
  aspect-ratio: 8/9;
}

.home-quick .pic::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  z-index: 1;
}

.home-quick img {
  aspect-ratio: 8/9;
  width: 100%;
  max-width: none;
}

.home-quick .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #fff;
}

.home-quick .title {
  font-family: 'WorkSans-SemiBold';
  text-transform: uppercase;
  font-size: 30px;
  word-break: break-all;
}

.home-quick .txt {
  display: none;
}

.home-quick .link-box {
  margin-top: 54px;
}

@media (min-width: 640px) {
  .home-quick {
    display: flex;
  }

  .home-quick .pannel {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .home-quick .title {
    font-size: 36px;
  }
}

@media (min-width: 992px) {
  .home-quick .pic::before {
    background-color: rgba(0, 0, 0, 0);
    transition: all .4s linear;
  }

  .home-quick .pic img {
    transition: all .4s linear;
  }

  .home-quick .mask {
    padding-left: 15.5%;
    padding-right: 15.5%;

    transform: translateY(43%);
    transition: all .4s linear;
  }

  .home-quick .txt,
  .home-quick .link-box {
    opacity: 0;
    transform: translateY(200%);
    transition: all .4s linear;
  }

  .home-quick .txt {
    display: block;
    font-size: 20px;
    margin-top: 42px;
    max-height: 4.8em;
    line-height: 1.2;
    overflow: hidden;
  }

  .home-quick .pannel:hover .pic::before {
    background-color: rgba(0, 0, 0, .5);
  }

  .home-quick .pannel:hover .pic img {
    transition: all .4s linear;
    transform: scale(1.05);
  }

  .home-quick .pannel:hover .mask,
  .home-quick .pannel:hover .txt,
  .home-quick .pannel:hover .link-box {
    opacity: 1;
    transform: translateY(0);
  }

  .home-quick .link:hover {
    color: #fff;
    border-color: #fff;
  }

  .home-quick .link:hover svg path {
    stroke: #fff;
  }

}


/*  优势
-------------------------- */

.home-advantage {
  background: url('../images/advantage_bg.png') no-repeat 0 108px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .home-advantage {
    padding-left: 8.28%;
    padding-right: 8.28%;
    padding-top: 182px;
    padding-bottom: 150px;
  }
}




.home-advantage .box-pc {
  display: none;
}

.home-advantage .title {
  color: #000;
  text-transform: uppercase;
  font-family: 'WorkSans-Bold';
  font-size: 30px;
}

.home-advantage .txt {
  font-size: 20px;
  margin-top: 30px;
}

.home-advantage .pic {
  margin-top: 30px;
  text-align: center;
}

.home-advantage li {
  padding-top: 15px;
  padding-bottom: 15px;
}

.home-advantage li:first-child {
  padding-top: 30px;
}

.home-advantage .h1 {
  font-size: 28px;
  font-family: 'WorkSans-Medium';
  color: #7f7f7f
}

.home-advantage .box-min .h1 {
  color: #d09029;
}

.home-advantage .p {
  font-size: 20px;
  margin-top: 26px;
}

.home-advantage .link-box {
  text-align: right;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .home-advantage .title {
    font-size: 40px;
  }

  .home-advantage .pic {
    margin-top: 97px;
  }

  .home-advantage li {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .home-advantage li:first-child {
    padding-top: 50px;
  }

  .home-advantage .link-box {
    margin-top: 58px;
  }
}

@media (min-width: 992px) {
  .home-advantage .box-min {
    display: none;
  }

  .home-advantage .box-pc {
    display: flex;
    align-items: flex-end;
  }

  .home-advantage .left {
    flex: 1;
    padding-right: 5.4%;
    box-sizing: border-box;
  }

  .home-advantage .pic {
    display: none;
    text-align: left;
  }

  .home-advantage .pic.active {
    display: block;
  }

  .home-advantage .right {
    width: 42.3%;
    height: 600px;
    overflow: hidden;
  }

  .advantage-tabs-container {
    position: relative;
    height: 600px;
    overflow: hidden;
  }

  .advantage-tabs-wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .home-advantage li {
    padding-left: 107px;
    position: relative;
  }

  .home-advantage li::before {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid #d08f29;
    position: absolute;
    left: 43px;
    top: 79px;
  }


  .home-advantage li .h1,
  .home-advantage li .p,
  .home-advantage li::before {
    transition: all .3s linear;
  }



  .home-advantage li.active .h1,
  .home-advantage li.active .p {
    color: #d09029;
  }

  .home-advantage li.active .h1 {
    font-family: 'WorkSans-Bold';
    font-size: 38px;
  }

  .home-advantage li.active::before {
    background-color: #d08f29;
    width: 38px;
    height: 38px;
    border-radius: 38px;
    left: 0;
  }
}

@media (min-width: 1400px) {
  .home-advantage .left {
    padding-right: 9.4%;
  }
}



/*  客户评价
-------------------------- */
.home-evaluation {
  background: url('../images/comment_bg.png') no-repeat right top;
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-evaluation .title {
  text-align: center;
  font-size: 30px;
  color: #000;
  font-family: 'WorkSans-Bold';
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
}

.home-evaluation .swiper-content {
  padding-top: 60px;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
  color: #fff;
}

.home-evaluation .swiper-content::before {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  top: 30px;

  background: #d09029 url('../images/depoimentos_bg.png') no-repeat left top;
  z-index: -1;
}

.home-evaluation .left {
  padding-bottom: 198px;
}

.home-evaluation .txt {
  font-size: 24px;
  font-family: 'WorkSans-Medium';
  margin-top: 50px;
}

.home-evaluation .date {
  margin-top: 50px;
}

.home-evaluation .name {
  margin-top: 12px;
}

.home-evaluation .right {
  display: none;
}

@media (min-width: 768px) {
  .home-evaluation {
    padding-top: 216px;
    padding-bottom: 235px;
  }

  .home-evaluation .title {
    font-size: 46px;
  }

  .home-evaluation .swiper-content {
    padding-top: 11%;
    padding-left: calc(8.125% + 67px);
    padding-right: 16.66%;
    display: flex;
    justify-content: space-between;
  }

  .home-evaluation .swiper-content::before {
    left: 8.125%;
    right: 8.125%;
    top: 11%;
  }

  .home-evaluation .left {
    width: 60%;
  }

  .home-evaluation .right {
    display: block;
    width: 29.4%;
    aspect-ratio: 399 / 460;
    position: relative;
    align-self: flex-end;
  }

  .home-evaluation .right img {
    transform-origin: bottom center;
    position: absolute;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
  }

  .home-evaluation .right .img1 {
    z-index: 3;
  }

  .home-evaluation .right .img2 {
    z-index: 2;
    transform: rotate(13deg) translateX(10%) translateY(-20%);
  }

  .home-evaluation .right .img3 {
    z-index: 1;
    transform: rotate(16deg) translateX(11.5%) translateY(-44.5%)
  }
}




.home-evaluation .swiper-button-next,
.home-evaluation .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 42px;
  background: #fff;
  top: auto;
  bottom: 103px;
  margin-top: 0;
  transition: all .4s linear;
}

.home-evaluation .swiper-button-prev {
  left: 35px;
}

.home-evaluation .swiper-button-next {
  right: auto;
  left: 93px;
}

.home-evaluation .swiper-button-next.swiper-button-disabled,
.home-evaluation .swiper-button-prev.swiper-button-disabled {
  background: rgba(255, 255, 255, .5);
  opacity: 1;
}

.home-evaluation .swiper-button-prev::before,
.home-evaluation .swiper-button-next::before {
  content: ' ';
  width: 8px;
  height: 8px;
  border-left: 2px solid #d09029;
  border-top: 2px solid #d09029;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all .4s linear;
}

.home-evaluation .swiper-button-prev.swiper-button-disabled::before,
.home-evaluation .swiper-button-next.swiper-button-disabled::before {
  border-color: #fff;
}

.home-evaluation .swiper-button-prev::before {
  transform: rotate(-45deg);
  margin-top: -5px;
  margin-left: -3px;
}

.home-evaluation .swiper-button-next::before {
  transform: rotate(135deg);
  margin-top: -5px;
  margin-left: -7px;
}

@media (min-width: 768px) {
  .home-evaluation .swiper-button-prev {
    left: calc(8.125% + 67px);
  }

  .home-evaluation .swiper-button-next {
    left: calc(8.125% + 67px + 59px);
  }
}

@media (min-width: 992px) {

  .home-evaluation .swiper-button-prev:hover,
  .home-evaluation .swiper-button-next:hover {
    box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, .15);
  }
}



/* ========================================================================
   联系我们
 ========================================================================== */
.we {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.we .title {
  font-family: 'WorkSans-Bold';
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
}

.we .left,
.we .right {
  margin-top: 30px;
}

.we .line {
  width: 97px;
  height: 7px;
  background-color: #d08f29;
}

.we .icons1 {
  margin-top: 30px;
}

.we .h2 {
  font-family: 'WorkSans-Medium';
  color: #d08f29;
  font-size: 20px;
  margin-top: 30px;
}

.we .txt {
  font-family: 'WorkSans-Medium';
  color: #000;
  font-size: 18px;
  margin-top: 9px;
}

.we .icons2 {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.we .icons2 img {
  margin-right: 20px;
}

@media (min-width: 768px) {
  .we {
    padding-left: 13.54%;
    padding-right: 0;
    padding-top: 200px;
    padding-bottom: 244px;
  }

  .we .title {
    font-size: 46px;
  }

  .we .wrap {
    display: flex;
    justify-content: space-between;
  }

  .we .left,
  .we .right {
    margin-top: 82px;
  }

  .we .icons1 {
    margin-top: 85px;
  }

  .we .h2 {
    margin-top: 34px;
  }

  .we .icons2 {
    margin-top: 58px;
  }

  .we .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 5%;
    box-sizing: border-box;
  }
}

@media (min-width: 992px) {
  .we .right {
    align-items: flex-start;
  }
}


.contact2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url('../images/contact_bg2.png');
}

.contact2 .form-submit {
  justify-content: center;
}

@media (min-width: 768px) {
  .contact2 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 148px;
    padding-bottom: 192px;
  }

  .contact2 .wrap {
    width: 594px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .contact2 {
    display: block;
  }
}


/* ========================================================================
   关于我们
 ========================================================================== */
.about-section1 {
  background: url('../images/about_bg.png') no-repeat 16% 0;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
}

.about-section1 .item {
  padding-bottom: 30px;
}

.about-section1 .pic {
  text-align: center;
}

.about-section1 .title {
  text-transform: uppercase;
  color: #000;
  font-size: 30px;
  font-family: 'WorkSans-SemiBold';
  margin-top: 30px;
}

.about-section1 .txt {
  font-size: 20px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .about-section1 {
    padding-left: 8.5%;
    padding-right: 8.5%;
    padding-top: 173px;
  }

  .about-section1 .item {
    padding-bottom: 173px;
  }

  .about-section1 .title {
    margin-top: 50px;
  }

  .about-section1 .txt {
    margin-top: 50px;
  }
}

@media (min-width: 992px) {
  .about-section1 {
    padding-left: 0;
    padding-right: 0;
  }

  .about-section1 .item {
    display: flex;
    align-items: center;
  }

  .about-section1 .item:nth-child(2n+1) {
    flex-direction: row-reverse;
  }

  .about-section1 .pic {
    width: 44.37%;
  }

  .about-section1 .pic img {
    width: 100%;
  }

  .about-section1 .words {
    flex: 1;
    box-sizing: border-box;
    padding-left: 3%;
    padding-right: 3%;
  }

  .about-section1 .title {
    font-size: 40px;
    margin-top: 0;
  }
}

@media (min-width: 1400px) {
  .about-section1 .words {
    padding-left: 8.5%;
    padding-right: 8.5%;
  }
}




.about-section2 {
  background: url('../images/about_bg2.jpg') no-repeat center;
  background-size: cover;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  text-align: center;
}

.about-section2 .li {
  margin-top: 30px;
}

.about-section2 .title {
  font-family: 'WorkSans-SemiBold';
  font-size: 30px;
  text-transform: uppercase;
}

.about-section2 .h2 {
  font-size: 26px;
  font-family: 'WorkSans-Bold';
  text-transform: uppercase;
  margin-top: 27px;
}

.about-section2 .txt {
  font-size: 16px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .about-section2 {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 181px;
    padding-bottom: 226px;
  }

  .about-section2 .ul {
    display: flex;
    justify-content: space-between;
  }

  .about-section2 .li {
    width: 22%;
    margin-top: 117px;
  }

  .about-section2 .title {
    font-size: 40px;
  }

  .about-section2 .txt {
    margin-top: 40px;
  }
}

@media (min-width: 1400px) {
  .about-section2 {
    padding-left: 23.02%;
    padding-right: 23.02%;
  }
}





.about-section3 {
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.about-section3 .title {
  font-family: 'WorkSans-Bold';
  font-size: 30px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}

.about-section3-swiper {
  margin-top: 30px;
}

.about-section3 .pic {
  text-align: center;
}

.about-section3 .words {
  margin-top: 30px;
}

.about-section3 .tag {
  font-family: 'WorkSans-Medium';
  font-size: 16px;
  text-transform: uppercase;
  color: #d08f29;
}

.about-section3 .h1 {
  font-family: 'WorkSans-SemiBold';
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 19px;
}

.about-section3 .txt {
  font-size: 20px;
  margin-top: 30px;
}

.about-section3 .swiper-button-prev,
.about-section3 .swiper-button-next {
  width: 30px;
  height: 30px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  background: none;
  margin-top: -22px;
}

.about-section3 .swiper-button-prev {
  transform: rotate(225deg);
}

.about-section3 .swiper-button-next {
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .about-section3 {
    padding-top: 255px;
    padding-left: 8.5%;
    padding-right: 8.5%;
  }

  .about-section3 .title {
    font-size: 40px;
  }

  .about-section3-swiper {
    margin-top: 124px;
  }

  .about-section3 .h1 {
    font-size: 40px;
  }

  .about-section3 .txt {
    margin-top: 67px;
  }
}

@media (min-width: 992px) {
  .about-section3 {
    padding-left: 0;
    padding-right: 0;
  }

  .about-section3 .swiper-slide {
    display: flex;
    align-items: center;
  }

  .about-section3 .pic {
    width: 45%;
  }

  .about-section3 .pic img {
    width: 100%;
  }

  .about-section3 .words {
    flex: 1;
    padding-left: 3%;
    padding-right: 6%;
    box-sizing: border-box;
    margin-top: 0;
  }

  .about-section3 .swiper-button-prev {
    left: 70px;
    border-color: #fff;
    transition: all .3s linear;
  }

  .about-section3 .swiper-button-next {
    right: 70px;
    transition: all .3s linear;
  }

  .about-section3 .swiper-button-prev:hover,
  .about-section3 .swiper-button-next:hover {
    border-color: #d08f29;
  }
}

@media (min-width: 1400px) {
  .about-section3 .words {
    padding-left: 6.6%;
    padding-right: 13.2%;
  }
}




.about-section4 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
}

.about-section4 .title {
  font-family: 'WorkSans-Bold';
  font-size: 30px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}

.about-section4 .about-section4-swiper {
  margin-top: 30px;
}

.about-section4 .pic {
  text-align: center;
  border: 1px solid #e3e3e3;
}

.about-section4 .h1 {
  font-family: 'WorkSans-SemiBold';
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 30px;
}

.about-section4 .txt {
  font-size: 14px;
  margin-top: 27px;
  line-height: 1.8;
}

.about-section4 .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.about-section4 .about-section4-button-prev,
.about-section4 .about-section4-button-next {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  margin-top: 0;
  border-radius: 8px;
  background: #f4f4f7;
  margin-left: 5px;
  margin-right: 5px;
  top: 0;
  left: 0;
  right: 0;
  transition: all .3s linear;
}

.about-section4 .about-section4-button-prev::before,
.about-section4 .about-section4-button-next::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  transition: all .3s linear;
}

.about-section4 .about-section4-button-prev::before {
  transform: rotate(225deg);
  margin-left: -3px;
}

.about-section4 .about-section4-button-next::before {
  transform: rotate(45deg);
  margin-left: -8px;
}

.about-section4 .about-section4-button-prev:hover,
.about-section4 .about-section4-button-next:hover {
  background-color: #d08f29;
}

.about-section4 .about-section4-button-prev:hover::before {
  border-color: #fff;
}

.about-section4 .about-section4-button-next:hover::before {
  border-color: #fff;
}

@media (min-width: 768px) {
  .about-section4 {
    padding-left: 8.5%;
    padding-right: 8.5%;
    padding-top: 280px;
  }

  .about-section4 .title {
    font-size: 40px;
  }

  .about-section4 .about-section4-swiper {
    margin-top: 135px;
  }

  .about-section4 .h1 {
    margin-top: 36px;
  }

  .about-section4 .btns {
    margin-top: 117px;
  }
}

@media (min-width: 992px) {
  .about-section4 {
    padding-left: 0;
    padding-right: 0;
  }
}





.partner2 .partner-marquee {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .partner2 {
    padding-top: 236px;
    padding-bottom: 223px;
  }

  .partner2 .partner-marquee {
    margin-top: 90px;
  }
}




/* ========================================================================
   视频
 ========================================================================== */
.video-page {
  background: url('../images/video_bg.png') no-repeat right top;
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.video-page .title {
  text-align: center;
  color: #000;
  font-family: 'WorkSans-SemiBold';
  font-size: 30px;
  text-transform: uppercase;
}

.video-page .txt {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .video-page {
    padding-left: 13.43%;
    padding-right: 13.43%;
    padding-top: 167px;
    padding-bottom: 84px;
  }

  .video-page .title {
    font-size: 40px;
  }

  .video-page .txt {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 172px;
  }
}

.video-page .box {
  position: relative;
}

.video-page .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.video-page .btn {
  font-size: 20px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;

}

.video-page .row {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
}

.video-page .avatar {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  overflow: hidden;
}

.video-page .words {
  flex: 1;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

.video-page .h1 {
  font-size: 20px;
  color: #000;
  font-family: 'WorkSans-SemiBold';
  text-transform: uppercase;
}

.video-page .user {
  color: #cacaca;
  font-size: 16px;
}

.video-page .tags {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.video-page .dot {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #d9d9d9;
  margin-left: 8px;
  margin-right: 8px;
}

@media (min-width: 768px) {
  .video-page .btn {
    font-size: 36px;
    width: 96px;
    height: 96px;
    border-radius: 96px;
  }

  .video-page .row {
    padding-top: 50px;
    padding-bottom: 103px;
  }

  .video-page .avatar {
    width: 79px;
    height: 79px;
    border-radius: 79px;
    overflow: hidden;
  }

  .video-page .words {
    padding-left: 34px;
  }
}

@media (min-width: 992px) {
  .video-page .btn {
    transition: all .3s linear;
    cursor: pointer;
  }

  .video-page .btn:hover {
    background-color: #d08f29;
  }

}




/* ========================================================================
   信息
 ========================================================================== */
.information-section1 {
  background: url('../images/information_bg1.png') no-repeat right top;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}


.information-section1 .title {
  font-family: 'WorkSans-Bold';
  text-align: center;
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
}

.information-section1 .txt {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 30px;
}

.information-section1 .pragaph {
  background: url('../images/information_bg2.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.information-section1 .h2 {
  font-family: 'WorkSans-SemiBold';
  font-size: 28px;
  text-transform: uppercase;
}

.information-section1 .p {
  font-size: 24px;
  margin-top: 35px;
}

@media (min-width: 768px) {
  .information-section1 {
    padding-left: 8.59%;
    padding-right: 8.59%;
    padding-top: 168px;
    padding-bottom: 107px;
  }

  .information-section1 .title {
    font-size: 40px;
  }

  .information-section1 .txt {
    margin-top: 49px;
  }

  .information-section1 .pragaph {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 93px;
    padding-top: 139px;
    padding-bottom: 139px;
  }

  .information-section1 .h2 {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .information-section1 .txt {
    padding-left: 9%;
    padding-right: 9%;
  }
}

@media (min-width: 1400px) {
  .information-section1 .pragaph {
    padding-left: 17%;
    padding-right: 17%;
  }
}


.information-section2 {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .information-section2 {
    padding-left: 8.54%;
    padding-right: 8.54%;
    ;
  }
}


.feature-tabs-wrap {
  overflow: hidden;
  position: sticky;
  z-index: 3;
  top: 76px;
  background-color: #fff;
  transition: all .3s linear;
}

body.header-hide .feature-tabs-wrap {
  top: 0;
}





.feature-tabs {
  overflow: hidden;
  cursor: grab;
}

.feature-tabs ul {
  display: flex;
}

.feature-tabs li {
  height: 61px;
  flex-shrink: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.feature-tabs a {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: 'WorkSans-SemiBold';
  text-transform: uppercase;
  font-size: 20px;
  position: relative;
  transition: color .3s linear;
}

.feature-tabs a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: rgba(208, 143, 41, 0);
  transition: all .3s linear;
}

.feature-tabs li.active a {
  color: #d08f29;
}

.feature-tabs li.active a::before {
  background-color: rgba(208, 143, 41, 1);
}

@media (min-width: 768px) {
  .feature-tabs li {
    padding-left: 3.7%;
    padding-right: 3.7%;
  }
}

@media (min-width: 992px) {
  .feature-tabs-wrap {
    top: 111px;
  }

  .feature-tabs li {
    height: 84px;
  }

  .feature-tabs li a:hover {
    color: #d08f29;
  }

  .feature-tabs li a:hover::before {
    background-color: rgba(208, 143, 41, 1);
  }
}



.information-section2 .anthor-item {
  padding-top: 30px;
}

.information-section2 .pic {
  text-align: center;
}

.information-section2 .h1 {
  color: #000;
  text-transform: uppercase;
  font-size: 30px;
  font-family: 'WorkSans-SemiBold';
  margin-top: 30px;
}

.information-section2 .txt {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}

.information-section2 .note {
  font-size: 16px;
  line-height: 1.8;
  color: #d08f29;
  font-family: 'WorkSans-SemiBold';
  margin-top: 27px;
}

@media (min-width: 992px) {
  .information-section2 .anthor-item {
    display: flex;
    align-items: center;
    padding-top: 125px;
  }

  .information-section2 .h1 {
    margin-top: 43px;
  }

  .information-section2 .pic {
    width: 41%;
  }

  .information-section2 .txt {
    margin-top: 43px;
  }

  .information-section2 .words {
    flex: 1;
    box-sizing: border-box;
    padding-left: 5%;
  }

  .information-section2 .h1 {
    font-size: 36px;
    margin-top: 0;
  }

  .feature-content:nth-of-type(2n+1) .anthor-item {
    flex-direction: row-reverse;
  }

  .feature-content:nth-of-type(2n+1) .words {
    padding-left: 0;
    padding-right: 5%;
  }
}

@media (min-width: 1400px) {
  .information-section2 .words {
    padding-left: 11%;
  }

  .feature-content:nth-of-type(2n+1) .words {
    padding-left: 0;
    padding-right: 11%;
  }
}



.information-section3 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
}

.information-section3 .title {
  font-size: 30px;
  text-transform: uppercase;
  color: #000;
  font-family: 'WorkSans-SemiBold';
  text-align: center;
}

.information-section3 .txt {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 30px;
}

.information-section3 .li {
  text-align: center;
  margin-top: 30px;
}

.information-section3 .pic {
  display: inline-block;
  position: relative;
}

.information-section3 .pic img:last-child {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.information-section3 .name {
  font-size: 20px;
  font-family: 'WorkSans-Medium';
  text-transform: uppercase;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .information-section3 {
    padding-left: 9.68%;
    padding-right: 9.68%;
    padding-top: 258px;
  }

  .information-section3 .title {
    font-size: 40px;
  }

  .information-section3 .txt {
    text-align: center;
    margin-top: 46px;
  }

  .information-section3 .ul {
    display: flex;
  }

  .information-section3 .li {
    width: 25%;
    margin-top: 146px;
  }
}

@media (min-width: 992px) {
  .information-section3 .txt {
    padding-left: 10%;
    padding-right: 10%;
  }

  .information-section3 .pic img:last-child,
  .information-section3 .name {
    transition: all .3s linear;
  }

  .information-section3 .li:hover .pic img:last-child {
    opacity: 1;
  }

  .information-section3 .li:hover .name {
    color: #d08f29;
  }
}



.information-section4 {
  padding-top: 30px;
}

.information-section4 .title {
  text-align: center;
  text-transform: uppercase;
  color: #000;
  font-family: 'WorkSans-SemiBold';
  font-size: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.information-section4 .txt {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  font-size: 20px;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .information-section4 {
    padding-top: 240px;
  }

  .information-section4 .title {
    font-size: 40px;
  }
}



.festival-tabs-wrap {
  overflow: hidden;
  background-color: #fff;
  margin-top: 30px;
}

.festival-tabs {
  overflow: hidden;
  cursor: grab;
}

.festival-tabs ul {
  display: flex;
}

.festival-tabs li {
  height: 61px;
  flex-shrink: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.festival-tabs a {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: 'WorkSans-Medium';
  text-transform: uppercase;
  font-size: 20px;
  position: relative;
  transition: color .3s linear;
}

.festival-tabs a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: rgba(208, 143, 41, 0);
  transition: all .3s linear;
}

.festival-tabs li.active a {
  color: #d08f29;
}

.festival-tabs li.active a::before {
  background-color: rgba(208, 143, 41, 1);
}

@media (min-width: 768px) {
  .festival-tabs-wrap {
    margin-top: 121px;
  }

  .festival-tabs li {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media (min-width: 992px) {
  .festival-tabs li {
    height: 80px;
  }

  .festival-tabs li a:hover {
    color: #d08f29;
  }

  .festival-tabs li a:hover::before {
    background-color: rgba(208, 143, 41, 1);
  }
}



.information-section4 .festival-content {
  display: none;
  padding-left: 15px;
  padding-right: 15px;
}

.information-section4 .festival-content.active {
  display: block;
}

.information-section4 .h1 {
  font-family: 'WorkSans-SemiBold';
  color: #d08f29;
  font-size: 30px;
  text-transform: uppercase;
  padding-top: 30px;
}

.information-section4 .h2 {
  font-family: 'WorkSans-SemiBold';
  color: #d08f29;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 16px;
}

.information-section4 .p {
  font-size: 20px;
  color: #000;
  line-height: 1.5;
  margin-top: 30px;
}

.information-section4 .li {
  text-align: center;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .information-section4 .festival-content {
    padding-left: 8.54%;
    padding-right: 8.54%;
  }

  .information-section4 .h1 {
    font-size: 40px;
    padding-top: 122px;
  }

  .information-section4 .ul {
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
  }

  .information-section4 .li {
    margin-top: 100px;
    padding-left: 12px;
    padding-right: 12px;
    width: 33.33%;
    box-sizing: border-box;
  }

  .information-section4 .p {
    margin-top: 55px;
  }


}


@media (min-width: 992px) {
  .information-section4 .ul {
    margin-left: -24px;
    margin-right: -24px;
  }

  .information-section4 .li {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1200px) {

  .information-section4 .h1,
  .information-section4 .h2,
  .information-section4 .p {
    padding-left: 6%;
    padding-right: 6%;
  }
}


.information-section5 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.information-section5 .box {
  padding: 30px;
  background: url('../images/information_bg3.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
  font-family: 'WorkSans-SemiBold';
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .information-section5 {
    padding-left: 8.54%;
    padding-right: 8.54%;
    padding-top: 121px;
    padding-bottom: 182px;
  }

  .information-section5 .box {
    padding: 60px 102px;
  }
}



.information-section6 {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: url('../images/information_bg4.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.information-section6 .title {
  font-family: 'WorkSans-SemiBold';
  font-size: 30px;
  text-transform: uppercase;
}

.information-section6 .txt {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 38px;
}

@media (min-width: 768px) {
  .information-section6 {
    padding-top: 235px;
    padding-bottom: 235px;
    padding-left: 15%;
    padding-right: 15%;
  }

  .information-section6 .titie {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {
  .information-section6 {
    padding-left: 23.43%;
    padding-right: 23.43%;
    ;
  }
}



/* ========================================================================
   研学
 ========================================================================== */
.conlumn-tabs-wrap {
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  background-color: #f8f8f8;
  position: sticky;
  z-index: 3;
  top: 76px;
  transition: all .3s linear;
}

body.header-hide .conlumn-tabs-wrap {
  top: 0;
}

.conlumn-tabs {
  overflow: hidden;
  cursor: grab;
}

.conlumn-tabs ul {
  display: flex;
}

.conlumn-tabs li {
  height: 50px;
  flex-shrink: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.conlumn-tabs a {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: 'WorkSans-SemiBold';
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  transition: color .3s linear;
}

.conlumn-tabs a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: rgba(208, 143, 41, 0);
  transition: all .3s linear;
}

.conlumn-tabs li.active a {
  color: #d08f29;
}

.conlumn-tabs li.active a::before {
  background-color: rgba(208, 143, 41, 1);
}

@media (min-width: 768px) {
  .conlumn-tabs li {
    padding-left: 5.33%;
    padding-right: 5.33%;
  }
}

@media (min-width: 992px) {
  .conlumn-tabs-wrap {
    top: 111px;
  }

  .conlumn-tabs li {
    height: 96px;
  }

  .conlumn-tabs li a:hover {
    color: #d08f29;
  }

  .conlumn-tabs li a:hover::before {
    background-color: rgba(208, 143, 41, 1);
  }
}






.via-page {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: url('../images/information_bg1.png') no-repeat right top;
}

.via-page .title {
  text-align: center;
  font-size: 30px;
  color: #000;
  font-family: 'WorkSans-Bold';
  text-transform: uppercase;
}

.via-page .txt {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .via-page {
    padding-left: 5.9%;
    padding-right: 5.9%;
    padding-top: 171px;
    padding-bottom: 208px;
  }

  .via-page .title {
    font-size: 40px
  }

  .via-page .txt {
    text-align: center;
    margin-top: 49px;
    padding-bottom: 88px;
  }
}

@media (min-width: 1400px) {
  .via-page {
    padding-left: 11.9%;
    padding-right: 11.9%;
  }
}



.via-item {
  margin-top: 30px;
}

.via-item .pic {
  text-align: center;
}

.via-item .h1 {
  font-size: 22px;
  font-family: 'WorkSans-SemiBold';
  color: #000;
  text-transform: uppercase;
  margin-top: 8.5%;
}

.via-item .text1 {
  font-size: 18px;
  margin-top: 5.5%;
}

.via-item .text2 {
  font-size: 18px;
  margin-top: 2.8%;
}

.via-item .link-box {
  margin-top: 11.4%;
}


@media (min-width: 1024px) {
  .via-item {
    display: flex;
    align-items: center;
    transition: all .3s linear;
    margin-top: 80px;
  }

  .via-item .pic {
    width: 52.8%;
    overflow: hidden;
  }

  .via-item .pic img {
    transition: all .3s linear;
  }

  .via-item .words {
    flex: 1;
    padding-left: 3%;
    box-sizing: border-box;
  }

  .via-item .h1 {
    margin-top: 0;
    transition: all .3s linear;
  }

  .via-item .text1 {
    margin-top: 4%;
  }

  .via-item .text2 {
    margin-top: 2.8%;
  }

  .via-item .link-box {
    margin-top: 4%;
  }



  .via-item:hover {
    background-color: #f8f8f8;
  }

  .via-item:hover .pic img {
    transform: scale(1.02);
  }

  .via-item:hover .h1 {
    color: #d08f29;
  }
}

@media (min-width: 1400px) {
  .via-item .words {
    padding-left: 7.2%;
  }

  .via-item .h1 {
    font-size: 32px;
  }

  .via-item .text1 {
    margin-top: 5.5%;
  }

  .via-item .text2 {
    margin-top: 2.8%;
  }

  .via-item .link-box {
    margin-top: 11.4%;
  }
}



/* ========================================================================
   游学
 ========================================================================== */
.tour-section1 {
  background: url('../images/information_bg1.png') no-repeat right top;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
}

.tour-section1 .h1 {
  font-size: 30px;
  font-family: 'WorkSans-Bold';
  text-align: center;
  color: #000;
  text-transform: uppercase;
}

.tour-section1 .h2 {
  font-size: 30px;
  font-family: 'WorkSans-Bold';
  text-align: center;
  color: #d08f29;
  text-transform: uppercase;
}

.tour-section1 .txt {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 30px;
}

.tour-section1 .pic {
  text-align: center;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .tour-section1 {
    padding-left: 8.64%;
    padding-right: 8.64%;
    padding-top: 166px;
  }

  .tour-section1 .h1 {
    font-size: 40px;
  }

  .tour-section1 .h2 {
    font-size: 40px;
  }

  .tour-section1 .txt {
    text-align: center;
    padding-left: 7.7%;
    padding-right: 7.7%;
    margin-top: 51px;
  }

  .tour-section1 .pic {
    margin-top: 114px;
  }
}



.tour-section2 {
  padding-top: 30px;
}

.tour-section2 .h1 {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 30px;
  font-family: 'WorkSans-Bold';
  text-align: center;
  color: #000;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .tour-section2 {
    padding-top: 169px;
  }

  .tour-section2 .h1 {
    font-size: 40px;
  }
}


.tour-section2 .pannels {
  margin-top: 30px;
}

.tour-section2 .pannel {
  position: relative;
  overflow: hidden;
}

.tour-section2 .pannel .pic {
  text-align: center;
  position: relative;
  aspect-ratio: 480 / 682;
}

.tour-section2 .pannel .pic::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 81.6%);

  z-index: 1;
}

.tour-section2 .pannel img {
  aspect-ratio: 480 / 682;
}

.tour-section2 .pannel .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.tour-section2 .pannel .title {
  text-align: center;
  font-family: 'WorkSans-SemiBold';
  text-transform: uppercase;
  font-size: 20px;
  word-break: break-all;
  color: #fff;
}

.tour-section2 .pannel .txt {
  display: none;
}


@media (min-width: 480px) {
  .tour-section2 .pannels {
    display: flex;
    flex-wrap: wrap;
  }

  .tour-section2 .pannel {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .tour-section2 .pannels {
    margin-top: 132px;
  }

  .tour-section2 .pannel {
    width: 25%;
  }
}

@media (min-width: 992px) {
  .tour-section2 .pannel .pic::before {
    background: rgba(0, 0, 0, 0);
    transition: all .4s linear;
  }

  .tour-section2 .pannel .pic img {
    transition: all .4s linear;
  }

  .tour-section2 .pannel .mask {
    transform: translateY(20.4%);
    transition: all .4s linear;
    align-items: flex-end;
  }

  .tour-section2 .pannel .txt {
    text-align: center;
    display: block;
    font-size: 20px;
    margin-top: 27px;
    padding-bottom: 110px;
    max-height: 4.8em;
    line-height: 1.2;
    color: rgab(255, 255, 255, .7);
    overflow: hidden;
    opacity: 0;
    transform: translateY(200%);
    transition: all .4s linear;
  }

  .tour-section2 .pannel:hover .pic::before {
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 81.6%);
  }

  .tour-section2 .pannel:hover .pic img {
    transition: all .4s linear;
    transform: scale(1.05);
  }

  .tour-section2 .pannel:hover .mask,
  .tour-section2 .pannel:hover .txt {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1200px) {
  .tour-section2 .pannel .mask {
    padding-left: 25.5%;
    padding-right: 25.5%;
  }
}



.tour-section3 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.tour-section3 .h1 {
  font-size: 30px;
  font-family: 'WorkSans-Bold';
  text-align: center;
  color: #000;
  text-transform: uppercase;
}

.tour-section3 .h2 {
  font-size: 30px;
  font-family: 'WorkSans-Bold';
  text-align: center;
  color: #d08f29;
  text-transform: uppercase;
  margin-top: 26px;
}


.tour-section3 .li {
  text-align: center;
  margin-top: 30px;
}

.tour-section3 .pic {
  display: inline-block;
  position: relative;
}

.tour-section3 .pic img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
}

.tour-section3 .title {
  font-family: 'WorkSans-SemiBold';
  color: #000;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 30px;
}

.tour-section3 .txt {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 17px;
}

@media (min-width: 768px) {
  .tour-section3 {
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 184px;
    padding-bottom: 180px;
  }

  .tour-section3 .h1 {
    font-size: 40px;
  }

  .tour-section3 .h2 {
    font-size: 40px;
  }

  .tour-section3 .ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 163px;
  }

  .tour-section3 .ul::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #e1e1e1;

  }

  .tour-section3 .li {
    width: 30%;
    margin-top: 0;
  }

  .tour-section3 .title {
    margin-top: 74px;
  }
}


@media (min-width: 992px) {
  .tour-section3 {
    padding-left: 16.87%;
    padding-right: 16.87%;
  }

  .tour-section3 .pic img:nth-child(2) {
    transition: all .3s linear;
  }

  .tour-section3 .pic:hover img:nth-child(2) {
    opacity: 1;
  }
}

@media (min-width: 1480px) {
  .tour-section3 .li {
    width: 19%;
  }
}




/* ========================================================================
   详情页
 ========================================================================== */

.info-section1 {
  padding-left: 15px;
  padding-right: 15px;
  background: url('../images/information_bg1.png') no-repeat right top;
  padding-top: 30px;
}

.info-section1 .title {
  text-transform: uppercase;
  color: #000;
  font-family: 'WorkSans-Bold';
  font-size: 30px;
  text-align: center;
}

.info-section1 ul {
  padding-top: 36px;
}

.info-section1 li {
  text-align: center;
  margin-top: 30px;
}

.info-section1 li:first-child {
  margin-top: 0;
}

.info-section1 .txt {
  font-size: 18px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .info-section1 {
    padding-left: 20.67%;
    padding-right: 20.67%;
    ;
    padding-top: 174px;
  }

  .info-section1 .title {
    font-size: 40px;
  }

  .info-section1 ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    ;
    margin-right: -30px;
  }

  .info-section1 li {
    width: 33.33%;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
    margin-top: 64px;
  }

  .info-section1 li:first-child {
    margin-top: 64px;
  }
}

@media (min-width: 992px) {
  .info-section1 li img {
    transition: all .3s linear;
  }

  .info-section1 li:hover img {
    transform: translateY(-6px);
  }
}

@media (min-width: 1400px) {
  .info-section1 li {
    width: 25%;
  }
}






.info-section2 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
}

.info-section2 .title {
  text-transform: uppercase;
  color: #000;
  font-family: 'WorkSans-Bold';
  font-size: 30px;
  text-align: center;
}

.info-section2 .txt {
  text-align: center;
  font-size: 24px;
  margin-top: 24px;
  color: #d08f29;
  padding-bottom: 30px;
}


.info-section2 .li {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.info-section2 .li::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #dfdfdf;
}

.info-section2 .li:last-child::after {
  display: none;
}

.info-section2 .h1 {
  font-family: 'WorkSans-SemiBold';
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
}

.info-section2 .p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 26px;
}

.info-section2 .link-box {
  margin-top: 26px;
}

@media (min-width: 768px) {
  .info-section2 {
    padding-top: 248px;
  }

  .info-section2 .title {
    font-size: 40px;
  }

  .info-section2 .txt {
    padding-bottom: 105px;
  }

  .info-section2 .li {
    padding-left: 11.56%;
    padding-right: 11.56%;
    padding-top: 76px;
    padding-bottom: 60px;
  }

}

@media (min-width: 992px) {
  .info-section2 .li {
    transition: all .3s linear;
  }

  .info-section2 .li:hover {
    background: #f8f8f8;
  }
}

@media (min-width: 1200px) {
  .info-section2 .li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .info-section2 .li::after {
    left: 11.56%;
    ;
    right: 11.56%;
    ;
    ;
  }

  .info-section2 .words {
    flex: 1;
    box-sizing: border-box;
    padding-right: 7%;
  }

  .info-section2 .link-box {
    margin-top: 0;
  }
}



.info-section3 {
  padding-top: 0;
}

.info-section3 .swiper-slide {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.info-section3 .pic {
  display: inline-block;
  position: relative;
}

.info-section3 .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 81.6%);
  box-sizing: border-box;
  padding-left: 7%;
  padding-right: 7%;
  padding-bottom: 9%;
  font-size: 22px;
  color: #fff;
  font-family: 'WorkSans-SemiBold';
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .info-section3 {
    padding-top: 113px;
  }
}

@media (min-width: 992px) {
  .info-section3 .pic {
    transition: all .3s linear;
  }

  .info-section3 .mask {
    transition: all .3s linear;
    opacity: 0;
  }

  .info-section3 .pic:hover {
    transform: scale(1.1);
  }

  .info-section3 .pic:hover .mask {
    opacity: 1;
  }
}

.info-section4 {
  padding-top: 30px;
}

.info-section4 .title {
  text-transform: uppercase;
  color: #000;
  font-family: 'WorkSans-Bold';
  font-size: 30px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .info-section4 {
    padding-top: 247px;
  }

  .info-section4 .title {
    font-size: 40px;
    padding-bottom: 74px;
  }
}



.info-tabs-wrap {
  overflow: hidden;
  position: sticky;
  z-index: 3;
  top: 76px;
  background-color: #fff;
  transition: all .3s linear;
}

body.header-hide .info-tabs-wrap {
  top: 0;
}


.info-tabs {
  overflow: hidden;
  cursor: grab;
}

.info-tabs ul {
  display: flex;
}

.info-tabs li {
  height: 61px;
  flex-shrink: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.info-tabs a {
  display: flex;
  align-items: center;
  height: 100%;
  text-transform: uppercase;
  font-family: 'WorkSans-SemiBold';
  font-size: 24px;
  position: relative;
  transition: color .3s linear;
}

.info-tabs a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background-color: rgba(208, 143, 41, 0);
  transition: all .3s linear;
}

.info-tabs li.active a {
  color: #d08f29;
}

.info-tabs li.active a::before {
  background-color: rgba(208, 143, 41, 1);
}

@media (min-width: 768px) {
  .info-tabs li {
    padding-left: 3.7%;
    padding-right: 3.7%;
  }
}

@media (min-width: 992px) {
  .info-tabs-wrap {
    top: 111px;
  }

  .info-tabs li {
    height: 128px;
  }

  .info-tabs li a:hover::before {
    background-color: rgba(208, 143, 41, 1);
  }
}


.info-tab-box {
  padding-left: 15px;
  padding-right: 15px;
  background-color: #f8f8f8;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .info-tab-box {
    padding-left: 8.64%;
    padding-right: 8.64%;
    padding-bottom: 157px;
  }
}

.info-section4 .anthor-title1 {
  font-family: 'WorkSans-SemiBold';
  font-size: 28px;
  color: #d08f29;
  text-transform: uppercase;
  padding-bottom: 30px;
  padding-top: 30px;
}

.info-section4 .item {
  border-bottom: 1px solid #dfdfdf;
  padding-top: 30px;
  padding-bottom: 30px;
}

.info-section4 .item:last-child {
  border-bottom: none;
}

.info-section4 .date {
  font-size: 24px;
  color: #000;
}

.info-section4 .address {
  display: flex;
  align-items: center;
  margin-top: 22px;
  margin-bottom: 13px;
}

.info-section4 .address span {
  font-family: 'WorkSans-SemiBold';
  color: #000;
  font-size: 22px;
  text-transform: uppercase;
  margin-left: 17px;
}

.info-section4 .p {
  line-height: 2.25;
}


.info-section4 .anthor-title2 {
  font-family: 'WorkSans-SemiBold';
  font-size: 28px;
  color: #d08f29;
  text-transform: uppercase;
  padding-bottom: 17px;
  padding-top: 30px;
}

.info-section4 .tag {
  font-size: 18px;
  position: relative;
  padding-left: 27px;
  margin-top: 15px;
}

.info-section4 .tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #717071;
  position: absolute;
  left: 10px;
  top: 9px;
}


.info-section4 .anthor-title3 {
  font-family: 'WorkSans-SemiBold';
  font-size: 28px;
  color: #d08f29;
  text-transform: uppercase;
  padding-bottom: 17px;
  padding-top: 30px;
}


.info-section4 .anthor-title4 {
  font-family: 'WorkSans-SemiBold';
  font-size: 28px;
  color: #d08f29;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 29px;
}

.info-section4 .p2 {
  color: #000;
  font-size: 24px;
  font-family: 'WorkSans-Medium';
}

.info-section4 .p3 {
  font-size: 20px;
  color: #d08f29;
  font-family: 'WorkSans-Medium';
  margin-top: 11px;
}

.info-section4 .tetphone {
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d08f29;
  margin-top: 40px;
}

.info-section4 .tetphone span {
  font-size: 20px;
  color: #fff;
  margin-left: 15px;
}

.info-section4 .anthor-title5 {
  font-family: 'WorkSans-SemiBold';
  font-size: 28px;
  color: #d08f29;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 12px;
}

.info-section4 .p4 {
  font-size: 20px;
  color: #5D5D5D;
  text-transform: capitalize;
}

@media (min-width: 640px) {
  .info-section4 .tetphone {
    padding: 0;
    width: 341px;
    height: 61px;
  }
}

@media (min-width: 768px) {
  .info-section4 .anthor-title1 {
    padding-bottom: 58px;
    padding-top: 106px;
  }

  .info-section4 .item {
    padding-top: 45px;
    padding-bottom: 43px;
  }

  .info-section4 .anthor-title2 {
    padding-top: 49px;
  }

  .info-section4 .anthor-title3 {
    padding-top: 102px;
  }

  .info-section4 .anthor-title4 {
    padding-top: 98px;
  }

  .info-section4 .anthor-title5 {
    padding-top: 89px;
  }

}

@media (min-width: 992px) {
  .info-section4 .tetphone {
    transition: all .3s linear;
  }

  .info-section4 .tetphone:hover {
    box-shadow: 0 0 8px 0px #937676;
  }
}






.info-section5 {
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.info-section5 .title {
  text-transform: uppercase;
  color: #000;
  font-family: 'WorkSans-Bold';
  font-size: 30px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {

  .info-section5 {
    padding-left: 8.54%;
    padding-right: 0;
    padding-top: 129px;
    padding-bottom: 226px;
  }

  .info-section5 .title {
    font-size: 40px;
  }
}



.info-section5-swiper {
  margin-top: 30px;
}

.info-section5 .h1 {
  font-size: 30px;
  font-family: 'WorkSans-SemiBold';
  text-transform: uppercase;
  color: #000;
  margin-top: 34px;
}

.info-section5 .p1,
.info-section5 .p2 {
  font-size: 18px;
}

.info-section5 .p1 {
  margin-top: 6%;
}

.info-section5 .p2 {
  margin-top: 3%;
}

.info-section5 .link-box {
  margin-top: 12%;
}

@media (min-width: 768px) {
  .info-section5-swiper {
    margin-top: 105px;
  }

  .info-section5 .swiper-slide {
    display: flex;
    align-items: center;
  }

  .info-section5 .pic {
    width: 52.8%
  }

  .info-section5 .words {
    flex: 1;
    box-sizing: border-box;
    padding-left: 7.2%;
  }

  .info-section5 .h1 {
    margin-top: 0;
    font-size: 38px;
  }
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-width: 1190px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .modal-content {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.modal-header {
  height: 90px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal-footer {
  height: 90px;
}

.modal-body {
  flex: 1;
  overflow: hidden;
}

.modal-swiper-slide-content {
  overflow-y: auto;
  max-height: calc(90vh - 180px);
}

.modal-swiper-slide .modal-slide-image {
  text-align: center;
}

.modal-swiper-slide .modal-slide-title {
  font-family: 'WorkSans-SemiBold';
  font-size: 22px;
  color: #000;
  text-transform: uppercase;
  padding-top: 8.4%;
  padding-bottom: 6.4%;
}

.modal-swiper-slide .modal-slide-description {
  font-size: 16px;
  line-height: 1.75;
}

.modal-swiper-button-prev,
.modal-swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: rgba(0, 0, 0, .3);
}

.modal-swiper-button-prev::before,
.modal-swiper-button-next::before {
  content: '';
  width: 22px;
  height: 22px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -11px;
}

.modal-swiper-button-prev::before {
  transform: rotate(225deg);
  margin-left: -5px;
}

.modal-swiper-button-next::before {
  transform: rotate(45deg);
  margin-left: -16px;
}