/* 下载验证容器样式 */
.download-verify-container {
    width: 100%;
    max-width: 100%;
    margin: 15px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.verify-title {
    color: #165DFF;
    border-bottom: 2px solid #165DFF;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* 强制左右布局容器 */
.verify-card {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 260px;
}

/* 左侧微信二维码区域 (40%宽度) */
.wechat-section {
    width: 40% !important;
    background-color: #f0f7ff;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 右侧验证区域 (60%宽度) */
.verification-section {
    width: 60% !important;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 小标题样式 - 加粗并统一对齐 */
.section-title {
    font-weight: bold !important;
    color: #333;
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}

/* 说明文字 */
.instruction {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

/* 二维码容器 */
.qrcode-container {
    width: 100%;
    max-width: 160px;
    margin: 0 auto 10px;
}

.wechat-qrcode {
    width: 100%;
    height: auto;
    border: 4px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.qrcode-placeholder {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    color: #999;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* 表单样式 */
.verify-form {
    width: 100%;
    max-width: 300px;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #555;
    font-size: 0.95rem;
}

.verification-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s;
    height: 40px;
}

.verification-input:focus {
    border-color: #165DFF;
    outline: none;
    box-shadow: 0 0 0 2px rgba(22, 93, 255, 0.2);
}

/* 按钮样式 */
.verify-btn {
    background-color: #165DFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
    height: 40px;
    font-weight: 500;
}

.verify-btn:hover {
    background-color: #0E42D2;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(22, 93, 255, 0.2);
}

.verify-btn:active {
    transform: translateY(0);
}

.verify-btn.loading {
    background-color: #6AA1FF;
    cursor: wait;
    position: relative;
}

.verify-btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

/* 消息提示 */
.form-message {
    margin: 10px 0;
    padding: 8px 12px;
    border-radius: 4px;
    display: none;
    font-size: 0.9rem;
    border: 1px solid;
}

.form-message.error {
    background-color: #fff0f0;
    color: #dc3232;
    border-color: #ffcccc;
    display: block;
}

.form-message.success {
    background-color: #f0fff4;
    color: #28a745;
    border-color: #ccffdd;
    display: block;
}

/* 加载动画 */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 确保在极小屏幕也保持左右布局 */
@media (max-width: 767px) {
    .verify-card {
        min-height: auto;
    }
    
    .wechat-section, .verification-section {
        padding: 15px;
    }
    
    .qrcode-container {
        max-width: 120px;
    }
    
    .qrcode-placeholder {
        height: 120px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .instruction {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}
    