/*main css*/
.izl-rmenu {
    position: fixed;
    left: 50%;
    margin-left: 600px;
    bottom: 10px;
    padding-bottom: 73px;
}

.izl-rmenu .btn {
    width: 72px;
    height: 73px;
    margin-bottom: 1px;
    cursor: pointer;
    position: relative;
}

.izl-rmenu .btn-qq {
    background: url(../images/r_qq.png) 0px 0px no-repeat;
    background-color: #6da9de;
}

.izl-rmenu .btn-qq:hover {
    background-color: #488bc7;
}

.izl-rmenu a.btn-qq,
.izl-rmenu a.btn-qq:visited {
    background: url(../images/r_qq.png) 0px 0px no-repeat;
    background-color: #6da9de;
    text-decoration: none;
    display: block;
}

.izl-rmenu .btn-wx {
    background: url(../images/r_wx.png) 0px 0px no-repeat;
    background-color: #78c340;
}

.izl-rmenu .btn-wx:hover {
    background-color: #58a81c;
}

.izl-rmenu .btn-wx .pic {
    position: absolute;
    left: -160px;
    top: 0px;
    display: none;
    width: 160px;
    height: 160px;
}

.izl-rmenu .btn-top {
    background: url(../images/r_top.png) 0px 0px no-repeat;
    background-color: #666666;
    display: none;
}

.izl-rmenu .btn-top:hover {
    background-color: #444;
}

.izl-rmenu .btn-sitemap {
    background: url(../images/r_top.png) 0px 0px no-repeat;
    background-color: #0099cc;
    background-position: center 12px;
    background-size: 32px 32px;
}

.izl-rmenu .btn-sitemap:hover {
    background-color: #007aa3;
}

.izl-rmenu a.btn-sitemap,
.izl-rmenu a.btn-sitemap:visited {
    background-color: #0099cc;
    text-decoration: none;
    display: block;
    line-height: 120px;
    font-size: 11px;
    color: #fff;
    text-align: center;
}

    /* 申请短信验证页面CSS */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      color: #111827;
      line-height: 1.5;
    }
    
    .sms_container {
      max-width: 360px;
      margin: 0 auto;
      padding: 24px 16px;
    }
    
    /* 标题样式 */
    .page-title {
      font-size: 20px;
      font-weight: 700;
      color: red;
      text-align: center;
      margin-bottom: 24px;
    }
    
    /* 卡片容器 */
    .card {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin-bottom: 20px;
    }
    
    /* 按钮样式 - 修复图标白色框问题 */
    .send-btn {
      width: 100%;
      background-color: #8B0000;
      color: #ffffff;
      font-weight: 500;
      padding: 12px 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.2s ease;
      font-size: 16px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* 关键修复：移除按钮内边距对图标的影响 */
      line-height: 1;
    }
    
    .send-btn:hover {
      background-color: #A52A2A;
    }
    
    .send-btn i {
      margin-right: 8px;
      /* 关键修复：确保图标没有背景和边框 */
      background: none;
      border: none;
      padding: 0;
    }
    
    .send-btn:disabled {
      opacity: 0.8;
      cursor: not-allowed;
    }
    
    /* 提示文本 */
    .hint-text {
      font-size: 12px;
      color: #6B7280;
      text-align: center;
      margin-bottom: 16px;
    }
    
    /* 短信内容区域 */
    .sms-container {
      border: 1px solid #E5E7EB;
      border-radius: 6px;
      margin-bottom: 12px;
    }
    
    .sms-header {
      background-color: #F9FAFB;
      padding: 8px 12px;
      border-bottom: 1px solid #E5E7EB;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }
    
    .copy-btn {
      color: #8B0000;
      font-size: 12px;
      background: none;
      border: none;
      padding: 4px 8px;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
    }
    
    .copy-btn i {
      margin-right: 4px;
      background: none;
      border: none;
      padding: 0;
    }
    
    .copy-btn:hover {
      color: #A52A2A;
      background-color: rgba(139, 0, 0, 0.05);
    }
    
    .copy-btn:active {
      background-color: rgba(139, 0, 0, 0.1);
    }
    
    .sms-content {
      padding: 12px;
      font-size: 14px;
      font-family: monospace;
      color: #374151;
      white-space: pre-wrap;
      max-height: 128px;
      overflow: auto;
    }
    
    /* 底部文本 */
    .footer-text {
      font-size: 14px;
      color: #6B7280;
      text-align: center;
    }
    
    /* 复制提示弹窗 */
    .copy-toast {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    
    .toast-content {
      background-color: #ffffff;
      padding: 16px 24px;
      border-radius: 8px;
      text-align: center;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }
    
    .toast-icon {
      color: #10B981;
      font-size: 32px;
      margin-bottom: 8px;
      background: none;
      border: none;
    }
