/* ========================================
   喵星云首页 - 浅蓝+白色现代简洁设计
   ======================================== */

/* ========== 通用样式 ========== */
* {
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

#index .nav-icon .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#index .nav-icon .brand-text {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #0052D4;
  line-height: 1;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  #index .nav-icon .brand-text {
    font-size: 14px;
  }
}

/* ========== Hero 区域（首页新结构） ========== */
.hero {
  width: 100%;
  min-height: 560px;
  padding: 110px 20px 90px;
  background: linear-gradient(135deg, #E8F4FF 0%, #F0F8FF 50%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 212, 0.08) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  left: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
}

.hero-content {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 32px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  color: #0052D4;
  margin-bottom: 14px;
}

@keyframes hero-typing {
  from {
    width: 0;
  }
  to {
    width: 3em;
  }
}

@keyframes hero-caret {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: #0052D4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .typewriter,
  .hero-subtitle .typewriter {
    animation: none;
    border-right: none;
    width: auto;
  }
}

.hero-subtitle {
  font-size: 26px;
  color: #2C7BFF;
  margin-bottom: 20px;
  font-weight: 600;
}

@keyframes hero-sub-typing {
  from {
    width: 0;
  }
  to {
    width: 8em;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title .typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #0052D4;
  width: 0;
}

.typewriter-title {
  animation: hero-typing 1.2s steps(3, end) 0.2s forwards,
    hero-caret 0.8s step-end infinite;
}


.fade-up {
  animation: fade-up 0.8s ease-out 0.6s both;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.9;
  color: #5C6B7D;
  max-width: 760px;
  margin: 0 auto;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.hero .btn {
  min-width: 130px;
  height: 42px;
  border-radius: 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.hero .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0052D4 0%, #0066FF 100%);
  box-shadow: 0 8px 20px rgba(0, 82, 212, 0.2);
}

.hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 82, 212, 0.26);
}

.hero .btn-secondary {
  color: #0052D4;
  border-color: #BFD9FF;
  background: #fff;
}

.hero .btn-secondary:hover {
  background: #F3F9FF;
}

/* ========== 快捷入口（首页新结构） ========== */
.quick-links {
  margin-top: -44px;
  position: relative;
  z-index: 11;
}

.quick-links .section-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-links .link-card {
  background: #fff;
  border: 1px solid #E8F4FF;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 82, 212, 0.08);
  transition: all 0.25s ease;
}

.quick-links .link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 82, 212, 0.12);
}

.quick-links .link-icon {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 12px;
}

.quick-links .link-card h3 {
  margin: 0 0 8px;
  color: #0052D4;
  font-size: 18px;
  font-weight: 700;
}

.quick-links .link-card p {
  margin: 0;
  color: #8A96A3;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 46px;
  }

  .quick-links .section-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding-top: 90px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn {
    width: 180px;
  }

  .quick-links {
    margin-top: -32px;
  }

  .quick-links .section-content {
    grid-template-columns: 1fr;
  }
}

/* ========== Banner 区域 ========== */
.banner-cont {
  width: 100%;
}

.banner-cont .swiper-slide {
  height: 640px;
  width: 100%;
  background: linear-gradient(135deg, #E8F4FF 0%, #F0F8FF 50%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner-cont .swiper-slide::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 212, 0.08) 0%, transparent 70%);
  right: -150px;
  top: -100px;
  z-index: 0;
}

.banner-cont .swiper-slide::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
  left: -80px;
  bottom: -80px;
  z-index: 0;
}

.banner-cont .swiper-slide .img {
  display: none;
}

.banner-cont .swiper-slide .section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #0052D4;
}

.banner-cont .swiper-slide h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0052D4;
  letter-spacing: -1px;
  line-height: 1.2;
}

.banner-cont .banner-desc {
  font-size: 18px;
  color: #555555;
  margin-top: 16px;
  margin-bottom: 40px;
  max-width: 680px;
  line-height: 1.8;
  font-weight: 400;
}

.banner-cont .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #D6E9FF;
  opacity: 1;
  border-radius: 50%;
  margin: 0 6px;
}

