/* 下拉菜单图标和文字优化 - 修复重叠问题 */
.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;
  }
  /* 下拉菜单图标和文字优化 - 修复重叠问题 */

/* 产品展示区域样式 */
.product-showcase {
    background-color: #f9fbfd;
    padding: 60px 0;
    position: relative;
  }
  
  /* 区块标题样式 */
  .product-showcase .section-header {
    margin-bottom: 40px;
  }
  
  .product-showcase .section-title {
    color: #3e4555;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .product-showcase .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%);
  }
  
  .product-showcase .section-description {
    color: #6c7a89;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
  }
  
  /* 产品网格 */
  .product-grid {
    margin: 20px -10px;
  }
  
  /* 产品卡片基础样式 */
  .u-pricing-v1 {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 35px rgba(140, 152, 164, 0.125);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .u-pricing-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* 推荐标签 */
  .recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #22A6FE 0%, #0066cc 100%);
    color: white;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 100;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 85%, 0% 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* 卡片头部 */
  .u-pricing-v1__header {
    position: relative;
    padding: 2rem 2rem 5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #2f384d 0%, #232a3a 100%);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-align: center;
  }
  
  .pricing-name {
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.5;
    color: inherit;
    font-size: 1.5rem;
  }
  
  .price-container {
    display: block;
    margin: 10px 0;
  }
  
  .currency {
    vertical-align: top;
    font-size: 1rem;
    line-height: 3.5rem;
  }
  
  .price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .period {
    font-size: 1rem;
  }
  
  .pricing-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
  }
  
  /* 卡片内容 */
  .u-pricing-v1__content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .feature-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex: 1;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 0.875rem;
    color: #6c7a89;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .feature-item:last-child {
    border-bottom: none;
  }
  
  .feature-item:before {
    content: "✓";
    color: #22A6FE;
    margin-right: 8px;
    font-weight: bold;
  }
  
  /* 按钮样式 */
  .u-pricing-v1__content .ybtn {
    width: 100%;
    padding: 12px;
    margin-top: auto;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .u-pricing-v1__content .ybtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  
  /* 底部查看全部按钮 */
  .mt-4 {
    margin-top: 2rem;
  }
  
  /* 响应式调整 */
  @media (max-width: 992px) {
    .product-showcase {
      padding: 40px 0;
    }
    
    .product-showcase .section-title {
      font-size: 28px;
    }
    
    .product-showcase .section-description {
      font-size: 14px;
    }
    
    .col-md-3 {
      width: 50%;
      float: left;
    }
  }
  
  @media (max-width: 768px) {
    .col-md-3 {
      width: 100%;
      float: none;
    }
    
    .u-pricing-v1 {
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
  }
    /* 订购产品卡片结束 oulu添加*/


    /* 为什么选择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结束 */