/* 下拉菜单图标和文字优化 - 修复重叠问题 */
.unity-icon {
    width: 50px;
    height: 28px;
    min-width: 28px; /* 确保图标有固定宽度 */
    overflow: hidden;
    border-radius: 6px; /* 使用稍微的圆角而不是完全圆形 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex; /* 改为 inline-flex */
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0; /* 防止图标缩小 */
    vertical-align: middle; /* 确保图标与文字垂直对齐 */
    float: left; /* 确保图标在左侧 */
  }
  
  .unity-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px; /* 确保图片也是轻微圆角 */
  }
  
  .unity-box {
    display: block; /* 改为块级元素 */
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 6px; /* 为整个框添加轻微圆角 */
    overflow: hidden; /* 确保浮动元素被包含 */
  }
  
  .unity-box:hover {
    background-color: rgba(255, 255, 255, 0.08);
  }
  
  .unity-content {
    overflow: hidden; /* 确保内容区包含浮动的图标 */
    padding-left: 65px; /* 给图标留出足够空间 */
    display: block; /* 改为块级元素 */
  }
  
  .unity-title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 1.3;
    display: block; /* 确保标题是块级元素 */
  }
  
  .unity-details {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.4;
    display: block; /* 确保描述是块级元素 */
  }
  
  /* 优化下拉菜单整体样式 */
  .dropdown-menu.dropdown-unity {
    padding: 15px;
    min-width: 280px;
  }
  
  .dropdown-menu.dropdown-unity > li {
    margin-bottom: 5px;
  }
  
  .unity-link {
    padding: 0 !important;
  }
  /* 下拉菜单图标和文字优化 - 修复重叠问题 */

/* ======= 新风格云服务器产品卡片区域样式（406-779行重设计） ======= */

