﻿@charset "utf-8";
/* ===================首页样式========================== */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-img {
  width: 100%;
}
.banner-img img {
  width: 100%;
  object-fit: cover;
}

.banner-cont {
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  color: #fff;
}
.banner-cont .text {
  max-width: 90%;
  line-height: 1.24;
  margin: 0 auto;
}
.banner-cont .link {
  display: flex;
  align-items: center;
  width: 152px;
  height: 44px;
  border-radius: 22px;
  background: rgba(var(--thm-base-rgb), 0.9);
  transition: all 0.4s ease;
  justify-content: center;
  font-family: 'SamsungOne700';
}
.banner-cont .link span {
  padding-right: 18px;
  background: url('../images/common/arrRW.svg') no-repeat right center/14px auto;
}
.banner-cont .link:hover {
  background: var(--thm-base);
}
.banner .swiper-pagination {
  bottom: 20px;
}
.banner .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  background: none !important;
  opacity: 0.7;
  margin: 0 !important;
  position: relative;
  border-radius: 0;
  color: #fff;
  font-size: 24px;
}
/* .banner .swiper-pagination-bullet:before {
  content: '';
  width: 0;
  height: 100%;
  background: var(--thm-base);
  position: absolute;
  top: 0;
  left: 0;
} */
.banner .swiper-pagination-bullet-active.swiper-pagination-bullet {
  font-weight: bold;
  opacity: 1;
}
.banner .swiper-pagination-bullet-active.swiper-pagination-bullet:before {
  animation: bulletLine 4s linear both 0.8s;
}
.banner .swiper-pagination-bullet-active.oneBullet:before {
  animation: bulletLine 3.8s linear both 0s;
}
.contain-title_box {
  background: url(../images/index/bannernumbg.png) top center no-repeat;
  padding-left: 100px;
  background-size: cover;
  height: 70px;
  width: 873px;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 10000;
}
@keyframes bulletLine {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* 效果 */
.banner-cont .text,
.banner-cont .link {
  opacity: 0;
}
.swiper-slide-active .banner-cont .text {
  animation: bannerUp 1s ease both 1s;
}
.swiper-slide-active .banner-cont .link {
  animation: bannerUp 1s ease both 1.1s;
}
.oneSlide .banner-cont .text {
  animation: bannerUp 1s ease both 0.4s;
}
.oneSlide .banner-cont .link {
  animation: bannerUp 1s ease both 0.5s;
}
@keyframes bannerUp {
  0% {
    opacity: 0;
    transform: translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner .swiper-slide {
  overflow: hidden;
  position: relative;
}
.banner .swiper-slide img {
  width: 100%;
  object-fit: cover;
  transform: matrix(1, 0, 0, 1, 0, 0);
  transition: all 0.4s ease 1.2s;
}
.banner .swiper-slide-active img {
  transition-delay: 0.4s !important;
  transform: matrix(1.06, 0, 0, 1.06, 0, 0);
  transition: all 4s ease;
}

.indTitle {
  width: auto;
  overflow: hidden;
}
.indTitle .name {
  background: url(../images/index/tbg.png) left no-repeat;
  background-size: 26px 18px;
  padding-left: 36px;
  font-family: 'SamsungOne700';
  line-height: 1.1;
  color: var(--thm-base);
  text-transform: uppercase;
  font-size: 30px;
  font-family: 'Times New Roman', Times, serif;
}
.indTitle .text {
  padding-left: 36px;
  line-height: 40px;
  color: #222;
  font-size: 30px;
  margin-top: 10px;
  font-weight: bold;
}

.indMore {
  align-items: center;
  color: #505050;
  font-family: 'SamsungOne700';
  border: 1px #505050 solid;
  border-radius: 22px;
  padding: 6px 20px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
  width: 140px;
  font-size: 16px;
}
.indMore span {
  transition: all 0.4s ease;
  margin-right: 8px;
}
.indMore i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #303030 url('../images/common/arrRW.svg') no-repeat center/16px auto;
  transition: all 0.4s ease;
}
.indMore:hover {
  border-color: var(--thm-base);
  text-decoration: none;
}
.indMore:hover span {
  color: var(--thm-base);
}
.indMore:hover i {
  background-color: var(--thm-base);
}

.indMore2 {
  align-items: center;
  color: #fff;
  font-family: 'SamsungOne700';
  border: 1px var(--thm-base) solid;
  border-radius: 22px;
  padding: 6px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
  width: 140px;
  font-size: 16px;
  background: var(--thm-base);
}
.indMore2 span {
  transition: all 0.4s ease;
  margin-right: 8px;
}
.indMore2 i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: url('../images/common/arrRW.svg') no-repeat center/16px auto;
  transition: all 0.4s ease;
}
.indMore2:hover {
  border-color: var(--thm-base);
  text-decoration: none;
  background: #fff;
}
.indMore2:hover span {
  color: var(--thm-base);
}
.indMore2:hover i {
  background-color: var(--thm-base);
}

.indMore2 {
  align-items: center;
  color: #fff;
  font-family: 'SamsungOne700';
  border: 1px var(--thm-base) solid;
  border-radius: 22px;
  padding: 6px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
  width: 140px;
  font-size: 16px;
  background: var(--thm-base);
}
.indMore2 span {
  transition: all 0.4s ease;
  margin-right: 8px;
}
.indMore2 i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: url('../images/common/arrRW.svg') no-repeat center/16px auto;
  transition: all 0.4s ease;
}
.indMore2:hover {
  border-color: var(--thm-base);
  text-decoration: none;
  background: #fff;
}
.indMore2:hover span {
  color: var(--thm-base);
}
.indMore2:hover i {
  background-color: var(--thm-base);
}

