/* 
    Editor: zhao
    Time: 2018.10.18

    Less compilation
    > npm install -g less
    > lessc style.less style.css
*/
@-webkit-keyframes fadeInDownSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownSm {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownSm {
  -webkit-animation-name: fadeInDownSm;
  animation-name: fadeInDownSm;
}
@-webkit-keyframes fadeOutUpSm {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
}
@keyframes fadeOutUpSm {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
}
.fadeOutUpSm {
  -webkit-animation-name: fadeOutUpSm;
  animation-name: fadeOutUpSm;
}
.animation {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.resetStyle {
  color: #333;
}

.resetStyle a {
  text-decoration: none;
  color: #333;
}

.resetStyle ul,
.resetStyle li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resetStyle p {
  margin: 0;
}

@keyframes rise {
  0% {
    transform: translate(0);
  }

  100% {
    transform: translateY(10px);
  }
}

@keyframes fadeOutUpSmall {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(10%);
  }
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translateY(10%);
  }

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

@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }

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

@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translateX(10%);
  }

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

.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
}

.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}

.container {
  transition: 0.3s;
}

/* @media (min-width: 1470px) {
  .container {
    width: 1440px;
    padding: 0;
  }
} */

.side_callem {
  position: fixed;
  width: 60px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: block;
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .side_callem {
    display: none;
  }
}
.side_callem.on {
  opacity: 1;
}
.side_callem ul li:nth-of-type(4){
  display: none;
}
.side_callem ul li {
  text-align: center;
  position: relative;
  margin-top: -2px;
}
.side_callem ul li .show_con {
  background: #fff;
  border: solid 1px #ddd;
  padding: 25px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transit-webkit-transition: all 0.3s;
  -ms-transit-webkit-transition: all 0.3s;
  -o-transit-webkit-transition: all 0.3s;
  transition: all 0.3s;
  transform: translateX(100%);
  opacity: 0;
  white-space: nowrap;
}
.side_callem ul li .show_con img {
  width: 107px;
  max-width: none;
}
.side_callem ul li .show_con strong {
  color: #1468b4;
  font-size: 20px;
}
.side_callem ul li:hover a {
  background: #1468b4;
}
.side_callem ul li:hover a i {
  color: #fff;
}
.side_callem ul li:hover a span {
  color: #fff;
}
.side_callem ul li:hover .show_con {
  transform: translateX(-100%);
  opacity: 1;
}
.side_callem ul li a {
  display: block;
  width: 60px;
  height: 78px;
  background: #fff;
  position: relative;
  border: 1px solid #e0e0e0;
  margin-top: -1px;
  z-index: 99;
  -webkit-transition: all 0.4s;
  -moz-transit-webkit-transition: all 0.4s;
  -ms-transit-webkit-transition: all 0.4s;
  -o-transit-webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.side_callem ul li i {
  display: block;
  font-size: 24px;
  line-height: 24px;
  padding: 13px 0 5px;
  color: #333;
}
.side_callem ul li span {
  color: #666;
  font-size: 12px;
}

.navmenu-content {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  display: none;
  /* bottom: 100%;
  opacity: 0;
  visibility: hidden; */
}

.navmenu-content .content__inner {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
}

.navmenu-content .content__inner .nav-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}

.navmenu-content .content__inner .navmenu-exit {
  position: absolute;
  width: 52px;
  height: 52px;
  background-color: #ce011a;
  color: #fff;
  top: 2vh;
  right: 5%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 30px;
}

.navmenu-content .content__inner .navmenu-exit img {
  width: 25px;
}

@media (max-width: 1470px) {
  .navmenu-content .content__inner .navmenu-exit {
    width: 45px;
    height: 45px;
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .navmenu-content .content__inner .navmenu-exit {
    top: 3vh;
    right: 4vh;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .navmenu-content .content__inner .navmenu-exit img {
    width: 18px;
  }
}

.navmenu-content .content__inner .navList {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-items: center;
  align-items: center;
}

.navmenu-content .content__inner .navItem {
  width: calc(100%/6);
  height: 100%;
  position: relative;
  transition: 0.3s;
}

.navmenu-content .content__inner .navItem .outer {
  display: inline-block;
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}

.navmenu-content .content__inner .navItem .outer .navicon {
  height: 35px;
  overflow: hidden;
  margin: 0 0 60px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .navmenu-content .content__inner .navItem .outer .navicon {
    height: 30px;
    margin: 0 0 50px;
  }
}

@media (max-width: 767px) {
  .navmenu-content .content__inner .navItem .outer .navicon {
    display: none;
  }
}

.navmenu-content .content__inner .navItem .outer .navicon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navmenu-content .content__inner .navItem .outer h3 {
  font-size: 22px;
  color: #1e1e1e;
  font-weight: 100;
  margin: 0 0 16px;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .navmenu-content .content__inner .navItem .outer h3 {
    font-size: 18px;
  }
}

.navmenu-content .content__inner .navItem .outer small {
  display: block;
  text-align: center;
  color: #1e1e1e;
  font-weight: 100;
}

.navmenu-content .content__inner .navItem .hover-show {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 1px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: height 0.3s ease 0.3s, width 0.3s ease;
}

.navmenu-content .content__inner .navItem .hover-show:after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.45);
}

.navmenu-content .content__inner .navItem .hover-show ul {
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  position: relative;
  z-index: 5;
}

.navmenu-content .content__inner .navItem .hover-show ul.on {
  display: flex;
}

.navmenu-content .content__inner .navItem .hover-show ul li {
  width: 100%;
  text-align: center;
  height: 60px;
  line-height: 60px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .navmenu-content .content__inner .navItem .hover-show ul li {
    height: 50px;
    line-height: 50px;
  }
}

.navmenu-content .content__inner .navItem .hover-show ul li a {
  font-size: 16px;
}

.navmenu-content .content__inner .navItem .hover-show ul li:first-child a {
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .navmenu-content .content__inner .navItem .hover-show ul li:first-child a {
    font-size: 18px;
  }
}

.navmenu-content .content__inner .navItem .hover-show ul li a {
  text-align: center;
  color: #fff;
  width: 100%;
  opacity: 1;
  display: inline-block;
  transition: 0.3s;
}

.navmenu-content .content__inner .navItem .hover-show ul li a[href]:hover {
  color: #1468b4;
}

.navmenu-content .content__inner .navItem:hover .hover-show {
  width: 100%;
  height: 100%;
  transition: width 0.3s ease 0.3s, height 0.3s ease;
}

.navmenu-content .content__inner .app_navList {
  position: relative;
}

.navmenu-content .content__inner .app_navList>ul {
  padding-top: 12vh;
  width: 84%;
  margin: auto;
}

.navmenu-content .content__inner .app_navList>ul>li {
  line-height: 60px;
  border-bottom: 1px solid #dcdcdc;
}

.navmenu-content .content__inner .app_navList>ul>li>.item {
  display: flex;
  justify-content: space-between;
}

.navmenu-content .content__inner .app_navList>ul>li>.item>a {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  text-align: left;
  position: relative;
  transition: 0.3s;
}

.navmenu-content .content__inner .app_navList>ul>li>.item em {
  flex: 1;
  text-align: right;
  font-style: normal;
  font-size: 18px;
  cursor: pointer;
}

.navmenu-content .content__inner .app_navList>ul>li>ol {
  width: 68%;
  margin: auto;
  display: none;
  padding: 0;
}

.navmenu-content .content__inner .app_navList>ul>li>ol>li {
  height: 40px;
  line-height: 40px;
  overflow: hidden;
}

.navmenu-content .content__inner .app_navList>ul>li>ol>li>a {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: left;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

.navmenu-content .shape-wrap {
  position: relative;
  z-index: 10;
  fill: rgba(255, 255, 255, 0.9);
}

.navmenu-content.index-navmenu-content .content__inner .navmenu-exit {
  top: 60px;
}

.currency-breadnav {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
}

.currency-breadnav ul {
  display: flex;
}

.currency-breadnav ul li {
  position: relative;
  color: #999;
  font-size: 16px;
  margin: 0 20px 0 0;
}

.currency-breadnav ul li:last-child {
  margin: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.currency-breadnav ul li:after {
  content: ">";
  position: absolute;
  font-family: "微软雅黑";
  top: 0;
  bottom: 0;
  right: -16px;
  font-size: 16px;
  color: #999;
  margin: auto 0;
  transform: translateY(-2px);
}

.currency-breadnav ul li:last-child:after {
  display: none;
}

.currency-breadnav ul li a {
  color: #999;
  font-size: 16px;
  transition: 0.3s;
}

.currency-breadnav ul li a[href]:hover {
  color: #1468b4;
}

.currency-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.currency-card .img-box {
  width: 100%;
  height: 213px;
  overflow: hidden;
  transition: 0.3s;
}

.currency-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.currency-card h4 {
  width: 100%;
  height: 85px;
  line-height: 85px;
  font-size: 26px;
  color: #333;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.currency-card h4 p {
  transition: 0.3s;
}

.currency-card p.des {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* max-height: 56px; */
  height: 0;
  transition: 0.3s;
}

.currency-card:hover .img-box img {
  transform: scale(1.1);
}

.currency-card:hover h4 {
  color: #1468b4;
}

.currency-breadnav-box {
  background: #f5f5f5;
  margin: 0 0 100px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .currency-breadnav-box {
    margin: 0 0 60px;
  }
}

@media (max-width: 991px) {
  .currency-breadnav-box {
    margin: 0 0 50px;
  }
}

@media (max-width: 767px) {
  .currency-breadnav-box {
    background: #fff;
    margin: 0;
  }
}

.currency-breadnav-box .flexbox {
  display: flex;
}

@media (max-width: 767px) {
  .currency-breadnav-box .flexbox {
    flex-direction: column-reverse;
  }
}

.currency-breadnav-box .flexbox .inner-breadnav-tab {
  flex: 1;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul {
  display: flex;
}

@media (max-width: 767px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul {
    width: 100%;
  }
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li {
  margin: 0 60px 0 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul li {
    margin: 0 50px 0 0;
  }
}

@media (max-width: 991px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul li {
    margin: 0 30px 0 0;
  }
}

@media (max-width: 767px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul li {
    margin: 0;
    flex: auto;
  }
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li:last-child {
  margin: 0;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li a {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a {
    justify-content: center;
    height: 60px;
  }
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .nico {
  width: 42px;
  height: 42px;
  overflow: hidden;
  margin: 0 15px 0 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .nico {
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
  }
}

@media (max-width: 575px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .nico {
    display: none;
  }
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .nico.ni {
  background: url(../images/n1.png) center / contain no-repeat;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .nico.n2 {
  background: url(../images/n2.png) center / contain no-repeat;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .nico.n3 {
  background: url(../images/n3.png) center / contain no-repeat;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .nico.n4 {
  background: url(../images/n4.png) center / contain no-repeat;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li a span {
  font-size: 18px;
  color: #999;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a span {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a span {
    font-size: 14px;
  }
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .nico.n1,
.currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .nico.n1 {
  background: url(../images/n1-h.png) center / contain no-repeat;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .nico.n2,
.currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .nico.n2 {
  background: url(../images/n2-h.png) center / contain no-repeat;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .nico.n3,
.currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .nico.n3 {
  background: url(../images/n3-h.png) center / contain no-repeat;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .nico.n4,
.currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .nico.n4 {
  background: url(../images/n4-h.png) center / contain no-repeat;
}

.currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a span,
.currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a span {
  color: #1468b4;
}

.currency-breadnav-box .flexbox .currency-breadnav {
  width: auto;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .currency-breadnav-box .flexbox .currency-breadnav {
    height: 60px;
  }
}

@media (max-width: 575px) {
  .currency-breadnav-box .flexbox .currency-breadnav {
    height: 30px;
    margin: 10px 0 0;
  }
}

@media (max-width: 575px) {
  .currency-breadnav-box .flexbox .currency-breadnav li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .currency-breadnav-box .flexbox .currency-breadnav li a {
    font-size: 14px;
  }
}

.currency-breadnav-apptab {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  margin: 0 0 30px;
  border-bottom: 1px solid #eee;
  z-index: 99;
  background: #fff;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .currency-breadnav-apptab {
    margin: 0 0 15px;
  }
}

.currency-breadnav-apptab ul {
  display: flex;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .currency-breadnav-apptab ul {
    padding: 0 15px;
  }
}

.currency-breadnav-apptab ul li {
  flex: auto;
  text-align: center;
}

.currency-breadnav-apptab ul li a {
  display: block;
  text-align: center;
  font-size: 16px;
  width: 100%;
  padding: 20px 0;
  color: #999;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .currency-breadnav-apptab ul li a {
    font-size: 14px;
  }
}

.currency-breadnav-apptab ul li.active a {
  color: #1468b4;
}

.currency-show-more {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .currency-show-more {
    height: 60px;
  }
}

.currency-show-more .down {
  margin: 0 0 12px;
  animation: rise 1s linear infinite alternate;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .currency-show-more .down {
    width: 15px;
  }
}

.currency-show-more .more-name {
  color: #333;
  font-size: 18px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .currency-show-more .more-name {
    font-size: 14px;
  }
}

.video-model video {
  width: 100%;
}

.home-header-fixed {
  position: relative;
  height: 100px;
}

.home-header-fixed .home-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  transition: .3s;
}

.home-header-fixed.scroll .home-header {
  height: 75px;
}

.home-header-absolute {
  position: absolute;
  z-index: 100;
  width: 100%;
  margin: 55px 0 0;
}

.home-header-absolute .header-container .logo .logo1 {
  display: block;
}

@media (max-width: 767px) {
  .home-header-absolute {
    margin: 15px 0 0;
  }
}

.home-header-static .home-header {
  border-bottom: 1px solid #f4f4f4;
  background: #fefefe;
  height: 100px;
}

.home-header-static .home-header .header-container .logo .logo2 {
  display: block;
  height: 34px;
}

.home-header-static .home-header .header-container #downBox .getwork em {
  color: #333;
}

.home-header-static .home-header .header-container #downBox .getwork .caret {
  color: #989898;
}

.home-header-static .home-header .header-container .right-operate .lang li:after {
  background: rgba(51, 51, 51, 0.5);
}

.home-header-static .home-header .header-container .right-operate .lang li a {
  color: rgba(51, 51, 51, 0.5);
}

.home-header-static .home-header .header-container #navmenu-btn:before {
  color: #333;
}

.home-header-static .home-header .header-container #navmenu-btn .getNav span {
  background: #333;
}

.home-header {
  width: 100%;
  height: 68px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-header {
    height: 50px;
  }
}

.home-header .header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.home-header .header-container .logo a img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 68px;
  display: none;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-header .header-container .logo a img {
    height: 50px;
    margin-left: 0;
  }
}

.home-header .header-container #downBox {
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.home-header .header-container #downBox:hover .uldown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
}

.home-header .header-container #downBox .getwork em {
  color: #fff;
  font-style: normal;
  font-size: 18px;
}

.home-header .header-container #downBox .getwork .caret {
  margin-left: 5px;
  color: #fff;
  border-top: 6px dashed;
  border-top: 6px solid\9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.home-header .header-container #downBox ul.uldown {
  cursor: default;
  background-color: #fff;
  padding: 18px 38px;
  position: absolute;
  top: 100%;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: 0.3s cubic-bezier(0, 0.31, 0.22, 0.43);
  transition-property: opacity, transform;
  box-shadow: 0px 7px 26px rgba(0, 0, 0, 0.1);
}

.home-header .header-container #downBox ul.uldown li {
  padding: 20px 0;
}

.home-header .header-container #downBox ul.uldown li a {
  display: flex;
  align-items: center;
  width: 100%;
}

.home-header .header-container #downBox ul.uldown li a:hover .tit {
  color: #1468b4;
}

.home-header .header-container #downBox ul.uldown li .img-box {
  flex: 0 0 100px;
  min-width: 100px;
  height: 55px;
  margin: 0 15px 0 0;
}

