@charset "utf-8";

/* 头部导航 */
.header {
  position: relative;
}

/* 移动端隐藏类 */
@media (max-width: 991px) {
  .d-none-mobile {
    display: none !important;
  }
}

.header .header-top {
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.header .header-top .navbar-toggle {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.header .header-top .navbar-toggle span {
  width: 26px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header .header-top .navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.header .header-top .navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header .header-top .navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.header .header-top .logo {
  display: flex;
  align-items: center;
}

.header .header-top .logo img {
  width: auto;
  max-width: 360px;
  /* height: 35px; */
  margin-right: 12px;
}

.header .header-top .logo .logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.header .header-top .logo .logo-text-wrap .logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.header .header-top .logo .logo-text-wrap .logo-en {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
}

.header .header-top .title-info .title-cn {
  display: block;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
  text-align: justify;
  text-align-last: justify;
  /* letter-spacing: -1px; */
}

.header .header-top .title-info .title-en {
  display: block;
  font-size: 8px;
  color: #999;
  text-transform: uppercase;
  text-align: justify;
  text-align-last: justify;
  /* letter-spacing: -1.5px; */
}

.header .header-top .contact-info .phone-numbers {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  text-align: justify;
  text-align-last: justify;
  width: 100%;
  max-width: 320px;
}

.header .header-top .contact-info .phone-numbers .phone-item {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.header .header-top .contact-info .phone-numbers .phone-item i {
  color: #ED6D00;
  margin-right: 5px;
}

.header .header-top .contact-info .phone-numbers .phone-item span {
  font-size: 16px;
  font-weight: bold;
  color: #ca0000;
}

.header .header-top .contact-info .service-items {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  text-align: justify;
  text-align-last: justify;
  width: 100%;
  max-width: 320px;
}

.header .header-top .contact-info .service-items .service-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
}

.header .header-top .contact-info .service-items .service-item i {
  color: #28a745;
  margin-right: 3px;
  font-size: 12px;
}

/* 导航栏 - 电脑端 */
.header .navbar {
  background-color: #ca0000;
}

.header .navbar .container {
  padding: 0;
}

.header .navbar .nav-list {
  display: flex;
  justify-content: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.header .navbar .nav-list li {
  position: relative;
  flex: 1;
  text-align: center;
}

.header .navbar .nav-list li .nav-link {
  display: block;
  padding: 18px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header .navbar .nav-list li.active .nav-link,
.header .navbar .nav-list li .nav-link:hover,
.header .navbar .nav-list li .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
}

.header .navbar .nav-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* 核心业务样式 */
.core-business {
  padding: 80px 0;
  background-color: #fff;
}

.core-business .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 30px 0;
}

.core-business .section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  transform: translateY(-50%);
  z-index: 1;
}

.core-business .section-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 80px;
  border: 1px solid #ddd;
  z-index: 2;
  background-color: #fff;
}

.core-business .section-content {
  position: relative;
  z-index: 3;
  background-color: #fff;
  display: inline-block;
  padding: 0 30px;
}

.core-business .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #ca0000;
  margin-bottom: 10px;
}