.indpp-title {
  font-size: 20px;
  color: #f1f1f1;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}

.indal {
  width: 100%;
  overflow: hidden;
}
.indal-head {
  align-items: flex-end;
  justify-content: space-between;
}
.indal-list {
  width: 100%;
  margin-top: 40px;
}
.indal-list ul {
  margin-left: -8px;
  flex-wrap: nowrap;
}
.indal-list li {
  width: 110px;
  margin-left: 8px;
  position: relative;
  height: 580px;
  overflow: hidden;
}
.indal-list li img {
  position: absolute;
  height: 580px;
  left: 0;
  top: 0;
  object-fit: fill;
  max-width: none;
}
/* .indal-list li:nth-child(2), .indal-list li:nth-child(4){top: -32px;}
.indal-list li:nth-child(3){top: -60px;} */
.indal-list li.active {
  width: calc(100% - 240px);
}
.indal-list-link {
  display: block;
  width: 100%;
}
.indal-hint {
  position: absolute;
  z-index: 4;
  transition: all 0.4s ease;
  writing-mode: vertical-lr;
  writing-mode: tb-lr;
  white-space: nowrap;
  color: #fff;
  width: 32px;
  top: 32px;
  text-align: center;
  left: 50%;
  margin-left: -16px;
}
.indal-cont {
  position: absolute;
  z-index: 5;
  width: 100%;
  top: 60px;
  padding: 30px 68px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}
.indal-cont .name {
  line-height: 1.1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: 'SamsungOne700';
  display: block;
}
.indal-cont .text {
  line-height: 24px;
  margin: 22px 0 24px;
  max-width: 520px;
}
.indal-cont .link {
  font-family: 'SamsungOne700';
  pointer-events: none;
  display: inline-block;
}
.indal-cont .link p {
  display: inline-block;
  position: relative;
  padding-right: 16px;
  background: url('../images/common/arrRW.svg') no-repeat right -2px center/14px auto;
  transition: all 0.4s ease;
}
.indal-cont .link p:hover {
  color: var(--thm-base);
  background-image: url('../images/common/arrRWH.svg');
}
.indal-cont .link p::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--thm-base);
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.2s ease 0.2s;
}
.indal-cont .link p:hover::after {
  width: 100%;
  opacity: 1;
  left: 0;
  right: auto;
  transition: width 0.4s ease 0.2s, opacity 0.2s ease;
}
.indal-list-more {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 5;
}
.indal-list-more .indal-cont {
  width: 50%;
}
.indal-list-more .indal-cont:last-child {
  left: auto;
  right: 0;
}
.indal-cont .name,
.indal-cont .text,
.indal-cont .link {
  opacity: 0;
}
.indal-list li.active .indal-cont .name {
  animation: indalRun 1s ease both 0.6s;
}
.indal-list li.active .indal-cont .text {
  animation: indalRun 1s ease both 0.7s;
}
.indal-list li.active .indal-cont .link {
  animation: indalRun 1s ease both 0.8s;
  pointer-events: auto;
}
@keyframes indalRun {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.indal-list li.active .indal-hint {
  opacity: 0;
}

.indpp {
  background: url(../images/index/aboutbg.jpg) top center no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
}
.indpp .contain {
  position: relative;
}
.indpp .indTitle {
  max-width: 510px;
  position: relative;
  z-index: 4;
}
.indpp .indTitle .name {
  color: #fff;
}
.indpp .indTitle .text {
  color: #fff;
}
.indpp-wrap {
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 4;
  justify-content: space-between;
}
.indpp-content {
  width: 50%;
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
}
.indpp-content p {
  color: #fff;
  line-height: 25px;
  text-indent: 32px;
  margin-bottom: 10px;
}
.indpp-content .indMore {
  border-color: #fff;
  color: #fff;
}
.indpp-content .indMore i{
  background: var(--thm-base) url('../images/common/arrRW.svg') no-repeat center/16px auto;
}
.indpp-content .indMore:hover {
  background: #AE1027;
  color: #fff !important;
}
.indpp-content .indMore:hover i{
  background: #AE1027 url('../images/common/arrRW.svg') no-repeat center/16px auto;
}
.indpp-content .indMore:hover span {
  color: #fff !important;
}
.indpp-san {
  background: rgba(46, 104, 152, 0.8);
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.indpp-san .indpp-san-item:not(:last-child) {
  border-right: 1px rgba(255, 255, 255, 0.2) solid;
}
.indpp-san a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 20px;
}
.indpp-san a span {
  display: block;
  margin-top: 10px;
}
.indpp-num {
  width: 100%;
  margin-top: 40px;
}
.indpp-num-line {
  width: 1px;
  background: #efefef;
  margin: 0 calc(2.5% - 1px);
}
.indpp-num-items {
  width: 20%;
}
.indpp-num-items .num {
  font-family: 'SamsungOne700';
  color: #004473;
  line-height: 1;
  align-items: flex-end;
}
.indpp-num-items .num .timer {
  line-height: 1;
}
.indpp-num-items .num sub {
  font-style: normal;
  bottom: 4px;
}
.indpp-num-items .text {
  line-height: 18px;
  color: #999;
  margin-top: 14px;
}
.indpp-bg {
  position: relative;
  z-index: 1;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.indpp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 100px;
}

.indhb {
  background: #f3f3f2;
  width: 100%;
  position: relative;
}
.indhb-bg {
  width: 100%;
}
.indhb-bg img {
  width: 100%;
  object-fit: cover;
}
.indhb-play {
  width: 82px;
  height: 82px;
  cursor: pointer;
  position: absolute;
  opacity: 0.8;
  background: #fff url('../images/index/indhbplay.png') no-repeat left 55% center;
  border-radius: 50%;
  left: 50%;
  margin-left: -26px;
  top: 50%;
  margin-top: -94px;
  transition: all 0.4s ease;
}
.indhb-play:hover {
  opacity: 1;
  transform: scale(1.1);
}
.indhb-partner {
  width: 100%;
  z-index: 4;
}
.indhb-partner .contain {
  background: none;
}
.indhb-partner-name {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 154px;
  height: 136px;
  background: var(--thm-base);
  font-family: 'SamsungOne700';
  text-transform: uppercase;
}
.indhb-partner-loop {
  width: 100%;
  position: relative;
  padding: 0;
}
.indhb-partner-loop .swiper-wrapper {
  padding-bottom: 40px;
}
.indhb-partner-link {
  display: flex;
  width: 100%;
  height: 136px;
  align-items: center;
  justify-content: center;
}
.indhb-partner-link img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.4s ease;
}
.indhb-partner-link:hover img {
  transform: translateY(-6px);
}
.indhb-partner-prev,
.indhb-partner-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  top: 50%;
  margin-top: -20px;
  background: #fff url('../images/common/arrLH.svg') no-repeat center/20px auto;
  transition: all 0.4s ease;
}
.indhb-partner-prev {
  left: 50px;
}
.indhb-partner-next {
  right: 50px;
  transform: rotate(180deg);
}
.indhb-partner-prev:hover,
.indhb-partner-next:hover {
  background-color: var(--thm-base);
  background-image: url('../images/common/arrLW.svg');
}

