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

/*  Font  
-------------------------- */
@font-face {
  font-family: 'NotoSansSC-Regular';
  src: url('../fonts/NotoSansSC-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'NotoSansSC-DemiLight';
  src: url('../fonts/NotoSansSC-DemiLight.woff2') format('woff2');
}
@font-face {
  font-family: 'NotoSansSC-Medium';
  src: url('../fonts/NotoSansSC-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'NotoSansSC-bold';
  src: url('../fonts/NotoSansSC-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat-Light';
  src: url('../fonts/Montserrat-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat-Bold';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2');
}


/*  Agent style 
-------------------------- */
body {
  font-family: NotoSansSC-Regular;
  font-size: 18px;
  margin: 0;
  text-transform: none;
  color: #FFF;
  background: #0c0e17 url('../images/home_bg.svg') repeat-y center top;
  background-size: 100% auto;
  overflow-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;
}
button {
  padding: 0;
}
textarea {
  resize: none;
}

a {
  outline: none;
  color: #FFF;
  text-decoration: none;
  transition: all .3s linear;
}

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;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: none;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
}

::-webkit-scrollbar-thumb {
    background: #9c9c9c;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9c9c9c;
}

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

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

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



/*  header 
-------------------------- */
.header {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  background-color: rgba(12, 14, 23, 0);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  transition: all .3s linear;
}

.header .logo img {
  width: 197px;
  height: 40px;
}

body.body-scroll .header {
  background-color: rgba(12, 14, 23, .95);
}



.header .nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  overflow-y: auto;
  background-color: rgba(12, 14, 23, .95);
}
.header .nav>ul>li {
  padding: 20px 15px;
  position: relative;
}
.header .nav>ul>li:has(ul)::after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(132deg) translateX(-2px);
  position: absolute;
  right: 18px;
  top: 23px;
  transition: all .3s linear;
}
.header .nav>ul ul {
  display: none;
}
.header .nav>ul ul li {
  padding-left: 30px;
  padding-right: 15px;
  margin-top: 30px;
}
.header .nav>ul ul a {
  font-size: 16px;
}
.header .nav.nav-active {
  display: block;
}
.header .nav>ul>li.active>a {
  color: #FAB702;
}
.header .nav li:has(ul).active::after {
  border-color: #FAB702;;
  transform: rotate(-44deg);
}
.header .nav>ul ul.active {
  display: block;
}
.header .nav>ul>li.now>a {
  position: relative;
}
.header .nav>ul>li.now>a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background-color: #fff;
}
.header .nav>ul>li.now.active>a::before {
  display: none;
}

.header .language {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 15px;
}
.header .language .earth {
  width: 30px;
  display: flex;
  align-items: center;
}
.header .language .txt {
  font-family: Roboto-Regular;
  font-size: 20px;
  text-transform: uppercase;
  margin-left: 15px;
}

.header .menu {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header .menu span {
  width: 30px;
  height: 2px;
  background-color: #FFF;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  transform-origin: center;
}
.header .menu.menu-active span:nth-child(1) {
  transform: translateY(12.5px) rotate(45deg);
}
.header .menu.menu-active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.header .menu.menu-active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}


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

@media (min-width: 1248px) {
  
  .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%;
    display: flex;
    align-items: center;
    padding: 0 2.7% 0 2.7%;
    transition: all .3s linear;
  }
  .header .nav>ul>li:has(ul)::after {
    display: none;
  }
  .header .nav>ul>li>a {
    font-size: 16px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
  .header .nav>ul>li:has(ul)>a::after {
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(132deg) translateX(-2px);
    position: static;
    margin-left: 5px;
    transition: all .3s linear;
  }
 
  .header .nav>ul ul {
    position: absolute;
    top: 99px;
    left: 0;
    right: 0;
    transition: all .3s linear;
  }
  .header .nav>ul ul li {
    padding-left: 14.5%;
    padding-right: 14.5%;
    margin-top: 0;
    display: flex;
    padding-bottom: 33px;
  }
  .header .nav>ul ul a{
    border-bottom: 1px solid #FAB702;
    color: rgba(10, 10, 10, .6);
    padding-bottom: 10px;
    font-size: 14px;
  }

  .header .nav>ul>li.active>a {
    color: #fff;
  }
  .header .nav>ul ul.active {
    display: none;
  }
  .header .nav>ul>li.now>a::before {
    bottom: 30px;
  }
  .header .nav>ul>li.now.active>a::before {
    display: block;
  }
  


  .header .nav>ul>li:hover {
    background-color: #FAB702;
  }
  .header .nav>ul>li:hover>a {
    color: rgba(0, 0, 0, 1);
  }
  .header .nav>ul>li:hover a::before {
    background-color: #FAB702;
  }
  .header .nav>ul>li:has(ul):hover a::after {
    border-color: rgba(0, 0, 0, 1);
  }
  .header .nav>ul>li:hover ul {
    display: block;
    background-color: #FAB702;
  }
  .header .nav>ul ul li:hover a {
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    color:rgba(0, 0, 0, 1) ;
  }


  .header .language:hover {
    color: #FAB702;
  }
  .header .language svg path {
    transition: all .3s linear;
  }
  .header .language:hover svg path {
    stroke: #FAB702;
  }


  .header .menu {
    display: none;
  }

}


@media (min-width: 1248px) {
  .header .nav>ul>li>a {
    font-size: 18px;
  }
  .header .nav>ul ul a {
    font-size: 16px;
  }
}