.banner-cont .swiper-pagination-bullet-active {
  width: 32px;
  background: #0052D4;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Banner 下方产品卡片 */
.banner .banner-s {
  box-shadow: 0 10px 30px rgba(0, 82, 212, 0.1);
  border-radius: 16px;
  background: white;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  border: 1px solid #E8F4FF;
}

.banner .banner-s .banner-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  gap: 0;
}

.banner-s .banner-list .banner-item {
  cursor: pointer;
  padding: 48px 32px;
  border-right: 1px solid #E8F4FF;
  transition: all 0.3s ease;
  text-align: center;
}

.banner-s .banner-list .banner-item:last-child {
  border-right: none;
}

.banner-s .banner-list .banner-item:hover {
  background: #F8FCFF;
  transform: translateY(-6px);
}

.banner-list .banner-item h5 {
  color: #0052D4;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.banner-list .banner-item .title-desc {
  color: #999999;
  font-size: 13px;
  margin-bottom: 16px;
}

.banner-list .banner-item .banner-tag {
  font-size: 13px;
  color: #0052D4;
  border: 2px solid #0052D4;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}

.banner-list .banner-item:hover .banner-tag {
  background: #0052D4;
  color: white;
}

@media (max-width: 1024px) {
  .banner .banner-s .banner-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .banner .banner-s .banner-list {
    grid-template-columns: 1fr;
  }
  .banner-s .banner-list .banner-item:last-child {
    border-right: 1px solid #E8F4FF;
  }
  .banner-s .banner-list .banner-item {
    border-right: 1px solid #E8F4FF;
    border-bottom: 1px solid #E8F4FF;
  }
}

/* ========== Section 通用标题 ========== */
.section {
  padding: 80px 0;
}

.section-content {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(12px, 2vw, 32px);
}

#index .hero,
#index .quick-links,
#index .section,
#index .section-bg,
#index .section-base,
#index .news,
#index .partners,
#index .products {
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0052D4;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title .section-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== 服务内容 Section ========== */
.service {
  background: #FFFFFF;
  padding: 100px 0;
}

.service-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service .service-box {
  padding: 40px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #E8F4FF;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service .service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0052D4 0%, #0066FF 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service .service-box:hover::before {
  transform: scaleX(1);
}

.service .service-box:hover {
  border-color: #D6E9FF;
  box-shadow: 0 12px 32px rgba(0, 82, 212, 0.12);
  transform: translateY(-8px);
}

.service .service-box .service-title {
  color: #0052D4;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.service .service-box:hover .service-title {
  color: #0042A6;
}

.service-box .title-desc {
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service .service-hot {
  position: relative;
}

.service .service-hot::after {
  content: 'HOT';
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service .service-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.service .service-tag-group .service-tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 14px;
  color: #0052D4;
  background: #E8F4FF;
  border: 1px solid #D6E9FF;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.service .service-box:hover .service-tag {
  background: #0052D4;
  color: white;
  border-color: #0052D4;
}

/* 产品价格和按钮 */
.service-btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #E8F4FF;
  margin-top: auto;
  gap: 16px;
  flex-wrap: wrap;
}

.service-price {
  color: #0052D4;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.service-price .font24 {
  font-size: 32px;
  margin: 0 4px;
}

.service-btn-group .fboxWrap {
  display: flex;
  gap: 12px;
}

.service-btn-group .btn {
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 13px;
}

/* ========== 首页产品板块（兼容 products 结构） ========== */
.products {
  background: #FFFFFF;
  padding: 100px 0;
}

.products .service-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.products .service-content .fboxRow {
  display: contents;
}

.products .service-content .fboxRow > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.products .service-content .fboxRow > a.flex1 {
  flex: initial;
}

.products .service-box {
  height: 100%;
  padding: 40px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #E8F4FF;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.products .service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0052D4 0%, #0066FF 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.products .service-box:hover::before {
  transform: scaleX(1);
}

.products .service-box:hover {
  border-color: #D6E9FF;
  box-shadow: 0 12px 32px rgba(0, 82, 212, 0.12);
  transform: translateY(-8px);
}

.products .service-box .service-title {
  color: #0052D4;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.products .service-hot {
  position: relative;
}

.products .service-hot::after {
  content: 'HOT';
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.products .service-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.products .service-tag-group .service-tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 14px;
  color: #0052D4;
  background: #E8F4FF;
  border: 1px solid #D6E9FF;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.products .service-box:hover .service-tag {
  background: #0052D4;
  color: white;
  border-color: #0052D4;
}

/* ========== 解决方案 Section ========== */
.resolve {
  background: linear-gradient(180deg, #F8FCFF 0%, #FFFFFF 100%);
  padding: 100px 0;
}

.resolve-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.resolve-content .resolve-box {
  padding: 40px;
  background: white;
  border: 1px solid #E8F4FF;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resolve-content .resolve-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right top, rgba(0, 82, 212, 0.05), transparent);
  transition: right 0.4s ease;
}

.resolve-content .resolve-box:hover {
  transform: translateY(-8px);
  border-color: #D6E9FF;
  box-shadow: 0 12px 32px rgba(0, 82, 212, 0.12);
}

.resolve-content .resolve-box:hover::after {
  right: -20%;
}

.resolve-content .resolve-box h4 {
  color: #0052D4;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.resolve-content .resolve-box .title-desc {
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.resolve-content .resolve-box .resolve-link {
  color: #0052D4;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.resolve-content .resolve-box .resolve-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.resolve-content .resolve-box:hover .resolve-link {
  color: #0042A6;
  gap: 10px;
}

/* ========== 解决方案板块（兼容 fboxRow 结构） ========== */
.resolve-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.resolve-content .fboxRow {
  display: contents;
}




/* ========== 服务实践 Section ========== */
.practice {
  padding: 100px 0;
  background: white;
}

.practice .practice-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.practice .practice-box {
  padding: 48px;
  background: white;
  border: 1px solid #E8F4FF;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.practice .practice-box img {
  width: 100%;
  max-width: 200px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.practice .practice-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 82, 212, 0.12);
  border-color: #D6E9FF;
}

.practice .practice-box:hover img {
  transform: scale(1.08);
}

.practice .practice-box .mt-10 {
  margin-top: 20px;
  color: #333333;
  font-weight: 600;
  font-size: 16px;
}

/* 品牌列表 */
.brand-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.practice .brand-box {
  padding: 32px;
  background: white;
  border: 1px solid #E8F4FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.practice .brand-box img {
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 80px;
  transition: transform 0.3s ease;
}

.practice .brand-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 82, 212, 0.12);
  border-color: #D6E9FF;
}