/* 产品展示主区域 */
.product-showcase {
  background: linear-gradient(135deg, #f7fbff 60%, #eaf3fa 100%);
  padding: 64px 0 48px;
  position: relative;
}

/* 标题样式 */
.product-showcase .section-header {
  margin-bottom: 36px;
}
.product-showcase .section-title {
  color: #1a3c6b;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.product-showcase .section-title:after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #22A6FE 0%, #0D7AD7 100%);
  border-radius: 2px;
  margin: 12px auto 0;
}
.product-showcase .section-description {
  color: #4b5c7a;
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

/* 产品卡片网格 */
.product-grid {
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* 产品卡片 */
.u-pricing-v1 {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(34,166,254,0.08);
  margin: 0 12px 32px 12px;
  transition: all 0.25s cubic-bezier(.4,2,.6,1);
  overflow: hidden;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #eaf3fa;
  position: relative;
}
.u-pricing-v1:hover {
  box-shadow: 0 16px 48px rgba(34,166,254,0.16);
  transform: translateY(-6px) scale(1.03);
  border-color: #22A6FE;
}

/* 推荐角标 */
.recommended-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg,#22A6FE 0%,#0D7AD7 100%);
  color: #fff;
  padding: 6px 22px 6px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 0 0 18px 0;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(34,166,254,0.08);
}

/* 卡片头部 */
.u-pricing-v1__header {
  background: linear-gradient(90deg,#22A6FE 0%,#0D7AD7 100%);
  color: #fff;
  padding: 2.2rem 1.5rem 1.2rem 1.5rem;
  text-align: center;
  border-radius: 18px 18px 0 0;
  position: relative;
}
.pricing-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.price-container {
  margin: 10px 0 8px 0;
}
.currency {
  font-size: 1.1rem;
  vertical-align: top;
}
.price {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0 2px;
}
.period {
  font-size: 1rem;
  margin-left: 2px;
}
.pricing-title {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* 卡片内容 */
.u-pricing-v1__content {
  padding: 1.7rem 1.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 18px 18px;
}
.feature-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}
.feature-item {
  display: flex;
  align-items: center;
  padding: 0.7rem 0;
  font-size: 0.98rem;
  color: #4b5c7a;
  border-bottom: 1px solid #f0f4fa;
}
.feature-item:last-child {
  border-bottom: none;
}
.feature-item:before {
  content: "✔";
  color: #22A6FE;
  margin-right: 8px;
  font-weight: bold;
  font-size: 1.1em;
}

/* 按钮样式 */
.u-pricing-v1__content .ybtn {
  width: 100%;
  padding: 12px;
  margin-top: auto;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.08rem;
  transition: all 0.3s;
  text-align: center;
}
.u-pricing-v1__content .ybtn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 15px rgba(34,166,254,0.13);
}

/* 底部查看全部按钮 */
.mt-4 {
  margin-top: 2.2rem;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .u-pricing-v1 {
    min-width: 220px;
    max-width: 320px;
  }
}
@media (max-width: 992px) {
  .product-showcase {
    padding: 40px 0;
  }
  .product-showcase .section-title {
    font-size: 1.6rem;
  }
  .product-showcase .section-description {
    font-size: 0.98rem;
  }
  .u-pricing-v1 {
    min-width: 220px;
    max-width: 400px;
    margin: 0 auto 32px auto;
  }
  .col-md-3 {
    width: 50%;
    float: left;
  }
}
@media (max-width: 768px) {
  .col-md-3 {
    width: 100%;
    float: none;
  }
  .u-pricing-v1 {
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
  }
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ======= 为什么选择OULUCLOUD部分 ======= */
#why-choose-us {
  background: #f7fbff;
  padding: 70px 0 40px 0;
  position: relative;
}
#why-choose-us .section-title {
  color: #1a3c6b;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
#why-choose-us .section-title:after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #22A6FE 0%, #0D7AD7 100%);
  border-radius: 2px;
  margin: 12px auto 0;
}
#why-choose-us .section-description {
  color: #4b5c7a;
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.features-grid {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 25px rgba(34,166,254,0.07);
  padding: 32px 24px;
  height: 100%;
  margin: 0 12px 32px 12px;
  transition: all 0.25s cubic-bezier(.4,2,.6,1);
  position: relative;
  overflow: hidden;
  text-align: center;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card:hover {
  box-shadow: 0 16px 48px rgba(34,166,254,0.13);
  transform: translateY(-6px) scale(1.03);
}
.feature-icon {
  margin-bottom: 18px;
  font-size: 2.3rem;
  color: #22A6FE;
  height: 54px;
  line-height: 54px;
}
.feature-title {
  color: #1a3c6b;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-description {
  color: #4b5c7a;
  font-size: 0.98rem;
  line-height: 1.7;
  flex: 1;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .feature-card {
    min-width: 220px;
    max-width: 400px;
    margin: 0 auto 32px auto;
  }
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
  }
}


    /* 为什么选择OULUCLOUD部分的样式 */
#why-choose-us {
    background-color: #f9fbfd;
    padding: 70px 0;
    position: relative;
  }
  
  #why-choose-us .section-title {
    color: #3e4555;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  #why-choose-us .section-title:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #22A6FE 0%, #0D7AD7 100%);
    transform: translateX(-50%);
  }
  
  #why-choose-us .section-description {
    color: #6c7a89;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }
  
  .features-grid {
    margin-top: 30px;
  }
  
  .feature-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    height: 100%;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #22A6FE 0%, #0D7AD7 100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover:before {
    opacity: 1;
  }
  
  .feature-icon {
    margin-bottom: 20px;
    font-size: 40px;
    color: #22A6FE;
    height: 60px;
    line-height: 60px;
  }
  
  .feature-title {
    color: #3e4555;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .feature-description {
    color: #6c7a89;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* 响应式调整 */
  @media (max-width: 768px) {
    #why-choose-us {
      padding: 50px 0;
    }
    
    #why-choose-us .section-title {
      font-size: 28px;
    }
    
    .feature-card {
      padding: 25px 20px;
    }
    
    .feature-icon {
      font-size: 36px;
      height: 50px;
      line-height: 50px;
    }
    
    .feature-title {
      font-size: 18px;
    }
  }

  /* 为什么选择OULUCLOUD部分的样式 */
