:root {
  /* #96CE29 */
  --main-color: #d31638; /**主题色**/
  --subtopic-color: #a71666;
  /* #44c553 按钮 */
  --btn-color: #a71666;
  /* 伪类背景 #3558EF */
  --pseudo-color: #a71666;
}

/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}
html body {
  padding: 0;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: unset;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
video {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80vh;
}
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 16.25rem;
  margin: 0 auto;
}
.line1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.overflow-auto {
  height: 55rem !important;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}
/* 设置滚动条的样式 */
.overflow-auto::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 滚动条滑块 */
.overflow-auto::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
}
/* 解决修改滚动条底部不对齐问题 */
.overflow-auto::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.swiper,
.product-service-swiper-pagination,
.customer-case-swiper-pagination,
.news-swiper-pagination,
.new-info-pagination {
  --swiper-pagination-color: var(--main-color);
}
.progress-bar-active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background: var(--main-color);
  height: 0.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.progress-bar-active:hover::before,
.industry-scheme-active::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition-delay: 0s;
}
/* @media (min-width: 2133px) {
  body,
  html {
    font-size: calc(100vw / 125);
  }
  .container {
    padding: 0 17rem;
  }
}
@media (min-width: 2400px) {
  body,
  html {
    font-size: calc(100vw / 130);
  }
}
@media (min-width: 2560px) {
  body,
  html {
    font-size: calc(100vw / 132);
  }
}
@media (min-width: 2880px) {
  body,
  html {
    font-size: calc(100vw / 125);
  }
}
@media (min-width: 3840px) {
  body,
  html {
    font-size: calc(100vw / 125);
  }
}
@media (min-width: 5760px) {
  body,
  html {
    font-size: calc(100vw / 125);
  }
}
@media (min-width: 7680px) {
  body,
  html {
    font-size: calc(100vw / 125);
  }
} */
@media (max-width: 1745.5px) {
  body,
  html {
    font-size: calc(100vw / 120);
  }
  .container {
    padding: 0 14rem;
  }
}
@media (max-width: 1660px) {
  .container {
    padding: 0 10rem;
  }
}
@media (max-width: 1440px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
  .container {
    padding: 0 8rem;
  }
}

@media (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 95);
  }
}
@media (max-width: 1280px) {
  body,
  html {
    font-size: calc(100vw / 90);
  }
}
@media (max-width: 990px) {
  body,
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 15px;
  }
}
/* 弹出框 */
/* 淡入效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 淡出效果 */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.modal.fade .modal-dialog {
  /* 初始状态设置为完全透明 */
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.15s ease-out;
}

.modal.fade.show .modal-dialog {
  opacity: 1;
}

/* 背景淡出效果 */
.modal-content {
  border-radius: 1.3rem;
}
.modal-backdrop .fade {
  opacity: 0;
  transition: opacity 0.1s ease-out;
}

.modal-backdrop.show {
  opacity: 0.5;
}
.modal .modal-header {
  align-items: center;
  border: unset;
  padding: 1rem 2rem;
}
.modal .modal-header img {
  width: 12%;
}
.modal .modal-body {
  padding: 0 2rem 2rem;
}
.modal-body-title {
  font-size: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
}
.modal-body-subtitle {
  color: var(--subtopic-color);
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.8;
}
.modal-body-contact {
  display: flex;
  align-items: center;
}
.modal-body {
  display: flex;
  flex-wrap: wrap;
}
.modal-body-left {
  width: 60%;
  line-height: 3.5rem;
}
.modal-body-right {
  width: 40%;
  text-align: center;
}
/* 解决模态框弹出产生的内右边距 */
.modal-open {
  padding-right: 0px !important;
  overflow: auto;
}
.modal-body-contact .contact {
  font-size: 1.5rem;
  vertical-align: middle;
  font-style: italic;
  font-weight: 700;
  color: #333;
  padding-left: 8px;
}
.modal-body-right img {
  width: 85%;
  border-radius: 5%;
}
.modal-body-right .modal-body-right-text {
  color: #283d57;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  margin-top: 4px;
  text-align: center;
  display: block;
}