.practice .brand-box:hover img {
  transform: scale(1.1);
}

/* ========== 合作伙伴板块（兼容 partners 结构） ========== */
.partners {
  padding: 100px 0;
  background: white;
}

.partners .practice-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.partners .practice-box {
  padding: 48px;
  background: white;
  border: 1px solid #E8F4FF;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.partners .practice-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 82, 212, 0.12);
  border-color: #D6E9FF;
}

.partners .brand-group {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.partners .brand-box {
  padding: 24px;
  background: white;
  border: 1px solid #E8F4FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s ease;
}

.partners .brand-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 82, 212, 0.12);
  border-color: #D6E9FF;
}

/* ========== 基础设施 Section ========== */
.section-base {
  background: linear-gradient(180deg, #F8FCFF 0%, #FFFFFF 100%);
  padding: 100px 0;
}

.section-base .base {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.section-base .base img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 82, 212, 0.12);
  transition: transform 0.4s ease;
}

.section-base .base img:hover {
  transform: scale(1.02);
}

.base .base-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.base .base-content .fboxRow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.base .base-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0052D4;
  min-width: auto;
  margin: 0;
}

.base .base-content .title-desc {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.8;
}

/* 证书/认证 */
.cert {
  margin-top: 80px;
  border: 1px solid #E8F4FF;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 82, 212, 0.08);
}

.cert-list {
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.cert-list .cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}

