
  /* 针对黑色背景区域的专用按钮样式 */
  .cta-btn-white {
    background-color: #ffffff !important; /* 初始白底 */
    color: #000000 !important;           /* 初始黑字 */
    border: 2px solid #ffffff !important;
    transition: all 0.3s ease !important;
    padding: 20px 48px !important;       /* 增加内边距，让按钮更大气 */
    font-size: 18px !important;          /* 增大字号 */
    font-weight: 700 !important;         /* 加粗 */
    border-radius: 9999px !important;    /* 胶囊形状 */
    display: inline-block;
  }
  
  .cta-btn-white:hover {
    background-color: transparent !important; /* 滑过变透明（显示背景） */
    color: #ffffff !important;               /* 文字变白 */
    border: 2px solid #ffffff !important;
  }