/* 导航栏 */
.navbar {
  padding: 0.5rem 1rem !important;
}
.topnav .container a img {
  width: 3rem;
}
#navbarColor02.show-background {
  background-color: unset;
}
#navbarColor02 li {
  position: relative;
  font-size: 1.2rem;
}
#navbarColor02 .navbar-active-color1 {
  color: var(--main-color);
}
#navbarColor02 .navbar-active-color {
  color: var(--main-color);
}
#navbarColor02 .navbar-active-progress::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background: var(--main-color);
  height: 2px;
  transition: all 0.2s;
  -webkit-transform: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
}
#navbarColor02 .navbar-active::before {
  width: 100%;
  transition: all 0.2s;
  -webkit-transform: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition-delay: 0.2s;
}
#navbarColor02 .navbar-active-progress1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background: var(--main-color);
  height: 2px;
  transition: all 0.2s;
  -webkit-transform: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
}
#navbarColor02 .navbar-active1::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  #navbarColor02.show-background {
    background-color: #000;
    opacity: 0.8;
  }
}
@media (max-width: 991.98px) {
  #navbarColor02.show-background {
    background-color: #000;
    opacity: 0.8;
  }
}
.nav-item .btn-subscribe {
  width: 5rem;
  color: #fff;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  transition: background-color 1s ease, border-color 0.3s ease;
}
.nav-item .btn-subscribe:hover {
  background-color: var(--btn-color);
  border: 1px solid var(--btn-color);
}
/* 轮播图 */
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.swiper-slide .swiper-img {
  display: none;
}
.h100 {
  height: 100vh;
}
.w100 {
  width: 100%;
}
@keyframes dtfs {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes banner-4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes img11 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes img12 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes img13 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes img14 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5px, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.banner-img {
  /* animation: dtfs 10s infinite linear; */
}
.banner-0 .img-svg-0 {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  right: 10rem;
}
.banner-0 .banner-00 {
  width: 49.6rem;
}
.banner-0 .banner-02 {
  width: 36.5rem;
}
.banner-0 .banner-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  animation: banner-4 2s infinite;
}
.swiper-slide .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 9;
  width: 90%;
}
.hover .p1 {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 4.5rem;
  text-transform: uppercase;
  color: #ffffff;
}
.hover .p2 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  margin: 0.25rem 0 1.25rem;
  color: #ffffff;
}

.hover-btn .more {
  padding: 0 3.125rem;
  color: #fff;
  font-size: 1rem;
  line-height: 3.4375rem;
  border-radius: 3.125rem;
  border: 1px solid #fff;
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: background-color 1s ease, border-color 0.3s ease;
}
.hover-btn .more:hover {
  color: #fff;
  background-color: var(--btn-color);
  border: 1px solid rgba(255, 255, 255, 0);
}
/* 第二页 */
.banner-0 .imgwidth {
  width: 5rem;
}
.banner-0 .banner-11 {
  position: absolute;
  top: 0%;
  left: 71.2%;
  animation: img11 2s infinite;
}
.banner-0 .banner-12 {
  position: absolute;
  top: 49%;
  right: 5%;
  animation: img12 2s infinite;
}
.banner-0 .banner-13 {
  position: absolute;
  top: 47%;
  right: 23%;
  animation: img12 2s infinite;
}
.banner-0 .banner-14 {
  position: absolute;
  top: 69%;
  left: 15%;
  animation: img13 2s infinite;
}
.banner-0 .banner-15 {
  position: absolute;
  top: 43%;
  left: 0%;
  animation: img13 2s infinite;
}
.banner-0 .banner-16 {
  position: absolute;
  top: 10%;
  left: 5%;
  animation: img14 2s infinite;
}
/* 第三页 */
.img-svg-0 .banner-03 {
  animation: banner3 2s infinite;
}
@keyframes banner3 {
  0% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.98);
  }
}
.img-svg-0 .img-03 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}
.img-svg-0 .img-03-1,
.img-svg-0 .img-03-2,
.img-svg-0 .img-03-3,
.img-svg-0 .img-03-4 {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 10.5rem;
  z-index: 9;
  animation: shangxia 2s infinite;
}
@keyframes shangxia {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.img-svg-0 .img-03-2 {
  top: 23%;
  z-index: 2;
}
.img-svg-0 .img-03-3 {
  top: 29%;
  z-index: 2;
}
.img-svg-0 .img-03-4 {
  width: 60%;
  top: 40%;
  animation: none;
  z-index: 0;
}
/* 第四页 */
.img-svg-0 .img-04-1 {
  top: 8%;
  left: 15%;
  width: 16%;
  height: auto;
}
.img-svg-0 .img-04-2 {
  top: 47%;
  left: 1%;
  width: 16%;
  height: auto;
}
.img-svg-0 .img-04-3 {
  top: 61%;
  left: 65%;
  width: 16%;
  height: auto;
}
/* 产品服务 */
.product-service {
  position: relative;
  background-image: url(../imgs/product/product-bg.jpg);
  background-size: cover;
  z-index: 4;
  padding-top: 6.75rem;
  overflow: hidden;
}

.product-service-title {
  position: relative;
}
.subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}
.product-service-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4.1875rem;
  height: 3px;
  background-color: var(--pseudo-color);
}
.product-service .product-service-bg {
  height: 18.5rem;
  background: url(../imgs/product/02.jpg) no-repeat;
  background-size: cover;
  transition: height 0.3s ease-in-out;
}
.product-service .product-service-bg-active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background: var(--main-color);
  height: 0.625rem;
}
.product-service .product-service-bg-active:hover::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition-delay: 0.3s;
}
.product-service .product-service-bg-active:hover {
  width: 100%;
  height: 35rem;
}
.product-content {
  height: 35rem;
  z-index: 9;
  padding: unset !important;
}
.product-box {
  padding: 5rem 0 0;
}
.product-name {
  font-size: 2.75rem;
  line-height: 3.4375rem;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}