.indcp {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.swiper-slide-active .indcp-bg-pro img {
  animation: indcpImgRun 1s ease both;
}
@keyframes indcpImgRun {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.indcp-bg-btn {
  width: 100%;
  /* position: absolute;
  z-index: 3; */
  pointer-events: none;
  bottom: 0;
  margin-top: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indcp-bg-btn .contain {
  justify-content: space-between;
}
.indcp-bg-btn .prev,
.indcp-bg-btn .next {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e5e5 url('../images/common/arrLH.svg') no-repeat center/20px auto;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.06);
}
.indcp-bg-btn .prev {
  /* position: absolute;
  left: -74px;
  top: 0; */
  margin-right: 40px;
}
.indcp-bg-btn .next {
  transform: rotate(180deg);
  /* position: absolute;
  right: -74px;
  top: 0; */
}
.indcp-bg-btn .prev:hover,
.indcp-bg-btn .next:hover {
  background-color: var(--thm-base);
  background-image: url('../images/common/arrLW.svg');
}
.indcp-head {
  position: relative;
  width: 100%;
  pointer-events: none;
}
.indcp-head .contain {
  justify-content: space-between;
  align-items: flex-start;
}
.indcp-head .indMore {
  pointer-events: auto;
}
.indcp-head-wrap {
  width: 100%;
  pointer-events: auto;
}
.indcp-head-title {
  width: 100%;
  text-align: center;
  font-family: 'SamsungOne700';
  color: var(--thm-base);
  text-transform: uppercase;
}
.indcp-head-loop {
  width: 100%;
  margin-top: 10px;
  position: relative;
}
.indcp-head-loop-link {
  display: block;
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.06);
  margin: 12px 0;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.4s ease;
  overflow: hidden;
}
.indcp-head-loop-link .name {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  transition: all 0.4s ease;
  transform: translateY(100%);
}
.indcp-head-loop-link:hover .name {
  transform: translateY(0);
}
.indcp-head-loop-link .name::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #004473;
  margin: 10px auto 0;
}
.indcp-head-loop-link .img {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
.indcp-head-loop-link .img img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.6s ease;
}
.indcp-head-loop-link:hover .name {
  color: #fff;
}
.indcp-head-loop-link:hover .img img {
  transform: scale(1.04);
}
.indcp-head-menu {
  width: 100%;
  justify-content: center;
}
.indcp-head-menu a {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.indcp-head-menu a:first-child {
  margin-left: 0;
}
.indcp-head-menu a:last-child {
  margin-right: 0;
}
.indcp-head-menu a img {
  position: absolute;
  transition: all 0.4s ease;
  top: 8px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.indcp-head-menu a img.s {
  opacity: 1;
}
.indcp-head-menu a img.h {
  opacity: 0;
}
.indcp-head-menu a.active {
  background: var(--thm-base);
}
.indcp-head-menu a.active img.s {
  opacity: 0;
}
.indcp-head-menu a.active img.h {
  opacity: 1;
}

.indys {
  background: #f5f5f5;
}
.indys-item {
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.indys-item img {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: auto;
  transition: all 0.6s ease;
}
.indys-item:hover img {
  transform: scale(1.04);
}
.indys-item-text {
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transition: all 0.4s ease;
}
.indys-item-text h2 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.indys-item-text p {
  text-align: center;
  color: #fff;
  margin-top: 10px;
  line-height: 1.7;
}
.indys-item:hover .indys-item-text {
  background: rgba(0, 0, 0, 0.6);
}

.indxw {
  width: 100%;
  position: relative;
}
.indxw .indTitle .text::after {
  background: #fff;
}
.indxw-head {
  width: 100%;
  flex-direction: row-reverse;
}
.indxw-head-cont {
  width: calc(100% - 780px);
  padding: 0 90px 40px 0;
  position: relative;
}
.indxw-head-cont::after {
  content: '';
  position: absolute;
  width: calc(100% - 90px);
  height: 1px;
  background: #e8e8e8;
  left: 0;
  bottom: 0;
}
.indxw-head-cont .indMore {
  position: absolute;
  left: 0;
  bottom: 40px;
}
.indxw-head-cont .indTitle .text {
  max-height: 80px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.indxw-head-cont .indTitle .text a {
  transition: all 0.4s ease;
}
.indxw-head-cont .indTitle .text a:hover {
  color: var(--thm-base);
}
.indxw-head-text p {
  color: #fff;
  line-height: 32px;
  height: 128px;
  overflow: hidden;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.indxw-head-hint {
  width: 100%;
}
.indxw-head-hint-li {
  width: 100%;
  font-family: 'SamsungOne700';
  margin-top: 24px;
}
.indxw-head-hint-li .name {
  color: #555;
  margin-bottom: 4px;
}
.indxw-head-hint-li .text {
  color: #888;
  line-height: 20px;
  padding-left: 22px;
  background: url('../images/index/indxwic1.png') no-repeat left center;
}
.indxw-head-hint-li:first-child {
  margin-top: 0;
}
.indxw-head-hint-li:last-child .text {
  background-image: url('../images/index/indxwic2.png');
}
.indxw-head-img {
  width: 780px;
  display: block;
  overflow: hidden;
}
.indxw-head-img img {
  width: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.indxw-head-img:hover img {
  transform: scale(1.04);
}
.indxw-loop {
  width: 100%;
  position: relative;
}
.indxw-loop .swiper-wrapper {
  padding-bottom: 40px;
}
.indxw-loop .swiper-pagination {
  bottom: 0;
  width: 200px;
  left: 0;
  text-align: left;
}
.indxw-loop .swiper-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.indxw-loop .swiper-pagination .swiper-pagination-bullet-active {
  background: #004473;
  width: 30px;
  border-radius: 4px;
}
.indxw-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.indxw-loop-nav {
  display: flex;
  align-items: flex-start;
}
.indxw-loop-nav li {
  margin-right: 20px;
}
.indxw-loop-nav li a {
  color: #333;
  display: flex;
  align-items: center;
  border: 1px #ccc solid;
  border-radius: 20px;
  padding: 5px 20px;
}
.indxw-loop-nav li a:hover{
  color: #fff;
  background: var(--thm-base);
}
.indxw-loop-nav li.active a {
  color: #fff;
  background: var(--thm-base);
}
.indxw-loop-link {
  display: block;
  width: 100%;
  position: relative;
  border: 1px #ccc solid;
}
.indxw-loop-link .img {
  width: 100%;
  overflow: hidden;
}
.indxw-loop-link .img img {
  width: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.indxw-loop-link .cont {
  background: #fff;
  position: relative;
  font-family: 'SamsungOne700';
  padding: calc(25 / 1920 * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.indxw-loop-link .name {
  color: #000;
  transition: all 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}
.indxw-loop-link .time {
  line-height: 20px;
  color: #9f9f9f;
  padding-left: 22px;
  background: url('../images/index/indxwic1.png') no-repeat left center;
  margin-bottom: 20px;
}
.indxw-loop-link .more {
  display: block;
  margin-top: 20px;
}
.indxw-loop-link .more i {
  font-style: normal;
  font-weight: 100;
  margin-left: 10px;
}
.indxw-loop-link:hover .img img {
  transform: scale(1.04);
}
.indxw-loop-link:hover .name {
  color: var(--thm-base);
}
.indxw-loop-link:hover .text {
  color: #666;
}
.indxw-loop-link:hover .more {
  color: var(--thm-base);
}
/* .indxw-loop .swiper-slide.swiper-slide-next .indxw-loop-link .cont {
  background: rgba(0, 0, 0, 0.1);
}
.indxw-loop .swiper-slide.swiper-slide-next .indxw-loop-link .cont * {
  color: #fff;
}
.indxw-loop .swiper-slide.swiper-slide-next .indxw-loop-link .more img {
  filter: drop-shadow(100px 0 #fff);
  transform: translateX(-100px);
} */
.indxw-prev,
.indxw-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f4f4f4 url('../images/common/arrLH.svg') no-repeat center/20px auto;
  position: absolute;
  z-index: 4;
  top: 95%;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.indxw-prev {
  right: 74px;
}
.indxw-next {
  transform: rotate(180deg);
  right: 0;
}
.indxw-prev:hover,
.indxw-next:hover {
  background-color: var(--thm-base);
  background-image: url('../images/common/arrLW.svg');
}
.indxw-one {
  background: #f7f7f7;
  width: 100%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.indxw-one-text-link {
  display: block;
  padding-right: 20px;
}
.indxw-one-img {
  flex: 0 0 40%;
  width: 40%;
}
.indxw-one-img img{
  height: 100%;

}
.indxw-one-text {
  padding-left: 40px;
}
.indpro {
  background: url(../images/index/pbg.png) bottom center no-repeat;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.indpro-list {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.indpro-list ul li {
  position: relative;
  float: left;
  overflow: hidden;
}
.indpro-list ul li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.indpro-list ul li:nth-of-type(1) {
  width: 49%;
  height: calc(616 / 1920 * 100vw);
  margin-right: 1%;
}
.indpro-list ul li:nth-of-type(2) {
  width: 24.5%;
  height: calc(300 / 1920 * 100vw);
  margin-bottom: 1%;
}
.indpro-list ul li:nth-of-type(3) {
  width: 24.5%;
  height: calc(300 / 1920 * 100vw);
  margin-left: 1%;
  margin-bottom: 1%;
}
.indpro-list ul li:nth-of-type(4) {
  width: 50%;
  height: calc(300 / 1920 * 100vw);
}
.indpro-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0));
  padding: 20px;
}
.indpro-hint h2 {
  color: #fff;
}
.indpro-hint p {
  margin-top: 15px;
}
.indpro-hint p span {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
}
.indpro-hint p span::after {
  background: url(../images/index/right-o.png) no-repeat right center;
  margin-left: 10px;
  content: '';
  display: block;
  height: 17px;
  width: 17px;
}
.indpro-list ul li:hover img {
  transform: scale(1.04);
}

.indbuss {
  background: url(../images/index/busbg.jpg) top center no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}
.indbuss .indTitle .name,
.indbuss .indTitle .text {
  color: #fff;
}
.indbuss .indTitle .text::after {
  background: #fff;
}

.indbuss-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
}
.indbuss-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.indbuss-list {
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 30px;
  color: #fff;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.indbuss-list-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px #fff solid;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}
.indbuss-list-img img {
  display: block;
  height: 40px;
}
.indbuss-list p {
  display: none;
  margin: 10px 0;
}
.indbuss-list a {
  display: none;
  border: 1px #fff solid;
  padding: 5px 30px;
  border-radius: 50px;
}
.indbuss-list:hover {
  background: #004473;
}
.indbuss-list:hover p,
.indbuss-list:hover a {
  display: flex;
  align-items: center;
  color: #fff;
}
.indbuss-list:hover a span {
  margin-right: 10px;
}
.indbuss-list:hover .indbuss-list-img {
  background: #fff;
}
.indbuss-list:hover .indbuss-list-img img {
  filter: drop-shadow(100px 0 #004473);
  transform: translateX(-100px);
}
.indbuss-intro {
  margin-top: 40px;
}
.indbuss-intro-item {
  display: none;
  color: #fff;
  line-height: 1.7;
}
.indbuss-intro-item a {
  background: #d71e06;
  display: flex;
  align-items: center;
  margin-top: 60px;
  border-radius: 50px;
  border: 1px #d71e06 solid;
  padding: 5px 30px;
  width: 160px;
}
.indbuss-intro-item a span {
  margin-right: 15px;
}
.indbuss-intro-item a:hover {
  color: #fff;
}

.indcase {
  background: #f6f6f6;
  width: 100%;
  overflow: hidden;
}
.indcase-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.indcase-left {
  width: 48%;
  overflow: hidden;
}
.indcase-right {
  width: 56%;
  margin-right: -10%;
}

.indhb-case-prev,
.indhb-case-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  bottom: 0%;
  background: #fff url('../images/common/arrLH.svg') no-repeat center/20px auto;
  transition: all 0.4s ease;
  z-index: 1000;
}
.indhb-case-prev {
  right: 60px;
}
.indhb-case-next {
  right: 0px;
  transform: rotate(180deg);
}
.indhb-case-prev:hover,
.indhb-case-next:hover {
  background-color: var(--thm-base);
  background-image: url('../images/common/arrLW.svg');
}

.indhb-caser-prev,
.indhb-caser-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  top: 50%;
  margin-top: -20px;
  background: #fff url('../images/common/arrLH.svg') no-repeat center/20px auto;
  transition: all 0.4s ease;
  z-index: 1000;
}
.indhb-caser-prev {
  left: 50px;
}
.indhb-caser-next {
  right: 50px;
  transform: rotate(180deg);
}
.indhb-caser-prev:hover,
.indhb-caser-next:hover {
  background-color: var(--thm-base);
  background-image: url('../images/common/arrLW.svg');
}

.indcase-left-item-text h2 {
  color: #000;
}
.indcase-left-item-text h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: #004473;
  margin: 20px 0 40px;
}

.tab .tab-head strong {
  float: left;
  padding: 8px 20px 0 0;
  line-height: 20px;
}
.tab .tab-more {
  float: right;
  margin: 10px 0 0 10px;
  font-size: 12px;
}
.tab .tab-nav {
  border-top: solid 1px #ebebeb;
  list-style: none;
  overflow: hidden;
}
.tab .tab-nav li {
  display: block;
  width: 20%;
  float: left;
  border-bottom: 2px solid transparent;
}
.tab .tab-nav li a {
  color: #333;
  padding: 8px 20px;
  display: block;
  line-height: 20px;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
/*  border-right: solid 1px #ebebeb;*/
  margin: 10px 0;
}
.tab .tab-nav li a i {
  display: block;
  width: 100px;
  margin: 0 auto;
  overflow: hidden;
}
.tab .tab-nav li a span {
  display: block;
  margin-top: 15px;
}
.tab .tab-nav .active {
  background-color: transparent;
  color: #ae0e28;
  border-bottom: 2px #ae0e28 solid;
}
.tab .tab-nav .active a {
  cursor: default;
  color: #ae0e28;
}
.tab .tab-nav .active a img {
  filter: drop-shadow(100px 0 #ae0e28);
  transform: translateX(-100px);
}
.tab .tab-body {
  border-top: solid 1px #ebebeb;
  margin-top: -1px;
  padding-top: 15px;
}
.tab .tab-body-bordered {
  border: solid 1px #ebebeb;
  border-radius: 4px;
  padding: 15px;
}
.tab .tab-body .tab-panel {
  display: none;
}
.tab .tab-body .active {
  display: block;
}
.tab.tab-small strong {
  padding-top: 3px;
}
.tab.tab-small .tab-more {
  margin: 5px 0 0 10px;
}
.tab.tab-small li a {
  padding: 3px 10px;
}
.caselist {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.caselist .item .padding-large {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.caselist .item .padding-large a img.img-responsive {
  width: 100%;
  height: 70%;
  overflow: hidden;
  object-fit: cover;
  transition: all 0.6s ease;
}
.caselist .item .padding-large:hover a img {
  transform: scale(1.04);
}
.caselist .item .padding-large .media-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}
.caselist .item .padding-large .media-body h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 50px;
  color: #333;
  padding: 10px;
}
.caselist .item .padding-large .media-body h2 a {
  display: block;
  width: calc(100% - 30px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.caselist .item:last-child {
  background: #034d79;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.caselist .item:last-child a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.caselist .item:last-child a span {
  display: block;
  margin-top: 15px;
}
.caselist .item .padding-large:hover .media-body h2 {
  color: #034d79;
}
.caselist .item .padding-large:hover .media-body img {
  filter: drop-shadow(-100px 0 #034d79);
  transform: translateX(100px);
}
.media-intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
}
.caselist .item .padding-large:hover .media-intro {
  transition: all 0.6s ease;
  transform: translateY(0);
}
.media-intro a {
  background: rgba(0, 129, 54, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #fff;
}
.media-intro a i {
  font-style: normal;
}
.media-intro a div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 24px;
  padding: 0 20px;
}
.media-intro a div span {
  display: block;
  margin-top: 20px;
}
.media-intro a span.more {
  display: block;
  border-top: 1px solid #fff;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 15px;
}
.indservice {
  background: #eef2f6;
}
.indservice-item a {
  position: relative;
  display: block;
}
.indservice-item__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.indservice-item__hover p {
  margin-top: 15px;
  color: #fff;
}
.indservice-item:hover .indservice-item__hover {
  background: rgba(174, 14, 40, 0.8);
  transition: all 0.4s ease;
}
/* -------------------------PC端--------------------------- */
@media all and (max-width: 1700px) {
  /* 1600 × (900) */
  .indal-list li img,
  .indal-list li {
    height: 510px;
  }
  .indpp-num-line {
    margin: 0 40px;
  }
  .indxw-head-cont {
    padding: 0 60px 40px 0;
  }
  .indxw-head-cont::after {
    width: calc(100% - 60px);
  }
}

@media all and (max-width: 1599px) {
  /* 1440 × (700)  */
  .indal-list li img,
  .indal-list li {
    height: 440px;
  }
  .indal-cont {
    top: 48px;
    padding: 0 50px;
  }
  .indpp .indTitle {
    max-width: 460px;
  }
  .indpp-num-line {
    margin: 0 30px;
  }
  .indpp-num-items {
    width: 160px;
  }
  .indhb-partner-name,
  .indhb-partner-link {
    height: 110px;
  }
  .indhb-play {
    margin-top: -80px;
  }
  .indcp-head-wrap {
    width: 400px;
    padding: 40px 20px;
  }
  .indcp-head-loop-link .img {
    height: 340px;
  }
  .indcp-bg-big {
    height: 500px;
  }
  .indcp-bg-pro-img {
    width: calc(100% - 440px);
  }
  .indxw-head-img {
    width: 640px;
  }
  .indxw-head-cont {
    width: calc(100% - 640px);
    padding: 0 50px 30px 0;
  }
  .indxw-head-hint-li {
    margin-top: 16px;
  }
  .indTitle .text {
    line-height: 32px;
  }
  .indxw-head-cont .indTitle .text {
    max-height: 64px;
  }
  .indxw-head-cont .indMore {
    bottom: 30px;
  }
  .indxw-head-cont::after {
    width: calc(100% - 50px);
  }
}

@media all and (max-width: 1439px) {
  /* 1360 */
}

@media all and (max-width: 1359px) {
  /* 1280 */
}

@media all and (max-width: 1279px) {
  /* 1152 × (700) */
  .indxw-one-text{
    padding:20px 0 20px 20px
  }
  .indal-list li {
    width: 80px;
  }
  .indal-list li.active {
    width: calc(100% - 360px);
  }
  .indal-list li img,
  .indal-list li {
    height: 364px;
  }
  .indal-hint {
    top: 20px;
  }
  .indal-cont {
    top: 36px;
    padding: 0 32px;
  }
  .indal-cont .text {
    margin: 12px 0 16px;
  }
  .indpp-bg {
    width: 42%;
  }
  .indpp-num-line {
    margin: 0 20px;
  }
  .indhb-partner-name,
  .indhb-partner-link {
    height: 100px;
  }
  .indhb-partner-name {
    width: 140px;
  }
  .indhb-partner-loop {
    padding: 0 60px;
  }
  .indhb-partner-prev {
    left: 10px;
  }
  .indhb-partner-next {
    right: 10px;
  }
  .indcp-bg-pro .contain {
    padding: 0 80px;
  }
  .indcp-head .contain {
    padding: 0 0 0 80px;
  }
  .indcp-head-wrap {
    width: 320px;
  }
  .indcp-head-menu a {
    margin: 0 8px;
  }
  .indcp-head-loop-link .img {
    height: 280px;
  }
  .indcp-bg-pro-img {
    width: calc(100% - 360px);
  }
  .indcp-bg-big {
    height: 466px;
  }
  .indxw-head-img {
    width: 500px;
  }
  .indxw-head-cont {
    width: calc(100% - 500px);
    padding: 0 40px 20px 0;
  }
  .indxw-head-hint {
    margin-top: 16px;
  }
  .indxw-head-hint-li {
    margin-top: 8px;
  }
  .indxw-head-cont .indMore {
    bottom: 20px;
  }
  .indxw-head-hint-li .name {
    margin-bottom: 0;
  }
  .indxw-loop-link .cont {
    padding-top: 20px;
  }
  .indxw-prev,
  .indxw-next {
    margin-top: -64px;
  }
  .indxw-head-cont::after {
    width: calc(100% - 40px);
  }
}

@media all and (max-width: 1151px) {
  /* 1024 */
.contain-title_box{display:none;}
  .indxw-prev,
  .indxw-next {
    display: none;
  }
  .indxw-loop .swiper-wrapper {
    padding-bottom: 50px;
  }
  .indxw-loop .swiper-pagination {
    display: block;
  }
  .indxw-loop .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e8e8e8;
    opacity: 1;
    margin: 0 8px !important;
  }
  .indxw-loop .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--thm-base);
  }
}

/* ------------------------手机端-------------------------- */
@media all and (max-width: 1000px) {
  /* 平板设备 720 适配 */
  .indal-hint {
    display: none;
  }
  .indal-cont .name,
  .indal-cont .text,
  .indal-cont .link {
    opacity: 1;
    animation: none !important;
  }
  .indal-list ul {
    margin-left: 0;
    margin-top: -12px;
    flex-wrap: wrap;
  }
  .indal-list li {
    margin-top: 12px;
    margin-left: 0;
    top: 0 !important;
  }
  .indal-list li img,
  .indal-list li {
    height: auto;
    position: relative;
    width: 100% !important;
  }
  .indal-list {
    margin-top: 50px;
  }
  .indpp-num {
    width: 100%;
    margin-bottom: 28px;
  }
  .indpp-num-line {
    margin: 0 10px;
  }
  .indcp-bg-pro {
    display: none;
  }
  .indcp-head-wrap {
    width: 100%;
  }
  .indcp-head .contain {
    padding: 0 80px;
    position: relative;
  }
  .indcp-head .indMore {
    position: absolute;
    top: 36px;
    right: 100px;
  }
  .indcp-bg-big {
    height: 440px;
  }
  .indcp-head {
    top: 70px;
  }
  .indcp-bg-wrap {
    padding-top: 100px;
  }
  .indxw-head-img {
    width: 100%;
  }
  .indxw-head-cont .indMore {
    position: static;
    margin-top: 20px;
  }
  .indxw-head-cont {
    width: 100%;
    padding: 28px 0;
  }
  .indcp-bg-btn {
    margin-top: -40px;
  }
  .indxw-head-cont::after {
    width: 100%;
  }
  .indal-list li::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
  }
  .indal-cont .link {
    pointer-events: auto;
  }
  .indxw-head-text p {
    line-height: 28px;
    height: 112px;
  }
  .indpp-content,
  .indpp-bg {
    width: 100%;
  }
  .indpro-hint {
    padding: 10px;
  }
  .indpro-hint p {
    margin-top: 5px;
  }
  .indpro-list ul li:nth-of-type(1) {
    width: 100%;
    height: calc(416 / 1000 * 100vw);
    margin-bottom: 1%;
  }
  .indpro-list ul li:nth-of-type(2) {
    width: 49.5%;
    height: calc(300 / 1000 * 100vw);
    margin-bottom: 1%;
  }
  .indpro-list ul li:nth-of-type(3) {
    width: 49.5%;
    height: calc(300 / 1000 * 100vw);
    margin-left: 1%;
    margin-bottom: 1%;
  }
  .indpro-list ul li:nth-of-type(4) {
    width: 100%;
    height: calc(300 / 1000 * 100vw);
  }
  .indbuss-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .indbuss-intro {
    margin-top: 0;
  }
}
@media all and (max-width: 640px) {
  /* 移动终端以上 360 适配 */
  .tab .tab-nav li{
    width: 33.33333%;
  }
  .tab .tab-nav li span{
    height:40px
  }
  .tab .tab-nav li a i{
    width:100%
  }
  .indcase-wrap {
    flex-wrap: wrap;
  }
  .indcase-left,
  .indcase-right {
    width: 100%;
  }
  .indcase-right {
    margin-top: 20px;
  }
  .caselist {
    grid-template-columns: repeat(2, 1fr);
  }
  .caselist .item .padding-large a img.img-responsive {
    height: auto;
  }
  .caselist .item .padding-large .media-body h2 {
    padding: 0 10px;
    line-height: 35px;
  }
  .indpp-san {
    margin-top: 20px;
  }
  .tab .tab-nav li a i img {
    height: 32px;
  }
  .tab .tab-nav li a {
    padding: 4px 0;
  }
  .tab .tab-nav li a span {
    font-size: 16px;
    padding: 0 10px;
  }
  .indTitle .text {
    line-height: 24px;
    font-size: 20px;
    margin-top: 6px;
  }
  .indal .indTitle {
    width: 100%;
    margin-bottom: 14px;
  }
  .banner-cont .link {
    width: 136px;
    height: 40px;
  }
  .banner .swiper-pagination {
    bottom: 18px;
  }
  .banner .swiper-pagination-bullet {
    width: 30px;
    margin: 0 7px !important;
  }
  .indxw-top {
    display: block;
  }
  .indxw-loop-nav {
    display: flex;
    width: 100%;
    margin-top: 20px;
  }
  .indxw-one-img {
    flex: 0 0 100%;
    width: 100%;
  }
  .indxw-one {
    flex-wrap: wrap;
  }
  .indTitle .name {
    font-size: 24px;
  }
  @keyframes bannerUp {
    0% {
      opacity: 0;
      transform: translateY(60px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .indal-list {
    margin-top: 24px;
  }
  .indal-cont .text {
    margin: 6px 0 8px;
    line-height: 20px;
    height: 40px;
    display: none;
  }
  .indal-cont .link {
    margin-top: 8px;
  }
  .indal-cont {
    top: 24px;
    padding: 0 20px;
  }
  /* .indpp{padding-top: 10px;} */
  .indpp-content {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
  }
  .indpp-num-line {
    display: none;
  }
  .indpp-num-items {
    width: 50%;
    margin-top: 20px;
  }
  .indpp-num-items .text {
    margin-top: 6px;
  }
  .indpp-wrap {
    margin-top: 2px;
  }
  .indpp-num {
    margin-bottom: 22px;
  }
  .indpp-bg {
    width: 100%;
  }
  .indhb-partner {
    position: static;
  }
  .indhb-bg img {
    min-height: 200px;
  }
  .indhb-play {
    width: 44px;
    height: 44px;
    margin-left: -22px;
    margin-top: -52px;
  }
  .indhb-partner .contain {
    width: 100%;
  }
  .indhb-partner-name,
  .indhb-partner-link {
    height: 60px;
  }
  .indhb-partner-name {
    width: 102px;
    font-size: 12px;
  }
  .indhb-partner-loop {
    width: 100%;
    padding: 0;
  }
  .indhb-partner-prev,
  .indhb-partner-next {
    width: 32px;
    height: 32px;
    margin-top: -16px;
    background-size: 16px;
  }
  .indhb-partner-prev {
    left: 2px;
  }
  .indhb-partner-next {
    right: 2px;
  }
  .indhb-partner-link img {
    max-height: auto;
    max-width: 88%;
    object-fit: contain;
  }
  .indcp-bg-btn .prev,
  .indcp-bg-btn .next {
    width: 40px;
    height: 40px;
    background-size: 18px;
    display: none;
  }
  .indcp-head .contain {
    padding: 0;
  }
  .indcp-head-wrap {
    padding: 28px 15px;
  }
  .indcp-head {
    top: 36px;
  }
  .indcp-head-title {
    text-align: left;
  }
  .indcp-head .indMore {
    top: 26px;
    right: 14px;
  }
  .indcp-head-loop-link .img {
    height: 260px;
  }
  .indcp-bg-wrap {
    padding-top: 60px;
  }
  .indcp-bg-big {
    height: 394px;
  }
  .indxw-head-cont {
    padding: 24px 0;
  }
  .indxw-head-cont .indTitle .text {
    max-height: 48px;
  }
  .indxw-head-hint-li .text {
    font-size: 12px;
  }
  .indxw-loop-link .time {
    margin-top: 12px;
  }
  .indxw-loop .swiper-wrapper {
    padding-bottom: 30px;
  }
  .indxw-loop .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
  }
  .indxw-head-text p {
    line-height: 24px;
    height: 96px;
  }
  .footcode > div {
    justify-content: center !important;
    text-align: center !important;
  }
  .footcode .Footer-drop {
    display: block !important;
    margin: 0 5px;
  }
  .indxw-one-text {
    padding: 20px;
  }
  .indxw-one-text-link {
    padding: 0;
  }
  .indxw-one {
    margin-bottom: 20px;
  }
}
