 /*底部标签开始*/
 .image-container {
    position: relative;
    width: 100%;
    height: 200px; /* Fixed height for better control */
    overflow: hidden;
  }

  .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 改为100%宽度使内容可以真正居中 */
    height: 135%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直居中 */
    align-items: center; /* 水平居中 */
    color: #fff;
    text-align: center; /* 文本内容也居中 */
    padding: 0 20px; /* 添加一些左右内边距防止内容贴边 */
    box-sizing: border-box;
  }

  .promo-text {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
  }

  .action-button {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
  }

  .action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #e52e71, #ff8a00);
  }

  @media (max-width: 768px) {
    .image-container {
      height: 200px;
    }
    
    .promo-text {
      font-size: 18px;
    }
    
    .action-button {
      padding: 10px 20px;
      font-size: 14px;
    }
  }
   /*底部标签结束*/
   
   /*友情链接开始*/

.payment-and-auth-container {
    display: flex;         
    align-items: center;   
    gap: 20px;             
    flex-wrap: wrap;      
}

.payment-section {
    margin-right: 20px;
}

.footerauthenticationcontainer {
    display: flex;
    gap: 10px;          
    align-items: center;
    flex-wrap: wrap;     
}


.list-inline {
    padding-left: 0;
    margin-bottom: 15px;
}

.cloud-service {
    margin-top: 10px;
}

.h-30px {
    height: 30px;
}
.text-white {
    color: white;
}
.mb-3 {
    margin-bottom: 1rem;
}
.mt-3 {
    margin-top: 1rem;
}
.mb-0 {
    margin-bottom: 0;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content {
  text-align: left;
  max-width: 1200px;
  width: 100%;
}
.footer-label {
  margin-right: 15px;
}
.footer-link {
  color: #ACB9C5;
  text-decoration: none;
  margin-right: 20px;
}
/*友情链接结束*/
  