/*  link-box 
-------------------------- */
.link-box  {
  display: inline-block;  
  position: relative;
  width: 200px;
  height: 64px;
}
.link-box::before,
.link-box::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.link-box::before {
  transform: skew(15deg) translateX(8px);
  background: linear-gradient(90.22deg, #ECB423 3.76%, #EE8B2D 99.86%);
}
.link-box::after {
  transform: skew(15deg) translate(16px, 10px);
  border: 1px solid #FAB702;
  background-color: rgba(250, 183, 2, .1);
  z-index: -1;
  opacity: 0;
  transition: all .3s linear;
}
.link-box .link {
  transform: translateX(8px);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-box .txt {
  font-family: NotoSansSC-bold;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}
.link-box .arrow {
  width: 14px;
  margin-left: 15px;
  transform: rotate(-45deg);
  transition: all .3s linear;
}
@media (min-width: 992px) {
  .link-box {
    width: 250px;
  }
  .link-box:hover .arrow {
    transform: rotate(0deg);
    margin-left: 40px;
  }
  .link-box:hover:after {
    opacity: 1;
  }
}

/*  link2
-------------------------- */
.link2  {
  display: inline-flex;  
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 66px;
  border: 1px solid #FAB702;
  box-sizing: border-box;
}
.link2 .txt {
  font-family: NotoSansSC-Medium;
  color: #FAB702;
  font-size: 16px;
}
.link2 .arrow {
  width: 14px;
  margin-left: 15px;
  transform: rotate(-45deg);
}
@media (min-width: 992px) { 
  .link2,
  .link2 .txt,
  .link2 .arrow,
  .link2 .arrow svg path {
    transition: all .3s linear;
  }
  .link2 {
    width: 245px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
  }
  .link2:hover {
    background: linear-gradient(90.22deg, #ECB423 3.76%, #EE8B2D 99.86%);
  }
  .link2:hover .txt {
    color: rgb(32, 32, 32);
  }
  .link2:hover .arrow {
    transform: rotate(0deg);
    margin-left: 40px;
  }
  .link2:hover .arrow svg path {
    stroke:rgb(32, 32, 32);
  }
}



/*  ny-banner
-------------------------- */
.ny-banner {
  position: relative;
}
.ny-banner .pic {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
.ny-banner .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(12, 14, 23, 0.6) 0%, rgba(12, 14, 23, 0) 29.81%, rgba(12, 14, 23, 0) 57.21%, #0C0E17 100%);
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 50px;
  padding-top: 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ny-banner .title1 {
  font-size: 16px;
}
.ny-banner .title2 {
  font-family: Montserrat-Light;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 11px;
}
@media (min-width: 768px) {
  .ny-banner .mask {
    padding-left: 6.77%;
    padding-right: 6.77%;
    padding-bottom: 100px;
    padding-top: 100px;
  }
  .ny-banner .title1 {
    font-size: 20px;
  }
  .ny-banner .title2 {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  .ny-banner .pic {
    height: 72vh;
  }
}




/*  new-info-banner
-------------------------- */
.new-info-banner {
  position: relative;
}
.new-info-banner .pic {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  opacity: 0.6;
}
.new-info-banner .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(12, 14, 23, 0.6) 0%, rgba(12, 14, 23, 0) 29.81%, rgba(12, 14, 23, 0) 57.21%, #0C0E17 100%);
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 53px;
  padding-top: 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.new-info-banner .title {
  font-size: 16px;
  font-weight: bold;
}
.new-info-banner .txt {
  font-size: 14px;
  margin-top: 25px;
}
.new-info-banner .txt span:first-child {
  margin-right: 26px;
}
.new-info-banner .share {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.new-info-banner .label {
  font-size: 14px;
}
.new-info-banner .social {
  width: 24px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 768px) {
  .new-info-banner .mask {
    padding-left: 6.77%;
    padding-right: 6.77%;
  }
  .new-info-banner .title {
    font-size: 32px;
  }
  .new-info-banner .label {
    font-size: 16px;
  }
  .new-info-banner .social {
    width: 36px;
    margin-left: 20px;
  }
}

@media (min-width: 992px) {
  .new-info-banner .pic {
    height: 72vh;
  }

  .new-info-banner .mask-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .new-info-banner .words {
    flex: 1;
  }
  .new-info-banner .share {
    margin-top: 0;
    position: relative;
    top: -20px;
  }
  .new-info-banner .social svg path {
    transition: all .3s linear;
  }
  .new-info-banner .social:hover svg path {
    fill: #FAB702;
  }
}



/*  pages
-------------------------- */
.pages {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages .prev,
.pages .next {
  width: 24px;
  height: 24px;
  margin-left: 14px;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages .prev::before,
.pages .next::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #FAB702;
  border-right: 1px solid #FAB702;
}
.pages .prev::before {
  transform: rotate(-135deg);
}
.pages .next::before {
  transform: rotate(45deg);
}
.pages .prev.disabled,
.pages .next.disabled {
  cursor: default;
}
.pages .prev.disabled::before,
.pages .next.disabled::before {
  border-color: #9c9c9c;
}

.pages .num {
  display: none;
}


@media (min-width: 768px) {
  .pages {
    margin-top: 160px;
  }
  .pages .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #FAB702;
    color: #FAB702;
    margin-left: 7px;
    margin-right: 7px;
    
  }
   .pages .num.cur {
      background-color: #FAB702;
      color: #000;
   }
}

@media (min-width: 992px) { 
  .pages .num {
    transition: all .3s linear;
  }
  .pages .num:hover {
    background-color: #FAB702;
    color: #000;
  }
}


/*  info-page
-------------------------- */
.info-page {
  margin-top: 66px;
}
.info-page .item {
  font-size: 14px;
  display: block;
  margin-top: 20px;
  color: #9c9c9c;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 10px;
  background-color: rgba(45, 50, 62, .5);
}
.info-page .item:first-child {
  margin-top: 0;
}
.info-page .title {
  padding-top: 10px;
  padding-bottom: 10px;
}
.info-page .arrow {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) { 
  .info-page {
    margin-top: 132px;
    min-width: 0;
  }
  .info-page .item {
    font-size: 18px;
    display: flex;
    align-items: center;
    padding-top: 44px;
    padding-bottom: 44px;
    padding-left: 58px;
    padding-right: 58px;
  }
  .info-page .title {
    flex: 1;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 92px;
    padding-right: 92px;
  }
}
@media (min-width: 992px) { 
  .info-page .item,
  .info-page .item svg path {
    transition: all .3s linear;
  }
  .info-page .item:hover {
    color: #FAB702;
  }
  .info-page .item:hover svg path {
    stroke: #FAB702;
  }
}




/*  footer
-------------------------- */
.footer {
  background-color: #0c0e17;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 60px;
  padding-bottom: 40px;
}
.footer .logo{
  width: 197px;
}
.footer .nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer .nav a {
  color: #9C9C9C;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer .nav span {
  color: rgba(255, 255, 255, .2);
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer .nav a.now {
  position: relative;
}
.footer .nav a.now::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background-color: #9C9C9C;
  transition: all .3s linear;
}

.footer .dl .dd {
  color: #9C9C9C;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 22px;
  transition: all .3s linear;
}
.footer .dl .icon {
  position: relative;
  top: 2px;
}
.footer .dl svg path {
  transition: all .3s linear;
}
.footer .dl .txt {
  flex: 1;
  margin-left: 20px;
}

.footer .qrcode {
  width: 193px;
  text-align: center;
}
.footer .qrcode .pic {
  width: 193px;
  border-radius: 18px;
  overflow: hidden;
}
.footer .qrcode .word {
  font-size: 14px;
  margin-top: 15px;
}

.footer .floor2 {
  padding-bottom: 40px;
  padding-top: 40px;
}
.footer .floor3 {
  padding-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #54555c;
  border-top: 1px solid #54555c;
}


@media (min-width: 768px) {
  .footer {
    padding-left: 6.51%;
    padding-right: 6.51%;
    padding-top: 120px;
  }
  
  .footer .nav span {
    margin-left: 42px;
    margin-right: 42px;
  }
  .footer .floor2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 76px;
    padding-top: 78px;
  }
  .footer .dl .dd:last-child {
    margin-bottom: 0;
  }
  .footer .floor3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .footer .floor1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }


  .footer .nav a:hover {
    color: #FAB702;
  }
  .footer .nav a.now:hover::after {
    background-color: #FAB702;
  }
  .footer .dl .dd:hover {
    color: #FAB702;
  }
  .footer .dl .dd:hover svg path {
    stroke: #FAB702;
  }
}




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


 /*  bannner
-------------------------- */
.home-banner {
  position: relative;
}
.home-banner::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.02);
}


.home-banner-swiper {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.home-banner-swiper .swiper-slide {
  position: relative;
}
.home-banner-swiper .pic {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.home-banner-swiper .mask {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-banner-swiper .title {
  font-family: Montserrat-Bold;
  font-size: 30px;
  color: #FAB702;
  text-transform: uppercase;
  text-align: center;
  word-break: break-all;
}
.home-banner-swiper .txt {
  font-family: Montserrat-Bold;
  font-size: 30px;
  color: #D2D2D2;
  text-transform: uppercase;
  text-align: center;
  word-break: break-all;
}
.home-banner-swiper .btn {
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 46px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 38px;
}

.home-banner-swiper .title,
.home-banner-swiper .txt,
.home-banner-swiper .btn {
  opacity: 0;
}
.home-banner-swiper .swiper-slide-active .title,
.home-banner-swiper .swiper-slide-active .txt,
.home-banner-swiper .swiper-slide-active .btn {
  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 .btn {
  animation-delay: 0.9s;
}


.home-banner-swiper .swiper-button-prev,
.home-banner-swiper .swiper-button-next {
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-radius: 3px;
  top: auto;
  bottom: 17px;
  margin-top: 0;
  z-index: 4;
}
.home-banner-swiper .swiper-button-prev {
  left: 15px;
  transform: rotate(226deg);
}
.home-banner-swiper .swiper-button-next {
  right: auto;
  left: 206px;
  transform: rotate(40deg);
}
.home-banner-swiper .swiper-pagination-fraction {
  font-family: NotoSansSC-DemiLight;
  font-size: 20px;
  left: 39px;
  width: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-banner-swiper .swiper-pagination-fraction .swiper-pagination-current {
  margin-right: 16px;
}
.home-banner-swiper .swiper-pagination-fraction .swiper-pagination-total {
  color: #6F6F6F;
  margin-left: 16px;
}
.home-banner .home-swiper-custom-pagination {
  position: absolute;
  right: 15px;
  bottom: 23.5px;
  z-index: 4;
  width: 100px;
  height: 3px;
  display: flex;
  align-items: center;
}
.home-banner .home-swiper-custom-pagination .custom-bullet {
  position: relative;
  height: 100%;
  transition: all .3s linear;
  cursor: pointer;
}
.home-banner .home-swiper-custom-pagination .custom-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  right: 0;
  height: 1px;
  background-color: #808183;
  transition: all .3s linear;
}
.home-banner .home-swiper-custom-pagination .custom-bullet.active {
  background-color: #fff;
} 
.home-banner .home-swiper-custom-pagination .custom-bullet.active::before {
  background-color: #fff;
}
@media (min-width: 768px){ 
  .home-banner::after {
    height: 243px;
  }

  .home-banner-swiper .title,
  .home-banner-swiper .txt {
    font-size: 50px;
  }
  .home-banner-swiper .btn {
    font-size: 20px;
    height: 50px;
    border-radius: 50px;
    padding-left: 60px;
    padding-right: 60px;
  }

  
  .home-banner-swiper .swiper-button-prev, 
  .home-banner-swiper .swiper-button-next {
    bottom: 115px;
  }
  .home-banner-swiper .swiper-button-prev {
    left: 6.875%;
  }
  .home-banner-swiper .swiper-button-next {
    left: calc(6.875% + 191px);
  }
  .home-banner-swiper .swiper-pagination-fraction {
    left: calc(6.875% + 24px);
    bottom: 108px;
  }
  .home-banner .home-swiper-custom-pagination {
    right: 6.875%;
    bottom: 120px;
    width: 410px;
  }
}
@media (min-width: 1480px){
  .home-banner-swiper .title,
  .home-banner-swiper .txt {
    font-size: 80px;
  }
  .home-banner-swiper .btn { 
    font-size: 30px;
    height: 99px;
    border-radius: 99px;
  }
}


 /*  home-what
-------------------------- */
.home-what {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 100px;
}
.home-what .left {
  text-align: center;
}
.home-what .pic2 {
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  margin-top: -20px;
}
.home-what .right {
  margin-top: 20px;
}
.home-what .txt1 {
  text-transform: uppercase;
  font-family: Montserrat-Bold;
  font-size: 36px;
  color: #FAB702;
}
.home-what .txt2 {
  text-transform: uppercase;
  font-family: Montserrat-Bold;
  font-size: 25px;
  color: #9c9c9c;
}
.home-what .txt3 {
  line-height: 2;
  margin-top: 20px;
}
.home-what .link-box {
  margin-top: 41px;
}
@media (min-width: 768px){
  .home-what {
    padding-top: 198px;
    padding-left: 11.04%;
    padding-right: 11.04%;
  }
  .home-what .txt1 {
    font-size: 72px;
  }
  .home-what .txt2 {
    font-size: 46px;
  }
  .home-what .txt3 {
    margin-top: 40px;
  }
  .home-what .link-box {
    margin-top: 82px;
  }
}

@media (min-width: 1654px){ 
  .home-what {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
  .home-what .left {
    width: 50%;
  }
  .home-what .pic2 {
    margin-top: -110px;
  }
  .home-what .right {
    margin-top: 0;
    width: 50%;
    box-sizing: border-box;
    padding-left: 8%;
    padding-right: 8%;
  }
}



/*  home-card
-------------------------- */
.home-card {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 135px;
  padding-bottom: 60px;
  position: relative;
}
.home-card .title {
  text-align: center;
  font-family: Montserrat-Bold;
  font-size: 32px;
  text-transform: uppercase;
  color: #9c9c9c;
}
.home-card .title span {
  color: #FAB702;
}
.home-card .txt {
  font-size: 16px;
  text-align: center;
  line-height: 2;
  margin-top: 6px;
  max-width: 712px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  color: #F9F8F5;
}
@media (min-width: 768px){
  .home-card {
    padding-top: 270px;
    padding-left: 6.56%;
    padding-right: 6.56%;
    padding-bottom: 100px;
  }
  .home-card .title {
    font-size: 64px;
  }
  .home-card .txt {
    font-size: 18px;
    padding-bottom: 93px;
  }
}




.card {
  display: block;
  position: sticky;
  left: 0;
  --diff: 0vw;
  top: calc(100px + var(--diff));
  overflow: hidden;
  margin-top: 30px;
}


.card1 {
  background: url('../images/Stacked-Card1-bg.png') no-repeat right top;
  background-size: cover;
  padding: 30px 15px 15px 15px;
}
.card1 .slogin {
  border-left: 3px solid #000000;
  padding-left: 15px;
  padding-right: 15px;
  color: #000;
  flex: 1;
  box-sizing: border-box;
}

.card1 .h1 {
  font-family: Montserrat-Bold;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
}
.card1 .h2 {
  font-size: 14px;
}
.card1 .h2 span {
  color: rgba(0, 0, 0, .6);
}
.card1 .icon {
  display: none;
}
.card1 .pic {
  margin-top: 15px;
}

@media (min-width: 768px){
  .card1 {
    padding: 6.45% 6.56% 8% 6.56%;
  }
  .card1 .slogin {
    border-left-width: 10px;
    padding-left: 59px;
  }
  .card1 .h1 {
    font-size: 30px;
  }
  .card1 .h2 {
    font-size: 24px;
  }
  .card1 .pic {
    margin-top: 4%;
  }
}
@media (min-width: 992px){
  .card1 .row {
    display: flex;
  }
  .card1 .h1 {
    font-size: 64px;
  }
  .card1 .icon {
    display: block;
    padding-left: 200px;
    position: relative;
  }
  .card1 .icon img {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (min-width: 1500px){
  .card1 .icon img {
    right: -22px;
    top: -7px;
  }
}


.card2 {
  background: url('../images/Stacked-Card2-bg.png') no-repeat left top;
  background-size: cover;
  padding: 30px 15px 15px 15px;
}
.card2 .slogin {
  border-right: 3px solid #000;
  padding-right: 15px;
  padding-left: 15px;
  color: #000;
  flex: 1;
  box-sizing: border-box;
  text-align: right;
  padding-left: 15px;
}

.card2 .h1 {
  font-family: Montserrat-Bold;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
}
.card2 .h2 {
  font-size: 14px;
}
.card2 .h2 span {
  color: rgba(0, 0, 0, .6);
}
.card2 .icon {
  display: none;
}
.card2 .list {
  margin-top: 15px;
  overflow: hidden;
}
.card2 .list .item {
  display: flex;
  justify-content: center;
}
.card2 .list .box {
  position: relative;
}
.card2 .list .pic {
  aspect-ratio: 3 / 5;
  position: relative;
  opacity: 1;
}
.card2 .list .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%);
  transition: all .3s linear;
}
.card2 .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 14px;
  text-align: center;
  padding-bottom: 20px;
  box-sizing: border-box;
}


@media (min-width: 768px){
  .card2 {
    padding: 6.45% 6.56% 8% 6.56%;
  }
  .card2 .slogin {
    border-right-width: 10px;
    padding-right: 59px;
    padding-left: 0;
  }
  .card2 .h1 {
    font-size: 30px;
  }
  .card2 .h2 {
    font-size: 24px;
  }
  .card2 .list {
    margin-top: 6.42%;
  }
  
}
@media (min-width: 992px){

  .card2 .row {
    display: flex;
    flex-direction: row-reverse;
  }
  .card2 .h1 {
    font-size: 64px;
  }
  .card2 .icon {
    display: block;
    padding-left: 200px;
    position: relative;
  }
  .card2 .icon img {
    position: absolute;
    left: 0;
    top: -11px;
  }
  .card2 .mask {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 80px;
  }





  .card2 .box {
    transition: all .3s linear;
  }
  .card2 .box::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 8px;
    background-color: #FAB702;
    opacity: 0;
    transition: all .3s linear;
  }
  .card2 .box:hover {
    transform: translateY(-18px);
  }
  .card2 .box:hover::after{
    opacity: 1;
  }
  .card2 .box:hover .pic::before {
    opacity: 0;
  }
}
@media (min-width: 1500px){
  .card2 .icon img {
    left: -22px;
  }
  
}




.card3 {
  background: url('../images/Stacked-Card3-bg.png') no-repeat right top;
  background-size: cover;
  padding: 30px 15px 15px 15px;
}
.card3 .slogin {
  border-left: 3px solid #fff;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  flex: 1;
  box-sizing: border-box;
}

.card3 .h1 {
  font-family: Montserrat-Bold;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
}
.card3 .h2 {
  font-size: 14px;
}
.card3 .h2 span {
  color: rgba(255, 255, 255, .6);
}
.card3 .icon {
  display: none;
}
.card3 .pic {
  margin-top: 15px;
}

@media (min-width: 768px){
  .card3 {
    padding: 6.45% 6.56% 8% 6.56%;
  }
  .card3 .slogin {
    border-left-width: 10px;
    padding-left: 59px;
  }
  .card3 .h1 {
    font-size: 30px;
  }
  .card3 .h2 {
    font-size: 24px;
  }
  .card3 .pic {
    margin-top: 4%;
  }
}
@media (min-width: 992px){

  .card3 .row {
    display: flex;
  }
  .card3 .h1 {
    font-size: 64px;
  }
  .card3 .icon {
    display: block;
    padding-left: 200px;
    position: relative;
  }
  .card3 .icon img {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (min-width: 1500px){
  .card3 .icon img {
    right: -22px;
    top: -7px;
  }
}


/*  home-contact
-------------------------- */
.home-contact {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 51.5px;
  padding-bottom: 88px;
}
.home-contact .title {
  font-family: Montserrat-Bold;
  font-size: 36px;
  color: #FAB702;
  text-transform: uppercase;
}
.home-contact .title span {
  color: #9c9c9c;
}
.home-contact .word {
  margin-top: 16px;
  color: #F9F8F5;
}


.home-contact .form-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #4c4c53;
  padding-top: 36px;
  padding-bottom: 36px;
  position: relative;
}
.home-contact .form-label {
  width: 70px;
  display: flex;
  align-items: center;
}
.home-contact .form-label span {
  color: #d04606;
  margin-left: 7px;
}
.home-contact .form-input {
  flex: 1;
}
.home-contact .form-input input {
  font-size: 16px;
  color: #FFF;
  width: 100%;
  box-sizing: border-box;
}
.home-contact .form-error {
  position: absolute;
  bottom: 11px;
  font-size: 14px;
  color: #d04606;
}
.home-contact .form-submit {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}
.home-contact .form-submit button {
  cursor: pointer;
}



@media (min-width: 768px){ 
  .home-contact {
    padding-left: 10.13%;
    padding-right: 10.13%;
    padding-top: 123px;
    padding-bottom: 176px;
  }
  .home-contact .title {
    font-size: 72px;
  }
  .home-contact .right {
    width: 490px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}


@media (min-width: 1480px){ 
  .home-contact {
    display: flex;
  }
  .home-contact .left {
    flex: 1;
  }
  .home-contact .right {
    width: 53.8%;
    margin-top: 0;
  }
}




/* ========================================================================
   新闻列表
 ========================================================================== */
.news-page {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 78px;
  padding-bottom: 75px;
}
.news li {
  margin-top: 44px;
}
.news li:first-child {
  margin-top: 0;
}
.news a {
  display: inline-block;
}
.news .pic {
  text-align: center;
}
.news .words {
  padding-top: 17px;
}
.news a .time {
  font-size: 14px;
  color: #9C9C9C;
}
.news a .title {
  font-family: NotoSansSC-bold;
  font-size: 18px;
  color: #fff;
  padding-top: 12px;
  padding-bottom: 20px;

}
.news a .txt {
  font-size: 16px;
  color: #9C9C9C;
  line-height: 2;
}
.news .arrow {
  display: none;
}
@media (min-width: 768px){ 
  .news-page {
    padding-left: 8.75%;
    padding-right: 8.75%;
    padding-top: 158px;
    padding-bottom: 150px;
  }
  .news li {
    margin-top: 88px;
  }
  .news a {
    display: flex;
    align-items: center;
  }
  .news .pic {
    width: 39.1%;
  }
  .news .words {
    flex: 1;
    padding-top: 0;
    box-sizing: border-box;
    padding-left: 5.5%;
    min-width: 0;
  }
  .news .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .news .txt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@media (min-width: 992px){  
  .news a {
    position: relative;
  }
  .news .pic {
    overflow: hidden;
  }
  .news .pic img {
    transition: all .3s linear;
  }
  .news a .time {
    font-size: 16px;
  }
  .news a .title {
    font-size: 24px;
    transition: all .3s linear;
  }
  .news a .txt {
    font-size: 18px;
  }
  .news .arrow {
    position: absolute;
    right: 0;
    top: 32px;
    display: block;
    width: 53px;
    opacity: 0;
    transition: all .3s linear;
  }
  
  .news a:hover .pic img {
    transform: scale(1.02);
  }
  .news a:hover .title {
    color: #FAB702;
  }
  .news a:hover .arrow{
    opacity: 1;
  }
}
@media (min-width: 1420px){  
  .news .txt {
    -webkit-line-clamp: 4;
  }
}


/* ========================================================================
   新闻详情
 ========================================================================== */
.newsinfo-page {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.info-edit {
  font-size: 16px;
  color: #9C9C9C;
  line-height: 2;
}
.info-edit .pic {
  text-align: center;
}
.info-edit p {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 768px){ 
  .newsinfo-page {
    padding-top: 180px;
    padding-bottom: 180px;
    padding-left: 11.66%;
    padding-right: 11.66%;;
  }
  .info-edit {
    font-size: 18px;
  }
}




/* ========================================================================
   联系方式
 ========================================================================== */

/*  contact-touch
-------------------------- */
.contact-touch {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 68px;
  padding-bottom: 74px;
}
.contact-touch .title {
  font-family: Montserrat-Bold;
  font-size: 24px;
  color: #FAB702;
  text-transform: uppercase;
}
.contact-touch .title span {
  color: #9C9C9C;
}
.contact-touch .word {
  color: #9C9C9C;
  font-size: 14px;
  margin-top: 12px;
}
.contact-touch .dd {
  display: flex;
  align-items: center;
  margin-top: 22px;
}
.contact-touch .dd:first-child  {
  margin-top: 42px;
}
.contact-touch .message {
  font-size: 14px;
  flex: 1;
  color: #9C9C9C;
  padding-left: 20px;
  box-sizing: border-box;
}

.contact-touch .right {
  margin-top: 100px;
}
.contact-touch .form-item {
  position: relative; 
  margin-top: 30px;
}
.contact-touch .form-label {
  font-size: 16px;
  width: 94px;
  padding-left: 30px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.contact-touch .form-label span{
  color: #f04e02;
  margin-left: 4px;
}
.contact-touch input {
  width: 100%;
  height: 59px;
  padding-left: 94px;
  padding-right: 20px;
  box-sizing: border-box;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  background: rgba(21, 23, 31, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all .3s linear;
}
.contact-touch  textarea {
  width: 100%;
  height: 200px;
  padding: 30px;
  box-sizing: border-box;
  font-size: 16px;
  color: #fff;
  background: rgba(21, 23, 31, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all .3s linear;
}

.contact-touch .form-item-focus input,
.contact-touch .form-item-focus textarea {
  border-bottom-color: #FAB702;
  caret-color: #0080ff;
}
.contact-touch .form-error {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 30px;
  padding-left: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #FAB702;
}

.contact-touch .form-submit {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

@media (min-width: 768px){
  .contact-touch {
    padding-top: 136px;
    padding-bottom: 148px;
    padding-left: 6.77%;
    padding-right: 6.77%;
  }

  .contact-touch .title {
    font-size: 48px;
  }
  .contact-touch .word {
    font-size: 22px;
    margin-top: 24px;
  }
  .contact-touch .dd {
    margin-top: 44px;
  }
  .contact-touch .dd:first-child {
    margin-top: 84px;
  }
  .contact-touch .message {
    font-size: 22px;
  }

  .contact-touch .right {
    max-width: 814px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-touch .form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .contact-touch .form-row .form-item {
    width: 49%;
  }
}



@media (min-width: 1420px){ 
  .contact-touch {
    display: flex;
    justify-content: space-between;
  }
  .contact-touch .left {
    width: 40%;
  }
  .contact-touch .right {
    width: 49.45%;
    margin-left: 0;
    margin-right: 0;
    margin-top: -30px;
  }
  
}




/*  contact-module
-------------------------- */
.contact-module .item {
  position: relative;
}
.contact-module .item .pic {
  width: 100%;
}
.contact-module .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(21, 23, 31, 0.8) 27.54%, rgba(21, 23, 31, 0) 72.27%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.contact-module .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
}
.contact-module .left {
  flex: 1;
}
.contact-module .title {
  font-weight: bold;
  padding-bottom: 16px;
}
.contact-module .word {
  font-size: 16px;
}
.contact-module .arrow {
  width: 20px;
}
@media (min-width: 480px){  
  .contact-module .box {
    padding-left: 13.3%;
    padding-right: 13.3%;
    padding-bottom: 10.3%;
  }
}
@media (min-width: 768px){  
  .contact-module {
    display: flex;
  }
  .contact-module .item {
    width: 50%;
    overflow: hidden;
  }
  
  .contact-module .title {
    font-size: 32px;
  }
  .contact-module .word {
    font-size: 24px;
  }
  .contact-module .arrow  {
    width: 50px;
  }
}

@media (min-width: 992px){
  .contact-module .pic,
  .contact-module .arrow {
    transition: all .3s linear;
  }
  .contact-module .arrow {
    opacity: 0;
  }
  .contact-module .item:hover .pic {
    transform: scale(1.02);
  }
  .contact-module .item:hover .arrow {
    opacity: 1;
  }
}





/* ========================================================================
   服务案例
 ========================================================================== */


 /*  contact-module
-------------------------- */
.case {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 74px;
  padding-bottom: 74px;
}
@media (min-width: 768px){
  .case {
    padding-left: 6.77%;
    padding-right: 6.77%;
    padding-top: 148px;
    padding-bottom: 148px;
  }
}




.case .columns {
  display: flex;
  align-items: center;
}
.case .column {
  height: 64px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #9C9C9C;
  border-bottom: 3px solid #9C9C9C;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 20px;
  transition: all .3s linear;
  cursor: pointer;
}
.case .column.active {
  color: #FAB702;
  border-color: #FAB702;
}
.case .column:last-child {
  margin-right: 0;
}
@media (min-width: 768px){
  .case .column {
    padding-left: 22px;
    padding-right: 22px;
    font-size: 22px;
    margin-right: 40px;
  }
}
@media (min-width: 992px){
  .case .column:hover {
    color: #FAB702;
    border-color: #FAB702;
  }
}


.case .h1 {
  text-align: center;
  font-family: Montserrat-Bold;
  font-size: 24px;
  text-transform: uppercase;
  color: #FAB702;
  margin-top: 53px;
}
.case .h1 span {
  color: #9c9c9c;
}
@media (min-width: 768px){
  .case .h1 {
    font-size: 48px;
    margin-top: 106px;
  }
  .case .h1 span {
    margin-left: 13px;
  }
}



.case .intro {
  font-size: 16px;
  color: #9c9c9c;
  line-height: 2;
  margin-top: 20px;
}
@media (min-width: 768px){
  .case .intro {
    font-size: 18px;
  }
}


.case .list li {
  margin-top: 50px;
}
.case .list .pic {
  text-align: center;
  overflow: hidden;
}
.case .list .title {
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 17px;
}
.case .list .title span {
  font-weight: normal;
  color: #9c9c9c;
  margin-left: 4px;
  margin-right: 4px;
  position: relative;
  top: -2px;
}
.case .list .memo {
  font-size: 16px;
  color: #9c9c9c;
  margin-top: 10px;
}
@media (min-width: 768px){ 
  .case .list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -17px;
    margin-right: -17px;
  }
  .case .list li {
    margin-top: 100px;
    width: 50%;
    padding-left: 17px;
    padding-right: 17px;
    box-sizing: border-box;
  }
  .case .list .title {
    margin-top: 34px;
  }
  .case .list .memo { 
    margin-top: 20px;
  }
}

@media (min-width: 992px){ 
  .case .list .pic img,
  .case .list .title,
  .case .list .title span {
    transition: all .3s linear;
  }
  .case .list .box {
    cursor: pointer;
  }
  .case .list .box:hover .pic img {
    transform: scale(1.02);
  }
  .case .list .box:hover .title,
  .case .list .box:hover .title span {
    color: #FAB702;
  }
}


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

.modal-content {
  width: 90%;
  max-width: 1238px;
  max-height: 95vh;
  overflow: hidden;
  background-color: #272a35;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding-left: 24px;
  padding-right: 24px;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.modal-body {
  max-height: calc(95vh - 60px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 768px){ 
  .modal-header {
    height: 80px;
  }
  .modal-body {
    max-height: calc(95vh - 80px);
  }
}
@media (min-width: 992px){ 
  .modal-header svg path {
    transition: all .3s linear;
    cursor: pointer;
  }
  .modal-header .close-btn:hover svg path {
    fill: #FAB702;
  }
}


.modal-swiper {
  position: relative;
}

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

.modal-swiper-button-prev,
.modal-swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, .4);
  transition: all .3s linear;
}
.modal-swiper-button-prev::before,
.modal-swiper-button-next::before {
  content: '';
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -9px;
}
.modal-swiper-button-prev::before {
  transform: rotate(225deg);
  margin-left: -3px;
}
.modal-swiper-button-next::before {
  transform: rotate(45deg);
  margin-left: -14px;
}
@media (min-width: 992px){ 
  .modal-swiper-button-prev:hover,
  .modal-swiper-button-next:hover {
    background: rgba(0, 0, 0, .8);
  }
}



.modal-words {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
}
.modal-title {
  font-size: 20px;
  font-weight: bold;
}
.modal-title span {
  font-weight: normal;
  margin-left: 7px;
  margin-right: 7px;
  color: #9c9c9c;
  position: relative;
  top: -2px;
}
.modal-tags {
  font-size: 14px;
  color: #9c9c9c;
  padding-top: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 20px;
}
.modal-tags span {
  margin-right: 10px;
}
.modal-tags span:last-child {
  margin-right: 0;
}
.modal-description {
  font-size: 16px;
  flex: 1;
  overflow-y: auto;
  color: #9c9c9c;
  line-height: 2;
}
@media (min-width: 768px){ 
  .modal-words { 
    padding: 57px;
  }
  .modal-title {
    font-size: 24px;
  }
  .modal-tag {
    margin-right: 42px;
  }
  .modal-description {
    font-size: 18px;
  }
}



/*  partner
-------------------------- */
.partner {
  background: rgba(21, 23, 31, .4);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 74px;
  padding-bottom: 75px;
}
@media (min-width: 768px){
  .partner {
    padding-left: 6.77%;
    padding-right: 6.77%;
    padding-top: 148px;
    padding-bottom: 150px;
  }
}



.partner .title {
  text-align: center;
}
.partner .title .en {
  font-family: Montserrat-Bold;
  text-transform: uppercase;
  color: #FAB702;
  font-size: 24px;
}
.partner .title span {
  color: #9c9c9c;
}
.partner .title .cn {
  color: #9c9c9c;
}
@media (min-width: 640px){
  .partner .title {
    text-align: left;
    display: flex;
    align-items: center;
  }
  .partner .title .en {
    font-size: 40px;
    margin-right: 40px;
  }
  .partner .title span {
    margin-left: 20px;
  }
  .partner .title .cn {
    font-size: 22px;
  }
}
@media (min-width: 1024px){ 
  .partner .title .en {
    font-size: 64px;
  }
}


.partner .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 31px;
}
.partner .list li {
  width: 50%;
  height: 160px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-left: -1px;
  margin-top: -1px;
}
@media (min-width: 768px){
  .partner .list {
    margin-top: 62px;
  }
  .partner .list li {
    width: 25%;
  }
}



/* ========================================================================
   关于迈瑞科
 ========================================================================== */


 /*  columns
-------------------------- */
.about-columns {
  position: sticky;
  top: 100px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s linear;
}
.about-columns.scrolled {
  background-color: rgba(12, 14, 23, .95);
}
.about-columns a {
  text-align: center;
  font-size: 18px;
  color: #9C9C9C;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 4px solid rgba(255, 255, 255, .3);
  margin-left: 20px;
  margin-right: 20px;
  transition: all .3s linear;
}
.about-columns a.active {
  border-color: #FAB702;
  color: #FAB702;
}
@media (min-width: 768px){ 
  .about-columns a {
    font-size: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px){ 
  .about-columns a:hover {
    border-color: #FAB702;
    color: #FAB702;
  }
}




 /*  about-pannel1
-------------------------- */
.about-pannel1 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 77px;
  color: #c9c9c9;
}
.about-pannel1 .h1 {
  text-transform: uppercase;
  font-family: Montserrat-Bold;
  font-size: 24px;
}
.about-pannel1 .h1 span {
  color: #FAB702;
}
.about-pannel1 .h2 {
  margin-top: 9px;
  font-size: 16px;
}



@media (min-width: 768px){ 
  .about-pannel1 {
    padding-left: 6.77%;
    padding-right: 6.77%;
    padding-top: 154px;
  }
  .about-pannel1 .h1 {
    font-size: 48px;
  }
  .about-pannel1 .h2 {
    font-size: 22px;
  }
}


 /*  about-pannel2
-------------------------- */
.about-pannel2 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 50px;
  padding-bottom: 145px;
}
.about-pannel2 .pic {
  text-align: center;
}

.about-pannel2 .txt1 {
  color: #666;
  line-height: 2;
  margin-top: 40px;
}

.about-pannel2 .txt2 {
  line-height: 2;
  margin-top: 40px;
}

.about-pannel2 .list {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  color: #9c9c9c;
  margin-top: 40px;
}
.about-pannel2 .p {
  margin-top: 7px;
}


@media (min-width: 768px){ 
  .about-pannel2 {
    padding-top: 103px;
    padding-bottom: 290px;
    padding-left: 9.68%;
    padding-right: 9.68%;
  }
  .about-pannel2 .txt1 {
    margin-top: 80px;
  }
  .about-pannel2 .txt2 {
    margin-top: 80px;
  }
  .about-pannel2 .list {
    margin-top: 80px;
  }
  
}


@media (min-width: 1200px){ 
  .about-pannel2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }
  
  .about-pannel2 .pic {
    text-align: left;
    width: 45.3%
  }
  .about-pannel2 .words {
    width: 51.5%;
  }
  .about-pannel2 .txt1 {
    margin-top: 0;
  }
  .about-pannel2 .txt2 {
    position: relative;
  }
  .about-pannel2 .txt2::before {
    content: '';
    display: block;
    position: absolute;
    top: -40px;
    left: -100.77%;
    right: -23%;
    bottom: 0;
    background-color: rgba(12, 14, 23, .4);
    z-index: -1;
  }
  .about-pannel2 .list {
    width: auto;
    position: relative;
  }
  .about-pannel2 .list::before {
    content: '';
    display: block;
    position: absolute;
    top: -80px;
    left: -100.77%;
    right: -23%;
    bottom:-109px;
    background-color: rgba(12, 14, 23, .4);
    z-index: -1;
  }
}


 /*  about-pannel3
-------------------------- */
.about-pannel3 .item {
  position: relative;
  overflow: hidden;
  display: block;
}
.about-pannel3 .pic {
  position: relative;
  aspect-ratio: 1/1;
}

.about-pannel3 .pic::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(21, 23, 31, 0.9) 27.54%, rgba(21, 23, 31, 0) 72.27%);
  z-index: 1;
}

.about-pannel3 .pic img {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: none;
}

.about-pannel3 .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}
.about-pannel3 .box {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-pannel3 .words {
  flex: 1;
  box-sizing: border-box;
  padding-right: 20px;
}
.about-pannel3 .title {
  font-size: 26px;
  font-family: NotoSansSC-bold;
}
.about-pannel3 .txt {
  font-size: 18px;
  margin-top: 16px;
}
.about-pannel3 .arrow {
  width: 30px;
  height: 30px;
}


@media (min-width: 768px) {
  .about-pannel3 {
    display: flex;
  }
  .about-pannel3 .item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .about-pannel3 .txt {
    font-size: 20px;
  }
  .about-pannel3 .arrow {
    width: 51px;
    height: 51px;
  }


  .about-pannel3 .mask {
    padding-left: 8.5%;
    padding-right: 8.5%;
    
    transform: translateY(41.5%);
    transition: transform .4s linear;
  }
  .about-pannel3 .txt,
  .about-pannel3 .arrow {
    opacity: 0;
    transform: translateY(200%);
    transition: all .4s linear;
  }
  .about-pannel3 .item:hover .mask {
    transform: translateY(30%);
  }
  .about-pannel3 .item:hover .txt,
  .about-pannel3 .item:hover .arrow  {
    opacity: 1;
    transform: translateY(0%);
  }
}

@media (min-width: 1480px) {
  .about-pannel3 .item:hover .mask {
    transform: translateY(39%);
  }
}





 /*  honor-pannel1
-------------------------- */
.honor-title {
  font-size: 24px;
  font-family: Montserrat-Bold;
  text-align: center;
  color: #9c9c9c;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 77px;
}
.honor-title span {
  color: #FAB702;
}
.honor-sub-title {
  text-align: center;
  color: #9c9c9c;
  margin-top: 12px;
  padding-left: 15px;
  padding-right: 15px;
}
.honor-txt {
  color: #9c9c9c;
  line-height: 2;
  margin-top: 22px;
  padding-left: 15px;
  padding-right: 15px;
}
.honor-certificate {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 50px;
  overflow: hidden;
}
.honor-certificate .swiper-slide img {
  width: 100%;
}

@media (min-width: 768px) {
  .honor-title {
    font-size: 48px;
    padding-top: 154px;
  }
  .honor-sub-title {
    font-size: 22px;
    margin-top: 24px;
  }
  .honor-txt {
    text-align: center;
    margin-top: 44px;
    padding-left: 22.6%;
    padding-right: 22.6%;
  }
  .honor-certificate {
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  .honor-certificate {
    margin-left: 16.87%;
    margin-right: 16.87%;
  }
}



.brand-title {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  font-family: Montserrat-Bold;
  font-size: 24px;
  color: #9c9c9c;
  text-transform: uppercase;
  padding-top: 153px;
}
.brand-title span {
  color: #FAB702;
}
.brand-sub-title {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  color: #9c9c9c;
  margin-top: 13px;
}

@media (min-width: 768px) {
  .brand-title {
    font-size: 48px;
    padding-top: 306px;
  }
  .brand-sub-title {
    font-size: 22px;
    margin-top: 26px;
  }
}



 /*  brand-marquee-box
-------------------------- */
.brand-marquee-box {
  padding-left: 6.51%;
  padding-right: 6.51%;
  padding-bottom: 75px;
  padding-top: 52px;
}
.brand-marquee1,
.brand-marquee2 {
  overflow: hidden;
}
.brand-marquee2 {
  margin-top: -1px;
}
.brand-marquee1 img,
.brand-marquee2 img {
  padding: 30px 66px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.brand-marquee1 img {
  border-left: none;
  margin-left: -4px;
}
.brand-marquee2 img {
  border-right: none;
  margin-right: -4px;
}
.brand-marquee1:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.brand-marquee2:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) { 
  .brand-marquee-box {
    padding-bottom: 150px;
    padding-top: 105px;
  }
  .brand-marquee1 img,
  .brand-marquee2 img {
    padding: 40px 106px;
    width: 80px;
    height: 80px;
  }
}




/* ========================================================================
   信息化系统集成
 ========================================================================== */


 /*  information-pannel1
-------------------------- */
.information-pannel1 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 79px;
}
@media (min-width: 768px) {
  .information-pannel1 {
    padding-top: 158px;
    padding-left: 6.77%;
    padding-right: 6.77%;
  }
}


.information-pannel1 .title {
  font-family: Montserrat-Bold;
  text-align: center;
  font-size: 24px;
  color: #9c9c9c;
  text-transform: uppercase;
}
.information-pannel1 .title span{
  color: #FAB702;
}
.information-pannel1 .txt {
  color: #9c9c9c;
  text-align: center;
  line-height: 1.7;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .information-pannel1 .title {
    font-size: 48px;
  }
  .information-pannel1 .txt {
    font-size: 22px;
    margin-top: 24px;
  }
}


.information-pannel1 .list {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 50px;
}
.information-pannel1 .list li {
  width: 33.33%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: center;
}

.information-pannel1 .list .description {
  text-align: center;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .information-pannel1 .list {
    margin-top: 100px;
    max-width: 894px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
  }
  .information-pannel1 .list li {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .information-pannel1 .list .description {
    font-size: 20px;
    margin-top: 50px;
  }
}

@media (min-width: 992px) {
  .information-pannel1 .list img {
    transition: all .3s linear;
  }
  .information-pannel1 .list .box:hover img {
    transform: rotateY(180deg);
  }
}






 /*  information-pannel2
-------------------------- */
.information-pannel2 {
  padding-top: 154px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .information-pannel2 {
    padding-top: 308px;
    padding-left: 6.66%;
    padding-right: 6.66%;
  }
}


.information-pannel2 .title {
  font-family: Montserrat-Bold;
  text-align: center;
  font-size: 24px;
  color: #9c9c9c;
  text-transform: uppercase;
}
.information-pannel2 .title span{
  color: #FAB702;
}
.information-pannel2 .sub-title {
  color: #9c9c9c;
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .information-pannel2 .title {
    font-size: 48px;
  }
  .information-pannel2 .sub-title {
    font-size: 22px;
    margin-top: 24px;
  }
}


.range {
  padding-top: 30px;
}
.range .li {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  overflow: hidden;
}
.range .box {
  position: relative;
  overflow: hidden;
}
.range img {
  aspect-ratio: 39 / 53;
}
.range .mask {
  font-size: 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, #15171F 0%, rgba(0, 0, 0, 0) 80%);
  box-sizing: border-box;
  padding-left: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.range .memo {
  color: #9c9c9c;
  text-transform: capitalize;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .range {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 100px;
  }
  .range .li {
    width: 50%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .range {
    margin-left: -7px;
    margin-right: -7px;
  }
  .range .li {
    width: 25%;
    margin-top: 0;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (min-width: 1480px) {
   .range {
    margin-left: -18px;
    margin-right: -18px;
  }
   .range .li {
    padding-left: 18px;
    padding-right: 18px;
  }
   .range .mask {
      padding-left: 42px;
      padding-bottom: 34px;
    }
}




 /*  information-pannel3
-------------------------- */

.information-pannel3 {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 83px;
}
.information-pannel3 .pic {
  display: none;
}
.information-pannel3 .words {
  color: #9c9c9c;
}
.information-pannel3 li {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 30px;
  padding-top: 30px;
}
.information-pannel3 .image {
  text-align: center;
}
.information-pannel3 .title {
  font-family: NotoSansSC-Medium;
  transition: all .3s linear;
  margin-top: 17px;
}
.information-pannel3 .memo {
  margin-top: 17px;
  font-size: 14px;
}
.information-pannel3 .arrow {
  display: none;
}
@media (min-width: 768px) {
  .information-pannel3 {
    padding-left: 6.66%;
    padding-right: 6.66%;
    margin-top: 166px;
  }
}
@media (min-width: 992px) {
  .information-pannel3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .information-pannel3 .pic {
    display: block;
     width: 57.8%;
  }
  .information-pannel3 .pic img {
    width: 100%;
  }
  .information-pannel3 .words {
    width: 38.45%;
  }
  .information-pannel3 li {
    transition: all .3s linear;
    cursor: pointer;
  }
  .information-pannel3 .image {
    display: none;
  }
  .information-pannel3 .title {
    margin-top: 0;
  }
  
  .information-pannel3 li:hover,
  .information-pannel3 li.active {
    border-color: #FAB702;
  }
  .information-pannel3 li:hover .title,
  .information-pannel3 li.active .title{
    color: #fff;
  }

  .information-pannel3 li:hover .arrow,
  .information-pannel3 li.active .arrow {
    opacity: 1;
  }
}
@media (min-width: 1480px) {
  .information-pannel3 li {
    padding-right: 116px;
    position: relative;
  }
  .information-pannel3 .title {
    font-size: 26px;
  }
  .information-pannel3 .memo {
    font-size: 18px;
  }
  .information-pannel3 .arrow {
    position: absolute;
    right: 12px;
    top: 30px;
    display: block;
    opacity: 0;
    transition: all .3s linear;
  }
}


 /*  information-pannel4
-------------------------- */

.information-pannel4 {
  margin-top: 84px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 60px;
  background: url('../images/bg2.jpg') no-repeat center top;
  background-size: cover;
}
.information-pannel4 .sub-title {
  display: flex;
  align-items: center;
}
.information-pannel4 .sub-title .span{
  font-size: 20px;
  margin-left: 17px;
}
.information-pannel4 .title {
  font-family: Montserrat-Bold;
  font-size: 24px;
  color: #9c9c9c;
  text-transform: uppercase;
  margin-top: 23px;
}
.information-pannel4 .title span {
  color: #FAB702;
}
.information-pannel4 .txt {
  color: #9c9c9c;
  line-height: 1.6;
  margin-top: 26px;
}
.information-pannel4 .ul {
  display: none;
}
.information-pannel4 .dd  {
  padding-bottom: 60px;
}
.information-pannel4 .dd:first-child {
  margin-top: 60px;
}
.information-pannel4 .name {
  font-family: NotoSansSC-Medium;
  font-size: 18px;
  color: #fff;
}
.information-pannel4 .description {
  color: #9c9c9c;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 22px;
}
.information-pannel4 .pic {
  text-align: center;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .information-pannel4 {
    margin-top: 168px;
    padding-left: 6.56%;
    padding-right: 6.56%;
    padding-top: 105px;
    padding-bottom: 105px;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
  }

  .information-pannel4 .left {
    width: 31.4%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 6.56%;
    top: 105px;
  }

  .information-pannel4 .left.position-fixed1 {
    justify-content: center;
    position: fixed;
    bottom: 0;
    top: auto;
  }
  .information-pannel4 .left.position-fixed2 {
    justify-content: center;
    position: absolute;
    bottom: 0;
    top: auto;
  }
  .information-pannel4 .title {
    font-size: 48px;
  }
  .information-pannel4 .txt {
    font-size: 22px;
  }
  .information-pannel4 .ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }
  .information-pannel4 .li svg{
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  .information-pannel4 .li svg path {
    transition: all .3s linear;
  }
  .information-pannel4 .li.active svg path {
    fill: #FAB702;
  }
  .information-pannel4 .right {
    width: 45.8%;
    margin-left: auto;
  }
  .information-pannel4 .dd {
    padding-bottom: 60px;
  }
  .information-pannel4 .dd:first-child {
    margin-top: 0;
  }
  .information-pannel4 .dd:last-child {
    padding-bottom: 0;
  }
  .information-pannel4 .name {
    font-size: 26px;
  }
  .information-pannel4 .description {
    font-size: 16px;
  }
  .information-pannel4 .pic {
    margin-top: 56px;
  }
}

@media (min-width: 992px) {
  .information-pannel4 .li:hover svg path {
    fill: #FAB702;
  }
}



@media (min-width: 1480px) {
  .information-pannel4 {
    padding-left: 14.37%;
    padding-top: 277px;
    padding-bottom: 277px;
  }
  .information-pannel4 .left {
    left: 14.34%;
    top: 277px;
  }


  .information-pannel4 .ul {
    margin-top: 60px;
  }
  .information-pannel4 .li svg{
    width: 88px;
    height: 88px;
  }
  .information-pannel4 .right {
    top: 305px;
  }
  .information-pannel4 .dd {
    padding-bottom: 120px;
  }
}


 /*  information-pannel5
-------------------------- */
.information-pannel5 {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 75px;
  padding-bottom: 75px;
}
.information-pannel5 .left {
  border-left: 6px solid #fff;
  padding-left: 38px;
}
.information-pannel5 .title {
  font-size: 26px;
  color: #FAB702;
  font-weight: bold;
}
.information-pannel5 .sub-title {
  font-size: 26px;
  color: #EE8B2D;
  font-weight: bold;
  margin-top: 3px;
}
.information-pannel5 .description {
  font-family: Montserrat-Light;
  color: #9c9c9c;
  margin-top: 30px;
  max-width: 720px;
}
.information-pannel5 .right {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .information-pannel5 {
    padding-left: 6.56%;
    padding-right: 6.56%;;
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .information-pannel5 .left {
    flex: 1;
    padding-right: 100px;
    box-sizing: border-box;
  }
  .information-pannel5 .title {
    font-size: 32px;
  } 
  .information-pannel5 .sub-title {
    font-size: 32px;
  }
  .information-pannel5 .description {
    font-size: 20px;
    line-height: 1.6;
  }
  .information-pannel5 .right {
    margin-top: 0;
  }
}




/* ========================================================================
   全球物流服务
 ========================================================================== */



  /*  welcome
-------------------------- */

.welcome {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 76px;
}
.welcome .title {
  font-family: Montserrat-Bold;
  font-size: 24px;
  color: #9c9c9c;
  text-transform: uppercase;
  text-align: center;
}
.welcome .title span {
  color: #FAB702;
}
.welcome .txt {
  font-size: 16px;
  color: #9c9c9c;
  line-height: 2;
  margin-top: 25px;
}
.welcome .row2 {
  text-align: center;
  margin-top: 50px;
}
.welcome .row3 {
  display: flex;
  justify-content: space-around;
  text-align: center;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
.welcome .num {
  font-size: 24px;
  font-family: Montserrat-SemiBold;
  font-weight: 600;
}
.welcome .name {
  font-size: 14px;
}

@media (min-width: 768px) {
  .welcome {
    padding-top: 153px;
    padding-left: 6.35%;
    padding-right: 6.35%;
  }
  .welcome .title {
    font-size: 48px;
  }
  .welcome .txt {
    font-size: 18px;
  }
  .welcome .row2 {
    margin-top: 102px;
  }
  .welcome .row3 {
    padding-bottom: 55px;
    padding-top: 43px;
  }
 
  .welcome .num {
    font-size: 64px;
    padding-bottom: 21px;
  }
  .welcome .name {
    font-size: 24px;
    margin-left: 34px;
    margin-right: 47px;
  }
}

@media (min-width: 1480px) {
  .welcome {
    position: relative;
    padding-bottom: 55px;
  }

  .welcome .row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .welcome .title {
    text-align: left;
    flex: 1;
    box-sizing: border-box;
    padding-right: 20px;
  }
  .welcome .title span {
    display: block;
  }
  .welcome .txt {
    width: 58%;
    margin-top: 0;
  }



  .welcome .row3 {
    width: 1083px;
    box-sizing: border-box;
    color: #15171F;
    background: linear-gradient(90.22deg, #ECB423 3.76%, #EE8B2D 99.86%);
    justify-content: flex-start;
    padding-left: 135px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .welcome .item {
    display: flex;
    align-items: center;
  }
  .welcome .num {
    border-bottom: 4px solid #000;
    min-width: 160px;
    text-align: center;
  }
  .welcome .name {
    transform: translateY(54px);
  }
}




  /*  global
-------------------------- */
.global {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 80px;
  padding-bottom: 75px;
}
.global .title {
  font-size: 24px;
  text-align: center;
  font-family: Montserrat-Bold;
  color: #9c9c9c;
  text-transform: uppercase;
}
.global .title span {
  color: #FAB702;
}
.global .txt {
  text-align: center;
  color: #9c9c9c;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .global {
    padding-top: 249px;
    padding-left: 6.45%;
    padding-right: 6.45%;
    padding-bottom: 150px;
  }
  .global .title {
    font-size: 48px;
  }
  .global .txt {
    font-size: 22px;
    margin-top: 21px;
  }
}





.global-swiper-box {
  position: relative;
  overflow: hidden;
  padding-top: 82px;
  margin-top: 50px;
}
.global-swiper-box .pic {
  text-align: center;
}
.global-swiper-box  .name {
  font-size: 26px;
  font-family: NotoSansSC-Medium;
  margin-top: 28px;
}
.global-swiper-box .description {
  color: #9c9c9c;
  line-height: 2;
  margin-top: 17px;
}


.global-swiper-box .swiper-button-prev,
.global-swiper-box .swiper-button-next {
  width: 60px;
  height: 60px;
  border: 1px solid #FAB702;
  box-sizing: border-box;
  top: 0;
  margin-top: 0;
  background: none;
}
.global-swiper-box .swiper-button-prev {
  left: 0;
}
.global-swiper-box .swiper-button-next {
  right: auto;
  left: 70px;
}
.global-swiper-box .swiper-button-prev::before,
.global-swiper-box .swiper-button-next::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #FAB702;
  border-right: 3px solid #FAB702;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  left: 50%;
  
}
.global-swiper-box .swiper-button-prev::before {
  transform: rotate(225deg);
  margin-left: -3px;
}
.global-swiper-box .swiper-button-next::before {
  transform: rotate(45deg);
  margin-left: -10px;
}
.global-swiper-box .swiper-pagination {
  right: 0;
  top: 15px;
  bottom: auto;
  width: auto;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-swiper-box .swiper-pagination-bullet {
  font-size: 20px;
  color: #9c9c9c;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  opacity: 1;
  display: block;
  position: relative;
}

.global-swiper-box .swiper-pagination-bullet::after {
  content: '/';
  position: absolute;
  color: #222;
  right: -18px;
}
.global-swiper-box .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 16px;
  margin-right: 16px;
}

.global-swiper-box .swiper-pagination-bullet:last-child:after {
  display: none;
}
.global-swiper-box .swiper-pagination-bullet-active {
  color: #FAB702;
}
.global-swiper-box .swiper-pagination-bullet-active::after {
  color: #222;
}


@media (min-width: 768px) {
  .global-swiper-box {
    margin-top: 110px;
  }
  .global-swiper-box  .name {
    font-size: 36px;
  }
  .global-swiper-box .description {
    font-size: 18px;
    margin-top: 35px;
  }
}

@media (min-width: 992px) {
  .global-swiper-box .swiper-slide {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .global-swiper-box .pic {
    width: 48.85%
  }
  .global-swiper-box .words {
    width: 41%;
  }
  .global-swiper-box .name {
    margin-top: 0;
  }
}


@media (min-width: 1800px) {
  .global-swiper-box {
    padding-top: 0;
  }
  .global-swiper-box .swiper-slide {
    align-items: flex-start;
  }
  .global-swiper-box .words {
    padding-left: 100px;
    padding-top: 84px;
    box-sizing: border-box;
  }
  .global-swiper-box::before {
    content: '';
    display: block;
    width: 60px;
    height: 10px;
    background-color: #FAB702;
    position: absolute;
    left: 0;
    top: 10px;
  }
  .global-swiper-box .swiper-pagination {
    left: 83px;
    right: auto;
    top: 0;
  }
  .global-swiper-box .swiper-button-prev,
  .global-swiper-box .swiper-button-next {
    top: auto;
    bottom: 68px;
  }
  .global-swiper-box .swiper-button-prev {
    left: 100px;
  }
  .global-swiper-box .swiper-button-next {
    left: 170px;
  }
}





  /*  support
-------------------------- */
.support {
  background: rgba(21, 23, 31, .4);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 78px;
  padding-bottom: 74px;
}
.support .title {
  text-align: center;
  font-family: Montserrat-Bold;
  text-transform: uppercase;
  color: #9c9c9c;
  font-size: 24px;
}
.support .title span {
  color: #FAB702;
}
.support .txt {
  text-align: center;
  color: #9C9C9C;
  margin-top: 12px;
}



@media (min-width: 768px) {
  .support {
    padding-left: 6.56%;
    padding-right: 6.56%;
    padding-top: 157px;
    padding-bottom: 148px;
  }
  .support .title {
    font-size: 48px;
  }
  .support .txt {
    font-size: 22px;
    margin-top: 22px;
    line-height: 1.6;
  }
}


.accordion .item {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  overflow: hidden;
}
.accordion .box {
  position: relative;
  overflow: hidden;
}
.accordion .pic {
  aspect-ratio: 1 / 1;
}
.accordion .mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
.accordion .mask::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, #15171F 0.04%, rgba(21, 23, 31, 0) 80%);
  opacity: 1;
}
.accordion .mask::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background-color: #FAB702;
  opacity: 1;
}
.accordion .name {
  position: relative;
  font-weight: bold;
}
.accordion .description {
  font-size: 14px;
  margin-top: 6px;
  position: relative;
}
@media (min-width: 768px) { 
  .accordion {
    display: flex;
    flex-wrap: wrap;
    margin-left: -13px;
    margin-right: -13px;
  }
  .accordion .item {
    width: 50%;
    padding-left: 13px;
    padding-right: 13px;
    box-sizing: border-box;
  }
  .accordion .mask {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 38px;
  }
}

@media (min-width: 992px) {
  .accordion .item {
    width: 20%;
    display: block;
    margin-top: 100px;
    height: 33.3vw;
    transition: width .1s linear;
  }
  .accordion .box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
  }
  .accordion .mask {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 62px;
  }
  .accordion .mask::after {
    opacity: 0;
    transition:  all .05s linear;
  }
  .accordion .pic {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .accordion .name {
    text-align: center;
  }
  .accordion .description {
    opacity: 0;
    display: none;
    transition: all .05s linear;
  }
  .accordion .item.active {
    width: 40%;
  }
  .accordion .item.active .box {
    aspect-ratio: 1 / 1;
  }
  .accordion .item.active .name{
    text-align: left;
  }
  .accordion .item.active .mask {
    right: auto;
    width: 33.3vw;
    padding-left: 62px;
    padding-right: 62px;
  }
  .accordion .item.active .mask::after {
    opacity: 1;
  }
  .accordion .item.active .description {
    opacity: 1;
    display: block;
  }
}

@media (min-width: 1480px) { 
  .accordion .name {
    font-size: 20px;
  }
}

  /*  map
-------------------------- */
.map {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 77px;
  padding-top: 79px;
}
.map .title {
  text-align: center;
  text-transform: uppercase;
  font-family: Montserrat-Bold;
  margin-left: 24px;
  color: #9c9c9c;
  
}
.map .title span {
  color: #FAB702;
}
.map .sub-title {
  text-align: center;
  color: #9c9c9c;
  margin-top: 13px;
}
.map .txt {
  font-size: 16px;
  text-align: center;
  color: #9c9c9c;
  line-height: 1.8;
  margin-top: 27px;
}
@media (min-width: 768px) {
  .map {
    padding-left: 6.56%;
    padding-right: 6.56%;
    padding-bottom: 154px;
    padding-top: 158px;
  }
  .map .title {
    font-size: 48px;
  }
  .map .sub-title {
    font-size: 22px;
    margin-top: 25px;
  }
  .map .txt {
    font-size: 20px;
    margin-top: 55px;
  }
}



.countries {
  margin-top: 25px;
}
.countries img {
  display: none;
}

.countries .list {
  display: flex;
  flex-wrap: wrap;
}
.countries .country  {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.country .dot {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: relative;
  background-color: rgba(250, 183, 2, .1);
}
.country .dot::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(250, 183, 2, 1);
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -2px;
  margin-top: -2px;
}
.country .name{
  font-size: 16px;
  text-transform: uppercase;
  margin-left: 10px;
  margin-right: 20px;
}
@media (min-width: 768px) { 
  .countries {
    position: relative;
    margin-top: 50px;
  }
  .countries img {
    display: block;
    max-width: none;
    width: 100%;
  }
  .countries .list {
    display: block;
  }
  .countries .country  {
    flex-direction: column-reverse;
    margin-top: 0;
    position: absolute;
  }

  .country .dot {
    margin-top: 12px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
  }
  .country .dot::before,
  .country .dot::after {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    margin-left: -5px;
    margin-top: -5px;
  }
  .country .dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    background-color: rgba(250, 183, 2, .3);
  }
  .country .name {
    font-size: 24px;
  }


  .country1 {
    left: 16%;
    top: 16%;
  }
  .country2 {
    left: 26%;
    top: 45%;
  }
  .country3 {
    left: 32%;
    top: 56%;
  }

  .country4 {
    left: 45%;
    top: 9%;
  }
  .country5 {
    left: 54%;
    top: 26%;
  }
  .country6 {
    left: 49%;
    top: 40%;
  }
  .country7 {
    left: 64%;
    top: 11%;
  }
  .country8 {
    left: 76%;
    top: 24%;
  }
  .country9 {
    left: 75%;
    top: 37%;
  }
  .country10 {
    left: 81%;
    top: 63%;
  }
}


@keyframes dotPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(3);
    opacity: 0.5;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}

@media (min-width: 992px) { 
  .country .name,
  .country .dot::after {
    transition: all .3s linear;
  }

  .country:hover .dot::after {
    animation: dotPulse .8s linear forwards infinite;
  }
  .country:hover .name {
    color: #FAB702;
  }
}



  /*  process
-------------------------- */
.process {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 78px;
  background: rgba(21, 23, 31, 0.4);
  
}
.process .title {
  text-transform: uppercase;
  text-align: center;
  font-family: Montserrat-Bold;
  font-size: 24px;
  color: #9c9c9c;
}
.process .title span {
  color: #FAB702;
}
.process .sub-title {
  text-align: center;
  color: #CACECF;
  margin-top: 11px;
}
.process .txt {
  font-size: 16px;
  color: #9c9c9c;
  text-align: center;
  margin-top: 22px;
}
@media (min-width: 768px) { 
  .process {
    padding-left: 11.66%;
    padding-right: 11.66%;
    padding-top: 157px;
  }
  .process .title {
    font-size: 48px;
  }
  .process .sub-title {
    font-size: 22px;
    margin-top: 22px;
  }
  .process .txt {
    font-size: 20px;
    margin-top: 45px;
  }
}




.process-line {
  padding-top: 100px;
  padding-bottom: 100px;
}

.process-line li {
  display: flex;
  margin-bottom: 24px;
}
.process-line .tag {
  font-family: Montserrat-Bold;
  display: none;
}


.process-line .pic {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px dashed #FAB702;
  margin-right: 20px;
  box-sizing: border-box;
}
.process-line .words {
  flex: 1;
}
.process-line .name {
  font-family: Montserrat-Bold;
  color: #FAB702;
  text-transform: capitalize;
  position: relative;
}
.process-line li:nth-child(even) .name::before,
.process-line li:nth-child(odd) .name::before {
  content: '';
  width: 1.5em;
  height: 1px;
  background-color: #FAB702;
  position: absolute;
  bottom: 0;
  left: 0;
}

.process-line .name span {
  margin-right: 15px;
}
.process-line .description {
  font-size: 16px;
  color: #9c9c9c;
  line-height: 1.5;
  margin-top: 12px;
}


@media (min-width: 768px) {
  .process-line li {
    margin-bottom: 50px;
    align-items: center;
  }
  .process-line .pic {
    width: 100px;
    height: 100px;  
    border-radius: 100px;
  }
  .process-line .name {
    font-size: 24px;
  }
  .process-line .description  {
    font-size: 20px;
  }
}



@media (min-width: 1200px) {
  .process-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 359px;
    padding-bottom: 384px;
  }
  .process-line li {
    margin-bottom: 0;
    width: 16%;
    position: relative;
  } 
  .process-line .tag {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }
  .process-line .tag::before {
    content: '';
    width: 2px;
    height: 44px;
    background-color: #FAB702;
    position: absolute;
    left: 50%;
    margin-left: -1px;
  }
  .process-line .tag::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #FAB702;
    left: 50%;
    margin-left: -6px;
  }



  .process-line li:nth-child(even) .tag {
    color: #000;
    background-image: url('../images/flow-bg2.svg');
  }
  .process-line li:nth-child(odd) .tag {
    color: #FAB702;
    background-image: url('../images/flow-bg1.svg');
  }
  .process-line li:nth-child(even) .tag::before {
    top: 56px;
  }
  .process-line li:nth-child(even) .tag::after {
    top: 100px;
  }
  .process-line li:nth-child(odd) .tag::before {
    top: -52px;
  }
  .process-line li:nth-child(odd) .tag::after {
    top: -64px;
  }
  

  .process-line .pic {
    position: absolute;
    left: 50%;
    margin-left: -25px;
    margin-right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50px;
  }

  .process-line li:nth-child(odd) .pic {
    top: -208px;
  }
  .process-line li:nth-child(even) .pic {
    top: 150px;
  }

  .process-line .words {
    position: absolute;
    width: 140%;
  }
  .process-line li:nth-child(odd) .words {
    top: -208px;
    left: 80%;
  }
  .process-line li:nth-child(even) .words {
    top: 150px;
    right: 80%;
    text-align: right;
  }

  .process-line .name {
    font-size: 18px;
  }

  .process-line li:nth-child(even) .name::before {
    left: auto;
    right: 0;
  }
  .process-line .name span {
    display: none;
  }

  .process-line .description  {
    font-size: 16px;
  }
  
}



@media (min-width: 1480px) {
  .process-line .pic {
    width: 100px;
    height: 100px;  
    border-radius: 100px;
    margin-left: -50px;
  }

  .process-line .words {
    width: 130%;
  }
  .process-line li:nth-child(odd) .words {
    left: 80%;
  }
  .process-line li:nth-child(even) .words {
    right: 80%;
  }
  .process-line .name {
    font-size: 24px;
  }
  .process-line .description  {
    font-size: 20px;
  }
}





  /*  declaration
-------------------------- */
.declaration {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 77px;
  padding-bottom: 74px;
}
.declaration .title {
  text-align: center;
  font-family: Montserrat-Bold;
  text-transform: uppercase;
  font-size: 24px;
  color: #9C9C9C;
}
.declaration .title span {
  color: #FAB702;
}
.declaration .txt {
  text-align: center;
  color: #CACECF;
  margin-top: 10px;
}


@media (min-width: 768px) { 
  .declaration {
    padding-left: 9.47%;
    padding-right: 9.47%;
    padding-top: 155px;
    padding-bottom: 148px;
  }
  .declaration .title {
    font-size: 48px;
  }
  .declaration .txt {
    font-size: 22px;
    margin-top: 20px;
  }
}




.declaration-tabs {
  height: 96px;
  display: flex;
  align-items: center;
  color: #F9F8F5;
  margin-top: 26px;
  font-size: 16px;
}
.declaration-tabs div {
  transition: all .3s linear;
}
.declaration-tabs .active {
  color: #FAB702;
}
.declaration-tabs div {
  margin-right: 20px;
}
.declaration-tabs div:last-child {
  margin-right: 0;
}
@media (min-width: 768px) { 
  .declaration-tabs {
    font-size: 24px;
    margin-top: 52px;
  }
  .declaration-tabs div {
    margin-right: 102px;
    cursor: pointer;
  }
}
@media (min-width: 992px) {  
  .declaration-tabs div:hover {
    color: #FAB702;
  }
}



.declaration-content ul {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #FAB702;
  font-size: 14px;
  color: #9c9c9c;
  position: relative;
}
.declaration-content ul::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #FAB702;
}
.declaration-content ul.active {
  display: flex;
}
.declaration-content li {
  width: 49%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 22px;
  padding-bottom: 22px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
}


@media (min-width: 768px) {  
  .declaration-content ul {
    font-size: 22px;
  }
}

@media (min-width: 992px) {  
  .declaration-content li {
    width: 32%;
  }
}