.core-business .section-subtitle {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.core-business .section-divider {
  width: 60px;
  height: 3px;
  background-color: #ca0000;
  margin: 0 auto;
}

.core-business .business-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.core-business .business-card {
  flex: 1;
  max-width: 200px;
  position: relative;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.core-business .business-card:hover {
  border-color: #ca0000;
}

.core-business .business-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 45px solid #ca0000;
  border-left: 45px solid transparent;
}

.core-business .business-card::after {
  content: attr(data-number);
  position: absolute;
  top: -4%;
  right: -5%;
  width: 40px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 45px;
}

.core-business .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-business .card-icon svg {
  width: 100%;
  height: 100%;
}

.core-business .card-title {
  font-size: 16px;
  font-weight: bold;
  color: #ca0000;
  margin: 0;
}

/* 核心业务响应式 */
@media (max-width: 992px) {
  .core-business {
    padding: 50px 0;
  }

  .core-business .section-header {
    margin-bottom: 0px;
  }

  .core-business .section-title {
    font-size: 26px;
  }

  .core-business .business-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .core-business .business-card {
    max-width: 45%;
  }

  .core-business .card-title {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .core-business {
    padding: 0 0;
  }

  .core-business .section-title {
    font-size: 22px;
  }

  .core-business .section-subtitle {
    font-size: 12px;
  }

  .core-business .business-row {
    gap: 15px;
  }

  .core-business .business-card {
    max-width: 100%;
    flex-basis: calc(50% - 10px);
    padding: 20px 15px;
  }

  .core-business .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .core-business .card-title {
    font-size: 14px;
  }
}

/* 网络产品中心横幅 */
.product-banner {
  background: url('/skin/img/product-banner.jpg') center center no-repeat;
  background-size: cover;
  padding: 30px 0;
  position: relative;
  margin-bottom: 20px;
}

.product-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ca0000;
}

.product-banner .container {
  position: relative;
  z-index: 1;
}

.product-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.product-banner .main-title {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.product-banner .main-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 8px 0;
}

.product-banner .main-title span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  /* margin-bottom: 20px; */
}

.product-banner .main-title .arrows {
  display: flex;
  gap: 10px;
}

