/* 加载状态样式 */
.loading-container {
    text-align: center;
    padding: 60px 0;
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1890ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .error-container {
    text-align: center;
    padding: 60px 0;
    color: #666;
  }
  
  .debug-info {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
  }
  
  .debug-info p {
    margin: 5px 0;
    color: #666;
  }
  
  /* 静态轮播图样式 */
  .hero-static {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  
  .static-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .static-slide:first-child {
    opacity: 1;
  }
  
  .services-details-box{
      top: 0;
  }
  .section-list{
      padding: 9px 0px;
      font-size: 14px;
  }
  .section-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .link-btn{
    border: 1px solid #0C5E8E;
    color: #0C5E8E;
    padding: 4px 20px;
    border-radius: 200px;
    margin-left: 20px;
  }
  .section-list-box:hover .link-btn {
      background: #0C5E8E;
      color: #fff;
  }
  .download-btn,.link-btn{
      padding: 2px 16px;
      font-size: 12px;
  }
  .d-column-tabs{
      padding-bottom: 10px!important;
  }
  .services-sidebar{
      padding-left: 0;
  }

@media screen and (max-width: 768px) {
    .download-btn{
      padding: 2px 0;
      font-size: 12px;
      border-radius: 4px;
      width: 90px;
    }
}