.home-header .header-container #downBox ul.uldown li .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-header .header-container #downBox ul.uldown li .info {
  max-width: 150px;
}

.home-header .header-container #downBox ul.uldown li .info .tit {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-header .header-container #downBox ul.uldown li .info .des {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #ccc;
  font-size: 12px;
}

.home-header .header-container .right-operate {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
}

.home-header .header-container .right-operate .lang {
  display: flex;
  align-items: center;
  margin: 0 35px 0 0;
}

.home-header .header-container .right-operate .lang li {
  position: relative;
  margin: 0 28px 0 0;
}

.home-header .header-container .right-operate .lang li:after {
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 55%;
  background: #fff;
}

.home-header .header-container .right-operate .lang li:last-child {
  margin: 0;
}

.home-header .header-container .right-operate .lang li:last-child:after {
  background: transparent;
}

.home-header .header-container .right-operate .lang li a {
  color: #fff;
  font-size: 16px;
  font-weight: 100;
  transition: 0.3s;
}

.home-header .header-container .right-operate .lang li a:hover {
  color: #1468b4;
}

.home-header .header-container #navmenu-btn {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 0 0 40px;
}

.home-header .header-container #navmenu-btn:before {
  content: attr(data-name);
  position: absolute;
  color: #fff;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-header .header-container #navmenu-btn:before {
    font-size: 14px;
  }
}

.home-header .header-container #navmenu-btn .getNav {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  box-sizing: content-box;
  transition: all 0.3s cubic-bezier(0, 0.31, 0.22, 0.43);
}

.home-header .header-container #navmenu-btn .getNav span {
  position: absolute;
  height: 2px;
  left: 0;
  background-color: #fff;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0, 0.31, 0.22, 0.43);
  transition-delay: 0.3s;
}

.home-header .header-container #navmenu-btn .getNav span:nth-of-type(1) {
  width: 18px;
  top: 2px;
}

.home-header .header-container #navmenu-btn .getNav span:nth-of-type(2) {
  width: 12px;
  top: 8px;
}

.home-header .header-container #navmenu-btn .getNav span:nth-of-type(3) {
  width: 8px;
  top: 14px;
}

.home-header .header-container #navmenu-btn:hover .getNav {
  transform: rotate(-90deg);
}

.home-header .header-container #navmenu-btn:hover .getNav span {
  width: 18px;
}

.home-banner .swiper-container,
.home-banner .swiper-wrapper,
.home-banner .swiper-slide {
  /* width: 100% !important; */
  height: 100% !important;
}

.home-banner .swiper-slide .bannerimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner .swiper-slide .mask .container {
  width: 90%;
  padding: 0;
}

.home-banner .swiper-slide .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  z-index: 2;
}

.home-banner .swiper-slide .mask h2 {
  font-size: 65px;
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-banner .swiper-slide .mask h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .home-banner .swiper-slide .mask h2 {
    font-size: 40px;
    margin: 0 0 30px;
  }
}

@media (max-width: 575px) {
  .home-banner .swiper-slide .mask h2 {
    font-size: 30px;
  }
}

.home-banner .swiper-slide .mask h3 {
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: 100;
  margin: 0;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-banner .swiper-slide .mask h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .home-banner .swiper-slide .mask h3 {
    font-size: 20px;
    font-weight: normal;
  }
}

@media (max-width: 575px) {
  .home-banner .swiper-slide .mask h3 {
    font-size: 18px;
  }
}

.home-banner .home-banner-pagination {
  width: 90%;
  left: 0;
  right: 0;
  bottom: 50%;
  margin: auto;
  transition: 0.3s;
  transform: translateY(50%);
}

@media (max-width: 767px) {
  .home-banner .home-banner-pagination {
    bottom: 8vh;
  }
}

.home-banner .home-banner-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  display: block;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  opacity: 1;
  margin: 0 0 30px auto;
  transition: 0.3s;
}
.home-banner .home-banner-pagination .swiper-pagination-bullet:last-child {
  margin: 0 0 0 auto;
}

@media (max-width: 767px) {
  .home-banner .home-banner-pagination .swiper-pagination-bullet {
    width: 35px;
    height: 2px;
    margin: 0 0 20px;
  }
  .home-banner .home-banner-pagination .swiper-pagination-bullet:last-child {
    margin: 0;
  }
}

.home-banner .home-banner-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.home-banner .down-more {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 180%;
  pointer-events: auto;
  z-index: 3;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  transition: 0.3s;
}

.home-banner .down-more a {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .home-banner .down-more {
    bottom: 3vh;
  }
}

.home-banner .down-more .down {
  display: block;
  margin: 0 auto 12px;
  animation: rise 0.6s linear infinite alternate;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-banner .down-more .down {
    width: 15px;
  }
}

.home-banner .down-more .more-name {
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-banner .down-more .more-name {
    font-size: 14px;
  }
}

.home-whoweare {
  position: relative;
  padding: 140px 0;
  transition: 0.3s;
  margin: 0 0 130px;
}

@media (max-width: 1470px) {
  .home-whoweare {
    padding: 100px 0;
    margin: 0 0 100px;
  }
}

@media (max-width: 1199px) {
  .home-whoweare {
    padding: 60px 0;
    margin: 0 0 60px;
  }
}

@media (max-width: 767px) {
  .home-whoweare {
    padding: 30px 0;
    margin: 0;
  }
}

.home-whoweare:before,
.home-whoweare:after {
  content: "";
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  width: 50%;
  height: 65%;
  background: #fff;
}

@media (max-width: 767px) {

  .home-whoweare:before,
  .home-whoweare:after {
    display: none;
  }
}

.home-whoweare:after {
  left: auto;
  right: 0;
  background: #fef6ea;
  transition: 0.3s;
}

.home-whoweare .flexbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .home-whoweare .flexbox {
    flex-direction: column;
  }
}

.home-whoweare .leftcontent .info h2 {
  font-size: 48px;
  margin: 0 0 25px;
  font-weight: bold;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-whoweare .leftcontent .info h2 {
    font-size: 40px;
    margin: 0 0 15px;
  }
}

@media (max-width: 991px) {
  .home-whoweare .leftcontent .info h2 {
    font-size: 40px;
    margin: 0 0 10px;
  }
}

@media (max-width: 767px) {
  .home-whoweare .leftcontent .info h2 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .home-whoweare .leftcontent .info h2 {
    font-size: 24px;
  }
}

.home-whoweare .leftcontent .info h3 {
  font-size: 30px;
  margin: 0 0 50px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-whoweare .leftcontent .info h3 {
    font-size: 20px;
    margin: 0 0 30px;
  }
}