.product-banner .main-title .arrow {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

.product-banner .divider-line {
  width: 1px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.product-banner .product-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.product-banner .product-item {
  font-size: 18px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-banner .product-item .item-cn {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.product-banner .product-item .item-en {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 原创网剧推介样式 */
.web-series {
  padding: 0;
  /* background-color: #f5f5f5; */
}

.web-series .series-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding: 30px 0;
  background-color: #ca0000;
  padding-bottom: 200px;
}

.web-series .series-header::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  transform: translateY(-50%);
  z-index: 1;
}

.web-series .series-header::after {
  content: '';
  position: absolute;
  top: 24%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 80px;
  border: 1px solid #ddd;
  z-index: 2;
  background-color: #ca0000;
}

.web-series .series-content {
  position: relative;
  z-index: 3;
  background-color: #ca0000;
  display: inline-block;
  padding: 0 30px;
}

.web-series .series-title {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.web-series .series-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.web-series .series-divider {
  width: 60px;
  height: 3px;
  background-color: #fff;
  margin: 0 auto;
}

.web-series .series-container {
  margin-top: -150px;
}

.web-series .featured-series {
  margin-top: -100px;
  background-color: #f3f3f3;
  padding: 40px;
  margin-top: -20px;
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

.web-series .featured-series::before {
  content: 'HAPPY';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 120px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.web-series .series-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

.web-series .series-tag {
  font-size: 14px;
  color: #ca0000;
  font-weight: bold;
  margin-bottom: 15px;
}

.web-series .series-name {
  font-size: 32px;
  font-weight: bold;
  color: #ca0000;
  margin: 0 0 10px 0;
}

.web-series .series-season {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

.web-series .series-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 22px;
}

.web-series .series-btn {
  display: inline-block;
  padding: 8px 22px;
  background-color: #ca0000;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.web-series .series-btn:hover {
  background-color: #b71c1c;
}

.web-series .series-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.web-series .more-series {
  margin-top: 0;
}

.web-series .series-card {
  background-color: #fff;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}

.web-series .series-card .card-image {
  overflow: hidden;
}

.web-series .series-card .card-image img {
  padding: 1%;
  width: 100%;
  height: 400px;
  object-fit: contain;
  transition: transform 0.3s ease;
  background-color: #eee;
}

.web-series .series-card:hover .card-image img {
  transform: scale(1.05);
}

.web-series .series-card .card-content {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.web-series .series-card .card-text {
  flex: 1;
}

.web-series .series-card .card-title {
  font-size: 17px;
  font-weight: bold;
  color: #333;
  margin: 0 0 6px 0;
}

.web-series .series-card .card-type {
  font-size: 11px;
  color: #999;
  display: block;
}

.web-series .series-card .card-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background-color: #ca0000;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ca0000;
}

.web-series .series-card .card-btn:hover {
  background-color: #b71c1c;
}

/* 服务品牌样式 */
.service-brands {
  padding: 0 0;
  padding-bottom: 100px;
  background-color: #fff;
}

.service-brands .section-header {
  text-align: center;
  margin-bottom: 0px;
  position: relative;
  padding: 30px 0;
}

.service-brands .section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  transform: translateY(-50%);
  z-index: 1;
}

.service-brands .section-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 80px;
  border: 1px solid #ddd;
  z-index: 2;
  background-color: #fff;
}

.service-brands .section-content {
  position: relative;
  z-index: 3;
  background-color: #fff;
  display: inline-block;
  padding: 0 30px;
}

.service-brands .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #ca0000;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .service-brands .section-title {
    font-size: 22px;
  }

  .core-business .business-card::after {
    top: -9%;
    right: -2%;
  }
}

.service-brands .section-subtitle {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.service-brands .section-divider {
  width: 60px;
  height: 3px;
  background-color: #ca0000;
  margin: 0 auto;
}

.service-brands .brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.service-brands .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  text-align: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-brands .brand-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.service-brands .brand-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .service-brands .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .service-brands .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .service-brands .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 底部联系栏样式 */
.footer {
  background-color: #ca0000;
  padding: 40px 0;
  padding-bottom: 20px;
  color: #fff;
}

.footer .footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer .footer-contact {
  text-align: right;
}

.footer .contact-row {
  margin-bottom: 10px;
}

.footer .contact-row:last-child {
  margin-bottom: 0;
}

.footer .contact-item {
  display: inline-block;
  font-size: 14px;
  margin-left: 30px;
}

.footer .contact-item:first-child {
  margin-left: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }

  .footer .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer .footer-logo img {
    max-width: 150px;
  }

  .footer .footer-contact {
    text-align: center;
  }

  .footer .contact-row {
    margin-bottom: 8px;
  }

  .footer .contact-item {
    display: block;
    margin-left: 0;
    margin-bottom: 5px;
    font-size: 13px;
  }
}

.footer .footer-copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.footer .footer-copyright p {
  font-size: 12px;
  margin: 0;
  opacity: 0.8;
}

/* 突出优势样式 */
.advantages {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.advantages .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 30px 0;
}

.advantages .section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  transform: translateY(-50%);
  z-index: 1;
}

.advantages .section-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 80px;
  border: 1px solid #ddd;
  z-index: 2;
  background-color: #f8f8f8;
}

.advantages .section-content {
  position: relative;
  z-index: 3;
  background-color: #f8f8f8;
  display: inline-block;
  padding: 0 30px;
}

.advantages .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #ca0000;
  margin-bottom: 10px;
}