/* 页面底部css开始 */
/* 全新页脚样式 - 使用oulu-前缀避免冲突 */
#oulu-footer {
    background-color: #152b47;
    color: #a9b3c4;
    margin-top: 50px;
    font-family: 'Nunito', 'Arial', sans-serif;
  }
  
  .oulu-footer-top {
    padding: 60px 0 40px;
    position: relative;
  }
  
  /* 左侧公司信息 */
  .oulu-footer-about {
    margin-bottom: 30px;
  }
  
  .oulu-footer-logo {
    max-height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
  }
  
  .oulu-footer-desc {
    color: #a9b3c4;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  /* 联系信息 */
  .oulu-contact-info {
    margin-bottom: 20px;
  }
  
  .oulu-contact-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  
  .oulu-contact-row i {
    color: #22A6FE;
    margin-right: 10px;
    font-size: 16px;
    min-width: 16px;
    margin-top: 3px;
  }
  
  .oulu-contact-row span {
    color: #a9b3c4;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* 链接区域 */
  .oulu-footer-links {
    margin-bottom: 30px;
  }
  
  .oulu-footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
  }
  
  .oulu-footer-heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #22A6FE;
  }
  
  .oulu-link-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
  }
  
  .oulu-link-list li {
    margin-bottom: 10px;
  }
  
  .oulu-link-list a {
    color: #a9b3c4;
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-block;
  }
  
  .oulu-link-list a:hover {
    color: #22A6FE;
    text-decoration: none;
    padding-left: 5px;
  }
  
  .oulu-mt-4 {
    margin-top: 30px;
  }
  
  /* 支付方式 */
  .oulu-footer-payments {
    margin-bottom: 30px;
  }
  
  .oulu-payment-methods {
    margin-bottom: 25px;
  }
  
  .oulu-payment-row {
    display: flex;
    margin-bottom: 15px;
  }
  
  .oulu-payment-method {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
  }
  
  .oulu-payment-method i {
    font-size: 22px;
    color: #a9b3c4;
    margin-right: 8px;
  }
  
  .oulu-payment-method span {
    font-size: 14px;
    color: #a9b3c4;
  }
  
  .oulu-usdt-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #26a17b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 8px;
    font-size: 14px;
  }
  
  /* 社交媒体链接 */
  .oulu-social-links {
    display: flex;
    gap: 10px;
  }
  
  .oulu-social-link {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a9b3c4;
    transition: all 0.3s ease;
  }
  
  .oulu-social-link:hover {
    background-color: #22A6FE;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
  }
  
  /* 页脚底部 */
  .oulu-footer-bottom {
    background-color: #10223b;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .oulu-copyright {
    color: #788395;
    font-size: 14px;
    margin: 0;
  }
  
  .oulu-terms-links {
    text-align: right;
  }
  
  .oulu-terms-links a {
    color: #788395;
    font-size: 14px;
    margin-left: 15px;
    transition: color 0.3s ease;
  }
  
  .oulu-terms-links a:hover {
    color: #22A6FE;
    text-decoration: none;
  }
  /* 自定义支付宝图标 */
.alipay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #00a0e9;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 8px;
  }
  /* 响应式调整 */
  @media (max-width: 991px) {
    .oulu-footer-top {
      padding: 50px 0 30px;
    }
  }
  
  @media (max-width: 767px) {
    .oulu-footer-top {
      padding: 40px 0 20px;
    }
    
    .oulu-terms-links, .oulu-copyright {
      text-align: center;
    }
    
    .oulu-terms-links a {
      margin: 0 8px;
    }
    
    .oulu-terms-links {
      margin-top: 15px;
    }
    
    .oulu-payment-row {
      flex-wrap: wrap;
    }
    
    .oulu-payment-method {
      flex: 0 0 50%;
      margin-bottom: 10px;
    }
  }
/* 页面底部css结束 */