.product-service .product-service-bg-active:hover .product-name {
  color: var(--main-color);
}
.product-text {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.1875rem;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
.product-height {
  max-height: 1.5rem;
  overflow: hidden;
  margin: 1.125rem 3.75rem 0;
  transition: max-height 0.3s ease-in-out;
}
.product-service-content {
  color: #ffffff;
  text-align: justify;
  text-align-last: center;
  margin-bottom: 1.3125rem;
  line-height: 1.5rem;
}
.circle-btn {
  color: #000;
  margin: 0 auto;
  margin-top: 3rem;
  width: 3.875rem;
  height: 3.875rem;
  line-height: 3.875rem;
  border-radius: 50%;
  background: #fff none repeat scroll 0 0;
}
.circle-btn:hover {
  background: var(--main-color) none repeat scroll 0 0;
}
.product-box:hover .product-height {
  max-height: 15rem;
}
.product-service::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 7rem);
  height: 50%;
  border-radius: 0 0 9.375rem 0;
  background: var(--pseudo-color);
  z-index: -1;
}
.product-service .hover,
.customer-case .hover,
.news-media .hover,
.about-us .hover {
  text-transform: uppercase;
  background-color: transparent;
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.4);
  color: transparent;
  font-weight: 500;
  font-size: 8rem;
  line-height: 1;
  z-index: -1;
  opacity: 0.4;
  letter-spacing: 7px;
  position: absolute;
  bottom: 1.5rem;
  left: 7.9rem;
  width: 100%;
}
.product-service-swiper-pagination {
  display: none;
  text-align: center;
}
/* 行业方案 */

.industry-scheme {
  position: relative;
  height: 85vh;
}
.industry-scheme-img {
  height: 100%;
  width: 100%;
  display: flex;
  /* justify-content: flex-end; */
  background-size: cover !important;
}
.industry-scheme-img .img-right {
  width: 50%;
  padding: 5rem 0 17rem;
  background: rgba(255, 255, 255, 0.88);
}
.industry-scheme-img .img-right .content {
  padding: 0 10.25rem;
}
.industry-scheme-title {
  position: relative;
}
.industry-scheme-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 4.1875rem;
  height: 3px;
  background-color: var(--pseudo-color);
}
.center-btn{
  margin: auto;
  /* transform: translateY(50%); */
}
.hover-btn .industry-scheme-btn {
  border: 1px solid rgb(000, 000, 000, 0.5);
  color: rgb(000, 000, 000, 0.8);
  background-color:rgb(255, 255, 255, 0.8);
}
.industry-scheme .img-right-name {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.125rem;
  text-transform: uppercase;
  color: #444444;
}
.industry-scheme .img-right-list {
  margin: 5px 0 2.25rem;
  padding: 0;
  width: calc(100% - 12rem);
}
.industry-scheme .img-right-list li {
  font-size: 1.2rem;
  line-height: 3rem;
  text-transform: uppercase;
  color: #666666;
  position: relative;
  padding-left: 1.25rem;
}
.industry-scheme .img-right-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666666;
  text-align: center;
}
.industry-scheme-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.industry-scheme-hover ul {
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}
.industry-scheme-thumbnail {
  width: 20%;
  float: left;
  padding: 1.5rem 0 2.25rem;
  background: rgba(0, 0, 0, 0.6);
  border-right: 1px solid rgba(80, 76, 76, 0.6);
  position: relative;
}
.industry-scheme-thumbnail-icon {
  text-align: center;
}
.industry-scheme-thumbnail-icon .icon-1 {
  height: 3rem;
  object-fit: contain;
}
.industry-scheme-thumbnail-icon .icon-2 {
  height: 3rem;
  margin: 0 auto;
  object-fit: contain;
  display: none;
}
.industry-scheme-thumbnail-name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.625rem;
  text-align: center;
  text-transform: uppercase;
  padding-top: 1.25rem;
  color: #fff;
}
.industry-scheme-thumbnail-enname {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  color: var(--main-color);
  max-height: 0;
  overflow: hidden;
}
.industry-scheme-active {
  background-color: #fff;
  padding: 2.4375rem 0 3.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.95);
}
.industry-scheme-active .industry-scheme-thumbnail-name,
.industry-scheme-thumbnail:hover .industry-scheme-thumbnail-name {
  color: var(--main-color);
  padding-top: 0.5rem;
}
.industry-scheme-active .icon-1,
.industry-scheme-thumbnail:hover .icon-1 {
  display: none;
}
.industry-scheme-active .icon-2,
.industry-scheme-thumbnail:hover .icon-2 {
  display: block;
}
.industry-scheme-active .industry-scheme-thumbnail-enname,
.industry-scheme-thumbnail:hover .industry-scheme-thumbnail-enname {
  transition: max-height 0.25s ease-in;
  overflow: unset;
}
/* 行业方案手机端 */
.industry-scheme-mobile {
  position: relative;
  z-index: 4;
  padding-top: 3rem;
  overflow: hidden;
  display: none;
}
.industry-scheme-swiper-pagination {
  display: none;
  text-align: center;
}