.advantages .section-subtitle {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.advantages .section-divider {
  width: 60px;
  height: 3px;
  background-color: #ca0000;
  margin: 0 auto;
}

.advantages .advantage-card {
  background-color: #fff;
  overflow: hidden;
  border: 2px solid #ca0000;
  transition: all 0.3s ease;
}

.advantages .advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantages .card-image {
  position: relative;
  overflow: hidden;
}

.advantages .card-image img {
  width: 100%;
  height: 17vw;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.advantages .advantage-card:hover .card-image img {
  transform: scale(1.1);
}

.advantages .card-content {
  padding: 25px;
  background-color: #ca0000;
  text-align: center;
}

.advantages .card-tag {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.advantages .card-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 15px 0;
}

.advantages .card-divider {
  width: 80px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
}

/* 突出优势响应式 */
@media (max-width: 992px) {
  .advantages {
    padding: 50px 0;
  }

  .advantages .section-header {
    margin-bottom: 00px;
  }

  .advantages .section-title {
    font-size: 26px;
  }

  .advantages .card-image img {
    height: 150px;
  }

  .advantages .card-content {
    padding: 15px;
  }

  .advantages .card-title {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .advantages {
    padding: 0px 0;
  }

  .advantages .section-title {
    font-size: 22px;
  }

  .advantages .section-subtitle {
    font-size: 12px;
  }

  .advantages .card-image img {
    height: 120px;
  }

  .advantages .card-content {
    padding: 12px;
  }

  .advantages .card-title {
    font-size: 14px;
  }
}

/* 公司简介样式 */
.about {
  padding: 50px 0;
  background-color: #fff;
}

.about .row.align-items-center {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about .about-tags {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.about .about-tags .tag {
  display: inline-block;
  padding: 8px 35px;
  background-color: #ca0000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.about .about-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.about .about-subtitle {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about .about-divider {
  width: 60px;
  height: 3px;
  background-color: #ca0000;
  margin-bottom: 30px;
}

.about .about-content {
  margin-bottom: 10px;
}

.about .about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
  text-align: justify;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

.about .about-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ca0000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .about-btn:hover {
  background-color: #b71c1c;
  transform: translateY(-2px);
}

.about .about-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 公司简介响应式 */
@media (max-width: 992px) {
  .about {
    padding: 50px 0;
  }

  .about .about-tags {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .about .about-tags .tag {
    padding: 6px 15px;
    font-size: 13px;
  }

  .about .about-title {
    font-size: 26px;
  }

  .about .about-content p {
    font-size: 14px;
  }

  .about .about-btn {
    padding: 10px 25px;
    font-size: 13px;
  }

  .about .p-5 {
    padding: 20px !important;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 20px 0;
  }

  .about .about-title {
    font-size: 22px;
  }

  .about .about-subtitle {
    font-size: 12px;
  }

  .about .about-divider {
    width: 40px;
  }

  .about .about-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Banner轮播图样式 */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner .banner-swiper {
  width: 100%;
}

.banner .swiper-slide {
  position: relative;
  width: 100%;
}

.banner .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.banner .swiper-slide .banner-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.banner .swiper-slide .banner-content h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner .swiper-slide .banner-content p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner .swiper-slide .banner-content .banner-btn {
  display: inline-block;
  padding: 12px 40px;
  background-color: #ED6D00;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.banner .swiper-slide .banner-content .banner-btn:hover {
  background-color: #ba5600;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(237, 109, 0, 0.4);
}

/* .banner .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 5;
} */

.banner .swiper-pagination {
  bottom: 30px !important;
}

.banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 1;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ED6D00;
  transform: scale(1.2);
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  background-color: #ED6D00;
}

.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
  font-size: 20px;
}

.banner .swiper-button-prev {
  left: 30px;
}

.banner .swiper-button-next {
  right: 30px;
}

/* 响应式 - 平板和手机端 */
@media (max-width: 992px) {

  /* 汉堡按钮显示 */
  .header .header-top .navbar-toggle {
    display: flex;
  }

  /* 隐藏中间标题和右侧联系信息 */
  .header .header-top .col-md-4.text-center {
    display: none;
  }

  .header .header-top .col-lg-4:nth-child(3) {
    display: none;
  }

  /* 导航栏默认隐藏 */
  .header .navbar {
    display: none;
    position: relative;
    width: 100%;
    z-index: 9998;
  }

  /* 导航栏显示状态 */
  .header .navbar.active {
    display: block;
  }

  .header .navbar .container {
    padding: 0;
  }

  .header .navbar .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .header .navbar .nav-list li {
    flex: none;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header .navbar .nav-list li:not(:last-child)::after {
    display: none;
  }

  .header .navbar .nav-list li .nav-link {
    padding: 15px 0;
    font-size: 14px;
  }

  /* 顶部信息栏调整 */
  .header .header-top .logo img {
    max-width: 80%;
    /* height: 35px; */
  }

  .header .contact-info img {
    max-width: 100%;
    visibility: hidden;
  }

  .header .header-top .logo .logo-text-wrap .logo-text {
    font-size: 18px;
  }

  .header .header-top .logo .logo-text-wrap .logo-en {
    font-size: 10px;
  }

  .header .header-top .title-info .title-cn {
    font-size: 14px;
  }

  .header .header-top .title-info .title-en {
    font-size: 8px;
  }

  .header .header-top .contact-info .phone-numbers {
    flex-direction: column;
    gap: 5px;
  }

  .header .header-top .contact-info .phone-numbers .phone-item span {
    font-size: 12px;
  }

  .header .header-top .contact-info .service-items {
    display: none;
  }

  /* Banner调整 */


  .banner .swiper-slide .banner-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .banner .swiper-slide .banner-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .banner .swiper-slide .banner-content .banner-btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .banner .swiper-button-prev::after,
  .banner .swiper-button-next::after {
    font-size: 16px;
  }

  .banner .swiper-button-prev {
    left: 15px;
  }

  .banner .swiper-button-next {
    right: 15px;
  }

  .banner .swiper-pagination {
    bottom: 20px !important;
  }
}

/* 右侧悬浮窗样式 */
.float-sidebar {
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-sidebar .float-item {
  width: 50px;
  height: 50px;
  background-color: #ca0000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(202, 0, 0, 0.3);
  position: relative;
}

.float-sidebar .float-item:hover {
  background-color: #b71c1c;
  transform: scale(1.1);
}

.float-sidebar .float-item svg {
  width: 22px;
  height: 22px;
}

.float-sidebar .float-item span {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.float-sidebar .float-item:hover span {
  opacity: 1;
  visibility: visible;
}

.float-sidebar .float-item span::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #333;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* 切换按钮 */
.float-sidebar .float-toggle {
  display: block;
  padding: 6px 10px;
  background-color: #ca0000;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(202, 0, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10;
  position: relative;
}

.float-sidebar .float-toggle:hover {
  background-color: #b71c1c;
}

/* 内容区域 */
.float-sidebar .float-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 隐藏状态 - 所有屏幕尺寸都生效 */
.float-sidebar:not(.expanded) .float-content {
  display: none;
}

/* 二维码区域 */
.float-sidebar .float-qrcode {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  width: 110px;
}

.float-sidebar .float-qrcode .qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.float-sidebar .float-qrcode .qrcode-item img {
  width: 85px;
  height: 85px;
  display: block;
  margin-bottom: 5px;
}

.float-sidebar .float-qrcode .qrcode-item .qrcode-desc {
  font-size: 11px;
  color: #666;
  text-align: center;
  line-height: 1.3;
}
}

/* 悬浮窗响应式 */
@media (max-width: 991px) {
  .float-sidebar {
    right: 10px;
    gap: 8px;
  }

  .float-sidebar .float-item {
    width: 45px;
    height: 45px;
  }

  .float-sidebar .float-item span {
    display: none;
  }

  /* 移动端显示切换按钮 */
  .float-sidebar .float-toggle {
    display: block !important;
    order: 1;
  }

  .float-sidebar .float-content {
    order: 2;
  }

  /* 移动端默认隐藏内容区域 */
  .float-sidebar:not(.expanded) .float-content {
    display: none !important;
  }

  /* 展开状态 */
  .float-sidebar.expanded .float-content {
    display: flex !important;
  }
}

/* 响应式 - 手机端 */
@media (max-width: 576px) {

  .banner .swiper-slide .banner-content {
    padding: 0 20px;
  }

  .banner .swiper-slide .banner-content h2 {
    font-size: 22px;
  }

  .banner .swiper-slide .banner-content p {
    font-size: 12px;
  }

  .banner .swiper-slide .banner-content .banner-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}