@media (max-width: 991px) {
  .home-whoweare .leftcontent .info h3 {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .home-whoweare .leftcontent .info h3 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .home-whoweare .leftcontent .info h3 {
    font-size: 16px;
    margin: 0 0 15px;
  }
}

.home-whoweare .leftcontent .info .des {
  line-height: 2;
  color: #999;
  font-size: 14px;
  margin: 0 0 70px;
  max-width: 460px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .home-whoweare .leftcontent .info .des {
    margin: 0 0 30px;
  }
}

@media (max-width: 1199px) {
  .home-whoweare .leftcontent .info .des {
    margin: 0 0 20px;
    line-height: 1.8;
    max-width: 410px;
  }
}

@media (max-width: 991px) {
  .home-whoweare .leftcontent .info .des {
    margin: 0 0 20px;
    line-height: 1.8;
    max-width: 310px;
  }
}

@media (max-width: 767px) {
  .home-whoweare .leftcontent .info .des {
    max-width: inherit;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .home-whoweare .leftcontent .info .des {
    line-height: 1.5;
    font-size: 14px;
    margin: 0 0 15px;
  }
}

.home-whoweare .leftcontent .info .num-group {
  display: flex;
  margin: 0 0 80px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .home-whoweare .leftcontent .info .num-group {
    margin: 0 0 40px;
  }
}

@media (max-width: 991px) {
  .home-whoweare .leftcontent .info .num-group {
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .home-whoweare .leftcontent .info .num-group {
    justify-content: center;
    margin: 0 0 25px;
  }
}

.home-whoweare .leftcontent .info .num-group .item {
  margin: 0 75px 0 0;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .home-whoweare .leftcontent .info .num-group .item {
    margin: 0 50px 0 0;
  }
}

@media (max-width: 991px) {
  .home-whoweare .leftcontent .info .num-group .item {
    margin: 0 25px 0 0;
  }
}

.home-whoweare .leftcontent .info .num-group .item:last-child {
  margin: 0;
}

.home-whoweare .leftcontent .info .num-group .item .num {
  font-size: 36px;
  color: #1468b4;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .home-whoweare .leftcontent .info .num-group .item .num {
    font-size: 25px;
  }
}

.home-whoweare .leftcontent .info .num-group .item .num span {
  font-size: 72px;
  vertical-align: text-top;
  letter-spacing: 2px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-whoweare .leftcontent .info .num-group .item .num span {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .home-whoweare .leftcontent .info .num-group .item .num span {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .home-whoweare .leftcontent .info .num-group .item .num span {
    font-size: 35px;
  }
}

.home-whoweare .leftcontent .info .num-group .item .numdes {
  font-size: 14px;
  color: #666;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .home-whoweare .leftcontent .info .num-group .item .numdes {
    font-size: 12px;
  }
}

.home-whoweare .leftcontent .info .more {
  display: block;
  font-size: 14px;
  width: 155px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 5px;
  background: #1468b4;
  color: #fff;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-whoweare .leftcontent .info .more {
    margin: 0 auto 30px;
  }
}

@media (max-width: 575px) {
  .home-whoweare .leftcontent .info .more {
    width: 140px;
    height: 35px;
    line-height: 35px;
  }
}

.home-whoweare .leftcontent .info .more img {
  transition: 0.3s;
}

@media (max-width: 575px) {
  .home-whoweare .leftcontent .info .more img {
    transform: translateY(-1px);
    margin: 0 0 0 3px;
  }
}

.home-whoweare .leftcontent .info .more:hover img {
  margin: 0 0 0 40px;
}

.home-whoweare .rightcontent .video {
  position: relative;
  width: 626px;
  height: 642px;
  overflow: hidden;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .home-whoweare .rightcontent .video {
    width: 500px;
    height: 520px;
  }
}

@media (max-width: 1199px) {
  .home-whoweare .rightcontent .video {
    width: 400px;
    height: 460px;
  }
}

@media (max-width: 991px) {
  .home-whoweare .rightcontent .video {
    width: 320px;
    height: 380px;
  }
}

@media (max-width: 767px) {
  .home-whoweare .rightcontent .video {
    width: 100%;
    height: 250px;
  }
}

.home-whoweare .rightcontent .video a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.home-whoweare .rightcontent .video .mask {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-whoweare .rightcontent .video .mask a {
  display: block;
  width: 100%;
  height: 100%;
}

.home-whoweare .rightcontent .video .mask img {
  width: 70px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-whoweare .rightcontent .video .mask img {
    width: 50px;
  }
}

.home-whoweare .rightcontent .video .videoimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.home-whoweare .rightcontent .video:hover .videoimg {
  transform: scale(1.1);
}

.home-server {
  margin: 0 0 55px;
}

@media (max-width: 767px) {
  .home-server {
    margin: 0 0 30px;
  }
}

.home-server-head {
  position: relative;
  margin: 0 0 55px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-server-head {
    margin: 0 0 25px;
  }
}

@media (max-width: 767px) {
  .home-server-head {
    margin: 0 0 10px;
  }
}

@media (max-width: 575px) {
  .home-server-head {
    margin: 0;
  }
}

.home-server-head .left h2 {
  font-weight: bold;
  font-size: 46px;
  margin: 0 0 26px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-server-head .left h2 {
    font-size: 40px;
    margin: 0 0 15px;
  }
}

@media (max-width: 991px) {
  .home-server-head .left h2 {
    font-size: 40px;
    margin: 0 0 10px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .home-server-head .left h2 {
    font-size: 24px;
  }
}

.home-server-head .left h3 {
  font-size: 30px;
  margin: 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-server-head .left h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .home-server-head .left h3 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 20px;
  }
}

@media (max-width: 575px) {
  .home-server-head .left h3 {
    font-size: 16px;
  }
}

.home-server-head .right {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 991px) {
  .home-server-head .right {
    position: static;
  }
}

.home-server-head .right .home-server-tab {
  display: flex;
  transform: translateY(20px);
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-server-head .right .home-server-tab {
    transform: translateY(0);
  }
}

@media (max-width: 575px) {
  .home-server-head .right .home-server-tab {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 10px;
  }
}

.home-server-head .right .home-server-tab li {
  font-size: 16px;
  color: #666;
  margin: 0 20px 0 0;
  padding: 0 15px 20px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-server-head .right .home-server-tab li {
    margin: 0 10px 0 0;
  }
}

@media (max-width: 991px) {
  .home-server-head .right .home-server-tab li {
    margin: 0;
    padding: 0 0 10px;
    flex: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .home-server-head .right .home-server-tab li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .home-server-head .right .home-server-tab li {
    flex: 0 0 22%;
  }
}

.home-server-head .right .home-server-tab li:last-child {
  margin: 0;
}

.home-server-head .right .home-server-tab li.active {
  color: #1468b4;
  border-bottom: 2px solid #1468b4;
}

.home-server-swiper {
  position: relative;
}

.home-server-swiper .item:after {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  background: #fff;
}

@media (max-width: 767px) {
  .home-server-swiper .item:after {
    display: none;
  }
}

.home-server-swiper .item:hover .img-box img {
  -webkit-filter: saturate(100%);
  filter: saturate(100%);
}

.home-server-swiper .item .img-box {
  width: 100%;
  height: 650px;
  overflow: hidden;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-server-swiper .item .img-box {
    height: 300px;
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .home-server-swiper .item .img-box {
    height: 210px;
    padding: 0 15px;
  }
}

.home-server-swiper .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-filter: saturate(100%);
  filter: saturate(100%);
  transition: 0.7s;
}

@media (max-width: 767px) {
  .home-server-swiper .item .img-box img {
    -webkit-filter: saturate(100%);
    filter: saturate(100%);
  }
}

/* .home-server-swiper .item>.container {
  position: relative;
} */

.home-server-swiper .item .mask {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 720px;
  padding: 58px 65px 115px;
  /* background: #fef6ea; */
  /* background: #1468b4; */
  background: rgba(250, 166, 53, .8);
}

@media (max-width: 767px) {
  .home-server-swiper .item .mask {
    position: static;
    width: 100%;
    padding: 20px 30px 70px;
    background: #fff;
  }
}

@media (max-width: 767px) {
  .home-server-swiper .item .mask {
    position: static;
    width: 100%;
    padding: 15px 15px 70px;
  }
}

@media (max-width: 575px) {
  .home-server-swiper .item .mask {
    padding: 10px 15px 55px;
  }
}

.home-server-swiper .item .mask:after {
  content: "";
  position: absolute;
  width: 460px;
  height: 80px;
  left: 0;
  bottom: 0;
  background: #fff;
}

@media (max-width: 767px) {
  .home-server-swiper .item .mask:after {
    display: none;
  }
}

.home-server-swiper .item .mask h3 {
  margin: 0 0 25px;
}

@media (max-width: 767px) {
  .home-server-swiper .item .mask h3 {
    text-align: center;
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  .home-server-swiper .item .mask h3 {
    margin: 0 0 10px;
  }
}

.home-server-swiper .item .mask h3 a {
  font-size: 34px;
  /* color: #333; */
  color: #fff;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-server-swiper .item .mask h3 a {
    font-size: 28px;
    color: #333;
  }
}

@media (max-width: 575px) {
  .home-server-swiper .item .mask h3 a {
    font-size: 16px;
  }
}

/* .home-server-swiper .item .mask h3 a:hover {
  color: #1468b4;
} */
.home-server-swiper .item .mask p {
  font-size: 16px;
  /* color: #666; */
  color: rgba(255, 255, 255, .7);
  margin: 0 0 40px;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 78px;
  width: 85%;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-server-swiper .item .mask p {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .home-server-swiper .item .mask p {
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .home-server-swiper .item .mask p {
    font-size: 14px;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.5;
  }
}

.home-server-swiper .item .mask a.more {
  font-size: 16px;
  /* color: #1468b4; */
  color: #fff;
}

@media (max-width: 767px) {
  .home-server-swiper .item .mask a.more {
    display: block;
    margin: 0 auto;
    width: 155px;
    height: 46px;
    font-size: 14px;
    line-height: 46px;
    text-align: center;
    border-radius: 5px;
    background: #1468b4;
    color: #fff;
    transition: 0.3s;
  }
}

@media (max-width: 575px) {
  .home-server-swiper .item .mask a.more {
    width: 140px;
    height: 35px;
    line-height: 35px;
  }
}

.home-server-swiper .item .mask a.more img {
  width: 20px;
  margin: 0 0 0 18px;
  transform: translateY(-1px);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-server-swiper .item .mask a.more img {
    display: none;
  }
}

.home-server-swiper .item .mask a.more:hover img {
  margin: 0 0 0 36px;
}

.home-server .swiper-control {
  position: relative;
}

/* .home-server .swiper-control>.container {
  position: relative;
} */

.home-server .swiper-control .mask {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 720px;
  height: 80px;
  background: transparent;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .home-server .swiper-control .mask {
    width: 100%;
    height: 50px;
    left: 0;
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .home-server .swiper-control .mask {
    height: 40px;
  }
}

.home-server .swiper-control .mask .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding: 0 0 0 65px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .home-server .swiper-control .mask .inner {
    width: 100%;
    padding: 0;
    position: static;
    display: flex;
    align-items: center;
    background: #fef6ea;
    border-top: 1px solid #e0e0e0;
  }
}

.home-server .swiper-control .swiper-button-next,
.home-server .swiper-control .swiper-button-prev {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  width: 12px;
  height: 21px;
  margin: 0 76px 0 0;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  background: url(../images/left.png) center / cover no-repeat;
  transition: 0.3s;
  opacity: 1;
}

@media (max-width: 767px) {

  .home-server .swiper-control .swiper-button-next,
  .home-server .swiper-control .swiper-button-prev {
    background-size: 10px;
    height: 100%;
    flex: 1;
    margin: 0;
  }
}

@media (min-width: 768px) {

  .home-server .swiper-control .swiper-button-next:hover,
  .home-server .swiper-control .swiper-button-prev:hover {
    background: url(../images/left-h.png) center / cover no-repeat;
  }
}

@media (max-width: 767px) {

  .home-server .swiper-control .swiper-button-next:hover,
  .home-server .swiper-control .swiper-button-prev:hover {
    background-color: #ffe9cb;
  }
}

.home-server .swiper-control .swiper-button-next {
  margin: 0;
  background: url(../images/right.png) center / cover no-repeat;
}

@media (max-width: 767px) {
  .home-server .swiper-control .swiper-button-next {
    background-size: 10px;
    height: 100%;
  }
}

.home-server .swiper-control .swiper-button-next:before {
  content: "";
  position: absolute;
  background: #ddd;
  width: 1px;
  height: 30px;
  top: -5px;
  left: -38px;
}

@media (max-width: 767px) {
  .home-server .swiper-control .swiper-button-next:before {
    top: 0;
    height: 100%;
    left: 0;
    background: #e0e0e0;
  }
}

@media (min-width: 768px) {
  .home-server .swiper-control .swiper-button-next:hover {
    background: url(../images/right-h.png) center / cover no-repeat;
  }
}

@media (max-width: 767px) {
  .home-server .swiper-control .swiper-button-next:hover {
    background-color: #ffe9cb;
  }
}

.home-server .swiper-control .swiper-button-disabled {
  opacity: 0.2;
}

.home-news {
  margin: 0 0 80px;
}

@media (max-width: 767px) {
  .home-news {
    margin: 0 0 30px;
  }
}

.home-news-head {
  position: relative;
  margin: 0 0 55px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-news-head {
    margin: 0 0 25px;
  }
}

@media (max-width: 767px) {
  .home-news-head {
    margin: 0;
  }
}

.home-news-head .left h2 {
  font-weight: bold;
  font-size: 46px;
  margin: 0 0 26px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-news-head .left h2 {
    font-size: 40px;
    margin: 0 0 15px;
  }
}

@media (max-width: 991px) {
  .home-news-head .left h2 {
    font-size: 40px;
    margin: 0 0 10px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .home-news-head .left h2 {
    font-size: 24px;
  }
}

.home-news-head .left h3 {
  font-size: 30px;
  margin: 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-news-head .left h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .home-news-head .left h3 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 20px;
  }
}

@media (max-width: 575px) {
  .home-news-head .left h3 {
    font-size: 16px;
  }
}

.home-news-head .right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}

@media (max-width: 991px) {
  .home-news-head .right {
    position: static;
  }
}

.home-news-head .right .home-news-tab {
  display: flex;
  transform: translateY(20px);
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-news-head .right .home-news-tab {
    transform: translateY(0);
    flex: 1;
  }
}

@media (max-width: 575px) {
  .home-news-head .right .home-news-tab {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.home-news-head .right .home-news-tab li {
  font-size: 16px;
  color: #666;
  margin: 0 20px 0 0;
  padding: 0 15px 20px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .home-news-head .right .home-news-tab li {
    margin: 0 10px 0 0;
  }
}

@media (max-width: 991px) {
  .home-news-head .right .home-news-tab li {
    margin: 0;
    padding: 0 0 10px;
    flex: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .home-news-head .right .home-news-tab li {
    font-size: 14px;
  }
}

.home-news-head .right .home-news-tab li:last-child {
  margin: 0;
}

.home-news-head .right .home-news-tab li.active {
  color: #1468b4;
  border-bottom: 2px solid #1468b4;
}

.home-news-head .right .more {
  transform: translateY(20px);
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-news-head .right .more {
    transform: translateY(0);
  }
}

@media (max-width: 575px) {
  .home-news-head .right .more {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 10px;
  }
}

.home-news-head .right .more a {
  font-size: 16px;
  color: #666;
  margin: 0 0 0 20px;
  padding: 0 15px 20px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: 0.3s;
}

.home-news-head .right .more a:hover {
  color: #1468b4;
}

.home-news-swiper .item {
  border-top: 1px solid #e9e9e9;
  background: #fff;
  transition: 0.3s;
}
.home-news-swiper .item:last-child{
  border-bottom: 1px solid #e9e9e9;
}

@media (max-width: 767px) {
  .home-news-swiper .item {
    border-top: 1px solid #eee;
  }
}

.home-news-swiper .item a {
  padding: 38px 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .home-news-swiper .item a {
    padding: 20px 0;
  }
}

@media (max-width: 991px) {
  .home-news-swiper .item a {
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .home-news-swiper .item a {
    padding: 10px 0;
  }
}

.home-news-swiper .item .flexbox {
  display: flex;
  align-items: center;
}

.home-news-swiper .item .img-box {
  flex: 0 0 387px;
  min-width: 387px;
  height: 164px;
  overflow: hidden;
  transition: 0.3s;
  margin: 0 40px 0 0;
}

@media (max-width: 1199px) {
  .home-news-swiper .item .img-box {
    flex: 0 0 280px;
    min-width: 280px;
  }
}

@media (max-width: 991px) {
  .home-news-swiper .item .img-box {
    flex: 0 0 210px;
    min-width: 210px;
    height: 140px;
  }
}

@media (max-width: 767px) {
  .home-news-swiper .item .img-box {
    margin: 0 15px 0 0;
  }
}

@media (max-width: 575px) {
  .home-news-swiper .item .img-box {
    flex: 0 0 100px;
    min-width: 100px;
    height: 90px;
    margin: 0 10px 0 0;
  }
}

.home-news-swiper .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.home-news-swiper .item .info {
  flex: 1;
  overflow: hidden;
}

.home-news-swiper .item .info h4 {
  display: flex;
  justify-content: space-between;
  margin: 0 0 15px;
}

@media (max-width: 575px) {
  .home-news-swiper .item .info h4 {
    margin: 0 0 8px;
  }
}

.home-news-swiper .item .info h4 p {
  flex: 1;
  font-size: 16px;
  color: #666;
  margin: 0 15px 0 0;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .home-news-swiper .item .info h4 p {
    font-size: 14px;
    margin: 0 5px 0 0;
  }
}

.home-news-swiper .item .info h4 span {
  font-size: 16px;
  color: #999;
  font-weight: normal;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .home-news-swiper .item .info h4 span {
    font-size: 12px;
  }
}

.home-news-swiper .item .info p.des {
  font-size: 14px;
  color: #999;
  max-width: 618px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 58px;
  transition: 0.3s;
  margin: 0 0 25px;
}

@media (max-width: 1470px) {
  .home-news-swiper .item .info p.des {
    max-width: 525px;
  }
}

@media (max-width: 1199px) {
  .home-news-swiper .item .info p.des {
    max-width: inherit;
  }
}

@media (max-width: 767px) {
  .home-news-swiper .item .info p.des {
    margin: 0 0 15px;
    -webkit-line-clamp: 2;
    max-height: 38px;
  }
}

@media (max-width: 575px) {
  .home-news-swiper .item .info p.des {
    margin: 0 0 8px;
    font-size: 12px;
    max-height: 32px;
  }
}

.home-news-swiper .item .info .ico-more {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/smore-default.png) center / cover no-repeat;
  transition: 0.3s;
}

.home-news-swiper .item .info .ico-more:before {
  content: attr(data-before);
  position: absolute;
  font-size: 14px;
  color: #1468b4;
  white-space: nowrap;
  font-style: normal;
  left: -60px;
}

@media (max-width: 575px) {
  .home-news-swiper .item .info .ico-more {
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 768px) {
  .home-news-swiper .item:hover {
    background: #f8f8f8;
  }

  .home-news-swiper .item:hover .img-box img {
    transform: scale(1.1);
  }

  .home-news-swiper .item:hover .info h4 p {
    color: #1468b4;
  }

  .home-news-swiper .item:hover .info .ico-more {
    transform: translateX(60px);
    background: url(../images/smore.png) center / cover no-repeat;
  }
}

.home-news-swiper .more_in_swiper {
  display: block;
  margin: 30px auto 0;
  width: 155px;
  height: 46px;
  font-size: 14px;
  line-height: 46px;
  text-align: center;
  border-radius: 5px;
  background: #1468b4;
  color: #fff;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .home-news-swiper .more_in_swiper {
    width: 140px;
    height: 35px;
    line-height: 35px;
    margin: 15px auto 0;
  }
}

.home-footer {
  background: #222526 url(../images/foobg.jpg) center / cover no-repeat;
  padding: 60px 0 40px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-footer {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .home-footer {
    padding: 20px 0;
  }
}

.home-footer .flogo {
  text-align: center;
  margin: 0 0 55px;
}

@media (max-width: 991px) {
  .home-footer .flogo {
    margin: 0 0 40px;
  }
}

@media (max-width: 575px) {
  .home-footer .flogo {
    margin: 0 0 20px;
  }
}

.home-footer .flogo img {
  width: 123px;
  opacity: 0.7;
  /* transition: 0.3s; */
}

/* .home-footer .flogo img:hover {
  opacity: 1;
} */
.home-footer .footnav {
  display: flex;
  justify-content: center;
  margin: 0 0 40px;
  flex-wrap: wrap;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .home-footer .footnav {
    margin: 0 0 10px;
  }
}

.home-footer .footnav li {
  margin: 0 55px 0 0;
}

@media (max-width: 991px) {
  .home-footer .footnav li {
    flex: 0 0 25%;
    margin: 0 0 20px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .home-footer .footnav li {
    margin: 0 0 10px;
  }
}

.home-footer .footnav li:last-child {
  margin: 0;
}

.home-footer .footnav li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .home-footer .footnav li a {
    font-size: 14px;
  }
}

.home-footer .footnav li a:hover {
  color: #ffffff;
}

.home-footer .copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  margin: 0 0 40px;
  transition: 0.3s;
}

.home-footer .copy a {
  color: rgba(255, 255, 255, 0.2);
}

.home-footer .copy a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .home-footer .copy {
    margin: 0 0 15px;
  }
}

.home-footer .social-contact {
  display: flex;
  justify-content: center;
}

.home-footer .social-contact li {
  position: relative;
  margin: 0 20px 0 0;
  width: 18px;
  height: 18px;
  /* overflow: hidden; */
}

.home-footer .social-contact li:last-child {
  margin: 0;
}

.home-footer .social-contact li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-footer .social-contact li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.2;
  transition: 0.3s;
}

.home-footer .social-contact li a:hover img {
  opacity: 1;
}

.home-footer .social-contact .wechat-box {
  display: none;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  width: 120px;
  left: 50%;
  right: 0;
  margin: 0 0 0 -60px;
  padding: 0 0 10px;
}

.home-footer .social-contact .wechat-hover:hover .wechat-box {
  display: block;
}

.home-footer .social-contact .wechat-box img {
  width: 100%;
}

.server-list {
  padding: 0 0 60px;
  transition: 0.3s;
}

.server-list .flexbox {
  overflow: hidden;
}

.server-list .flexbox .box-row {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  visibility: hidden;
}

.server-list .flexbox .box-col {
  flex: 0 0 50%;
  min-width: 50%;
  padding: 0 15px;
  /* margin: 0 0 60px; */
  margin: 0 0 25px;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .server-list .flexbox .box-col {
    flex: 0 0 100%;
    min-width: 0 0 100%;
  }
}

.server-content .currency-show-more {
  border-top: 1px solid #ddd;
}

@media (max-width: 1470px) {
  .server-content .flexbox .box-col {
    /* margin: 0 0 45px; */
    margin: 0 0 25px;

  }

  .server-content .currency-card h4 {
    height: 60px;
    line-height: 60px;
    font-size: 22px;
  }

  .server-content .currency-card p.des {
    line-height: 1.6;
    height: 0;
    /* max-height: 50px; */
  }
}

@media (max-width: 991px) {
  .server-content .currency-card .img-box {
    height: 180px;
  }

  .server-content .currency-card h4 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .server-content .server-list {
    padding: 0 0 30px;
  }

  .server-content .currency-breadnav {
    height: 80px;
  }

  .server-content .flexbox .box-row {
    margin: 0 -8px;
  }

  .server-content .flexbox .box-col {
    padding: 0 8px;
  }

  .server-content .currency-card h4 {
    font-size: 18px;
  }

  .server-content .currency-card p.des {
    font-size: 14px;
    /* max-height: 41px; */
  }
}

@media (max-width: 575px) {
  .server-content .currency-breadnav {
    height: 50px;
  }

  .server-content .currency-breadnav ul li a,
  .server-content .currency-breadnav ul li {
    font-size: 14px;
  }

  .server-content .currency-card .img-box {
    height: 120px;
  }

  .server-content .currency-card h4 {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  }

  .server-content .currency-card p.des {
    font-size: 12px;
    /* max-height: 35px; */
  }

  .server-content .flexbox .box-col {
    margin: 0 0 20px;
  }
}

.news-list .flexbox .box-row {
  margin: 0 -35px;
}

@media (max-width: 991px) {
  .news-list .flexbox .box-row {
    margin: 0 -20px;
  }
}

@media (max-width: 767px) {
  .news-list .flexbox .box-row {
    margin: 0 -8px;
  }
}

.news-list .flexbox .box-col {
  padding: 0 35px;
}

@media (max-width: 991px) {
  .news-list .flexbox .box-col {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .news-list .flexbox .box-col {
    padding: 0 8px;
  }
}

.news-list .currency-card h4 {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1470px) {
  .news-list .currency-card h4 {
    height: 60px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .news-list .currency-card h4 {
    height: 40px;
    line-height: 40px;
  }
}

.news-list .currency-card h4 p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 15px 0 0;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .news-list .currency-card h4 p {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .news-list .currency-card h4 p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .news-list .currency-card h4 p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .news-list .currency-card h4 p {
    font-size: 14px;
    padding: 0;
  }
}

.news-list .currency-card h4 span {
  font-size: 14px;
  color: #666;
}

@media (max-width: 575px) {
  .news-list .currency-card h4 span {
    display: none;
  }
}

@media (max-width: 767px) {
  .newsView-content .currency-breadnav {
    height: 60px;
  }
}

@media (max-width: 575px) {
  .newsView-content .currency-breadnav {
    height: 30px;
    margin: 10px 0 0;
  }
}

@media (max-width: 575px) {
  .newsView-content .currency-breadnav li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .newsView-content .currency-breadnav li a {
    font-size: 14px;
  }
}

.newsView-viewBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .newsView-viewBox {
    display: block;
  }
}

.newsView-leftcontent {
  flex: 0 0 450px;
  min-width: 450px;
  margin: 0 0 80px;
  visibility: hidden;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .newsView-leftcontent {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
  }
}

@media (max-width: 1470px) {
  .newsView-leftcontent {
    flex: 0 0 380px;
    min-width: 380px;
  }
}

@media (max-width: 1199px) {
  .newsView-leftcontent {
    flex: 0 0 330px;
    min-width: 330px;
    margin: 0 40px 80px 0;
  }
}

@media (max-width: 991px) {
  .newsView-leftcontent {
    flex: 0 0 220px;
    min-width: 20px;
    margin: 0 30px 80px 0;
  }
}

@media (max-width: 767px) {
  .newsView-leftcontent {
    flex: auto;
    min-width: auto;
    margin: 0 0 30px;
  }
}

.newsView-leftcontent h2 {
  position: relative;
  font-size: 24px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 35px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .newsView-leftcontent h2 {
    text-align: center;
    margin: 0 0 25px;
  }
}

@media (max-width: 575px) {
  .newsView-leftcontent h2 {
    font-size: 18px;
    margin: 15px 0;
  }
}

.newsView-leftcontent h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  background: #1468b4;
  width: 82px;
  height: 2px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .newsView-leftcontent h2:after {
    left: 0;
    right: 0;
    bottom: -10px;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .newsView-leftcontent h2:after {
    width: 40px;
    height: 1px;
    bottom: -8px;
  }
}

.newsView-leftcontent .smtip {
  margin: 0 0 130px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .newsView-leftcontent .smtip {
    display: flex;
    justify-content: center;
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  .newsView-leftcontent .smtip {
    margin: 0 0 10px;
  }
}

.newsView-leftcontent .smtip span {
  display: block;
  font-size: 16px;
  color: #999;
  margin: 0 0 12px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .newsView-leftcontent .smtip span {
    margin: 0 30px 0 0;
  }
}

@media (max-width: 767px) {
  .newsView-leftcontent .smtip span {
    font-size: 12px;
  }
}

.newsView-leftcontent .smtip span:last-child {
  margin: 0;
}

.newsView-leftcontent .leftnewslist {
  margin: 0 0 25px;
}

.newsView-leftcontent .leftnewslist .tit {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin: 0 0 22px;
}

.newsView-leftcontent .leftnewslist ul {
  margin: 0 0 25px;
}

.newsView-leftcontent .leftnewslist ul li {
  margin: 0 0 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.newsView-leftcontent .leftnewslist ul li:last-child {
  margin: 0;
}

.newsView-leftcontent .leftnewslist ul li a {
  font-size: 16px;
  color: #999;
  transition: 0.3s;
}

.newsView-leftcontent .leftnewslist ul li a:hover {
  color: #1468b4;
}

.newsView-leftcontent .leftnewslist .more {
  display: block;
  width: 136px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  background: #1468b4;
  color: #fff;
  transition: 0.3s;
}

.newsView-leftcontent .leftnewslist .more:hover {
  box-shadow: 0 3px 10px -4px #757575;
}

.newsView-leftcontent .share .tit {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin: 0 0 22px;
  display: none;
}

.newsView-leftcontent .share ul {
  display: flex;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .newsView-leftcontent .share ul {
    justify-content: center;
  }
}

.newsView-leftcontent .share ul li {
  position: relative;
  margin: 0 20px 0 0;
  transition: 0.3s;
}
.newsView-leftcontent .share ul li .erweima{
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  position: absolute;
  width: 100px;
  left: 50%;
  top: calc(100% + 10px);
  margin: 0 0 0 -50px;
  transition: .3s;
}
.newsView-leftcontent .share ul li:hover .erweima {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.newsView-leftcontent .share ul li .erweima img {
  width: 100%;
}

@media (max-width: 575px) {
  .newsView-leftcontent .share ul li {
    margin: 0 15px 0 0;
  }
}

.newsView-leftcontent .share ul li:last-child {
  margin: 0;
}

.newsView-leftcontent .share ul li .sic {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .newsView-leftcontent .share ul li .sic {
    width: 25px;
    height: 25px;
  }
}

.newsView-leftcontent .share ul li .sic.qq {
  background: url(../images/qq.png) center / contain no-repeat;
}

.newsView-leftcontent .share ul li .sic.qq:hover {
  background: url(../images/qq-h.png) center / contain no-repeat;
}

.newsView-leftcontent .share ul li .sic.sina {
  background: url(../images/sina.png) center / contain no-repeat;
}

.newsView-leftcontent .share ul li .sic.sina:hover {
  background: url(../images/sina-h.png) center / contain no-repeat;
}

.newsView-leftcontent .share ul li .sic.wechat {
  background: url(../images/wechat.png) center / contain no-repeat;
}

.newsView-leftcontent .share ul li .sic.wechat:hover {
  background: url(../images/wechat-h.png) center / contain no-repeat;
}

.newsView-rightcontent {
  flex: 0 0 912px;
  min-width: 73px;
  margin: 0 0 80px;
  visibility: hidden;
  overflow: hidden;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .newsView-rightcontent {
    flex: 0 0 700px;
    min-width: 700px;
  }
}

@media (max-width: 1199px) {
  .newsView-rightcontent {
    flex: 1;
    min-width: inherit;
  }
}

@media (max-width: 575px) {
  .newsView-rightcontent {
    margin: 0 0 40px;
  }
}

.newsView-rightcontent .contentInfo p {
  font-size: 16px;
  color: #666;
  margin: 0 0 15px;
  line-height: 1.6;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .newsView-rightcontent .contentInfo p {
    font-size: 14px;
    margin: 0 0 10px;
    /* text-indent: 28px; */
  }
}

.newsView-rightcontent .contentInfo img {
  max-width: 100%;
  margin: 0 0 15px;
  transition: 0.3s;
  height: auto;
}

@media (max-width: 767px) {
  .newsView-rightcontent .contentInfo img {
    margin: 0 0 10px;
  }
}

.newsView-rightcontent .bottom-operate {
  margin: 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.newsView-rightcontent .bottom-operate a {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
  margin: 0 20px 0 0;
  transition: 0.3s;
}

.newsView-rightcontent .bottom-operate a:last-child {
  margin: 0;
  text-align: right;
}

.newsView-rightcontent .bottom-operate a:hover {
  color: #1468b4;
}

.serverView-content .viewBox {
  display: flex;
  align-items: center;
  margin: 0 0 90px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverView-content .viewBox {
    margin: 0 0 60px;
  }
}

@media (max-width: 767px) {
  .serverView-content .viewBox {
    flex-direction: column;
    margin: 0 0 30px;
  }
}

.serverView-content .viewBox .img-box {
  flex: 0 0 686px;
  min-width: 686px;
  height: 382px;
  overflow: hidden;
  margin: 0 70px 0 0;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .serverView-content .viewBox .img-box {
    flex: 0 0 500px;
    min-width: 500px;
    height: 350px;
  }
}

@media (max-width: 1199px) {
  .serverView-content .viewBox .img-box {
    flex: 0 0 400px;
    min-width: 400px;
    height: 290px;
  }
}

@media (max-width: 991px) {
  .serverView-content .viewBox .img-box {
    flex: 0 0 340px;
    min-width: 340px;
    height: 250px;
    margin: 0 30px 0 0;
  }
}

@media (max-width: 767px) {
  .serverView-content .viewBox .img-box {
    flex: auto;
    min-width: auto;
    width: 100%;
    margin: 0 0 25px;
  }
}

@media (max-width: 575px) {
  .serverView-content .viewBox .img-box {
    height: 190px;
    margin: 0 0 15px;
  }
}

.serverView-content .viewBox .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serverView-content .viewBox .info {
  flex: 1;
}

.serverView-content .viewBox .info h2 {
  font-size: 36px;
  color: #333;
  margin: 0 0 35px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverView-content .viewBox .info h2 {
    font-size: 30px;
    margin: 0 0 20px;
  }
}

@media (max-width: 991px) {
  .serverView-content .viewBox .info h2 {
    font-size: 25px;
    margin: 0 0 15px;
  }
}

@media (max-width: 767px) {
  .serverView-content .viewBox .info h2 {
    font-size: 22px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .serverView-content .viewBox .info h2 {
    font-size: 18px;
    margin: 0 0 10px;
  }
}

.serverView-content .viewBox .info p {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.8;
  margin: 0 0 55px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverView-content .viewBox .info p {
    line-height: 1.6;
    margin: 0 0 40px;
  }
}

@media (max-width: 991px) {
  .serverView-content .viewBox .info p {
    line-height: 1.5;
    margin: 0 0 25px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .serverView-content .viewBox .info p {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .serverView-content .viewBox .info p {
    margin: 0 0 20px;
  }
}

.serverView-content .viewBox .info .more {
  display: block;
  width: 136px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 16px;
  background: #1468b4;
  color: #fff;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .serverView-content .viewBox .info .more {
    width: 130px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .serverView-content .viewBox .info .more {
    margin: auto;
  }
}

.serverView-content .viewBox .info .more:hover {
  box-shadow: 0 3px 10px -4px #757575;
}

.serverView-list {
  background: #f5f5f5;
  margin: 0 !important;
  padding: 0 0 60px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .serverView-list {
    padding: 0 0 30px;
  }
}

@media (max-width: 575px) {
  .serverView-list {
    padding: 0;
  }
}

.serverView-list h2.bigtit {
  font-size: 36px;
  color: #333;
  height: 175px;
  line-height: 175px;
  font-weight: bold;
  margin: 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverView-list h2.bigtit {
    font-size: 30px;
    height: 150px;
    line-height: 150px;
  }
}

@media (max-width: 991px) {
  .serverView-list h2.bigtit {
    font-size: 25px;
    height: 120px;
    line-height: 120px;
  }
}

@media (max-width: 767px) {
  .serverView-list h2.bigtit {
    font-size: 22px;
    height: 100px;
    line-height: 100px;
  }
}

@media (max-width: 575px) {
  .serverView-list h2.bigtit {
    font-size: 18px;
    height: 80px;
    line-height: 80px;
  }
}

.serverView-list .flexbox .box-row {
  margin: 0 -35px;
}

@media (max-width: 991px) {
  .serverView-list .flexbox .box-row {
    margin: 0 -20px;
  }
}

@media (max-width: 767px) {
  .serverView-list .flexbox .box-row {
    margin: 0 -8px;
  }
}

.serverView-list .flexbox .box-col {
  padding: 0 35px;
}

@media (max-width: 991px) {
  .serverView-list .flexbox .box-col {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .serverView-list .flexbox .box-col {
    padding: 0 8px;
  }
}

.serverView-list .currency-show-more {
  border-top: 1px solid #ddd;
}

.case-content .currency-breadnav-apptab {
  margin: 0 !important;
}

.case-content .currency-breadnav-box {
  margin: 0 !important;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .s1 {
  background: url(../images/s1.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .s1,
.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .s1 {
  background: url(../images/s1-h.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .s2 {
  background: url(../images/s2.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .s2,
.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .s2 {
  background: url(../images/s2-h.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .s3 {
  background: url(../images/s3.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .s3,
.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .s3 {
  background: url(../images/s3-h.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .s4 {
  background: url(../images/s4.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .s4,
.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .s4 {
  background: url(../images/s4-h.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .s5 {
  background: url(../images/s5.png) center / contain no-repeat;
}

.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .s5,
.case-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .s5 {
  background: url(../images/s5-h.png) center / contain no-repeat;
}

.case-content .currency-show-more {
  margin: 0 0 60px;
}

@media (max-width: 575px) {
  .case-content .currency-show-more {
    margin: 0 0 30px;
  }
}

.case-successList .item {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .case-successList .item {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .case-successList .item {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .case-successList .item {
    height: 250px;
  }
}

.case-successList .item .flexbox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .case-successList .item .flexbox {
    align-items: flex-end;
  }
}

.case-successList .item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.7s;
}

@media (max-width: 767px) {
  .case-successList .item:after {
    height: 50%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    background: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  }
}

.case-successList .item .container {
  height: 100%;
}

.case-successList .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.case-successList .item a .info {
  max-width: 540px;
  color: #fff;
  margin: 30px 0 0;
  transition: 0.7s;
}

@media (max-width: 767px) {
  .case-successList .item a .info {
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  .case-successList .item a .info {
    max-width: inherit;
    width: 100%;
  }
}

.case-successList .item a .info h2 {
  font-size: 36px;
  margin: 0 0 15px;
  text-align: right;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .case-successList .item a .info h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .case-successList .item a .info h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .case-successList .item a .info h2 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}

@media (max-width: 575px) {
  .case-successList .item a .info h2 {
    font-size: 16px;
    margin: 0 0 5px;
  }
}

.case-successList .item a .info p {
  font-size: 14px;
  line-height: 2;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 56px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .case-successList .item a .info p {
    line-height: 1.5;
    max-height: 40px;
  }
}

@media (max-width: 575px) {
  .case-successList .item a .info p {
    font-size: 12px;
    max-height: 35px;
  }
}

@media (min-width: 768px) {
  .case-successList .item:hover:after {
    background: rgba(0, 0, 0, 0.3);
  }

  .case-successList .item:hover a .info {
    margin: 0;
  }
}

.case-successList .item:nth-child(even) {
  background-attachment: fixed;
}

.case-successList .item:nth-child(even) .flexbox {
  justify-content: flex-start;
}

.case-successList .item:nth-child(even) a .info h2,
.case-successList .item:nth-child(even) a .info p {
  text-align: left;
}

.caseView-viewBox {
  margin: 0 0 85px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .caseView-viewBox {
    margin: 0 0 60px;
  }
}

@media (max-width: 991px) {
  .caseView-viewBox {
    margin: 0 0 40px;
  }
}

@media (max-width: 767px) {
  .caseView-viewBox {
    margin: 0 0 30px;
  }
}

.caseView-viewBox h2 {
  font-size: 32px;
  color: #333;
  margin: 0 0 55px;
  position: relative;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .caseView-viewBox h2 {
    margin: 0 0 40px;
  }
}

@media (max-width: 767px) {
  .caseView-viewBox h2 {
    font-size: 24px;
    text-align: center;
    margin: 0 0 25px;
  }
}

@media (max-width: 575px) {
  .caseView-viewBox h2 {
    font-size: 18px;
    margin: 15px 0;
  }
}

.caseView-viewBox h2:after {
  content: "";
  position: absolute;
  width: 82px;
  height: 2px;
  background: #1468b4;
  left: 0;
  bottom: -20px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .caseView-viewBox h2:after {
    left: 0;
    right: 0;
    bottom: -10px;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .caseView-viewBox h2:after {
    width: 40px;
    height: 1px;
    bottom: -8px;
  }
}

.caseView-viewBox .info {
  width: 100%;
  display: flex;
  margin: 0 0 65px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .caseView-viewBox .info {
    margin: 0 0 40px;
  }
}

@media (max-width: 991px) {
  .caseView-viewBox .info {
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .caseView-viewBox .info {
    flex-direction: column-reverse;
    margin: 0 0 15px;
  }
}

.caseView-viewBox .info .leftbox {
  flex: 0 0 785px;
  min-width: 785px;
  margin: 0 215px 0 0;
}

@media (max-width: 1470px) {
  .caseView-viewBox .info .leftbox {
    flex: 1;
    min-width: inherit;
    margin: 0;
    padding: 0 60px 0 0;
  }
}

@media (max-width: 991px) {
  .caseView-viewBox .info .leftbox {
    padding: 0 30px 0 0;
  }
}

@media (max-width: 767px) {
  .caseView-viewBox .info .leftbox {
    padding: 0;
  }
}

.caseView-viewBox .info .leftbox p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .caseView-viewBox .info .leftbox p {
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .caseView-viewBox .info .leftbox p {
    text-align: center;
  }
}

.caseView-viewBox .info .rightbox {
  transition: 0.3s;
  max-width: 350px;
}

@media (max-width: 767px) {
  .caseView-viewBox .info .rightbox {
    display: flex;
    justify-content: center;
    max-width: inherit;
    flex-wrap: wrap;
    margin: 0 0 15px;
  }
}

.caseView-viewBox .info .rightbox p {
  font-size: 16px;
  color: #999;
  line-height: 1.6;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .caseView-viewBox .info .rightbox p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .caseView-viewBox .info .rightbox p {
    margin: 0 15px;
    text-align: center;
  }
}

.caseView-viewBox .markdown_info p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  transition: 0.3s;
  text-indent: 28px;
  margin: 0 0 5px;
}

.caseView-viewBox .markdown_info .caseView-markdownimg-swiper {
  margin: 0 0 40px;
}

.caseView-viewBox .markdown_info .caseView-markdownimg-swiper .swiper-slide .img-box {
  width: 100%;
	position: relative;
	padding-bottom: 50%;
}

.caseView-viewBox .markdown_info .caseView-markdownimg-swiper .swiper-slide .img-box img {
  width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.caseView-viewBox .markdown_info .caseView-markdownimg-swiper .caseView-markdownimg-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.caseView-viewBox .markdown_info .caseView-markdownimg-swiper .caseView-markdownimg-pagination .swiper-pagination-bullet-active {
  background: #1468b4;
}

.caseView-viewBox .markdown_info .caseView-markdownimg-swiper .swiper-button-next,
.caseView-viewBox .markdown_info .caseView-markdownimg-swiper .swiper-button-prev {
  outline: none;
    width: 44px;
    background-size: 60%;
    border-radius: 50%;
    background-color: rgba(0,0,0,.4);
}
.caseView-viewBox .markdown_info .caseView-markdownimg-swiper .swiper-button-next{
	background-image: url(../images/gt.png);
}
.caseView-viewBox .markdown_info .caseView-markdownimg-swiper .swiper-button-prev{
	background-image: url(../images/lt.png);
}
@media (max-width: 575px) {

  .caseView-viewBox .markdown_info .caseView-markdownimg-swiper .swiper-button-next,
  .caseView-viewBox .markdown_info .caseView-markdownimg-swiper .swiper-button-prev {
    width: 25px;
    height: 20px;
    margin-top: -10px;
  }
}

.caseView-viewBox .more {
  display: block;
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #1468b4;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .caseView-viewBox .more {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .caseView-viewBox .more {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .caseView-viewBox .more {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.caseView-viewBox .more:hover {
  box-shadow: 0 3px 10px -4px #757575;
}

@media (max-width: 767px) {
  .caseView-content .currency-breadnav {
    height: 60px;
  }
}

@media (max-width: 575px) {
  .caseView-content .currency-breadnav {
    height: 30px;
    margin: 10px 0 0;
  }
}

@media (max-width: 575px) {
  .caseView-content .currency-breadnav li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .caseView-content .currency-breadnav li a {
    font-size: 14px;
  }
}

.caseView-content .bottom-operate {
  display: flex;
  height: 300px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .caseView-content .bottom-operate {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .caseView-content .bottom-operate {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .caseView-content .bottom-operate {
    height: 150px;
  }
}

.caseView-content .bottom-operate .prev,
.caseView-content .bottom-operate .next {
  flex: 1;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.caseView-content .bottom-operate .prev:after,
.caseView-content .bottom-operate .next:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}

.caseView-content .bottom-operate .prev a,
.caseView-content .bottom-operate .next a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.caseView-content .bottom-operate .prev a .des,
.caseView-content .bottom-operate .next a .des {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}

@media (max-width: 1199px) {

  .caseView-content .bottom-operate .prev a .des,
  .caseView-content .bottom-operate .next a .des {
    font-size: 45px;
  }
}

@media (max-width: 767px) {

  .caseView-content .bottom-operate .prev a .des,
  .caseView-content .bottom-operate .next a .des {
    font-size: 35px;
  }
}

@media (max-width: 767px) {

  .caseView-content .bottom-operate .prev a .des,
  .caseView-content .bottom-operate .next a .des {
    font-size: 24px;
  }
}

.caseView-content .bottom-operate .prev a .ico,
.caseView-content .bottom-operate .next a .ico {
  opacity: .5;
  width: 60px;
  margin: 0 0 20px;
  transition: .3s;
}

@media (max-width: 575px) {
  .caseView-content .bottom-operate .prev a .ico,
  .caseView-content .bottom-operate .next a .ico {
    width: 30px;
    margin: 0 0 15px;
  }
}

.caseView-content .bottom-operate .prev a .ico img,
.caseView-content .bottom-operate .next a .ico img{
  width: 100%;
}

.caseView-content .bottom-operate .prev a .tit,
.caseView-content .bottom-operate .next a .tit {
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 1199px) {

  .caseView-content .bottom-operate .prev a .tit,
  .caseView-content .bottom-operate .next a .tit {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .caseView-content .bottom-operate .prev a .tit,
  .caseView-content .bottom-operate .next a .tit {
    font-size: 14px;
    padding: 0 15px;
  }
}

.caseView-content .bottom-operate .prev:hover:after,
.caseView-content .bottom-operate .next:hover:after {
  background: rgba(250, 166, 53, 0.7);
}

.caseView-content .bottom-operate .prev:hover a p,
.caseView-content .bottom-operate .next:hover a p {
  color: #ffffff;
}

.caseView-content .bottom-operate .prev:hover a .ico,
.caseView-content .bottom-operate .next:hover a .ico {
  opacity: 1;
}

@media (max-width: 767px) {
  .serverContent-content .currency-breadnav {
    height: 60px;
  }
}

@media (max-width: 575px) {
  .serverContent-content .currency-breadnav {
    height: 30px;
    margin: 10px 0 0;
  }
}

@media (max-width: 575px) {
  .serverContent-content .currency-breadnav li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .serverContent-content .currency-breadnav li a {
    font-size: 14px;
  }
}

.serverContent-content .viewBox {
  background: #f5f5f5;
  padding: 100px 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverContent-content .viewBox {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .serverContent-content .viewBox {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .serverContent-content .viewBox {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .serverContent-content .viewBox {
    padding: 30px 0;
  }
}

.serverContent-content .viewBox .flexbox .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 80px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .serverContent-content .viewBox .flexbox .item {
    margin: 0 0 60px;
  }
}

@media (max-width: 991px) {
  .serverContent-content .viewBox .flexbox .item {
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item {
    flex-direction: column;
  }
}

.serverContent-content .viewBox .flexbox .item .img-box {
  flex: 0 0 692px;
  min-width: 692px;
  height: 400px;
  overflow: hidden;
  margin: 0 140px 0 0;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .serverContent-content .viewBox .flexbox .item .img-box {
    margin: 0 60px 0 0;
    flex: 0 0 500px;
    min-width: 500px;
    height: 350px;
  }
}

@media (max-width: 1199px) {
  .serverContent-content .viewBox .flexbox .item .img-box {
    margin: 0 40px 0 0;
    flex: 0 0 400px;
    min-width: 300px;
    height: 260px;
  }
}

@media (max-width: 991px) {
  .serverContent-content .viewBox .flexbox .item .img-box {
    margin: 0 30px 0 0;
    flex: 0 0 320px;
    min-width: 320px;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item .img-box {
    flex: inherit;
    min-width: inherit;
    margin: 0;
    width: 100%;
    height: 300px;
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  .serverContent-content .viewBox .flexbox .item .img-box {
    height: 200px;
  }
}

.serverContent-content .viewBox .flexbox .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serverContent-content .viewBox .flexbox .item .info {
  flex: 1;
}

.serverContent-content .viewBox .flexbox .item .info .num {
  font-size: 36px;
  color: #333;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverContent-content .viewBox .flexbox .item .info .num {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item .info .num {
    display: none;
  }
}

.serverContent-content .viewBox .flexbox .item .info h3 {
  margin: 20px 0;
  color: #1468b4;
  font-size: 28px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverContent-content .viewBox .flexbox .item .info h3 {
    margin: 15px 0;
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .serverContent-content .viewBox .flexbox .item .info h3 {
    font-size: 18px;
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item .info h3 {
    text-align: center;
    margin: 0 0 10px;
  }
}

.serverContent-content .viewBox .flexbox .item .info .des {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 40px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverContent-content .viewBox .flexbox .item .info .des {
    font-size: 14px;
    margin: 0 0 30px;
  }
}

@media (max-width: 991px) {
  .serverContent-content .viewBox .flexbox .item .info .des {
    margin: 0 0 15px;
  }
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item .info .des {
    text-align: center;
  }
}

.serverContent-content .viewBox .flexbox .item .info .more {
  display: block;
  width: 135px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background: #999;
  border-radius: 5px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item .info .more {
    margin: auto;
    background: #1468b4;
    width: 120px;
    height: 35px;
    line-height: 35px;
  }
}

@media (min-width: 768px) {
  .serverContent-content .viewBox .flexbox .item .info .more:hover {
    background: #1468b4;
    box-shadow: 0 3px 10px -4px #757575;
  }
}

.serverContent-content .viewBox .flexbox .item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item:nth-child(even) {
    flex-direction: column;
  }
}

.serverContent-content .viewBox .flexbox .item:nth-child(even) .img-box {
  margin: 0 0 0 140px;
}

@media (max-width: 1470px) {
  .serverContent-content .viewBox .flexbox .item:nth-child(even) .img-box {
    margin: 0 0 0 60px;
  }
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item:nth-child(even) .img-box {
    margin: 0 0 15px;
  }
}

.serverContent-content .viewBox .flexbox .item:nth-child(even) .info {
  padding: 0 0 0 40px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverContent-content .viewBox .flexbox .item:nth-child(even) .info {
    padding: 0 0 0 20px;
  }
}

@media (max-width: 767px) {
  .serverContent-content .viewBox .flexbox .item:nth-child(even) .info {
    padding: 0;
  }
}

.serverContent-content .viewBox .flexbox .item:last-child {
  margin: 0;
}

.serverContent-content .bottom-operate {
  padding: 100px 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverContent-content .bottom-operate {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .serverContent-content .bottom-operate {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .serverContent-content .bottom-operate {
    padding: 40px 0;
  }
}

@media (max-width: 575px) {
  .serverContent-content .bottom-operate {
    padding: 30px 0;
  }
}

.serverContent-content .bottom-operate .flexbox {
  overflow: hidden;
}

.serverContent-content .bottom-operate .flexbox .box-row {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .serverContent-content .bottom-operate .flexbox .box-row {
    margin: 0 -8px;
  }
}

@media (max-width: 575px) {
  .serverContent-content .bottom-operate .flexbox .box-row {
    flex-direction: column;
    margin: 0;
  }
}

.serverContent-content .bottom-operate .flexbox .box-col {
  flex: 0 0 50%;
  min-width: 50%;
  padding: 0 15px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .serverContent-content .bottom-operate .flexbox .box-col {
    padding: 0 8px;
  }
}

@media (max-width: 575px) {
  .serverContent-content .bottom-operate .flexbox .box-col {
    margin: 0 0 15px;
    padding: 0;
  }

  .serverContent-content .bottom-operate .flexbox .box-col:last-child {
    margin: 0;
  }
}

.serverContent-content .bottom-operate .item {
  display: flex;
  height: 215px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverContent-content .bottom-operate .item {
    height: 200px;
  }
}

@media (max-width: 991px) {
  .serverContent-content .bottom-operate .item {
    height: 150px;
  }
}

@media (max-width: 575px) {
  .serverContent-content .bottom-operate .item {
    height: 130px;
  }
}

.serverContent-content .bottom-operate .item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.serverContent-content .bottom-operate .item .boimg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  transition: 0.3s;
}

.serverContent-content .bottom-operate .item a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 28px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .serverContent-content .bottom-operate .item a {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .serverContent-content .bottom-operate .item a {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .serverContent-content .bottom-operate .item a {
    font-size: 14px;
  }
}

.serverContent-content .bottom-operate .item:hover:after {
  background: rgba(250, 166, 53, 0.5);
}

.serverContent-content .bottom-operate .item:hover .boimg {
  transform: scale(1.1);
}

.serverContent-head {
  margin: 0 0 55px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .serverContent-head {
    margin: 0 0 40px;
  }
}

@media (max-width: 575px) {
  .serverContent-head {
    margin: 0 0 30px;
  }
}

.serverContent-head h2 {
  font-size: 36px;
  color: #333;
  margin: 0 0 20px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .serverContent-head h2 {
    margin: 0 0 40px;
  }
}

@media (max-width: 767px) {
  .serverContent-head h2 {
    font-size: 24px;
    text-align: center;
    margin: 0 0 25px;
  }
}

@media (max-width: 575px) {
  .serverContent-head h2 {
    font-size: 18px;
    margin: 15px 0;
  }
}

.serverContent-head p {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .serverContent-head p {
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
  }
}

.contact-content .currency-breadnav-box,
.contact-content .currency-breadnav-apptab {
  margin: 0 !important;
}

@media (max-width: 767px) {
  .contact-content .currency-breadnav {
    height: 60px;
  }
}

@media (max-width: 575px) {
  .contact-content .currency-breadnav {
    height: 30px;
    margin: 10px 0 0;
  }
}

@media (max-width: 575px) {
  .contact-content .currency-breadnav li {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .contact-content .currency-breadnav li a {
    font-size: 14px;
  }
}

.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .cico1 {
  background: url(../images/cico1.png) center / contain no-repeat;
}

.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .cico1,
.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .cico1 {
  background: url(../images/cico1-h.png) center / contain no-repeat;
}

.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .cico2 {
  background: url(../images/cico2.png) center / contain no-repeat;
}

.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .cico2,
.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .cico2 {
  background: url(../images/cico2-h.png) center / contain no-repeat;
}

.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li a .cico3 {
  background: url(../images/cico3.png) center / contain no-repeat;
}

.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li.active a .cico3,
.contact-content .currency-breadnav-box .flexbox .inner-breadnav-tab ul li:hover a .cico3 {
  background: url(../images/cico3-h.png) center / contain no-repeat;
}

.contact-content .tab1-content {
  position: relative;
  padding: 80px 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab1-content {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .contact-content .tab1-content {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .contact-content .tab1-content {
    padding: 30px 0;
  }
}

.contact-content .tab1-content .flexbox {
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .contact-content .tab1-content .flexbox {
    display: block;
  }
}

.contact-content .tab1-content .flexbox .leftbox {
  flex: 1;
  margin: 0 120px 0 0;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .contact-content .tab1-content .flexbox .leftbox {
    margin: 0 60px 0 0;
  }
}

@media (max-width: 767px) {
  .contact-content .tab1-content .flexbox .leftbox {
    margin: 0;
  }
}

.contact-content .tab1-content .flexbox .leftbox h2 {
  font-size: 36px;
  color: #333;
  margin: 0 0 26px;
  padding: 0 0 18px;
  border-bottom: 1px solid #ddd;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .contact-content .tab1-content .flexbox .leftbox h2 {
    font-size: 24px;
    text-align: center;
    border: 0;
  }
}

@media (max-width: 575px) {
  .contact-content .tab1-content .flexbox .leftbox h2 {
    font-size: 18px;
    padding: 0;
    margin: 0 0 15px;
  }
}

.contact-content .tab1-content .flexbox .leftbox .call {
  display: flex;
  margin: 0 0 95px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab1-content .flexbox .leftbox .call {
    margin: 0 0 30px;
  }
}

@media (max-width: 575px) {
  .contact-content .tab1-content .flexbox .leftbox .call {
    margin: 0 0 15px;
  }
}

.contact-content .tab1-content .flexbox .leftbox .call li {
  flex: 0 0 260px;
  min-width: 260px;
  margin: 0 30px 0 0;
}

@media (max-width: 1470px) {
  .contact-content .tab1-content .flexbox .leftbox .call li {
    flex: 0 0 215px;
    min-width: 215px;
  }
}

@media (max-width: 1199px) {
  .contact-content .tab1-content .flexbox .leftbox .call li {
    flex: 0 0 300px;
    min-width: 300px;
  }
}

@media (max-width: 767px) {
  .contact-content .tab1-content .flexbox .leftbox .call li {
    flex: 1;
    min-width: inherit;
    margin: 0 15px 0 0;
  }
}

.contact-content .tab1-content .flexbox .leftbox .call li:last-child {
  margin: 0;
}

.contact-content .tab1-content .flexbox .leftbox .call li .tit {
  font-size: 18px;
  color: #666;
  margin: 0 0 18px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab1-content .flexbox .leftbox .call li .tit {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .contact-content .tab1-content .flexbox .leftbox .call li .tit {
    flex: 1;
    min-width: inherit;
  }
}

@media (max-width: 575px) {
  .contact-content .tab1-content .flexbox .leftbox .call li .tit {
    font-size: 14px;
    text-align: center;
    margin: 0 0 5px;
  }
}

.contact-content .tab1-content .flexbox .leftbox .call li .des {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  font-family: fantasy;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .contact-content .tab1-content .flexbox .leftbox .call li .des {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .contact-content .tab1-content .flexbox .leftbox .call li .des {
    font-size: 18px;
    text-align: center;
    font-family: auto;
  }
}

.contact-content .tab1-content .flexbox .leftbox .other-contact {
  display: flex;
}

@media (max-width: 1199px) {
  .contact-content .tab1-content .flexbox .leftbox .other-contact {
    margin: 0 0 30px;
  }
}

.contact-content .tab1-content .flexbox .leftbox .other-contact li {
  flex: 0 0 260px;
  min-width: 260px;
  margin: 0 30px 0 0;
}

@media (max-width: 1470px) {
  .contact-content .tab1-content .flexbox .leftbox .other-contact li {
    flex: 0 0 215px;
    min-width: 215px;
  }
}

@media (max-width: 1199px) {
  .contact-content .tab1-content .flexbox .leftbox .other-contact li {
    flex: 0 0 300px;
    min-width: 300px;
  }
}

@media (max-width: 767px) {
  .contact-content .tab1-content .flexbox .leftbox .other-contact li {
    flex: 1;
    min-width: inherit;
    margin: 0 15px 0 0;
  }
}

.contact-content .tab1-content .flexbox .leftbox .other-contact li:last-child {
  margin: 0;
}

.contact-content .tab1-content .flexbox .leftbox .other-contact li .tit {
  font-size: 16px;
  color: #999;
  margin: 0 0 15px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab1-content .flexbox .leftbox .other-contact li .tit {
    color: #666;
    margin: 0 0 5px;
  }
}

@media (max-width: 575px) {
  .contact-content .tab1-content .flexbox .leftbox .other-contact li .tit {
    font-size: 14px;
    text-align: center;
  }
}

.contact-content .tab1-content .flexbox .leftbox .other-contact li .des {
  font-size: 16px;
  color: #666;
  transition: 0.3s;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .contact-content .tab1-content .flexbox .leftbox .other-contact li .des {
    font-size: 18px;
    color: #333;
  }
}

@media (max-width: 575px) {
  .contact-content .tab1-content .flexbox .leftbox .other-contact li .des {
    font-size: 16px;
    text-align: center;
  }
}

.contact-content .tab1-content .flexbox .rightbox {
  flex: 0 0 720px;
  min-width: 720px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .contact-content .tab1-content .flexbox .rightbox {
    flex: 1;
    min-width: inherit;
  }
}

.contact-content .tab1-content .flexbox .rightbox .mapbox {
  width: 100%;
  height: 440px;
  overflow: hidden;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .contact-content .tab1-content .flexbox .rightbox .mapbox {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .contact-content .tab1-content .flexbox .rightbox .mapbox {
    height: 250px;
  }
}

/* .contact-content .tab1-content .flexbox .rightbox .mapbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.contact-content .tab2-content {
  position: relative;
  background: #f5f5f5;
  padding: 80px 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab2-content {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .contact-content .tab2-content {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .contact-content .tab2-content {
    padding: 30px 0;
  }
}

.contact-content .tab2-content h2 {
  font-size: 36px;
  color: #333;
  margin: 0 0 55px;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .contact-content .tab2-content h2 {
    font-size: 24px;
    margin: 0 0 30px;
    border: 0;
  }
}

@media (max-width: 575px) {
  .contact-content .tab2-content h2 {
    font-size: 18px;
    padding: 0;
    margin: 0 0 15px;
  }
}

.contact-content .tab2-content .flexbox .box-row {
  margin: 0 -25px;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .contact-content .tab2-content .flexbox .box-row {
    margin: 0 -8px;
  }
}

@media (max-width: 575px) {
  .contact-content .tab2-content .flexbox .box-row {
    display: block;
  }
}

.contact-content .tab2-content .flexbox .box-col {
  flex: 0 0 33.33%;
  min-width: 33.33%;
  padding: 0 25px;
  margin: 0 0 30px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .contact-content .tab2-content .flexbox .box-col {
    padding: 0 8px;
    margin: 0 0 16px;
  }
}

@media (max-width: 575px) {
  .contact-content .tab2-content .flexbox .box-col {
    flex: inherit;
    min-width: inherit;
  }
}

.contact-content .tab2-content .flexbox .box-col:last-child {
  margin: 0;
}

.contact-content .tab2-content .flexbox .box-col.w100 {
  flex: 0 0 100%;
  min-width: 100%;
}

.contact-content .tab2-content .flexbox .box-col .input-group {
  width: 100%;
}

.contact-content .tab2-content .flexbox .box-col .input-group input {
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #666;
  border: 0;
  outline: none;
  background: #fff;
  padding: 0 20px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .contact-content .tab2-content .flexbox .box-col .input-group input {
    font-size: 14px;
    height: 40px;
    padding: 0 15px;
  }
}

.contact-content .tab2-content .flexbox .box-col .input-group textarea {
  width: 100%;
  height: 280px;
  font-size: 16px;
  color: #666;
  border: 0;
  outline: none;
  background: #fff;
  resize: none;
  padding: 15px 20px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .contact-content .tab2-content .flexbox .box-col .input-group textarea {
    height: 222px;
  }
}

@media (max-width: 767px) {
  .contact-content .tab2-content .flexbox .box-col .input-group textarea {
    height: 150px;
    font-size: 14px;
    padding: 15px;
  }
}

.contact-content .tab2-content .flexbox .ok {
  display: block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: #1468b4;
  margin: 60px auto 0;
  outline: none;
  padding: 0;
  border: 0;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .contact-content .tab2-content .flexbox .ok {
    margin: 30px auto 0;
    width: 180px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .contact-content .tab2-content .flexbox .ok {
    width: 160px;
    margin: 15px auto 0;
    font-size: 14px;
  }
}

.contact-content .tab2-content .flexbox .ok:hover {
  box-shadow: 0 3px 10px -4px #757575;
}

.contact-content .tab3-content {
  position: relative;
  padding: 75px 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab3-content {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .contact-content .tab3-content {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .contact-content .tab3-content {
    padding: 30px 0;
  }
}

.contact-content .tab3-content h2 {
  font-size: 36px;
  color: #333;
  margin: 0 0 35px;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .contact-content .tab3-content h2 {
    font-size: 24px;
    margin: 0 0 25px;
    border: 0;
  }
}

@media (max-width: 575px) {
  .contact-content .tab3-content h2 {
    font-size: 18px;
    padding: 0;
    margin: 0 0 15px;
  }
}

.contact-content .tab3-content .smtit {
  max-width: 467px;
  text-align: center;
  margin: 0 auto 30px;
  line-height: 2;
}

.contact-content .tab3-content .flexbox {
  overflow: hidden;
}

.contact-content .tab3-content .flexbox .box-row {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab3-content .flexbox .box-row {
    margin: 0 -8px;
  }
}

.contact-content .tab3-content .flexbox .box-col {
  flex: 0 0 50%;
  min-width: 50%;
  padding: 0 20px;
  margin: 0 0 40px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab3-content .flexbox .box-col {
    padding: 0 8px;
    margin: 0 0 16px;
  }
}

@media (max-width: 767px) {
  .contact-content .tab3-content .flexbox .box-col {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.contact-content .tab3-content .contact-recruit-swiper {
  height: 200px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .contact-content .tab3-content .contact-recruit-swiper {
    height: 150px;
  }
}

.contact-content .tab3-content .contact-recruit-swiper .swiper-wrapper {
  height: auto;
}

.contact-content .tab3-content .contact-recruit-swiper .swiper-slide {
  padding: 0 15px 0 0;
}

.contact-content .tab3-content .contact-recruit-swiper .swiper-scrollbar-drag {
  background: rgba(0, 0, 0, 0.3);
}

.contact-content .tab3-content .contact-recruit-swiper .swiper-scrollbar {
  width: 4px;
  right: 0;
}

.contact-content .tab3-content .item {
  border: 1px solid #ddd;
  padding: 40px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab3-content .item {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .contact-content .tab3-content .item {
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid #ddd;
  }
}

.contact-content .tab3-content .item .head {
  margin: 0 0 30px;
  border-bottom: 1px solid #ddd;
  padding: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab3-content .item .head {
    margin: 0 0 15px;
  }
}

.contact-content .tab3-content .item .head h5 {
  margin: 0;
  color: #333;
  font-size: 18px;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .contact-content .tab3-content .item .head h5 {
    font-size: 14px;
  }
}

.contact-content .tab3-content .item .head span {
  font-size: 14px;
  color: #666;
}

.contact-content .tab3-content .item .head span em {
  font-style: normal;
  color: #1468b4;
}

.contact-content .tab3-content .item .require {
  width: 100px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background: #1468b4;
  font-size: 14px;
  margin: 0 0 22px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .contact-content .tab3-content .item .require {
    margin: 0 0 15px;
  }
}

.contact-content .tab3-content .item ul li {
  margin: 0 0 6px;
  font-size: 14px;
  color: #666;
}

.contact-content .tab3-content .item ul li:last-child {
  margin: 0;
}

.contact-content .anchor_appoint {
  position: absolute;
  top: 0;
}

@media (max-width: 767px) {
  .contact-content .anchor_appoint {
    top: -60px;
  }
}

.contact-content .currency-show-more {
  border-top: 1px solid #ddd;
}

@media (max-width: 767px) {
  .contact-content .currency-show-more {
    border: 0;
  }
}

.about-content {
  overflow: hidden;
}

.about-currency-head {
  font-size: 32px;
  color: #333;
  margin: 0 0 60px;
  position: relative;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-currency-head {
    margin: 0 0 40px;
  }
}

@media (max-width: 991px) {
  .about-currency-head {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .about-currency-head {
    font-size: 22px;
    margin: 0 0 30px;
  }
}

@media (max-width: 575px) {
  .about-currency-head {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

.about-currency-head:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #1468b4;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -20px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .about-currency-head:after {
    bottom: -10px;
  }
}

.about-section1 {
  margin: 0 0 150px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section1 {
    margin: 0 0 120px;
  }
}

@media (max-width: 991px) {
  .about-section1 {
    margin: 0 0 80px;
  }
}

@media (max-width: 767px) {
  .about-section1 {
    margin: 0 0 60px;
  }
}

@media (max-width: 575px) {
  .about-section1 {
    margin: 0 0 30px;
  }
}

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

@media (max-width: 767px) {
  .about-section1 .flexbox {
    display: block;
  }
}

.about-section1 .flexbox .leftbox {
  flex: 0 0 515px;
  min-width: 515px;
  margin: 0 60px 0 0;
/*  margin: 0 245px 0 0; */
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section1 .flexbox .leftbox {
    margin: 0 70px 0 0;
  }
}

@media (max-width: 1199px) {
  .about-section1 .flexbox .leftbox {
    margin: 0 60px 0 0;
    flex: 0 0 415px;
    min-width: 415px;
  }
}

@media (max-width: 991px) {
  .about-section1 .flexbox .leftbox {
    margin: 0 40px 0 0;
    flex: 0 0 300px;
    min-width: 300px;
  }
}

@media (max-width: 767px) {
  .about-section1 .flexbox .leftbox {
    margin: 0 0 30px;
  }
}

.about-section1 .flexbox .leftbox h2 {
  font-size: 32px;
  color: #333;
  margin: 0 0 60px;
  position: relative;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section1 .flexbox .leftbox h2 {
    margin: 0 0 40px;
  }
}

@media (max-width: 991px) {
  .about-section1 .flexbox .leftbox h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .about-section1 .flexbox .leftbox h2 {
    font-size: 22px;
    text-align: center;
    margin: 0 0 30px;
  }
}

@media (max-width: 575px) {
  .about-section1 .flexbox .leftbox h2 {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

.about-section1 .flexbox .leftbox h2:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #1468b4;
  left: 0;
  bottom: -20px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .about-section1 .flexbox .leftbox h2:after {
    left: 0;
    right: 0;
    margin: auto;
    bottom: -10px;
  }
}

.about-section1 .flexbox .leftbox .about-section1-info {
  /* height: 447px; */
  overflow: hidden;
}

.about-section1 .flexbox .leftbox .about-section1-info p {
  font-size: 14px;
  color: #999;
  line-height: 2.4;
  margin: 0 0 5px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .about-section1 .flexbox .leftbox .about-section1-info p {
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .about-section1 .flexbox .leftbox .about-section1-info p {
    text-align: center;
    margin: 0;
  }
}

.about-section1 .flexbox .leftbox .about-section1-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 155px;
  height: 46px;
  border-radius: 5px;
  background: #1468b4;
  color: #fff;
  margin: 50px 0 85px;
  font-size: 14px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section1 .flexbox .leftbox .about-section1-more {
    margin: 40px 0;
  }
}

@media (max-width: 991px) {
  .about-section1 .flexbox .leftbox .about-section1-more {
    width: 135px;
    height: 40px;
    margin: 30px 0;
  }
}

@media (max-width: 767px) {
  .about-section1 .flexbox .leftbox .about-section1-more {
    margin: 20px auto 30px;
  }
}

.about-section1 .flexbox .leftbox .about-section1-more img {
  margin: 0 0 0 16px;
  transition: 0.3s;
}

.about-section1 .flexbox .leftbox .about-section1-more.fold img {
  transform: rotate(-180deg);
}

.about-section1 .flexbox .leftbox .member h3 {
  margin: 0 0 25px;
  font-size: 20px;
  color: #333;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section1 .flexbox .leftbox .member h3 {
    margin: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .about-section1 .flexbox .leftbox .member h3 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 15px;
  }
}

@media (max-width: 575px) {
  .about-section1 .flexbox .leftbox .member h3 {
    font-size: 16px;
  }
}

.about-section1 .flexbox .leftbox .member ul {
  /* display: flex; */
  /* align-items: flex-start; */
  /* flex-wrap: wrap; */
  /* margin: 0 -10px; */
}

/* @media (max-width: 767px) {
  .about-section1 .flexbox .leftbox .member ul {
    justify-content: center;
  }
} */

.about-section1 .flexbox .leftbox .member ul li {
  /* flex: 0 0 50%;
  min-width: 50%; */
  /* padding: 0 10px; */
  transition: 0.3s;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  .about-section1 .flexbox .leftbox .member ul li {
    text-align: center;
  }
}

/* .about-section1 .flexbox .leftbox .member ul li:last-child {
  margin: 0;
} */

.about-section1 .flexbox .leftbox .member ul li a:hover {
  /* border: 1px solid #1468b4; */
  color: #1468b4;
}

.about-section1 .flexbox .leftbox .member ul li a {
  /* display: flex;
  width: 100%;
  height: 100%; */
  /* align-items: center; */
  /* justify-content: center; */
  font-size: 12px;
  color: #666;
  /* text-align: center; */
  /* padding: 20px 5px; */
  overflow: hidden;
  /* border: 1px solid #e6e6e6; */
}

.about-section1 .flexbox .leftbox .member ul li a img {
  width: 70%;
}

.about-section1 .flexbox .rightbox {
  flex: 1;
}

.about-section1 .flexbox .rightbox .img-box {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0 0 30px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section1 .flexbox .rightbox .img-box {
    height: 340px;
  }
}

@media (max-width: 1199px) {
  .about-section1 .flexbox .rightbox .img-box {
    height: 330px;
  }
}

@media (max-width: 991px) {
  .about-section1 .flexbox .rightbox .img-box {
    height: 270px;
  }
}

@media (max-width: 767px) {
  .about-section1 .flexbox .rightbox .img-box {
    max-width: 500px;
    margin: 0 auto 15px;
  }
}

@media (max-width: 575px) {
  .about-section1 .flexbox .rightbox .img-box {
    height: 222px;
  }
}

.about-section1 .flexbox .rightbox .img-box:after {
  content: "";
  position: absolute;
  width: 1000vh;
  height: 345px;
  background: #f5f5f5;
  left: 45px;
  bottom: -60px;
}

@media (max-width: 767px) {
  .about-section1 .flexbox .rightbox .img-box:after {
    display: none;
  }
}

.about-section1 .flexbox .rightbox .img-box img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section1 .flexbox .rightbox .num-group {
  position: relative;
  z-index: 1;
  display: flex;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .about-section1 .flexbox .rightbox .num-group {
    justify-content: center;
  }
}

.about-section1 .flexbox .rightbox .num-group .item {
  margin: 0 75px 0 0;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section1 .flexbox .rightbox .num-group .item {
    margin: 0 50px 0 0;
  }
}

@media (max-width: 991px) {
  .about-section1 .flexbox .rightbox .num-group .item {
    margin: 0 25px 0 0;
  }
}

.about-section1 .flexbox .rightbox .num-group .item:last-child {
  margin: 0;
}

.about-section1 .flexbox .rightbox .num-group .item .num {
  font-size: 36px;
  color: #1468b4;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .about-section1 .flexbox .rightbox .num-group .item .num {
    font-size: 25px;
  }
}

.about-section1 .flexbox .rightbox .num-group .item .num span {
  font-size: 72px;
  vertical-align: text-top;
  letter-spacing: 2px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section1 .flexbox .rightbox .num-group .item .num span {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .about-section1 .flexbox .rightbox .num-group .item .num span {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .about-section1 .flexbox .rightbox .num-group .item .num span {
    font-size: 35px;
  }
}

.about-section1 .flexbox .rightbox .num-group .item .numdes {
  font-size: 14px;
  color: #666;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .about-section1 .flexbox .rightbox .num-group .item .numdes {
    font-size: 12px;
  }
}

.about-section2 .video {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section2 .video {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .about-section2 .video {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .about-section2 .video {
    height: 200px;
  }
}

.about-section2 .video a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.about-section2 .video .mask {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section2 .video .mask img {
  width: 70px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .about-section2 .video .mask img {
    width: 50px;
  }
}

.about-section2 .video .videoimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.about-section2 .video:hover .videoimg {
  transform: scale(1.1);
}

.about-section3 {
  padding: 115px 0 0;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section3 {
    padding: 80px 0 0;
  }
}

@media (max-width: 1199px) {
  .about-section3 {
    padding: 60px 0 0;
  }
}

@media (max-width: 575px) {
  .about-section3 {
    padding: 30px 0 0;
  }
}

.about-section3 .about-currency-head {
  margin: 0 0 105px;
}

@media (max-width: 1470px) {
  .about-section3 .about-currency-head {
    margin: 0 0 80px;
  }
}

@media (max-width: 1199px) {
  .about-section3 .about-currency-head {
    margin: 0 0 60px;
  }
}

@media (max-width: 991px) {
  .about-section3 .about-currency-head {
    margin: 0 0 40px;
  }
}

.about-section3 .flexbox {
  overflow: hidden;
}

.about-section3 .flexbox .box-row {
  margin: 0 -115px;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section3 .flexbox .box-row {
    margin: 0 -60px;
  }
}

@media (max-width: 1199px) {
  .about-section3 .flexbox .box-row {
    margin: 0 -30px;
  }
}

@media (max-width: 991px) {
  .about-section3 .flexbox .box-row {
    margin: 0 -20px;
  }
}

@media (max-width: 767px) {
  .about-section3 .flexbox .box-row {
    margin: 0 -8px;
  }
}

.about-section3 .flexbox .box-col {
  flex: 0 0 50%;
  min-width: 50%;
  padding: 0 115px;
  margin: 0 0 90px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section3 .flexbox .box-col {
    padding: 0 60px;
    margin: 0 0 60px;
  }
}

@media (max-width: 1199px) {
  .about-section3 .flexbox .box-col {
    padding: 0 30px;
    margin: 0 0 60px;
  }
}

@media (max-width: 991px) {
  .about-section3 .flexbox .box-col {
    padding: 0 20px;
    margin: 0 0 40px;
  }
}

@media (max-width: 767px) {
  .about-section3 .flexbox .box-col {
    padding: 0 8px;
    margin: 0 0 30px;
  }
}

@media (max-width: 575px) {
  .about-section3 .flexbox .box-col {
    padding: 0 4px;
    margin: 0 0 20px;
  }
}

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

@media (max-width: 767px) {
  .about-section3 .item {
    flex-direction: column;
    max-width: 500px;
    margin: auto;
  }
}

.about-section3 .item .img-box {
  flex: 0 0 162px;
  min-width: 162px;
  height: 162px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 30px 0 0;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section3 .item .img-box {
    margin: 0 15px 0 0;
    flex: 0 0 130px;
    min-width: 130px;
    height: 130px;
  }
}

@media (max-width: 991px) {
  .about-section3 .item .img-box {
    flex: 0 0 100px;
    min-width: 100px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  .about-section3 .item .img-box {
    flex: inherit;
    min-width: inherit;
    width: 100px;
    height: 100px;
    margin: 0 0 10px;
  }
}

.about-section3 .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.about-section3 .item .info h3 {
  margin: 0 0 16px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section3 .item .info h3 {
    margin: 0 0 12px;
  }
}

@media (max-width: 991px) {
  .about-section3 .item .info h3 {
    margin: 0 0 10px;
  }
}

@media (max-width: 767px) {
  .about-section3 .item .info h3 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .about-section3 .item .info h3 {
    margin: 0 0 5px;
  }
}

.about-section3 .item .info h3 span {
  font-size: 28px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section3 .item .info h3 span {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .about-section3 .item .info h3 span {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .about-section3 .item .info h3 span {
    font-size: 16px;
  }
}

.about-section3 .item .info h3 .name {
  color: #333;
  margin: 0 26px 0 0;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .about-section3 .item .info h3 .name {
    margin: 0 20px 0 0;
  }
}

@media (max-width: 767px) {
  .about-section3 .item .info h3 .name {
    margin: 0 15px 0 0;
    color: #1468b4;
  }
}

@media (max-width: 767px) {
  .about-section3 .item .info h3 .name {
    margin: 0 8px 0 0;
  }
}

.about-section3 .item .info h3 .position {
  color: #999;
}

.about-section3 .item .info .des {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .about-section3 .item .info .des {
    line-height: 1.6;
  }
}

@media (max-width: 991px) {
  .about-section3 .item .info .des {
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .about-section3 .item .info .des {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .about-section3 .item:hover .img-box img {
    transform: scale(1.1);
  }

  .about-section3 .item:hover .info h3 .name {
    color: #1468b4;
  }
}

.about-section3 .currency-show-more {
  height: auto;
}

.about-section4 {
  padding: 115px 0 96px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section4 {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {
  .about-section4 {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .about-section4 {
    padding: 30px 0;
  }
}

.about-section4 .flexbox {
  overflow: hidden;
}

.about-section4 .flexbox .box-row {
  margin: 0 -35px;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section4 .flexbox .box-row {
    margin: 0 -15px;
  }
}

@media (max-width: 767px) {
  .about-section4 .flexbox .box-row {
    margin: 0 -8px;
  }
}

.about-section4 .flexbox .box-col {
  flex: 0 0 16.66%;
  min-width: 16.66%;
  padding: 0 35px;
  margin: 0 0 40px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section4 .flexbox .box-col {
    padding: 0 15px;
    margin: 0 0 30px;
  }
}

@media (max-width: 1199px) {
  .about-section4 .flexbox .box-col {
    flex: 0 0 25%;
    min-width: 25%;
  }
}

@media (max-width: 767px) {
  .about-section4 .flexbox .box-col {
    padding: 0 8px;
    margin: 0 0 16px;
  }
}

@media (max-width: 575px) {
  .about-section4 .flexbox .box-col {
    flex: 0 0 33.33%;
    min-width: 33.33%;
  }
}

.about-section4 .item {
  width: 100%;
  height: 83px;
  overflow: hidden;
  background: #f7f7f7;
}

.about-section4 .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.about-section4 .item a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* -webkit-filter: saturate(10%);
  filter: saturate(10%);
  opacity: 0.3; */
  transition: 0.3s;
}

@media (max-width: 767px) {
  .about-section4 .item a img {
    -webkit-filter: saturate(100%);
    filter: saturate(100%);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .about-section4 .item a:hover img {
    -webkit-filter: saturate(100%);
    filter: saturate(100%);
    opacity: 1;
    transform: scale(1.1);
  }
}

.about-section4 .about-currency-des {
  font-size: 14px;
  color: #999;
  max-width: 977px;
  text-align: center;
  line-height: 1.8;
  margin: 0 auto 100px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section4 .about-currency-des {
    margin: 0 auto 60px;
  }
}

@media (max-width: 1199px) {
  .about-section4 .about-currency-des {
    margin: 0 auto 40px;
  }
}

@media (max-width: 767px) {
  .about-section4 .about-currency-des {
    margin: 0 auto 20px;
  }
}

.about-section4 .currency-show-more {
  height: auto;
}

.about-section5 {
  position: relative;
  width: 100%;
  background: #f5f5f5 url(../images/section5bg.png) bottom center / 100% no-repeat;
  padding: 115px 0;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section5 {
    padding: 80px 0;
  }
}

@media (max-width: 1199px) {
  .about-section5 {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .about-section5 {
    padding: 40px 0;
  }
}













.about-section5 .swiper-box {
  position: relative;
}
.about-section5 .swiper-box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #1468b4;
}
@media (max-width: 575px) {
  .about-section5 .swiper-box:after {
    top: auto;
    bottom: 6px;
  }
}
@media (max-width: 767px) {
  .about-section5-swiper {
    margin: 0 30px;
  }
}
.about-section5-swiper .swiper-slide .item {
  position: relative;
  display: flex;
  height: 370px;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide .item {
    height: auto;
  }
}
.about-section5-swiper .swiper-slide .item .ic-left {
  position: relative;
  flex: 0 0 17px;
  max-width: 0 0 17px;
}
@media (max-width: 767px) {
  .about-section5-swiper .swiper-slide .item .ic-left {
    padding: 0 0 25px;
    margin: 0 10px 0 0;
  }
}
.about-section5-swiper .swiper-slide .item .ic-left i {
  position: absolute;
  display: block;
  width: 1px;
  height: 185px;
  background: #1468b4;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide .item .ic-left i {
    height: 100%;
  }
}
.about-section5-swiper .swiper-slide .item .ic-left:before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  background: #1468b4;
  border-radius: 50%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide .item .ic-left:before {
    top: auto;
  }
}
.about-section5-swiper .swiper-slide .item .ic-right {
  position: absolute;
  width: 300px;
  height: 100%;
  padding: 0 0 0 20px;
  display: flex;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide .item .ic-right {
    position: static;
    padding: 0 0 25px;
    width: 100%;
  }
}
.about-section5-swiper .swiper-slide .item .ic-right .inner {
  display: flex;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide .item .ic-right .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-section5-swiper .swiper-slide .item .ic-right .img-box {
  flex: 0 0 164px;
  min-width: 164px;
  height: 89px;
  overflow: hidden;
  margin: 0 18px 0 0;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide .item .ic-right .img-box {
    flex: inherit;
    min-width: inherit;
    margin: 0 0 10px;
  }
}
.about-section5-swiper .swiper-slide .item .ic-right .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section5-swiper .swiper-slide .item .ic-right .info .time {
  font-size: 30px;
  color: #1468b4;
  font-family: "BEBAS";
  margin: 0 0 10px;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide .item .ic-right .info .time {
    font-size: 24px;
    margin: 0 0 8px;
  }
}
.about-section5-swiper .swiper-slide .item .ic-right .info .des {
  font-size: 16px;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide .item .ic-right .info .des {
    font-size: 14px;
  }
}
.about-section5-swiper .swiper-slide:nth-child(even) .item .ic-left i {
  bottom: 0;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide:nth-child(even) .item .ic-left i {
    top: 0;
    bottom: auto;
  }
}
.about-section5-swiper .swiper-slide:nth-child(even) .item .ic-right .inner {
  align-items: flex-end;
}
@media (max-width: 575px) {
  .about-section5-swiper .swiper-slide:nth-child(even) .item .ic-right .inner {
    align-items: flex-start;
  }
}
.about-section5-swiper .swiper-slide:last-child .item .ic-right {
  width: 100%;
}
.about-section5 .swiper-button-prev,
.about-section5 .swiper-button-next {
  left: 50px;
  cursor: pointer;
  width: 24px;
  height: 42px;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  background: transparent;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .about-section5 .swiper-button-prev,
  .about-section5 .swiper-button-next {
    left: 15px;
    width: 15px;
    height: 29px;
  }
}
.about-section5 .swiper-button-prev:before,
.about-section5 .swiper-button-next:before {
  content: "";
  display: block;
  position: relative;
  z-index: 1;
  width: 18px;
  height: 42px;
  background: url(../images/left.png) center / contain no-repeat;
  transition: .3s;
}
@media (max-width: 767px) {
  .about-section5 .swiper-button-prev:before,
  .about-section5 .swiper-button-next:before {
    width: 15px;
    height: 29px;
  }
}
.about-section5 .swiper-button-prev:hover:before,
.about-section5 .swiper-button-next:hover:before {
  background: url(../images/left-h.png) center / contain no-repeat;
}
.about-section5 .swiper-button-next {
  left: auto;
  right: 50px;
}
@media (max-width: 767px) {
  .about-section5 .swiper-button-next {
    right: 15px;
  }
}
.about-section5 .swiper-button-next:before {
  content: "";
  display: block;
  background: url(../images/right.png) center / contain no-repeat;
}
.about-section5 .swiper-button-next:hover:before {
  background: url(../images/right-h.png) center / contain no-repeat;
}


















.about-section5 .bottom-operate {
  position: absolute;
  width: 280px;
  height: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .about-section5 .bottom-operate {
    height: 50px;
  }
}

.about-section5 .bottom-operate .swiper-button-next,
.about-section5 .bottom-operate .swiper-button-prev {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  width: 12px;
  height: 21px;
  margin: 0 76px 0 0;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  background: url(../images/left.png) center / cover no-repeat;
  transition: 0.3s;
  opacity: 1;
}

@media (max-width: 767px) {

  .about-section5 .bottom-operate .swiper-button-next,
  .about-section5 .bottom-operate .swiper-button-prev {
    background-size: 10px;
    height: 100%;
    flex: 1;
    margin: 0;
  }
}

@media (min-width: 768px) {

  .about-section5 .bottom-operate .swiper-button-next:hover,
  .about-section5 .bottom-operate .swiper-button-prev:hover {
    background: url(../images/left-h.png) center / cover no-repeat;
  }
}

.about-section5 .bottom-operate .swiper-button-next {
  margin: 0;
  background: url(../images/right.png) center / cover no-repeat;
}

@media (max-width: 767px) {
  .about-section5 .bottom-operate .swiper-button-next {
    background-size: 10px;
    height: 100%;
  }
}

.about-section5 .bottom-operate .swiper-button-next:before {
  content: "";
  position: absolute;
  background: #ddd;
  width: 1px;
  height: 30px;
  top: -5px;
  left: -38px;
}

@media (max-width: 767px) {
  .about-section5 .bottom-operate .swiper-button-next:before {
    top: 0;
    height: 100%;
    left: 0;
    background: #e0e0e0;
  }
}

@media (min-width: 768px) {
  .about-section5 .bottom-operate .swiper-button-next:hover {
    background: url(../images/right-h.png) center / cover no-repeat;
  }
}

.about-section5 .bottom-operate .swiper-button-disabled {
  opacity: 0.2;
}

.about-section5 .about-currency-head {
  font-size: 32px;
  color: #333;
  margin: 0 0 60px;
  position: relative;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .about-section5 .about-currency-head {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .about-section5 .about-currency-head {
    font-size: 22px;
    margin: 0 0 40px;
  }
}

@media (max-width: 575px) {
  .about-section5 .about-currency-head {
    font-size: 18px;
    margin: 0 0 30px;
  }
}

.about-section5 .about-currency-head:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #1468b4;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -20px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .about-section5 .about-currency-head:after {
    bottom: -10px;
  }
}

.about-section6 {
  padding: 56px 0 0;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .about-section6 {
    padding: 30px 0 0;
  }
}

.about-section6 .about-currency-head {
  margin: 0 0 80px;
}

@media (max-width: 1470px) {
  .about-section6 .about-currency-head {
    margin: 0 0 70px;
  }
}

@media (max-width: 1199px) {
  .about-section6 .about-currency-head {
    margin: 0 0 60px;
  }
}

@media (max-width: 991px) {
  .about-section6 .about-currency-head {
    margin: 0 0 40px;
  }
}

.about-section6 .currency-show-more {
  height: auto;
}

.about-section6 .flexbox .box-row {
  margin: 0 -28px;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section6 .flexbox .box-row {
    margin: 0 -15px;
  }
}

@media (max-width: 767px) {
  .about-section6 .flexbox .box-row {
    margin: 0 -8px;
  }
}

.about-section6 .flexbox .box-col {
  flex: 0 0 25%;
  min-width: 25%;
  padding: 0 28px;
  margin: 0 0 56px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section6 .flexbox .box-col {
    padding: 0 15px;
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .about-section6 .flexbox .box-col {
    flex: 0 0 33.33%;
    min-width: 33.33%;
    padding: 0 8px;
    margin: 0 0 16px;
  }
}

@media (max-width: 767px) {
  .about-section6 .flexbox .box-col {
    flex: 0 0 50%;
    min-width: 50%;
  }
}
.about-section6 .swiper-container{
	padding-top:20px !important;
}
.about-section6 .item {
  width: 100%;
  height: 232px;
  background: #fff;
  /* box-shadow: 0 2px 5px -2px #757575; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 15px; */
  /* overflow: hidden; */
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section6 .item {
    height: 202px;
  }
}

@media (max-width: 1199px) {
  .about-section6 .item {
    height: 165px;
    padding: 8px;
  }
}

@media (max-width: 991px) {
  .about-section6 .item {
    height: 120px;
    padding: 8px;
  }
}

@media (max-width: 575px) {
  .about-section6 .item {
    height: 130px;
    padding: 8px;
  }
}

.about-section6 .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.about-section6 .item:hover {
  /* box-shadow: 0 5px 15px -2px #757575; */
  transform: translateY(-10px);
}

@media (min-width: 768px) {
  .about-section6 .item:hover img {
    transform: scale(1.1);
  }
}

.about-section7 .downloadBox {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin: 105px 0 133px;
  transition: 0.3s;
}

@media (max-width: 1470px) {
  .about-section7 .downloadBox {
    margin: 80px 0;
  }
}

@media (max-width: 1199px) {
  .about-section7 .downloadBox {
    margin: 60px 0;
  }
}

@media (max-width: 991px) {
  .about-section7 .downloadBox {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .about-section7 .downloadBox {
    height: 250px;
    margin: 30px 0;
  }
}

@media (max-width: 575px) {
  .about-section7 .downloadBox {
    height: 200px;
  }
}

.about-section7 .downloadBox:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-section7 .downloadBox .download-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.about-section7 .downloadBox .mask {
  position: absolute;
  z-index: 1;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.about-section7 .downloadBox .mask a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-section7 .downloadBox .mask h2 {
  font-size: 36px;
  color: #fff;
  margin: 0 0 32px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .about-section7 .downloadBox .mask h2 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .about-section7 .downloadBox .mask h2 {
    font-size: 22px;
    margin: 0 0 30px;
  }
}

@media (max-width: 575px) {
  .about-section7 .downloadBox .mask h2 {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

.about-section7 .downloadBox .mask p {
  font-size: 20px;
  color: #fff;
  margin: 0 0 55px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .about-section7 .downloadBox .mask p {
    font-size: 16px;
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .about-section7 .downloadBox .mask p {
    font-size: 14px;
    margin: 0 0 30px;
  }
}

@media (max-width: 575px) {
  .about-section7 .downloadBox .mask p {
    max-width: 260px;
    font-size: 14px;
    margin: 0 0 15px;
  }
}

.about-section7 .downloadBox .mask form {
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-section7 .downloadBox .mask form input{
  width: 300px;
  height: 45px;
  background: #fff;
  border-radius: 5px;
  border: 0;
  outline: none;
  margin: 0 15px 0 0;
  padding: 0 15px;
  font-size: 14px;
}
.about-section7 .downloadBox .mask form button{
  flex: 0 0 80px;
  max-width: 80px;
  height: 45px;
  outline: none;
  background: #1468b4;
  border: 0;
  font-size: 14px;
  color: #fff;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .about-section7 .downloadBox .mask form input{
    height: 40px;
  }
  .about-section7 .downloadBox .mask form button{
    height: 40px;
  }
}

@media (max-width: 575px) {
  .about-section7 .downloadBox .mask form{
    padding: 0 15px;
  }
  .about-section7 .downloadBox .mask form input{
    flex: 1;
  }
}

.about-section7 .downloadBox .mask .ico {
  transition: 0.3s;
}

@media (max-width: 575px) {
  .about-section7 .downloadBox .mask .ico {
    width: 18px;
    animation: rise 1s linear infinite alternate;
  }
}

.about-section7 .downloadBox:hover .download-bg {
  transform: scale(1.03);
}

.about-section7 .downloadBox:hover .ico {
  animation: rise 1s linear infinite alternate;
}


.video-model .modal-dialog {
  /* position: absolute; */
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  /* max-width: 800px; */
  width: 60%;
}

@media (max-width: 767px) {
  .video-model .modal-dialog {
    width: 95%;
  }
}

.video-model .modal-dialog .modal-content {
  width: 100%;
  background: #000;
}

@media (max-width: 1199px) {
  .currency-breadnav-box .flexbox .inner-breadnav-tab .case-top-classify li a span {
    font-size: 14px;
  }

  .currency-breadnav-apptab .case-top-classify li a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .currency-breadnav-apptab .case-top-classify {
    overflow: auto;
  }

  .currency-breadnav-apptab .case-top-classify li {
    flex: 0 0 18.5%;
  }
}

@media (max-width: 576px) {
  .currency-breadnav-apptab .case-top-classify li {
    flex: 0 0 30%;
  }
}

.banner-video-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.benner-txt img {
  max-width: 300px;
  width: 100%;
  transition: .3s;
}

.benner-txt h4 {
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  padding: 40px 0 50px;
  margin: 0;
}

.benner-txt h4 span{
  display: inline-block;
}

.benner-txt h4 span::after {
  display: block;
  content: "";
  margin-top: -6px;
  width: 100%;
  height: 6px;
  background-color: #1468b4;
}

.benner-txt .atc {
  max-width: 565px;
}

.benner-txt .atc p {
  display: none;
}

/* .benner-txt .atc p {
  line-height: 30px;
  color: #ffffff;
  opacity: 0.8;
  font-size: 18px;
} */

@media all and (max-width: 1199px) {
  .benner-txt img {
    max-width: 300px;
  }

  .benner-txt h4 {
    font-size: 30px;
    line-height: 30px;
    padding: 30px 0 40px;
  }

  .benner-txt .atc {
    max-width: 530px;
  }

  .benner-txt .atc p {
    line-height: 26px;
    font-size: 16px;
  }
}

@media all and (max-width: 1199px) {
  .benner-txt img {
    max-width: 300px;
  }

  .benner-txt h4 {
    font-size: 30px;
    line-height: 30px;
    padding: 30px 0 40px;
  }

  .benner-txt .atc {
    max-width: 530px;
  }

  .benner-txt .atc p {
    line-height: 26px;
    font-size: 16px;
  }
}

@media all and (max-width: 575px) {
  .benner-txt img {
    max-width: 200px;
    transition: .3s;
  }

  .benner-txt h4 {
    font-size: 24px;
    line-height: 24px;
    padding: 20px 0 30px;
  }

  .benner-txt .atc p {
    line-height: 24px;
    font-size: 14px;
  }

  .benner-txt h4::after {
    margin-top: -3px;
    height: 3px;
  }
}

.bannerimg2 {
  visibility: visible !important;
}

@keyframes large {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

.large {
  -webkit-animation-name: large;
  animation-name: large;
  animation-fill-mode: large;
}

.home-banner-swiper .swiper-slide {
  overflow: hidden;
}

@media all and (max-width: 1469px) {
  .home-server-swiper .item .mask {
    max-width: 705px;
    padding: 30px 40px 100px;
  }

  .home-server-swiper .item .mask h3 {
    margin: 0 0 15px;
  }

  .home-server-swiper .item .mask h3 a {
    font-size: 30px;
  }

  .home-server-swiper .item .mask p {
    -webkit-line-clamp: 1;
    margin: 0 0 25px;
  }
}

@media all and (max-width: 769px) {
  .home-server-swiper .item .mask {
    max-width: 100%;
    width: 100%;
    padding: 20px 30px 70px;
  }

  .home-server-swiper .item .mask h3 a {
    font-size: 20px;
  }

  .home-server-swiper .item .mask p {
    -webkit-line-clamp: 2;
  }
}

.about-section6 h4{
  font-size: 16px;
  text-align: center;
  margin: 15px 0 0;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1199px) {
  .about-section6 h4{
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .about-section6 h4{
    margin: 15px 0 5px;
  }
}

.about-section6-tabs{
  display: flex;
  justify-content: center;
  margin: 0 0 40px;
}

.about-section6-tabs a{
  display: block;
  font-size: 16px;
  padding: 10px 30px;
  background: #f5f5f5;
  color: #333;
  margin: 0 15px;
  border-radius: 5px;
  transition: .3s;
}

@media (max-width: 575px) {
  .about-section6-tabs{
    margin: 0 0 20px;
  }
  .about-section6-tabs a{
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 8px;
  }
}

.about-section6-tabs a.active{
  background: #1468b4;
  color: #fff;
}

a.banner-more{
  display: block;
  font-size: 18px;
  color: #fff;
}

.loadingBg {
  position: fixed;
  width: 100%;
  height: 210%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 999;
}
.loadingBg::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f5f5f5;
}

.loadingBg .loadinglg {
  width: 216px;
  height: 34px;
  background-color: transparent;
  overflow: hidden;
  position: absolute;
  top: 25%;
  left: 50%;
  margin-top: -40px;
  margin-left: -108px;
}

.loadingBg .loadinglg img{
  height: 100%;
}

.loadingBg .loadinglg .ldlogo {
  width: 216px;
  height: 34px;
  z-index: 3;
}

.banner-prev-next{
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 11;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: flex-end;
}
.banner-prev-next .swiper-button-next, 
.banner-prev-next .swiper-button-prev{
  position: static;
  width: 40px;
  height: 40px;
  background-size: 30%;
  background-position: center;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 0 0 10px;
  transition: .3s;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}
.banner-prev-next .swiper-button-next:hover, 
.banner-prev-next .swiper-button-prev:hover{
  background-color: #1468b4;
  border: 1px solid #1468b4;
}
@media (max-width: 576px) {
  .banner-prev-next{
    bottom: 25px;
  }
  .banner-prev-next .swiper-button-next, 
  .banner-prev-next .swiper-button-prev{
    width: 30px;
    height: 30px;
  }
}
.loadingBg .loadinglg{
  display: none;
}

@media (max-width: 1470px) {
  .benner-txt img {
    max-width: 280px;
  }
  .benner-txt h4{
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .benner-txt img {
    max-width: 260px;
  }
  .benner-txt h4{
    font-size: 20px;
  }
  a.banner-more{
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .benner-txt img {
    max-width: 190px;
  }
  .benner-txt h4{
    font-size: 18px;
  }
  a.banner-more{
    font-size: 14px;
  }
}

.home-header .header-container #downBox ul.news-uldown{
  width: 340px;
  padding: 0;
}
.home-header .header-container #downBox ul.news-uldown li{
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  padding: 0;
  transition: 0.3s;
}
.home-header .header-container #downBox ul.news-uldown li:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: background 0.7s;
}
.home-header .header-container #downBox ul.news-uldown li a{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 15px 20px;
}
/* .home-header .header-container #downBox ul.news-uldown li:nth-child(even) a{
  align-items: flex-end;
} */
/* .home-header .header-container #downBox ul.news-uldown li:nth-child(even) .info{
  text-align: right;
} */
.home-header .header-container #downBox ul.news-uldown li .itembg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-header .header-container #downBox ul.news-uldown li .info .tit{
  color: #fff;
}
.home-header .header-container #downBox ul.news-uldown li .info{
  max-width: 100%;
}
.home-header .header-container #downBox ul.news-uldown li:hover:after{
  background: rgba(0, 0, 0, .3);
}
a.customer-center{
  display: block;
  width: 160px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: #1468b4;
  margin: 0 auto 40px;
  outline: none;
  padding: 0;
  border: 0;
  border-radius: 5px;
  transition: 0.3s;
}
a.customer-center:hover{
  box-shadow: 0 3px 10px -4px #757575;
}
@media (max-width: 575px) {
  a.customer-center{
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin: 0 auto 30px;
  }
}
.anchorBL{
  display: none;
}
p.pc-map, p.mobile-map{
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #999;
  margin: 10px 0 0;
}
p.pc-map img, p.mobile-map img{
  flex: 0 0 30px;
  max-width: 30px;
  margin: 0 15px 0 0;
}
p.mobile-map{
  display: none;
}
@media (max-width: 575px) {
  p.pc-map{
    display: none;
  }
  p.mobile-map{
    display: block;
  }
}