/* 客户案例 */
.customer-case {
  position: relative;
  padding-top: 6rem;
  background-color: #f7f9fb;
}
.customer-case::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 75%;
  background: var(--pseudo-color);
  z-index: 0;
  border-radius: 9.375rem 0px 0px 0px;
}
.customer-case .top .container {
  padding-right: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.customer-case .hover {
  width: 50%;
  position: static;
  text-align: right;
  font-size: 12rem;
  z-index: 1;
}
.customer-case .hover-btn {
  margin-top: 2rem;
}
.customer-case .box {
  background: #fff;
  padding:  3rem ;
  border-radius: 0.5rem;
  position: relative;
  z-index: 1;
}
.customer-case .box-logo {
  border: 1px solid #fff;
  height: 8.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.customer-case .box-logo img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain; /* 保持图像的宽高比，同时确保图像完全可见 */
}
.customer-case .box-logo:hover {
  border: 1px solid var(--main-color);
  border-radius: 0.5rem;
}
.customer-case-swiper{
  padding: 1px;
}
.customer-case-swiper-pagination {
  display: none;
  text-align: center;
}

/* 新闻资讯 */
.news-media {
  background: url(../imgs/news/new-bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
  padding: 5.3125rem 0 5.9375rem;
}
.news-media .hover-btn {
  margin-top: 0.5rem;
  text-align: end;
}
.news-media .hover {
  -webkit-text-stroke: 5px rgba(0, 0, 0, 0.1);
  font-size: 10.625rem;
  position: absolute;
  top: calc(50% + 2.5rem);
  transform: translateY(-50%);
  left: 0;
  -webkit-writing-mode: vertical-lr;
  opacity: 1;
  writing-mode: vertical-lr;
  z-index: 1;
}
.news-box {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
.news-box-left {
  padding: 3.75rem 3.4375rem 1.75rem;
  border-radius: 0px 3.75rem 0px 0px;
  width: 50%;
  background: #fff;
}
.news-media-swiper-name {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 2rem;
  text-transform: uppercase;
  color: #444444;
}
.news-box-left:hover .news-media-swiper-name {
  color: var(--main-color);
}
.news-media-swiper-time {
  font-size: 1rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  margin: 0.375rem 0 0.8125rem;
}
.news-media-swiper-img {
  overflow: hidden;
}
.news-media-swiper-img img {
  transition: transform 0.5s ease;
}
.news-box-left:hover .news-media-swiper-img img {
  transform: scale(1.1);
}
.news-box-right {
  width: 50%;
}
.news-box-right li {
  position: relative;
  padding: 1.25rem 1.5rem;
}
.news-box-right li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 1.875rem);
  height: 1px;
  background: #bcbcbc;
}
.news-box-right li::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  top: -0.3125rem;
  background: var(--pseudo-color);
}
.news-box-right li:hover::after {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  transition-delay: 0s;
}
.news-box-right-name {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-align: justify;
  text-transform: uppercase;
  color: #444444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.news-box-right li:hover .news-box-right-name {
  color: var(--pseudo-color);
}
.news-box-right-text {
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: justify;
  text-transform: uppercase;
  margin: 0.4375rem 0 0.75rem;
  color: #787777;
}
.news-box-right-time {
  font-size: 1rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.3);
}
.news-box-right-icon {
  display: block;
  color: #53504f;
  font-size: 1.5rem;
}

