/* 全局样式 */
body {
  background-color: #ffffff;
  color: #333;
}

/* 全局图片响应式样式 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 入场动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左右进入动画 */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 为服务内容区域添加入场动画 */
.service .section-content {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

/* 为banner-item添加入场动画 */
.banner-list .banner-item {
  opacity: 0;
  animation-fill-mode: forwards;
}

.banner-list .banner-item:nth-child(1) {
  animation: fadeInLeft 0.6s ease-out 0.1s forwards;
}

.banner-list .banner-item:nth-child(2) {
  animation: fadeInRight 0.6s ease-out 0.2s forwards;
}

.banner-list .banner-item:nth-child(3) {
  animation: fadeInLeft 0.6s ease-out 0.3s forwards;
}

.banner-list .banner-item:nth-child(4) {
  animation: fadeInRight 0.6s ease-out 0.4s forwards;
}

/* 为解决方案section添加入场动画 */
.resolve .section-content {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* 为新闻section添加背景图片 */
.news .section-content {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  background-image: url('/web/default/img/xw.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  border-radius: 12px;
}

/* 为resolve section的子元素添加入场动画 */
.resolve .section-title {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.resolve .solution-category {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out 0.3s forwards;
}

.resolve .solution-details {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.resolve .solution-qrcode {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out 0.7s forwards;
}

/* 为解决方案内容添加入场动画 */
.resolve .solution-content {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

/* 为分类项添加悬停动画 */
.resolve .category-item {
  transition: all 0.3s ease;
}

.resolve .category-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}

/* 为解决方案按钮添加脉冲动画 */
.resolve .solution-buttons .btn {
  position: relative;
  overflow: hidden;
}

.resolve .solution-buttons .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.resolve .solution-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

/* 为解决方案标签添加淡入动画 */
.resolve .solution-tags .tag {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}

.resolve .solution-tags .tag:nth-child(1) { animation-delay: 0.6s; }
.resolve .solution-tags .tag:nth-child(2) { animation-delay: 0.7s; }
.resolve .solution-tags .tag:nth-child(3) { animation-delay: 0.8s; }
.resolve .solution-tags .tag:nth-child(4) { animation-delay: 0.9s; }

/* 为practice section添加入场动画 */
.practice .practice-content {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.practice .practice-box {
  opacity: 0;
  animation-fill-mode: forwards;
}

.practice .practice-box:nth-child(1) {
  animation: fadeInLeft 0.8s ease-out 0.1s forwards;
}

.practice .practice-box:nth-child(2) {
  animation: fadeInRight 0.8s ease-out 0.2s forwards;
}

.practice .practice-box:nth-child(3) {
  animation: fadeInLeft 0.8s ease-out 0.3s forwards;
}

.practice .practice-box:nth-child(4) {
  animation: fadeInRight 0.8s ease-out 0.4s forwards;
}

/* 科技感动画 */
@keyframes techFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(24, 144, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(24, 144, 255, 0);
  }
}

/* 为section-base添加入场动画 */
.section-base .section-content {
  opacity: 0;
  animation: techFadeIn 1.2s ease-out forwards;
}

.section-base .stat-item {
  opacity: 0;
  animation-fill-mode: forwards;
}

.section-base .stat-item:nth-child(1) {
  animation: techFadeIn 0.8s ease-out 0.1s forwards;
}

.section-base .stat-item:nth-child(2) {
  animation: techFadeIn 0.8s ease-out 0.3s forwards;
}

.section-base .stat-item:nth-child(3) {
  animation: techFadeIn 0.8s ease-out 0.5s forwards;
}

.section-base .base-map-container {
  opacity: 0;
  animation: techFadeIn 1s ease-out 0.7s forwards;
}

.section-base .cert-item {
  opacity: 0;
  animation-fill-mode: forwards;
}

.section-base .cert-item {
  animation: techFadeIn 0.6s ease-out forwards;
}

.section-base .cert-item:nth-child(1) { animation-delay: 0.9s; }
.section-base .cert-item:nth-child(2) { animation-delay: 1.0s; }
.section-base .cert-item:nth-child(3) { animation-delay: 1.1s; }
.section-base .cert-item:nth-child(4) { animation-delay: 1.2s; }
.section-base .cert-item:nth-child(5) { animation-delay: 1.3s; }
.section-base .cert-item:nth-child(6) { animation-delay: 1.4s; }

/* 为统计数字添加脉冲动画 */
.section-base .stat-item h2 {
  animation: pulse 2s infinite;
}

/* 确保所有图片容器也具备响应式特性 */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 解决图片变形问题，保持原始宽高比 */
.img {
  object-fit: cover;
}

/* 确保图片在不同容器中都能自适应 */
.section img,
.banner img,
.service img,
.practice img,
.resolve img,
.base img,
.cert img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* 为不同尺寸设备设置图片优化 */
@media screen and (max-width: 1200px) {
  img {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  img {
    max-width: 100%;
  }
}

/* 移除新拟态效果 */

/* 导航栏样式 */
.nav-shadow {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px;
  height: auto;
  min-height: 36px;
}

/* 调整电脑端导航项高度 */
.nav-menu .nav-item {
  height: 50px;
}

/* 确保登录和未登录状态高度一致 */
.nav-header .login-in {
  height: 50px;
  padding: 0 20px;
  position: relative;
  z-index: 999;
}

.nav-header .login-in .login-menu {
  top: 50px;
  position: absolute;
  z-index: 999;
}

.nav-header .no-login {
  height: 50px;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
}

/* banner */
.section.banner {
  padding: 0;
  background: transparent;
  margin: 0;
  max-width: 100% !important;
  width: 100% !important;
  margin-top: 0; /* 消除与导航栏之间的空隙 */
}

.banner-cont {
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.banner-cont .swiper-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

.banner-cont .swiper-slide {
  height: 550px;
  width: 100%;
  background: linear-gradient(0, #ffffff, #f5f5f5);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

/* 确保轮播图中的链接和图片在所有设备上都充满容器 */
.banner-cont .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-cont .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cont .swiper-slide .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.8s ease;
  max-width: 100%;
}

/* 手机端适配样式 */
@media screen and (max-width: 768px) {
  /* 调整banner高度 */
  .banner-cont .swiper-slide {
    height: 280px;
  }
  
  /* 调整服务内容整体布局，移动端单列 */
  .service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* 调整服务卡片布局，移动端单列 */
  .service-content .fboxRow {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .service-content .fboxRow a {
    width: 100%;
    flex: 0 0 100%;
  }
  
  .service-box {
    width: 100%;
    min-height: auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  }
  
  /* 调整服务卡片标题 */
  .service .service-box .service-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  /* 调整服务卡片描述 */
  .service-box .title-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  /* 调整服务卡片标签组 */
  .service .service-tag-group {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .service .service-tag-group .service-tag {
    font-size: 11px;
    padding: 2px 8px;
    height: 22px;
    border-radius: 11px;
  }
  
  /* 调整服务卡片按钮组 */
  .service-btn-group {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    gap: 12px;
  }
  
  .service-btn-group .service-price {
    font-size: 13px;
  }
  
  .service-btn-group .service-price .font24 {
    font-size: 18px;
  }
  
  .service-btn-group .btn {
    padding: 6px 16px;
    font-size: 13px;
  }
  
  .service-btn-group .fboxWrap {
    display: flex;
    gap: 10px;
  }
  
  .service-btn-group .mr-15 {
    margin-right: 0;
  }
  

  
  /* 调整实践卡片布局 */
  .practice-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .practice-box {
    flex-direction: column;
    text-align: center;
  }
  
  /* 调整基础设施统计布局 */
  .base {
    flex-direction: column;
    gap: 30px;
  }
  
  /* 调整资质认证布局 */
  .cert-list {
    flex-direction: column;
    align-items: center;
  }
  
  .cert-item {
    width: 100%;
    text-align: center;
  }
  
  /* 调整新闻内容布局 */
  .news-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .news-cont {
    width: 100%;
  }
}

/* 确保在大屏幕上保持原有样式 */
@media screen and (min-width: 769px) {
  /* 大屏幕样式保持不变 */
  
  /* 调整大屏幕下的banner-list布局，四个卡片一行 */
  .section-content.banner-list {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 40px;
    gap: 24px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .section-content.banner-list .banner-item {
    flex: 1;
    cursor: pointer;
    min-width: 240px;
    max-width: 280px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    color: #000000;
  }
  
  /* 大屏幕下隐藏banner-tag */
  .section-content.banner-list .banner-item .banner-tag {
    display: none;
  }
  
  /* 大屏幕下显示图标 */
  .section-content.banner-list .banner-item::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    transform: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
  }
  
  /* 使用图标文件 */
  .section-content.banner-list .banner-item#cloud-box::before {
    background: transparent url('/web/default/icon/001.png') no-repeat center center;
    background-size: 100%;
  }
  
  .section-content.banner-list .banner-item#domain-box::before {
    background: transparent url('/web/default/icon/002.png') no-repeat center center;
    background-size: 100%;
  }
  
  .section-content.banner-list .banner-item#cps-box::before {
    background: transparent url('/web/default/icon/003.png') no-repeat center center;
    background-size: 100%;
  }
  
  .section-content.banner-list .banner-item#logon-box::before {
    background: transparent url('/web/default/icon/004.png') no-repeat center center;
    background-size: 100%;
  }
  
  /* 调整标题样式 */
  .section-content.banner-list .banner-item h5 {
    margin-top: 0;
    margin-bottom: 8px;
    margin-left: 66px;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    line-height: 24px;
  }
  
  /* 调整描述文字样式 */
  .section-content.banner-list .banner-item .title-desc {
    font-size: 14px;
    color: #000000;
    margin: 0 0 0 66px;
    line-height: 20px;
    font-weight: 400;
  }
}

.banner-cont .swiper-slide-active .img {
  opacity: 1;
}

.banner-cont .section-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.banner-cont .swiper-slide-active .section-content {
  opacity: 1;
  transform: translateY(0);
}

.banner-cont .section-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  text-shadow: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.banner-cont .banner-desc {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 600px;
  color: #374151;
  line-height: 1.6;
  text-shadow: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

/* 轮播图文字样式，移除新拟态效果 */
.banner-tagline {
  color: #000000;
  font-weight: bold;
  margin-bottom: 10px;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.banner-status {
  background-color: #ff0000;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: none;
}

/* 确保h1和p没有新拟态效果 */
.banner-cont h1,
.banner-cont p {
  background: transparent !important;
  box-shadow: none !important;
}

/* 轮播图按钮样式，移除新拟态效果 */
.banner-cont .btn {
  background: #1890ff !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3) !important;
  border: none;
  border-radius: 4px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.banner-cont .btn:hover {
  background: #40a9ff !important;
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.5) !important;
  transform: translateY(-1px);
}

.banner-cont .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  background: #e0e0e0;
  opacity: 1;
  border-radius: 2px;
  box-shadow: none;
}

.banner-cont .swiper-pagination-bullet-active {
  background: rgba(255, 103, 57, 1);
  box-shadow: none;
}

/* 轮播图导航按钮样式 */
.banner-cont .swiper-button-prev,
.banner-cont .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.banner-cont .swiper-button-prev:hover,
.banner-cont .swiper-button-next:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
  color: #1890ff;
}

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

/* 移动端适配导航按钮 */
@media screen and (max-width: 768px) {
  .banner-cont .swiper-button-prev,
  .banner-cont .swiper-button-next {
    display: none;
  }
}

.banner .banner-s {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: none;
}

/* 调整整个页面背景为中性色 */
body {
  background-color: #ffffff;
  color: #333;
}

/* 重置banner-s样式，与参考图一致 */
.banner .banner-s {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: none;
  padding: 0;
  margin: 0;
}

/* 调整banner-list布局，四个卡片一行，间距适中 */
.banner .banner-s .banner-list {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 40px;
  gap: 24px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 调整banner-item样式，添加模糊玻璃效果 */
.banner-s .banner-list .banner-item {
  flex: 1;
  cursor: pointer;
  min-width: 240px;
  max-width: 280px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  /* 字体颜色黑色 */
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 移动端banner-s两列布局 */
@media screen and (max-width: 768px) {
  /* 重新编写移动端banner-s样式 */
  .banner-s .banner-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    padding: 15px;
    background: transparent;
    margin-top: -40px;
    position: relative;
    z-index: 10;
  }
  
  /* 确保section-content.banner-list在移动端也能正确显示为两列 */
  .banner-s .section-content.banner-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    padding: 15px;
  }
  
  /* 移动端banner-item样式 */
  .banner-s .banner-list .banner-item,
  .banner-s .section-content.banner-list .banner-item {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
    margin: 0;
    padding: 15px;
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* 调整移动端标题字体大小和位置 */
  .banner-s .banner-list .banner-item h5,
  .banner-s .section-content.banner-list .banner-item h5 {
    font-size: 14px;
    line-height: 20px;
    margin-left: 50px;
  }
  
  /* 调整移动端图标大小 */
  .banner-s .banner-list .banner-item::before,
  .banner-s .section-content.banner-list .banner-item::before {
    width: 40px;
    height: 40px;
  }
  
  /* 移动端图标样式 */
  .banner-s .banner-list .banner-item::before,
  .banner-s .section-content.banner-list .banner-item::before {
    content: '';
    position: static;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  /* 移动端标题样式 */
  .banner-s .banner-list .banner-item h5,
  .banner-s .section-content.banner-list .banner-item h5 {
    margin: 0;
    margin-left: 0;
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    line-height: 24px;
  }
  
  /* 移动端隐藏描述文字 */
  .banner-s .banner-list .banner-item .title-desc,
  .banner-s .section-content.banner-list .banner-item .title-desc {
    display: none;
  }
  
  /* 移动端隐藏banner-tag */
  .banner-s .banner-list .banner-item .banner-tag,
  .banner-s .section-content.banner-list .banner-item .banner-tag {
    display: none;
  }
}

/* 调整图标位置和样式，移除背景，只保留图标 */
.banner-s .banner-list .banner-item::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  transform: none;
  width: 50px;
  height: 50px;
  /* 移除背景色 */
  background: transparent;
  /* 移除圆角和阴影 */
  border-radius: 0;
  box-shadow: none;
  background-repeat: no-repeat;
  background-position: center;
  /* 增大图标尺寸 */
  background-size: 100%;
}

/* 使用新的图标文件 */
.banner-s .banner-list .banner-item#cloud-box::before {
  background: transparent url('/web/default/icon/001.png') no-repeat center center;
  background-size: 100%;
}

.banner-s .banner-list .banner-item#domain-box::before {
  background: transparent url('/web/default/icon/002.png') no-repeat center center;
  background-size: 100%;
}

.banner-s .banner-list .banner-item#cps-box::before {
  background: transparent url('/web/default/icon/003.png') no-repeat center center;
  background-size: 100%;
}

.banner-s .banner-list .banner-item#logon-box::before {
  background: transparent url('/web/default/icon/004.png') no-repeat center center;
  background-size: 100%;
}

/* 调整悬停效果，与参考图一致 */
.banner-s .banner-list .banner-item:hover {
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* 调整标题样式，适应更大的图标 */
.banner-s .banner-list .banner-item h5 {
  margin-top: 0;
  margin-bottom: 6px;
  margin-left: 66px;
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  line-height: 20px;
}

/* 调整描述文字样式，适应更大的图标 */
.banner-s .banner-list .banner-item .title-desc {
  font-size: 12px;
  color: #000000;
  margin: 0 0 0 66px;
  line-height: 16px;
  font-weight: 400;
}

/* 移除banner-tag，与参考图一致 */
.banner-list .banner-item .banner-tag {
  display: none;
}

/* 服务内容 */
.service {
  padding: 60px 0 80px;
  background-image: url('/web/default/img/bbb.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  position: relative !important;
  margin-top: -20px;
}

.service .section-content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

/* 顶部标题 */
.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-header .service-desc {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 移动端导航容器 */
.mobile-nav-container {
  position: relative;
  margin-bottom: 60px;
  border-bottom: 1px solid #f0f0f0;
}

/* 移动端导航切换按钮 */
.mobile-nav-toggle {
  display: none;
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.mobile-nav-toggle:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.mobile-nav-toggle .toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(30%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(80%);
}

.mobile-nav-toggle:hover .toggle-icon {
  filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(80%) contrast(70%);
}

.mobile-nav-toggle.active .toggle-icon {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(80%) contrast(70%);
}

/* 顶部导航 */
.service-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-bottom: 20px;
}

.service-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
}

.service-nav .nav-item:hover {
  background: #fafbfc;
}

.service-nav .nav-item.active {
  color: #1890ff;
}

.service-nav .nav-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.service-nav .nav-item.active img {
  transform: scale(1.1);
}

.service-nav .nav-item span {
  font-size: 14px;
  font-weight: 500;
}

/* 内容区域 */
.service-content-container {
  position: relative;
}

.content-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.content-left {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-left h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-align: center;
}

.server-icon {
  width: 120px;
  height: 120px;
  background: #f0f7ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.server-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.content-right {
  flex: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: none;
}

.product-grid {
  width: 100%;
}

.content-right {
  width: 100%;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-color: #e6f0ff;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}

.hot-tag {
  background: #ff4d4f;
  color: #ffffff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.special-tag {
  background: #fff2e8;
  color: #fa8c16;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.card-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.config-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.config-tags .tag {
  background: #f0f7ff;
  color: #1890ff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid #e6f0ff;
}

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

.buy-btn {
  background: #1890ff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #40a9ff;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-nav {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .service {
    padding: 60px 0;
  }
  
  .service-header h1 {
    font-size: 24px;
  }
  
  .service-header .service-desc {
    font-size: 14px;
  }
  
  /* 移动端显示折叠按钮 */
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* 移动端导航菜单默认隐藏 */
  .service-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    overflow-x: visible;
    justify-content: flex-start;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-top: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  /* 移动端导航菜单展开状态 */
  .service-nav.active {
    display: flex;
  }
  
  /* 移动端导航项样式 */
  .service-nav .nav-item {
    flex: 1;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 8px;
    margin: 0;
    transition: all 0.3s ease;
  }
  
  .service-nav .nav-item:last-child {
    border-bottom: none;
  }
  
  .service-nav .nav-item:hover {
    background: #f9f9f9;
    transform: translateX(4px);
  }
  
  .service-nav .nav-item.active {
    background: #f0f9ff;
    color: #1890ff;
  }
  
  /* 移动端导航项图片样式 */
  .service-nav .nav-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .service-nav .nav-item span {
    font-size: 14px;
    font-weight: 500;
  }
  
  
  .content-section {
    flex-direction: column;
    align-items: center;
  }
  
  .content-left {
    display: none;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card {
    padding: 20px;
    width: 100%;
    max-width: none;
  }
  
  .product-grid {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .service {
    padding: 40px 0;
  }
  
  .service-header h1 {
    font-size: 20px;
  }
  
  .service-nav .nav-item {
    flex: 0 0 auto;
    max-width: none;
  }
  
  .service-nav .nav-item img {
    width: 36px;
    height: 36px;
  }
  
  .service-nav .nav-item span {
    font-size: 12px;
  }
  
  .server-icon {
    width: 100px;
    height: 100px;
    padding: 16px;
  }
  
  .server-icon img {
    width: 64px;
    height: 64px;
  }
  
  .product-card {
    padding: 16px;
    width: 100%;
    max-width: none;
  }
  
  .product-grid {
    gap: 16px;
  }
  
  .card-header h3 {
    font-size: 14px;
  }
  
  .card-desc {
    font-size: 13px;
  }
  
  .buy-btn {
    padding: 6px 20px;
    font-size: 13px;
  }
}

/* 解决方案 - 根据图片仿写 */

.resolve {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.resolve .section-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 40px;
}

.resolve .section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  animation: fadeInUp 1s ease-out forwards;
}

.resolve .section-title h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.resolve .section-title h2::before,
.resolve .section-title h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(-50%);
}

.resolve .section-title h2::before {
  left: -70px;
}

.resolve .section-title h2::after {
  right: -70px;
}

.resolve .section-title .section-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.7;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 8px;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 解决方案内容布局 */
.resolve-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

/* 左侧解决方案分类 */
.solution-category {
  flex: 0 0 200px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 40px;
}

.category-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.category-item:hover {
  background: rgba(24, 144, 255, 0.2);
  color: #ffffff;
  transform: translateX(4px);
}

.category-item.active {
  background: #1890ff;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.4);
}

/* 中间解决方案内容 */
.solution-details {
  flex: 1;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 40px;
  border: none;
}

.solution-details h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.solution-tags .tag {
  background: rgba(24, 144, 255, 0.2);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(24, 144, 255, 0.3);
  transition: all 0.3s ease;
}

.solution-tags .tag:hover {
  background: rgba(24, 144, 255, 0.3);
  transform: translateY(-1px);
}

.solution-buttons {
  display: flex;
  gap: 15px;
}

.solution-buttons .btn {
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* 波纹效果 */
.solution-buttons .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.solution-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

/* 主要按钮样式 */
.solution-buttons .btn-primary {
  background: linear-gradient(135deg, #1890ff, #36cfc9);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.4);
}

.solution-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #40a9ff, #5cdbd3);
  box-shadow: 0 4px 16px rgba(24, 144, 255, 0.6);
  transform: translateY(-3px) scale(1.02);
}

.solution-buttons .btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.4);
}

/* 次要按钮样式 */
.solution-buttons .btn-secondary {
  background: #f8f9fa;
  color: #333333;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.solution-buttons .btn-secondary:hover {
  background: #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px) scale(1.02);
  border-color: #ced4da;
}

.solution-buttons .btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* 按钮点击动画 */
.solution-buttons .btn:active {
  animation: buttonClick 0.3s ease-in-out;
}

@keyframes buttonClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* 右侧扫码咨询 */
.solution-qrcode {
  flex: 0 0 200px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  border: none;
}

.qrcode-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.qrcode-tip {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  margin-bottom: 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 10px;
  width: 100%;
  height: 100%;
}

.logo-container .logo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  object-fit: cover;
}

.logo-container .logo:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

/* 大屏幕适配 */
@media screen and (max-width: 1200px) {
  .resolve-content {
    gap: 30px;
  }
  
  .solution-category {
    flex: 0 0 180px;
    padding: 16px;
  }
  
  .solution-details {
    padding: 24px;
  }
  
  .solution-qrcode {
    flex: 0 0 180px;
    padding: 16px;
  }
}

@media screen and (max-width: 992px) {
  .resolve {
    padding: 60px 0;
  }
  
  .resolve-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .solution-category {
    flex: 1;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 12px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .solution-category::-webkit-scrollbar {
    display: none;
  }
  
  .category-item {
    flex: 0 0 auto;
    margin-bottom: 0;
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .solution-details {
    flex: 1;
    max-width: 600px;
    width: 100%;
  }
  
  .solution-qrcode {
    flex: 1;
    max-width: 300px;
    width: 100%;
  }
}

/* 平板适配 */
@media screen and (max-width: 768px) {
  .resolve {
    padding: 40px 0;
  }

  .resolve .section-title h2 {
    font-size: 24px;
  }

  .resolve .section-title .section-desc {
    font-size: 14px;
  }

  .resolve .section-content {
    padding: 0 20px;
  }

  .solution-category {
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 12px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .solution-category::-webkit-scrollbar {
    display: none;
  }

  .category-item {
    flex: 0 0 auto;
    text-align: center;
    margin-bottom: 0;
    padding: 8px 16px;
    font-size: 12px;
  }

  .solution-details {
    padding: 20px;
  }

  .solution-details h3 {
    font-size: 18px;
  }

  .solution-desc {
    font-size: 13px;
  }

  .solution-buttons {
    flex-direction: column;
  }

  .solution-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* 手机适配 */
@media screen and (max-width: 480px) {
  .resolve {
    padding: 30px 0;
  }

  .resolve .section-title h2 {
    font-size: 20px;
  }

  .resolve .section-title .section-desc {
    font-size: 12px;
    padding: 0 10px;
  }

  .solution-category {
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 12px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .solution-category::-webkit-scrollbar {
    display: none;
  }

  .category-item {
    flex: 0 0 auto;
    text-align: center;
    margin-bottom: 0;
    padding: 8px 16px;
    font-size: 12px;
  }

  .solution-details {
    padding: 16px;
  }

  .solution-details h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .solution-desc {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .solution-tags {
    gap: 8px;
    margin-bottom: 20px;
  }

  .solution-tags .tag {
    font-size: 11px;
    padding: 4px 12px;
  }

  .logo-container {
    padding: 16px;
  }

  .logo-container .logo {
    width: 100px;
  }

  .solution-qrcode {
    display: none;
  }
}

/* 服务实践 - 优化设计 */
.practice {
  background-image: url('/web/default/img/ccc.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 80px 0 !important;
  color: #333 !important;
  position: relative !important;
  background-color: transparent !important;
}

.practice .section-content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.practice .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.practice .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.practice .section-title .section-desc {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

/* 卡片容器 */
.practice .practice-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

/* 卡片样式 */
.practice .practice-box {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 0;
  max-width: none;
  flex: none;
  text-align: left;
}

/* 悬停效果 */
.practice .practice-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 移除之前的伪元素 */
.practice .practice-box::before {
  content: none;
}

/* 卡片内容区 */
.practice .practice-box .box-content {
  flex: 1;
  margin-right: 24px;
}

/* 标题样式 */
.practice .practice-box .over-hide {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  height: auto;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.4;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
}

/* 描述文字样式 */
.practice .practice-box .font-grey {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 16px 0;
  text-align: left;
  font-weight: 400;
  flex-grow: 1;
}

/* 图标样式 */
.practice .practice-box .icon-container {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  box-shadow: none;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
}

.practice .practice-box:hover .icon-container {
  transform: none;
  box-shadow: none;
}

.practice .practice-box .icon-container img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

/* 左侧图片布局 */
.practice .practice-box.left-img {
  flex-direction: row;
}

.practice .practice-box.left-img .icon-container {
  order: 1;
  margin-right: 20px;
}

.practice .practice-box.left-img .box-content {
  order: 2;
  margin-right: 0;
}

/* 右侧图片布局 */
.practice .practice-box.right-img {
  flex-direction: row;
}

.practice .practice-box.right-img .icon-container {
  order: 2;
  margin-left: 20px;
}

.practice .practice-box.right-img .box-content {
  order: 1;
  margin-right: 0;
}

.practice .practice-box .icon-container img.img-fade-in {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 标签容器 */
.practice .practice-box .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

/* 标签样式 */
.practice .practice-box .tag {
  background: #f0f7ff;
  color: #1890ff;
  border: 1px solid #e6f0ff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.practice .practice-box:hover .tag {
  background: #e6f0ff;
  border-color: #d9e8ff;
}

/* 显示图标容器中的图片 */
.practice .practice-box .icon-container img {
  display: block;
}

/* 隐藏品牌组 */
.brand-group {
  display: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .practice {
    padding: 60px 0;
  }
  
  .practice .section-title {
    margin-bottom: 40px;
  }
  
  .practice .section-title h2 {
    font-size: 24px;
  }
  
  .practice .section-title .section-desc {
    font-size: 14px;
  }
  
  .practice .practice-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .practice .practice-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
  }
  
  .practice .practice-box .icon-container {
    margin: 0 0 16px 0;
    width: 56px;
    height: 56px;
  }
  
  .practice .practice-box .icon-container img {
    width: 28px;
    height: 28px;
  }
  
  .practice .practice-box .box-content {
    margin-right: 0;
  }
  
  .practice .practice-box .over-hide {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .practice .practice-box .font-grey {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .practice .practice-box .tag {
    padding: 3px 10px;
    font-size: 11px;
  }
  
  .practice .practice-box .tags-container {
    gap: 6px;
  }
}

/* 小屏手机样式 */
@media (max-width: 480px) {
  .practice {
    padding: 40px 0;
  }
  
  .practice .section-content {
    padding: 0 16px;
  }
  
  .practice .section-title {
    margin-bottom: 32px;
  }
  
  .practice .section-title h2 {
    font-size: 22px;
  }
  
  .practice .practice-box {
    padding: 16px;
  }
  
  .practice .practice-box .icon-container {
    width: 52px;
    height: 52px;
  }
  
  .practice .practice-box .icon-container img {
    width: 26px;
    height: 26px;
  }
  
  .practice .practice-box .over-hide {
    font-size: 15px;
  }
  
  .practice .practice-box .font-grey {
    font-size: 12px;
  }
}

/* 平板横向样式 */
@media (min-width: 769px) and (max-width: 1024px) {
  .practice .practice-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .practice .practice-box {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .practice .practice-box .icon-container {
    margin: 0 20px 0 0;
  }
}

/* 基础措施 - 优化设计 */
.section-base {
  background-image: url('/web/default/img/aaa.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/* 移除装饰元素 */
.section-base::before,
.section-base::after {
  display: none;
}

.section-base .section-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
}

.section-base .cert .section-content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px;
}

.section-base .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.section-base .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.section-base .section-desc {
  font-size: 16px;
  color: #666;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.6;
  text-align: center;
}

/* 基础信息布局 - 桌面端样式 */
@media (min-width: 769px) {
  /* 基础信息布局 */
  .section-base .base {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    gap: 40px;
    flex-wrap: nowrap;
  }
  
  /* 基础内容样式 */
  .base-content {
    flex: 1;
    padding-right: 20px;
  }
  
  /* 统计数据样式 */
  .base-stats {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    padding: 0;
  }
  
  .stat-item {
    text-align: left;
  }
  
  .stat-item h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1890ff;
    margin: 0 0 8px 0;
    line-height: 1;
  }
  
  .stat-item .stat-desc {
    font-size: 16px;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.4;
    font-weight: 500;
  }
  
  .stat-item .stat-subdesc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
  }
  
  /* 地图容器样式 */
  .base-map-container {
    position: relative;
    width: 60%;
    max-width: 600px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 地图背景图片样式 */
  .base-map-container .map-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    max-width: 100%;
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    animation: none;
  }
  
  /* 资质认证区域样式 */
  .cert {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  
  /* 资质认证卡片样式 - 移除卡片背景 */
  .cert-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    transform: none;
  }
  
  /* 资质认证列表样式 - 水平排列 */
  .cert-list {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .cert-list .cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 140px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  
  .cert-list .cert-item img {
    height: 80px;
    width: 80px;
    cursor: pointer;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
    max-width: 100%;
    opacity: 1 !important;
    display: block;
    object-fit: contain;
  }
  
  .cert-list .cert-item img:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(24, 144, 255, 0.2);
  }
  
  .cert-list .cert-item .mt-20 {
    font-size: 14px;
    color: #333;
    margin-top: 12px;
    text-align: center;
    max-width: 150px;
    white-space: normal;
    font-weight: 500;
    line-height: 1.4;
  }
}

/* 移动端样式 */
@media (max-width: 768px) {
  /* 调整整个section-base的内边距 */
  .section-base {
    padding: 60px 0 30px;
  }
  
  /* 调整标题样式 */
  .section-base .section-title h2 {
    font-size: 24px;
  }
  
  .section-base .section-desc {
    font-size: 14px;
  }
  
  /* 调整基础信息布局 */
  .section-base .base {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    gap: 15px;
    flex-wrap: nowrap;
  }
  
  /* 地图容器样式 */
  .base-map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 地图背景图片样式 */
  .base-map-container .map-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    max-width: 100%;
    display: block;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    animation: none;
  }
  
  /* 基础内容样式 - 在手机端显示 */
  .base-content {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  
  /* 统计数据样式 - 水平排列 */
  .base-stats {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: rgba(24, 144, 255, 0.05);
    border-radius: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .base-stats::-webkit-scrollbar {
    display: none;
  }

  .stat-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
  }

  .stat-item h2 {
    font-size: 20px;
    color: #1890ff;
    margin: 0 0 4px 0;
    line-height: 1;
  }

  .stat-item .stat-desc {
    font-size: 11px;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.3;
    font-weight: 500;
  }

  /* 在手机端显示副标题 */
  .stat-item .stat-subdesc {
    display: none;
  }
  
  /* 地图容器样式 */
  .base-map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 资质认证区域样式 */
  .cert {
    margin-top: 40px;
  }
  
  /* 资质认证卡片样式 */
  .cert-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    transform: none;
  }
  
  /* 资质认证列表样式 - 两排三列布局，手机端一排三个 */
  .cert-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 8px;
    justify-items: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .cert-list .cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 80px;
    height: 120px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .cert-list .cert-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  }

  .cert-list .cert-item img {
    height: 55px;
    width: 55px;
    cursor: pointer;
    background: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 6px;
    margin: 0 auto 6px;
    transition: all 0.3s ease;
    max-width: 100%;
    opacity: 1 !important;
    display: block;
    object-fit: contain;
    background: #ffffff;
  }

  .cert-list .cert-item:hover img {
    transform: scale(1.05);
  }

  .cert-list .cert-item .mt-20 {
    font-size: 10px;
    color: #333;
    margin-top: 6px;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    font-weight: 500;
    line-height: 1.3;
    padding: 0 4px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* 修复图片动画问题 - 只在桌面端生效 */
@media (min-width: 769px) {
  /* 修复图片动画问题 */
  .section-base .base img.img-fade-in {
    opacity: 1 !important;
    animation: none;
  }
  
  /* 修复图片动画问题 */
  .section-base .base img.img-fade-in {
    opacity: 1 !important;
    animation: breathing 3s ease-in-out infinite, fadeIn 0.8s ease-out forwards;
  }
  
  /* 科技感呼吸灯动画 */
  @keyframes breathing {
    0% {
      box-shadow: 0 4px 20px rgba(24, 144, 255, 0.3), 0 0 0 0 rgba(24, 144, 255, 0.1);
    }
    50% {
      box-shadow: 0 4px 20px rgba(24, 144, 255, 0.5), 0 0 0 20px rgba(24, 144, 255, 0.05);
    }
    100% {
      box-shadow: 0 4px 20px rgba(24, 144, 255, 0.3), 0 0 0 0 rgba(24, 144, 255, 0.1);
    }
  }
}

/* 移动端图片样式 */
@media (max-width: 768px) {
  /* 修复图片动画问题 */
  .section-base .base img.img-fade-in {
    opacity: 1 !important;
    animation: none;
  }
  
  /* 移动端图片样式 */
  @media screen and (max-width: 480px) {
    .section-base .base img {
      width: 100%;
      padding: 10px;
      min-width: 180px;
      max-width: 100%;
    }
  }
}

/* 视频区域动画效果 */
.video-container {
  opacity: 0;
  animation: fadeInUpScale 1.2s ease-out forwards;
}

.video-wrapper {
  opacity: 0;
  animation: fadeInUpScale 1s ease-out 0.2s forwards;
}

.video-overlay {
  opacity: 0;
  animation: fadeInUpScale 0.8s ease-out 0.4s forwards;
}

.video-text {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.video-btn {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

/* 增强版淡入上移动画，带有缩放效果 */
@keyframes fadeInUpScale {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 承诺区域动画效果 */
.section-promise {
  opacity: 0;
  animation: fadeInUpScale 1s ease-out forwards;
}

.promise {
  opacity: 0;
  animation: fadeInUpScale 0.8s ease-out 0.2s forwards;
}

.promise-box {
  opacity: 0;
  animation: fadeInUpScale 0.6s ease-out forwards;
  transition: all 0.3s ease;
}

.promise-box:nth-child(1) {
  animation-delay: 0.4s;
}

.promise-box:nth-child(2) {
  animation-delay: 0.5s;
}

.promise-box:nth-child(3) {
  animation-delay: 0.6s;
}

.promise-box:nth-child(4) {
  animation-delay: 0.7s;
}

/* 为承诺区域图片添加入场动画 */
.promise-box img {
  opacity: 0;
  animation: fadeInUpScale 0.5s ease-out forwards;
  transition: all 0.3s ease;
}

.promise-box:nth-child(1) img {
  animation-delay: 0.6s;
}

.promise-box:nth-child(2) img {
  animation-delay: 0.7s;
}

.promise-box:nth-child(3) img {
  animation-delay: 0.8s;
}

.promise-box:nth-child(4) img {
  animation-delay: 0.9s;
}

/* 为承诺区域文字添加入场动画 */
.promise-box span {
  opacity: 0;
  animation: fadeInRight 0.5s ease-out forwards;
  transition: all 0.3s ease;
}

.promise-box:nth-child(1) span {
  animation-delay: 0.7s;
}

.promise-box:nth-child(2) span {
  animation-delay: 0.8s;
}

.promise-box:nth-child(3) span {
  animation-delay: 0.9s;
}

.promise-box:nth-child(4) span {
  animation-delay: 1.0s;
}

/* 悬停效果 */
.promise-box:hover {
  transform: translateY(-2px);
}

.promise-box:hover img {
  transform: scale(1.1) rotate(5deg);
}

.promise-box:hover span {
  color: #1890ff;
}

/* 移动端承诺服务样式 */
@media (max-width: 768px) {
  /* 移动端承诺服务整体样式 */
  .promise.section-content.section-p {
    background: #333;
    color: #fff;
    padding: 10px;
    margin: 0;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }
  
  /* 移动端承诺服务项样式 */
  .promise-box {
    flex: 0 0 calc(50% - 4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .promise-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  /* 移动端承诺服务图片样式 */
  .promise-box img {
    width: 32px;
    height: 32px;
    margin: 0 auto 6px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }

  /* 移动端承诺服务文字样式 */
  .promise-box span {
    font-size: 11px;
    color: #fff;
    margin-left: 0;
    line-height: 1.3;
    padding: 0 2px;
  }
  
  /* 移动端承诺服务文字悬停效果 */
  .promise-box:hover span {
    color: #1890ff;
  }
  
  /* 移动端footer整体样式 */
  .section-content.section-p {
    background: #333;
    color: #fff;
    padding: 15px 15px;
    margin: 0;
    min-height: auto;
  }
  
  /* 移动端footer-content样式 */
  .footer-content {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
  }
  
  /* 移动端footer-nav样式 */
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  /* 移动端footer-nav-left样式 */
  .footer-nav-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
  }
  
  /* 移动端footer-nav-box样式 */
  .footer-nav-box {
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
    margin-bottom: 8px;
  }
  
  /* 移动端footer-nav-head样式 */
  .footer-nav-head {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* 移动端footer-nav-cont样式 */
  .footer-nav-cont {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  
  /* 移动端footer-nav-item样式 */
  .footer-nav-item {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
  }
  
  /* 移动端footer-nav-item链接样式 */
  .footer-nav-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  /* 移动端footer-nav-item链接悬停样式 */
  .footer-nav-item a:hover {
    color: #1890ff;
  }
  
  /* 移动端footer-nav-right样式 */
  .footer-nav-right {
    width: 100%;
    margin-top: 8px;
  }
  
  /* 移动端qr-code样式 */
  .qr-code {
    display: none;
  }
  
  /* 移动端客服热线区域样式 */
  .footer-link {
    background: #1890ff;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 4px;
    text-align: center;
  }
  
  /* 移动端客服热线文字样式 */
  .footer-link span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
  }
  
  /* 移动端备案信息区域样式 */
  .footer-record {
    background: #333333;
    padding: 10px 0 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    min-height: auto;
  }
  
  /* 移动端备案信息文字样式 */
  .footer-record .left-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  /* 移动端备案信息链接样式 */
  .footer-record .left-info a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-decoration: none;
    line-height: 1.3;
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
  }
  
  /* 移动端备案信息文字样式 */
  .footer-record .left-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.3;
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
  }
  
  /* 移动端版权信息样式 - 隐藏 */
  .footer-record .left-info .copyright-info {
    display: none;
  }
  
  /* 移动端回到顶部按钮 */
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(24, 144, 255, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .back-to-top:hover {
    background: #1890ff;
    transform: translateY(-2px);
  }
  
  /* 隐藏PC端特定元素 */
  .footer-nav-right .qr-code {
    display: none;
  }
  
  /* 调整间距 */
  .footer-nav-item.mt-20 {
    margin-top: 6px !important;
  }
  
  /* 移除可能的底部空白 */
  body {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* PC端样式调整 */
@media (min-width: 769px) {
  /* 减少PC端footer的空白 */
  .section-content.section-p {
    padding: 20px;
    margin: 0;
    min-height: auto;
  }
  
  .footer-content {
    margin: 0;
    padding: 0;
  }
  
  .footer-nav {
    margin-bottom: 20px;
  }
  
  .footer-link {
    margin: 15px 0;
  }
  
  .footer-record {
    margin-top: 15px;
    padding: 15px 0;
  }
  
  /* 移除可能的底部空白 */
  body {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* 新闻部分 - 1:1仿写参考图样式 */
/* 为新闻部分的section-content添加入场动画 */
.news .section-content {
  opacity: 0;
  animation: fadeInUpScale 1s ease-out forwards;
}

/* 为新闻内容添加入场动画，延迟执行 */
.news-content {
  margin-top: 50px;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  opacity: 0;
  animation: fadeInUpScale 0.8s ease-out 0.3s forwards;
}

/* 为新闻容器添加入场动画，错开时间 */
.news-cont {
  opacity: 0;
  animation: fadeInUpScale 0.6s ease-out forwards;
}

.news-cont:nth-child(1) {
  animation-delay: 0.5s;
}

.news-cont:nth-child(2) {
  animation-delay: 0.7s;
}

/* 为新闻项添加入场动画 */
.news-item {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}

.news-cont:nth-child(1) .news-item:nth-child(1) { animation-delay: 0.8s; }
.news-cont:nth-child(1) .news-item:nth-child(2) { animation-delay: 0.9s; }
.news-cont:nth-child(1) .news-item:nth-child(3) { animation-delay: 1.0s; }
.news-cont:nth-child(1) .news-item:nth-child(4) { animation-delay: 1.1s; }
.news-cont:nth-child(1) .news-item:nth-child(5) { animation-delay: 1.2s; }

.news-cont:nth-child(2) .news-item:nth-child(1) { animation-delay: 1.0s; }
.news-cont:nth-child(2) .news-item:nth-child(2) { animation-delay: 1.1s; }
.news-cont:nth-child(2) .news-item:nth-child(3) { animation-delay: 1.2s; }
.news-cont:nth-child(2) .news-item:nth-child(4) { animation-delay: 1.3s; }
.news-cont:nth-child(2) .news-item:nth-child(5) { animation-delay: 1.4s; }

/* 增强版淡入上移动画，带有缩放效果 */
@keyframes fadeInUpScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 模糊玻璃效果 */
.news-cont {
  flex: 1;
  width: calc(50% - 12px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* 悬停效果 */
.news-cont:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* 新闻头部样式 - 左边标题，右边更多按钮 */
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  width: 100%;
}

/* 新闻标题样式 - 左边的div */
.news-head .news-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  position: relative;
  padding-left: 0;
  line-height: 1.2;
  flex-shrink: 0;
  text-align: left;
}

/* 移除原有的标题前装饰 */
.news-head .news-title::before {
  content: none;
}

/* 更多按钮样式 - 右边的div */
.news-head .news-more {
  font-size: 14px;
  color: #1890ff;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  text-align: right;
}

/* 更多按钮链接样式 */
.news-more a {
  color: #1890ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 更多按钮悬停效果 */
.news-head .news-more:hover {
  color: #40a9ff;
  transform: translateX(2px);
}

/* 更多按钮链接悬停效果 */
.news-head .news-more:hover a {
  color: #40a9ff;
}

/* 新闻列表样式 */
.news-list {
  margin-top: 0;
  flex-grow: 1;
}

/* 新闻项样式 */
.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  line-height: normal;
  width: 100%;
  box-sizing: border-box;
}

/* 移除原有的悬停背景色和阴影 */
.news-item:hover {
  background: transparent;
  box-shadow: none;
}

/* 列表项内的布局 - 确保标题在左，数字在右 */
.news-item .fboxRow {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  min-width: 0;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}

/* 新闻标题样式 - 前面的标题 */
.news-item .title {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  line-height: 1.6;
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  order: 1;
  margin: 0;
  padding: 0;
  display: block;
  text-align: left;
}

/* 编号样式 - 后面的数字 */
.news-item .number {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #1890ff;
  color: white;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
  margin-left: auto;
  flex-shrink: 0;
  order: 2;
  transition: all 0.3s ease;
}

/* 悬停效果 */
.news-item:hover .number {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}

/* 移除原有的编号特殊样式 */
.news-cont .news-item:nth-child(1) .number,
.news-cont .news-item:nth-child(2) .number,
.news-cont .news-item:nth-child(3) .number {
  background: #1890ff;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.news-item .title:hover {
  color: #1890ff;
}

/* 时间样式 */
.news-item .time {
  font-size: 12px;
  color: #999;
  min-width: 80px;
  text-align: right;
  flex-shrink: 0;
  margin-left: 12px;
}

/* 移动端响应式设计 */
@media (max-width: 768px) {
  /* 新闻内容改为垂直排列，单列显示 */
  .news-content {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  /* 调整新闻容器样式 */
  .news-cont {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 20px;
  }
  
  /* 调整新闻标题字体大小 */
  .news-head .news-title {
    font-size: 16px;
  }
  
  /* 调整新闻项样式 */
  .news-item {
    padding: 10px 0;
  }
  
  /* 调整编号大小 */
  .news-item .number {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  
  /* 调整标题字体大小 */
  .news-item .title {
    font-size: 13px;
  }
  
  /* 调整时间字体大小 */
  .news-item .time {
    font-size: 11px;
    min-width: 70px;
    margin-left: 8px;
  }
  
  /* 调整新闻头部样式，确保移动端仍为水平布局 */
  .news-head {
    margin-bottom: 16px;
    padding-bottom: 10px;
    flex-direction: row !important;
    gap: 0 !important;
  }
  
  /* 调整更多按钮样式 */
  .news-head .news-more {
    font-size: 14px;
  }
}

/* 按钮新拟态样式 */
.btn {
  background: #e0e5ec;
  box-shadow: 6px 6px 12px #c1c5d0, 
              -6px -6px 12px #ffffff;
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn img {
  height: 16px;
  width: auto;
  vertical-align: middle;
}

.btn:hover {
  background: #e0e5ec;
  box-shadow: inset 4px 4px 8px #c1c5d0, 
              inset -4px -4px 8px #ffffff;
  color: #FF6739;
}

.btn-normal {
  background: linear-gradient(135deg, #FF6739, #FF8A65);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(255, 103, 57, 0.2);
}

.btn-normal:hover {
  background: linear-gradient(135deg, #FF5722, #FF7043);
  box-shadow: 0 4px 8px rgba(255, 103, 57, 0.3);
  color: white;
  transform: translateY(-1px);
}

/* 首页注册按钮特定样式 */
#registBtn {
  background: linear-gradient(135deg, #1890ff, #40a9ff) !important;
  color: white !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 4px rgba(24, 144, 255, 0.2) !important;
}

#registBtn img {
  height: 16px !important;
  width: auto !important;
  vertical-align: middle !important;
}

#registBtn:hover {
  background: linear-gradient(135deg, #096dd9, #1890ff) !important;
  box-shadow: 0 4px 8px rgba(24, 144, 255, 0.3) !important;
  color: white !important;
  transform: translateY(-1px) !important;
}

.btn-normal-light {
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-normal-light:hover {
  background: #e9ecef;
  border-color: #ced4da;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #FF6739;
  transform: translateY(-1px);
}

/* 标题样式 */
.section-title h2 {
  background: linear-gradient(135deg, #333, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* 移除原有的边框和阴影 */
.section-content {
  background: transparent;
}

.index .footer-link {
  display: block;
}

.over-hide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 24px;
}

.over-hide+p {
  display: flex;
  flex-wrap: wrap;
  word-break: break-all;
}

/* 轮播图响应式设计 */
@media (max-width: 1200px) {
  .banner-cont {
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .section.banner {
    padding: 10px 0;
  }
  
  .banner-cont .swiper-slide {
    height: 400px;
  }
  
  .banner-cont .section-content h1 {
    font-size: 28px;
  }
  
  .banner-cont .banner-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .banner-cont .swiper-slide {
    height: 350px;
  }
  
  .banner-cont .section-content h1 {
    font-size: 24px;
  }
  
  .banner-cont .banner-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

/* Video 容器样式 */
.video-container {
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.video-wrapper {
  width: 100%;
  position: relative;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Video 叠加内容 */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 20px;
  color: white;
  z-index: 10;
}

.video-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  max-width: 80%;
  line-height: 1.5;
}

.video-btn {
  background-color: white;
  color: #0066cc;
  padding: 12px 30px;
  border: 2px solid #0066cc;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  font-weight: bold;
  /* 移除新拟态效果 */
  box-shadow: none;
  /* 确保覆盖 btn 类的新拟态样式 */
  background: white !important;
}

.video-btn:hover {
  background-color: #0066cc !important;
  color: white;
  box-shadow: none;
}

@media (max-width: 768px) {
  .video-container video {
    min-height: 200px;
  }
  
  .video-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .video-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .video-container video {
    min-height: 150px;
  }
  
  .video-text {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .video-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* 移动端登录菜单样式 */
.mobile-login-in {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px;
}

#mobileHeadImg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  margin-top: 2px;
}

.mobile-login-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: -2px;
}

.mobile-login-menu .mobile-username {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.mobile-login-menu-item {
  font-size: 12px;
  color: #666;
  padding: 4px 0;
}

.mobile-login-menu-item .real-name {
  font-size: 10px;
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 10px;
}

.mobile-login-menu-item .no-real-name {
  background-color: #ff4d4f;
  color: white;
}

.mobile-login-menu-item .real-name {
  background-color: #52c41a;
  color: white;
}

/* 推荐产品导航栏样式 */
.recommend-nav {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 30px 0;
  overflow: hidden;
}

.recommend-nav-item {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.recommend-nav-item:last-child {
  border-bottom: none;
}

.recommend-nav-item:hover {
  background-color: #f8f9fa;
  transform: translateX(4px);
}

.recommend-nav-item .nav-icon {
  width: 32px;
  height: 32px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f7ff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.recommend-nav-item:hover .nav-icon {
  background-color: #e6f0ff;
  transform: scale(1.05);
}

.recommend-nav-item .nav-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.recommend-nav-item .nav-text {
  flex: 1;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.recommend-nav-item:hover .nav-text {
  color: #1890ff;
}

.recommend-nav-item .nav-arrow {
  width: 20px;
  height: 20px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.recommend-nav-item .nav-arrow::after {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url('/web/default/icon/dk.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: all 0.3s ease;
}

.recommend-nav-item:hover .nav-arrow {
  color: #1890ff;
}

.recommend-nav-item:hover .nav-arrow::after {
  transform: translateX(2px);
}

.recommend-nav-item.active .nav-arrow {
  transform: rotate(90deg);
  color: #1890ff;
}

/* 展开内容样式 */
.recommend-nav-content {
  display: none;
  background-color: #f9f9f9;
  padding: 8px 0;
  border-top: 1px solid #f5f5f5;
  overflow: hidden;
}

.recommend-nav-content.show {
  display: block;
  animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 300px;
  }
}

.nav-content-item {
  padding: 10px 48px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nav-content-item:hover {
  background-color: #f0f7ff;
  color: #1890ff;
  transform: translateX(6px);
}

.nav-content-item::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #d9d9d9;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-content-item:hover::before {
  background-color: #1890ff;
  transform: translateY(-50%) scale(1.2);
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
  .recommend-nav {
    border-radius: 8px;
    margin: 20px 0;
  }
  
  .recommend-nav-item {
    padding: 12px 20px;
  }
  
  .recommend-nav-item .nav-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
  }
  
  .recommend-nav-item .nav-icon img {
    width: 18px;
    height: 18px;
  }
  
  .recommend-nav-item .nav-text {
    font-size: 14px;
  }
  
  .nav-content-item {
    padding: 8px 40px;
    font-size: 13px;
  }
  
  .nav-content-item::before {
    left: 30px;
  }
}

/* 淡入动画 */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