.cert-list .cert-item img {
  height: 80px;
  width: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.cert-list .cert-item img:hover {
  filter: brightness(1);
  transform: scale(1.1);
}

.cert-list .cert-item p {
  font-size: 12px;
  color: #999999;
  margin-top: 16px;
  text-align: center;
}

/* ========== 新闻 Section ========== */
.news {
  padding: 100px 0;
  background: white;
}

.news-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.news-content .news-cont {
  background: #F8FCFF;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #E8F4FF;
}

.news-content .news-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #0052D4;
}

.news-content .news-head .news-title {
  font-size: 24px;
  font-weight: 700;
  color: #0052D4;
  margin: 0;
  position: relative;
  padding: 0;
}

.news-content .news-head .news-title::before {
  display: none;
}

.news-content .news-head .news-more {
  font-size: 14px;
  color: #0052D4;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-content .news-head .news-more:hover {
  transform: translateX(4px);
}

.news-content .news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-content .news-list .news-item {
  padding: 20px 0;
  border-bottom: 1px solid #E8F4FF;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.news-content .news-list .news-item:last-child {
  border-bottom: none;
}

.news-content .news-list .news-item:hover {
  padding-left: 12px;
  background: rgba(0, 82, 212, 0.04);
  border-radius: 6px;
  padding-right: 12px;
}

.news-content .news-item .number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  min-width: 28px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0052D4 0%, #0066FF 100%);
  border-radius: 6px;
  font-weight: 700;
  flex-shrink: 0;
}