/* 关于我们 */
.about-us {
  background: url(../imgs/about/about-bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
  padding: 7rem 0 3rem;
}
.about-us-box {
  position: relative;
}
.about-us .hover {
  z-index: 0;
  top: 0;
  left: 50%;
}
.about-us .industry-scheme-title {
  color: #fff;
}
.about-us .industry-scheme-title::before {
  background-color: #fff;
}
.about-us .subtitle {
  color: #fff;
}
.about-us .main-text {
  font-size: 1rem;
  line-height: 1.875rem;
  text-align: justify;
  color: #ffffff;
  margin: 1.625rem 0 2rem;
  font-weight: 500;
}
.about-us-num {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0px 3.125rem 0px 0px;
  padding: 2.875rem 0 3.375rem;
}
.about-us-num .row-width {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
}
.about-us-num .row-width .num {
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 3.8125rem;
  text-transform: uppercase;
  color: var(--pseudo-color);
}
.about-us-num .row-width .symbol {
  font-size: 1.375rem;
  line-height: 1.6875rem;
  text-align: justify;
  text-transform: uppercase;
  color: var(--pseudo-color);
  bottom: 1.5em;
}
.about-us-num .row-width .unit {
  font-size: 1rem;
  line-height: 1.4375rem;
  text-align: justify;
  text-transform: uppercase;
  color: var(--pseudo-color);
  left: -10px;
  font-weight: 600;
  bottom: 0.5em;
}
.about-us-num .row-width .row-bottom {
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-align: center;
  text-transform: uppercase;
  color: #444444;
}
/* 底部 */
footer {
  padding-top: 3.375rem;
  background: #f7f9fb;
}
footer .top-slogan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid #c6c1c1;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.6875rem;
  letter-spacing: 1.25rem;
  text-transform: uppercase;
  color: #c4c4c4;
  opacity: 0.5;
  padding-bottom: 0.875rem;
}
footer .bottom-mes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-bottom: 7rem;
}
footer .bottom-logo img {
  width: 4rem;
}
footer .sloganner {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 0.5rem;
}
footer .sloganner-text {
  letter-spacing: 0.2rem;
  font-size: 1.25rem;
  /* background-image: -webkit-linear-gradient(left, #147B96, #E6D205 25%, #147B96 50%, #E6D205 75%, #147B96); */
  background-image: -webkit-linear-gradient(left, var(--main-color), var(--btn-color) 25%, var(--main-color) 50%, var(--btn-color) 75%, var(--main-color));
  font-weight: 600;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-background-size: 200% 100%;
  -webkit-animation: maskedAnimation 4s infinite linear;
}
@keyframes maskedAnimation {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -100% 0;
  }
}
.bottom-mes .bottom-name {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.875rem;
  color: rgba(58, 57, 57);
}
.bottom-mes .bottom-name a {
  color: rgba(58, 57, 57);
}
.bottom-mes .bottom-name a:hover {
  color: var(--main-color);
}
.archival-info {
  font-size: 1rem;
  line-height: 2.25rem;
  text-align: justify;
  color: rgba(58, 57, 57, 0.4);
  background: #f7f9fb;
}
.archival-info .archival-info-box {
  padding: 1.4375rem 0;
  border-top: 1px solid #c6c1c1;
}
.archival-info .info {
  text-align: center;
}
.archival-info a {
  color: rgba(58, 57, 57, 0.4);
}
/* 右侧固定按钮 */
.right-fix {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.right-fix li {
  position: relative;
  margin-top: 10px;
  width: 2.875rem;
  height: 2.875rem;
  line-height: 2.875rem;
  border-radius: 50%;
  background: #fff none repeat scroll 0 0;

  box-shadow: 2px 4px 12px rgba(176, 176, 176, 0.25);
}
.back-to-top {
  display: block;
  color: #555;
  cursor: pointer;
  font-size: 1.4rem;
  text-align: center;
  transition: all 0.3s ease;
}
.right-fix li:hover {
  background: var(--main-color) none repeat scroll 0 0;
}
.back-to-top:hover {
  color: #fff;
}
.right-fix .right-fix-right {
  position: absolute;
  pointer-events: none;
  top: 0;
  right: -100%;
  border-radius: 5.5rem;
  opacity: 0;
  transition: all 0.5s;
  width: 7.5rem;
  height: 100%;
  background: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  z-index: -1;
}
.right-fix ul li:hover .right-fix-right {
  opacity: 1;
  right: 3.125rem;
  transition: all 0.5s;
}
.right-fix .right-fix-right img {
  border-radius: 8px;
}
/* 新闻资讯列表 */
/* banner */
.new-banner {
  position: relative;
}
.new-banner-img img {
  width: 100%;
}
.new-banner-text {
  position: absolute;
  padding-top: 3rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}
/* 新闻轮播 */
.news-info-swiper {
  background: #f5f5f5;
  padding-top: 6.25rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.news-info-swiper .news-info-box {
  padding-bottom: 3.75rem;
  position: relative;
}
.news-info-box:hover .news-media-swiper-img img {
  transform: scale(1.1);
}
.news-info-box:hover .news-box-right-name {
  color: var(--main-color);
}
.news-info-box .hover {
  opacity: 1;
  transition: all 0.4s;
  padding: 1.5625rem 2.375rem 1.25rem;
  background: #fff;
  position: absolute;
  bottom: 1.6666666666666667rem;
  left: 1.4375rem;
  width: 100%;
  top: unset !important;
  transform: none !important;
}
.hover .tags {
  background: #d5e1fa;
  border-radius: 3px;
  width: 4.375rem;
  line-height: 1.5rem;
  font-size: 0.75rem;
  color: #000000;
  text-align: center;
  margin: 5px 0;
}
.head-pagination,
.new-info-pagination {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--main-color);
}

/* 新闻列表 */
.news-list {
  background: #f5f5f5;
}
.news-list-box {
  padding: 4.6875rem 0;
  background: #fff;
}
.news-list .news-list-box:nth-child(even) {
  background: #f5f5f5;
  border-bottom: 1px solid #e3e3e3;
}
.news-flex-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-flex-info .left {
  width: 12%;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.0625rem;
  text-align: justify;
  color: #9a9b9e;
  text-align: right;
}
.news-flex-info .left .year {
  font-size: 1.625rem;
  line-height: 2.0625rem;
}
.news-flex-info .center {
  width: 75%;
  padding-right: 4rem;
  padding-left: 10.125rem;
}
.news-flex-info .center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 17rem;
  width: 1px;
  height: 100%;
  background: #9a9a9a;
  transform: rotate(14.45deg);
}
.news-flex-info .right .icon {
  width: 15%;
  cursor: pointer;
  width: 5.0625rem;
  height: 5.0625rem;
  line-height: 5.0625rem;
  border-radius: 50%;
  font-size: 1.5rem;
  text-align: center;
  display: inline-block;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #f5f5f5;
}
.news-flex-info:hover .left {
  color: var(--main-color);
}
.news-flex-info:hover .news-box-right-name {
  color: var(--main-color);
}
.news-flex-info:hover .right .icon {
  background: var(--main-color);
  color: #fff;
}