/* 云服务器价格表新设计风格（配合406-638行HTML） */
.ecs-pricing-section {
  background: #f7fbff;
  padding: 48px 0;
}
.ecs-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.ecs-main-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1a3c6b;
  margin: 0;
}
.ecs-network-tabs {
  display: flex;
  gap: 8px;
}
.ecs-tab {
  background: #eaf3fa;
  color: #22A6FE;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
}
.ecs-tab.active {
  background: #22A6FE;
  color: #fff;
  border-color: #22A6FE;
}
.ecs-desc {
  color: #4b5c7a;
  font-size: 1.55rem;
  margin-bottom: 28px;
}
.ecs-pricing-table {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(34,166,254,0.07);
  overflow: hidden;
}
.ecs-param-col {
  background: #22A6FE;
  color: #fff;
  width: 220px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 修改这里，让内容右对齐 */
  padding: 32px 0 32px 0;
}
/* 参数栏样式 */
.ecs-param-col {
  background: #22A6FE;
  color: #fff;
  width: 220px;
  min-width: 180px;
}

.ecs-param-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}


.ecs-param-item {
  padding: 12px 32px 12px 0; /* 右侧padding，左侧不留 */
  font-size: 1rem;
  text-align: right; /* 文字右对齐 */
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
/* 参数列表右对齐 */
.ecs-param-list {
  width: 100%;
  text-align: right;
}

.ecs-param-item {
  padding: 12px 32px 12px 0;
  font-size: 1rem;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 标题也右对齐 */
.ecs-param-col > div {
  width: 100%; /* 添加这行 */
  text-align: right;
  padding-right: 32px !important; /* 覆盖内联样式 */
  padding-left: 0 !important;
}
.tab-pane { display: none; }
.tab-pane.in.active { display: block; }
.ecs-param-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.ecs-param-item {
  padding: 12px 32px;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ecs-param-item:last-child {
  border-bottom: none;
}
.ecs-plan-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  border-left: 1px solid #f0f4fa;
}
.ecs-plan-title {
  font-size: 2.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ecs-plan-subtitle {
  font-size: 2rem;
  color: #22A6FE;
  margin-bottom: 8px;
}
.ecs-plan-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #2196f3;
  margin-bottom: 4px;
}
.ecs-plan-price span {
  font-size: 1.5rem;
  font-weight: 400;
}
.ecs-plan-fee {
  color: #43b047;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.ecs-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}
.ecs-plan-item {
  padding: 12px 0;
  font-size: 1.5rem;
  border-bottom: 1px solid #f0f4fa;
}
.ecs-plan-item:last-child {
  border-bottom: none;
}
.ecs-plan-btn {
  margin-top: 18px;
  background: #22A6FE;
  color: #fff;
  border-radius: 6px;
  padding: 12px 0;
  width: 80%;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}
.ecs-plan-btn:hover {
  background: #2196f3;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,166,254,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* 响应式 */
@media (max-width: 992px) {
  .ecs-pricing-table {
    flex-direction: column;
  }
  .ecs-param-col {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    padding: 24px 0;
    border-radius: 8px 8px 0 0;
  }
  .ecs-param-list {
    display: flex;
    flex-direction: row;
    width: auto;
  }
  .ecs-param-item {
    padding: 8px 12px;
    font-size: 0.95rem;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .ecs-param-item:last-child {
    border-right: none;
  }
  .ecs-plan-col {
    border-left: none;
    border-top: 1px solid #f0f4fa;
    padding: 24px 0;
  }
}
@media (max-width: 768px) {
  .ecs-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ecs-pricing-table {
    flex-direction: column;
    box-shadow: none;
  }
  .ecs-param-col {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    padding: 18px 0;
    border-radius: 8px 8px 0 0;
  }
  .ecs-param-list {
    display: flex;
    flex-direction: row;
    width: auto;
  }
  .ecs-param-item {
    padding: 6px 8px;
    font-size: 0.92rem;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .ecs-param-item:last-child {
    border-right: none;
  }
  .ecs-plan-col {
    border-left: none;
    border-top: 1px solid #f0f4fa;
    padding: 18px 0;
  }
}