.news-content .news-item .title {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  flex: 1;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.news-content .news-item .title:hover {
  color: #0052D4;
}

.news-content .news-item .time {
  color: #999999;
  font-size: 12px;
  min-width: 100px;
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .news-content {
    grid-template-columns: 1fr;
  }

  .products .service-content,
  .partners .practice-content,
  .resolve-content,
  .partners .brand-group {
    grid-template-columns: 1fr;
  }
  
  .section-base .base {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .banner-cont .swiper-slide h1 {
    font-size: 36px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  /* 移动端通用优化 */
  .section {
    padding: 60px 0;
  }
  
  .section-content {
    padding: 0 20px;
  }
  
  .service,
  .products,
  .resolve,
  .practice,
  .partners,
  .section-base,
  .news {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 26px;
    line-height: 1.3;
  }
  
  .section-title .section-desc {
    font-size: 14px;
    padding: 0 10px;
  }
  
  /* Hero区域移动端优化 */
  .hero {
    min-height: 450px;
    padding: 80px 16px 70px;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .hero-desc {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 10px;
  }
  
  .hero-desc br {
    display: none;
  }
  
  .hero-buttons {
    margin-top: 28px;
    flex-direction: column;
    gap: 12px;
  }
  
  .hero .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Banner移动端优化 */
  .banner-cont .swiper-slide {
    height: 500px;
  }
  
  .banner-cont .swiper-slide h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  .banner-cont .banner-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  
  .banner .banner-s {
    margin-top: -50px;
    margin-left: 16px;
    margin-right: 16px;
  }
  
  .banner-s .banner-list .banner-item {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid #E8F4FF;
  }
  
  .banner-s .banner-list .banner-item:last-child {
    border-bottom: none;
  }
  
  /* 服务/产品卡片移动端优化 */
  .service-content,
  .products .service-content {
    gap: 20px;
    margin-top: 40px;
  }
  
  .service .service-box,
  .products .service-box {
    padding: 28px 24px;
  }
  
  .service .service-box .service-title,
  .products .service-box .service-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .service-box .title-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .service-btn-group {
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
    gap: 12px;
  }
  
  .service-btn-group .fboxWrap {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  
  .service-btn-group .btn {
    width: 100%;
  }
  
  .service-price {
    font-size: 14px;
  }
  
  .service-price .font24 {
    font-size: 24px;
  }
  
  /* 解决方案移动端优化 */
  .resolve-content {
    gap: 20px;
    margin-top: 40px;
  }
  
  .resolve-content .resolve-box {
    padding: 28px 24px;
  }
  
  .resolve-content .resolve-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .resolve-content .resolve-box .title-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  /* 实践案例移动端优化 */
  .practice .practice-content,
  .partners .practice-content {
    gap: 20px;
    margin-top: 40px;
  }
  
  .practice .practice-box,
  .partners .practice-box {
    padding: 32px 24px;
  }
  
  .practice .practice-box img {
    max-width: 160px;
  }
  
  /* 品牌列表移动端优化 */
  .brand-group,
  .partners .brand-group {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px;
    margin-top: 40px;
  }
  
  .practice .brand-box,
  .partners .brand-box {
    padding: 24px;
    min-height: 100px;
  }
  
  .practice .brand-box img,
  .partners .brand-box img {
    max-height: 60px;
  }
  
  /* 基础设施移动端优化 */
  .section-base .base {
    gap: 32px;
    margin-top: 40px;
  }
  
  .base .base-content {
    gap: 24px;
  }
  
  .base .base-content h2 {
    font-size: 28px;
  }
  
  .base .base-content .title-desc {
    font-size: 14px;
  }
  
  .cert {
    margin-top: 40px;
  }
  
  .cert-list {
    padding: 40px 20px;
    gap: 40px;
  }
  
  .cert-list .cert-item img {
    height: 60px;
  }
  
  /* 新闻列表移动端优化 */
  .news-content {
    gap: 32px;
    margin-top: 40px;
  }
  
  .news-content .news-cont {
    padding: 28px 20px;
  }
  
  .news-content .news-head {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
  
  .news-content .news-head .news-title {
    font-size: 20px;
  }
  
  .news-content .news-head .news-more {
    font-size: 13px;
  }
  
  .news-content .news-list .news-item {
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .news-content .news-item .number {
    position: absolute;
    top: 16px;
    left: 0;
  }
  
  .news-content .news-item {
    padding-left: 40px;
    position: relative;
  }
  
  .news-content .news-item .title {
    font-size: 13px;
    width: 100%;
  }
  
  .news-content .news-item .time {
    font-size: 11px;
    min-width: auto;
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .products .service-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resolve-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners .practice-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners .brand-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ========== Button 样式 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  line-height: 1.5;
}

.btn-normal {
  background: linear-gradient(135deg, #0052D4 0%, #0066FF 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 82, 212, 0.25);
}

.btn-normal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 82, 212, 0.35);
}

.btn-normal-light {
  background: white;
  color: #0052D4;
  border: 2px solid #0052D4;
}

.btn-normal-light:hover {
  background: #E8F4FF;
}

.btn2 {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 8px;
}

/* ========== Flex 布局工具类 ========== */
.fboxRow {
  display: flex;
  flex-wrap: wrap;
}

.fboxCol {
  display: flex;
  flex-direction: column;
}

.fboxWrap {
  display: flex;
  flex-wrap: wrap;
}

.Xbetween {
  justify-content: space-between;
}

.Ycenter {
  align-items: center;
}

.flex1 {
  flex: 1;
}

/* ========== 间距工具类 ========== */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.ml-10 { margin-left: 10px; }
.mr-15 { margin-right: 12px; }

/* ========== 文本工具类 ========== */
.font-theme { color: #0052D4; }
.font-grey { color: #999999; }
.font12 { font-size: 12px; }
.font14 { font-size: 14px; }
.font24 { font-size: 24px; }
.font-weight { font-weight: 700; }

/* ========== 超小屏幕移动端优化 (480px以下) ========== */
@media (max-width: 480px) {
  /* Hero区域 */
  .hero {
    min-height: 400px;
    padding: 70px 12px 60px;
  }
  
  .hero::before,
  .hero::after {
    display: none;
  }
  
  .hero-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 14px;
  }
  
  .hero-desc {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .hero-buttons {
    margin-top: 24px;
    gap: 10px;
  }
  
  .hero .btn {
    width: 100%;
    max-width: 240px;
    height: 40px;
    font-size: 14px;
  }
  
  /* 快捷入口 */
  .quick-links {
    margin-top: -24px;
  }
  
  .quick-links .link-card {
    padding: 20px 16px;
  }
  
  .quick-links .link-icon {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .quick-links .link-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .quick-links .link-card p {
    font-size: 13px;
  }
  
  /* Banner */
  .banner-cont .swiper-slide {
    height: 420px;
  }
  
  .banner-cont .swiper-slide h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .banner-cont .banner-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 10px;
  }
  
  .banner .banner-s {
    margin-left: 12px;
    margin-right: 12px;
  }
  
  .banner-s .banner-list .banner-item {
    padding: 24px 16px;
  }
  
  .banner-list .banner-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .banner-list .banner-item .title-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .banner-list .banner-item .banner-tag {
    font-size: 12px;
    padding: 5px 12px;
  }
  
  /* 通用Section */
  .section,
  .service,
  .products,
  .resolve,
  .practice,
  .partners,
  .section-base,
  .news {
    padding: 50px 0;
  }
  
  .section-content {
    padding: 0 12px;
  }
  
  .section-title {
    margin-bottom: 32px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .section-title .section-desc {
    font-size: 13px;
    padding: 0 5px;
  }
  
  /* 服务/产品卡片 */
  .service-content,
  .products .service-content {
    gap: 16px;
    margin-top: 32px;
  }
  
  .service .service-box,
  .products .service-box {
    padding: 20px 16px;
  }
  
  .service .service-box .service-title,
  .products .service-box .service-title {
    font-size: 17px;
  }
  
  .service-box .title-desc {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .service .service-tag-group .service-tag,
  .products .service-tag-group .service-tag {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .service-btn-group {
    padding-top: 16px;
  }
  
  .service-btn-group .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .service .service-hot::after,
  .products .service-hot::after {
    font-size: 10px;
    padding: 3px 10px;
    top: 12px;
    right: 12px;
  }
  
  /* 解决方案 */
  .resolve-content {
    gap: 16px;
    margin-top: 32px;
  }
  
  .resolve-content .resolve-box {
    padding: 20px 16px;
  }
  
  .resolve-content .resolve-box h4 {
    font-size: 17px;
  }
  
  .resolve-content .resolve-box .title-desc {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .resolve-content .resolve-box .resolve-link {
    font-size: 13px;
  }
  
  /* 实践案例 */
  .practice .practice-content,
  .partners .practice-content {
    gap: 16px;
    margin-top: 32px;
  }
  
  .practice .practice-box,
  .partners .practice-box {
    padding: 24px 16px;
  }
  
  .practice .practice-box img {
    max-width: 140px;
  }
  
  .practice .practice-box .mt-10 {
    font-size: 14px;
    margin-top: 16px;
  }
  
  /* 品牌列表 */
  .brand-group,
  .partners .brand-group {
    gap: 12px;
    margin-top: 32px;
  }
  
  .practice .brand-box,
  .partners .brand-box {
    padding: 16px;
    min-height: 80px;
  }
  
  .practice .brand-box img,
  .partners .brand-box img {
    max-height: 50px;
  }
  
  /* 基础设施 */
  .section-base .base {
    gap: 24px;
    margin-top: 32px;
  }
  
  .base .base-content {
    gap: 20px;
  }
  
  .base .base-content h2 {
    font-size: 24px;
  }
  
  .base .base-content .title-desc {
    font-size: 13px;
  }
  
  .cert {
    margin-top: 32px;
  }
  
  .cert-list {
    padding: 32px 12px;
    gap: 32px;
  }
  
  .cert-list .cert-item img {
    height: 50px;
  }
  
  .cert-list .cert-item p {
    font-size: 11px;
    margin-top: 12px;
  }
  
  /* 新闻列表 */
  .news-content {
    gap: 24px;
    margin-top: 32px;
  }
  
  .news-content .news-cont {
    padding: 20px 16px;
  }
  
  .news-content .news-head {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .news-content .news-head .news-title {
    font-size: 18px;
  }
  
  .news-content .news-head .news-more {
    font-size: 12px;
  }
  
  .news-content .news-list .news-item {
    padding: 12px 0;
    padding-left: 36px;
  }
  
  .news-content .news-item .number {
    min-width: 24px;
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  
  .news-content .news-item .title {
    font-size: 12px;
  }
  
  .news-content .news-item .time {
    font-size: 10px;
  }
  
  /* 按钮 */
  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .btn2 {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.tr { text-align: right; }

.over-hide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 24px;
}

.over-hide + p {
  display: flex;
  flex-wrap: wrap;
  word-break: break-all;
}

.index .footer-link {
  display: block;
}