/* 客户列表 */

.customer-list {
  padding: 3.125rem 0;
  background: #f5f5f5;
}
/* .customer-list{
  height: 60rem;
} */
.customer-list-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  cursor: pointer;
}
/* .customer-list-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  background: #fff;
  z-index: -2;
} */
.customer-list-box-left {
  width: 45%;
  position: relative;
  float: left;
}
/* .customer-list-box-left::before {
  content: "";
  position: absolute;
  background: var(--pseudo-color);
  width: 100%;
  height: 85%;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  top: 1.5625rem;
  right: -1rem;
  z-index: -2;
} */
.customer-list-box-left::after {
  content: "";
  position: absolute;
  bottom: 3.4rem;
  background: #f5f5f5;
  width: 100%;
  height: 60%;
  top: 20%;
  right: -1rem;
  z-index: -1;
  clip-path: polygon(0 0, 99% 0, 92% 100%, 0% 100%);
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
}
.customer-list-box-left-img {
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 88.5% 100%, 0% 100%);
}
.customer-list-box-left-img img {
  width: 100%;
  /* transition: all 0.4s; */
  height: 15rem;
}
.customer-list-box-right {
  float: right;
  width: 55%;
  padding-right: 1.75rem;
  padding-left: 2.5rem;
}
.customer-list-box-right-top {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.customer-list-box-right-top-logo {
  height: 7rem;
  overflow: hidden;
}
.customer-list-box-right-top-logo img {
  max-width: 40%;
  max-height: 80%;
  object-fit: contain;
}
.customer-list-box-right-bottom {
  color: #9a9a9a;
  margin: 0.75rem 0;
}
/* .customer-list-box:hover .customer-list-box-left::after {
  background-color: var(--main-color);
}  */
/* .customer-list-box:hover .customer-list-box-left-img img {
  transform: scale(1.1);
} */
.customer-list-box:hover .customer-list-box-right .news-box-right-name {
  color: var(--main-color);
}

/* 客户详情 */
.customer-banner {
  background: url(../imgs/news/new-banner.jpg) no-repeat;
  background-size: cover;
  padding: 10.625rem 0 5.5rem;
}
.customer-detail-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.customer-detail-top .top-left {
  width: 5.3125rem;
  height: 5.3125rem;
  background: #fff;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.customer-detail-top .top-left img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
}
.customer-detail-top .top-right .p2 {
  margin: 0.4166666666666667rem;
  align-items: center;
  display: flex;
}
.customer-detail-top .top-right .top-right-tag {
  font-size: 0.75rem;
  line-height: 1.5rem;
  text-align: justify;
  text-transform: uppercase;
  color: #ffffff;
  padding: 0.4166666666666667rem;
  border: 1px solid #ffffff;
  border-radius: 3px;
  margin-right: 1rem;
}
.customer-banner .content {
  padding: 1.875rem 2.25rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.9375rem;
  margin-top: 2.9375rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-align: justify;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .hover {
    font-size: 7rem !important;
  }
  /* 顶部轮播 */
  .banner-0 .banner-00 {
    width: 34.6rem;
  }
  .banner-0 .banner-02 {
    width: 31.5rem;
  }
  .hover .p1 {
    font-size: 2.4rem;
    line-height: 3.5rem;
  }
  .hover .p2 {
    font-size: 1.375rem;
  }
  /* 行业方案 */
  .industry-scheme-img .img-right .content {
    padding: 0 8rem;
  }
}
@media (max-width: 1280px) {
  .hover {
    font-size: 6rem !important;
  }
  /* 顶部轮播 */
  .banner-0 .img-svg-0 {
    top: 59%;
  }
  .hover .p1 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .hover .p2 {
    font-size: 1.125rem;
    line-height: 2.25rem;
  }
  .hover-btn .more {
    padding: 0 2.6rem;
    line-height: 3rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  /* 行业方案 */
  .industry-scheme-img .img-right .content {
    padding: 0 7rem;
  }
  .industry-scheme .img-right-list {
    width: calc(100% - 10rem);
  }
  /* 关于我们 */
  .about-us-num .row-width .row-bottom {
    font-size: 1rem;
  }
}
@media (max-width: 990px) {
  .hover {
    font-size: 5.5rem !important;
  }
  /* 顶部轮播 */
  .swiper-slide .swiper-img {
    display: block;
  }
  .banner-0 .banner-img {
    display: none;
  }
  .banner-0 .img-svg-0 {
    display: none;
  }
  .swiper-slide .hover {
    top: 60px;
    transform: translateY(40%);
    text-align: center;
  }
  .hover .p1 {
    font-size: 24px;
    line-height: 36px;
  }
  .hover .p2 {
    font-size: 18px;
    line-height: 30px;
  }
  .hover-btn .more {
    padding: 0 32px;
    font-size: 14px;
    line-height: 44px;
  }
  /* 产品服务 */
  .product-service {
    padding-top: 3rem;
    background-image: unset;
  }
  .subtitle {
    font-size: 1rem;
  }
  .product-service .product-service-bg {
    height: 30rem;
  }
  .product-height {
    max-height: 15rem;
    transition: none;
  }
  .product-service::before {
    height: 0%;
  }
  .product-service .hover {
    opacity: 0;
  }
  /* 行业方案 */
  .industry-scheme-thumbnail-icon .icon-1 {
    height: 2rem;
  }
  .industry-scheme-thumbnail-icon .icon-2 {
    height: 2rem;
  }
  .industry-scheme-thumbnail-name {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .industry-scheme-thumbnail-enname {
    font-weight: 500;
    font-size: 0.8333333333333334rem;
    line-height: 1.2rem;
  }
  .industry-scheme-img .img-right {
    padding: 3rem 0 10rem;
  }
  .subtitle {
    font-size: 0.8333333333333334rem;
  }
  .industry-scheme .img-right-name {
    font-size: 1.3333333333333333rem;
  }
  .industry-scheme-img .img-right .content {
    padding: 0 4rem;
  }
  .industry-scheme .img-right-list {
    width: calc(100% - 6rem);
  }
  /* 新闻资讯 */
  .news-media .hover {
    display: none;
  }
  .news-box-left {
    display: none;
  }
  .news-box-right {
    width: 100%;
  }
  .news-box-right-name {
    font-size: 1rem;
  }
  .news-box-right-text {
    font-size: 0.8333333333333334rem;
  }
  /* 关于我们 */
  .about-us .hover {
    display: none;
  }
  .about-us .about-us-left .w-50 {
    width: 100% !important;
  }
  /* 底部 */
  .bottom-mes {
    padding-bottom: 4rem !important;
  }
  .bottom-mes .sloganner {
    font-size: 16px;
    margin-bottom: 0;
  }
  .bottom-mes .sloganner-text {
    font-size: 14px;
  }
  .bottom-mes .bottom-name {
    font-size: 14px;
  }
  .bottom-mes .bottom-logo {
    display: none;
  }

  /* 新闻资讯列表 */
  /* 轮播 */
  .news-info-swiper {
    padding-top: 1.25rem;
  }
  .news-info-box .hover {
    padding: 15px;
    position: static;
    width: auto;
  }
  .news-info-swiper .news-info-box {
    padding-bottom: 10px;
  }
  .head-pagination,
  .new-info-pagination {
    display: block;
  }
  .swiper-button-next {
    display: none;
  }
  .swiper-button-prev {
    display: none;
  }
  /* 列表 */

  .news-flex-info .left {
    font-size: 2rem;
  }
  .news-flex-info .center {
    padding-right: 3rem;
    padding-left: 7rem;
  }
  .news-flex-info .center::before {
    left: 12rem;
  }

  /* 客户列表 */
  .customer-list-box {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .customer-list-box-left {
    width: 100%;
    float: none;
  }
  .customer-list-box-left-img {
    clip-path: unset;
  }
  .customer-list-box-right {
    float: none;
    width: 100%;
    padding: 15px;
  }
  .customer-list-box-left::before {
    content: unset;
  }
  .customer-list-box-left::after {
    content: unset;
  }
  /* 客户详情 */
  .customer-banner {
    padding: 5.625rem 0 3.5rem;
  }
  .customer-detail-top {
    flex-wrap: wrap;
  }
  .customer-detail-top .top-right .p2 {
    flex-wrap: wrap;
  }
  .customer-banner .content {
    padding: 15px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .hover {
    font-size: 4.2rem !important;
  }
  .hover .p1 {
    font-size: 20px;
    line-height: 30px;
  }
  .hover .p2 {
    font-size: 14px;
    line-height: 26px;
    margin: 5px 0 10px;
  }
  /* 产品服务 */
  .product-service-swiper-pagination {
    display: block;
  }
  /* 行业方案 */
  .industry-scheme-mobile {
    display: block;
  }
  .industry-scheme-pc {
    display: none;
  }
  .industry-scheme-swiper-pagination {
    display: block;
  }
  /* 行业方案 */
  .industry-scheme-img .img-right .content {
    padding: 0 15px;
  }
  .industry-scheme .img-right-list {
    width: calc(100% - 3rem);
  }
  /* 客户案例 */
  .customer-case-swiper-pagination {
    display: block;
  }
  .customer-case .box-logo img {
    max-width: 100%;
    max-height: 100%;
  }
  .customer-case .box-logo {
    height: 5rem;
  }
  /* 关于我们 */
  .about-us-num .row-width {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .about-us-num .row-width .num {
    font-size: 34px;
    line-height: 40px;
  }
  .about-us-num .row-width .symbol {
    bottom: 1em;
  }
  .about-us-num .row-width .unit {
    font-size: 12px;
    line-height: 1.2rem;
    top: -0.25em;
  }
  .about-us-num .row-width .row-bottom {
    font-size: 12px;
  }
  /* 底部 */
  footer {
    padding-top: 1.375rem;
  }
  footer .bottom-mes {
    flex-direction: column;
    margin-top: 0.5rem;
  }
  footer .top-slogan {
    font-size: 12px;
    letter-spacing: 0.4rem;
    padding-bottom: 0.5rem;
  }
  .archival-info {
    font-size: 12px;
    line-height: 20px;
    color: rgba(58, 57, 57, 0.6);
  }
  .archival-info .archival-info-box {
    padding: 8px 0;
  }

  /* 轮播 */
  .news-info-swiper {
    padding-top: 1.25rem;
  }
  /* 列表 */
  .news-list .overflow-auto {
    height: 45rem !important;
  }
  .news-list-box {
    padding: 1.6875rem 0;
  }
  .news-flex-info .left {
    width: 100%;
    text-align: left;
  }
  .news-flex-info .left > div {
    display: inline-block;
  }
  .news-flex-info .center {
    padding: 0;
    width: 100%;
  }
  .news-flex-info .center::before {
    width: 0;
  }
  .news-flex-info .right {
    display: none;
  }
}
@media (max-width: 575px) {
  .hover {
    font-size: 3.2rem !important;
  }
  .modal-body-left {
    width: 100%;
    text-align: center;
    line-height: 3.5rem;
  }
  .modal-body-contact {
    justify-content: center;
  }
  .modal-body-right {
    width: 100%;
  }
  .modal-body-right img {
    width: 45%;
  }
}