/**
 * 前端水印样式
 */

/* 水印容器 */
.gw-watermark-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

#gw-watermark-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 授权提示 */
.gw-auth-prompt {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.gw-auth-prompt::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: gwFloat 20s ease-in-out infinite;
}

@keyframes gwFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-10%, -10%) rotate(120deg);
    }

    66% {
        transform: translate(10%, -10%) rotate(240deg);
    }
}

.gw-auth-prompt-content {
    position: relative;
    z-index: 1;
}

.gw-auth-prompt-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gw-auth-prompt-content h3::before {
    content: '🔒';
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.gw-auth-prompt-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gw-auth-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    min-height: 60px;
}

.gw-auth-btn {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    line-height: 1;
    white-space: nowrap;
}

.gw-auth-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.gw-auth-btn:hover::before {
    width: 300px;
    height: 300px;
}

.gw-sms-btn {
    background: #fff;
    color: #667eea;
}

.gw-sms-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    color: #f0f0f0;
}


/* 验证码区域 */
.gw-verification-section {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99998;
    animation: gwModalFadeIn 0.3s ease-out;
}

/* 最小化状态的图标 */
.gw-verification-minimized {
    position: fixed;
    bottom: 80px;
    right: 80px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2 0%, #764ba2 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99997;
    transition: all 0.3s ease;
    animation: gwBounceIn 0.5s ease-out;
}

.gw-verification-minimized:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.gw-verification-minimized-icon {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

/* 关闭按钮 */
.gw-verification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1;
    line-height: 1;
}

.gw-verification-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
    color: #333;
}

.gw-verification-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: visible;
    width: 420px;
    border: 2px solid #e1e8ed;
    position: relative;
    overflow: hidden;
}

.gw-verification-notice {
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ffeeba;
    font-size: 14px;
}

.gw-notice-icon {
    flex-shrink: 0;
    color: #856404;
}

.gw-notice-text {
    font-weight: 500;
}

.gw-verification-box {
    padding: 20px;
    background: #f8f9fa;
}

.gw-box-header {
    text-align: center;
    margin-bottom: 20px;
}

.gw-box-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.gw-box-subtitle {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}


.gw-verification-body {
    padding: 30px;
}

/* 行内表单布局 */
.gw-inline-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.gw-input-group {
    margin-bottom: 30px;
}

.gw-input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gw-input-wrapper {
    position: relative;
    flex: 1;
}

.gw-verification-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-width: 200px;
}

.gw-verification-input:focus {
    outline: none;
    border-color: #4a90e2;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.gw-input-wrapper.focused .gw-input-border {
    transform: scaleX(1);
}

.gw-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.gw-verify-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #4a90e2 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.gw-verify-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    color: #f0f0f0;
}

.gw-verify-button:disabled {
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gw-verify-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.gw-verify-button:hover::before {
    left: 100%;
}

.gw-button-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gw-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-spinner {
    color: #fff;
    flex-shrink: 0;
}

.gw-verification-tips {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.gw-tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

.gw-tip-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* 隐藏内容 - 仅用于授权保护 */
.gw-hidden-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* 消息提示 - 现在由JavaScript完全控制样式 */
.gw-message {
    /* 基础样式，具体样式由JavaScript设置 */
}

.gw-message.show {
    transform: translateX(0);
}

.gw-message-success {
    background: #28a745;
}

.gw-message-error {
    background: #dc3545;
}

.gw-message-info {
    background: #17a2b8;
}

/* 动画 */
@keyframes gwFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes gwModalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes gwBounceIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 授权模态框样式 */
.gw-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    backdrop-filter: blur(5px);
    animation: gwFadeIn 0.3s ease;
}

.gw-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    min-width: 600px;
    width: auto;
    max-width: 90%;
    position: relative;
    z-index: 1000000;
    animation: gwModalSlideIn 0.3s ease;
}

@keyframes gwModalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.gw-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s;
    font-size: 24px;
    line-height: 1;
    color: #666;
}

.gw-modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

@keyframes gwSlideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 响应式样式 */
@media (max-width: 768px) {
    .gw-modal-content {
        min-width: auto;
        width: 95%;
        padding: 20px;
    }

    .gw-auth-prompt {
        padding: 40px 20px;
        margin: 20px auto;
    }

    .gw-auth-prompt-content h3 {
        font-size: 24px;
    }

    .gw-auth-prompt-content h3::before {
        width: 28px;
        height: 28px;
    }

    .gw-auth-btn {
        padding: 14px 30px;
        font-size: 16px;
        min-height: 48px;
    }
}

@keyframes gwPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* 模态框 */
.gw-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.gw-modal-content {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    width: 400px;
}

.gw-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.gw-modal-close:hover {
    color: #333;
}

/* 响应式 */
@media (max-width: 768px) {
    .gw-auth-buttons {
        flex-direction: column;
    }

    .gw-form-group {
        flex-direction: column;
    }

    .gw-form-group input,
    .gw-submit-btn {
        width: 100%;
    }

    .gw-modal-content {
        width: 95%;
        margin: 10px;
    }

    /* 验证码界面响应式 */
    .gw-verification-section {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .gw-verification-wrapper {
        width: 100%;
    }

    .gw-verification-box {
        padding: 15px;
    }

    .gw-inline-form {
        flex-direction: column;
        gap: 10px;
    }

    .gw-input-wrapper {
        width: 100%;
    }

    .gw-verification-input {
        font-size: 16px;
        padding: 12px 14px;
        min-width: auto;
    }

    .gw-verify-button {
        padding: 12px 20px;
        width: 100%;
    }
}

/* 授权码输入提示 */
.gw-auth-tips {
    margin-top: 8px;
    font-size: 14px;
    color: #aaa;
    text-align: center;
    line-height: 1.3;
    font-weight: 300;
}

/* 已授权提示 */
.gw-authorized-notice {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    animation: gwSlideIn 0.5s ease-out;
    backdrop-filter: blur(10px);
    background-color: rgba(212, 237, 218, 0.95);
}

/* 小尺寸已授权提示 */
.gw-authorized-notice.gw-authorized-mini {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    max-width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gw-authorized-notice.gw-authorized-mini .gw-authorized-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 5px;
}

.gw-authorized-mini .gw-authorized-main {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.gw-authorized-mini .gw-authorized-text {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
}

.gw-authorized-mini .gw-remaining-time {
    font-size: 11px;
    opacity: 0.75;
    margin-left: 0;
    display: block;
    text-align: left;
    line-height: 1.2;
    padding-left: 22px;
    /* 缩进对齐图标 */
}

.gw-authorized-mini .gw-success-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.gw-authorized-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gw-success-icon {
    color: #28a745;
    flex-shrink: 0;
}

.gw-authorized-text {
    font-weight: 500;
}

.gw-remaining-time {
    margin-left: auto;
    font-size: 14px;
    opacity: 0.8;
}

/* 锁定倒计时消息样式 */
.gw-lockout-message {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999999;
    animation: gwModalFadeIn 0.3s ease-out;
}

.gw-lockout-title {
    background: #f39c12;
    color: #fff;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gw-lockout-content {
    padding: 20px;
    color: #856404;
}

.gw-lockout-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
}

.gw-countdown {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    margin-top: 15px;
    text-align: center;
}

.gw-countdown-label {
    font-size: 14px;
    color: #6c757d;
    display: block;
    margin-bottom: 5px;
}

.gw-countdown-time {
    font-weight: bold;
    color: #dc3545;
    font-size: 18px;
    font-family: 'Courier New', monospace;
}

/* 尝试次数信息 */
.gw-attempt-info {
    margin-top: 10px;
    text-align: center;
    min-height: 20px;
}

.gw-attempt-warning {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    font-size: 13px;
}

.gw-attempt-warning strong {
    font-weight: 600;
    color: #f39c12;
}

.gw-attempt-critical {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    font-size: 13px;
    animation: pulse 1s ease-in-out;
}

.gw-attempt-critical strong {
    font-weight: 600;
    color: #dc3545;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.blink {
    animation: blink 0.5s ease-in-out 2;
}

@keyframes gwPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* 二维码样式 */
.gw-contact-qrcode {
    text-align: center;
    margin: 15px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.gw-contact-qrcode img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.gw-qrcode-tips {
    margin-top: 10px;
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    padding: 0 10px;
}

/* 优化弹窗布局 */
.gw-verification-box {
    max-width: 600px;
    margin: 0 auto;
}

/* 为有二维码时调整表单间距 */
.gw-contact-qrcode+.gw-auth-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

/* 敏感页面保护样式 */
.gw-sensitive-protection {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 40px auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.gw-sensitive-content {
    position: relative;
}

.gw-sensitive-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.gw-sensitive-icon svg {
    color: #fff;
}

.gw-sensitive-title {
    color: #343a40;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.gw-sensitive-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* 验证步骤 */
.gw-verification-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gw-step {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.gw-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #dee2e6;
    transition: all 0.3s ease;
}

.gw-step.gw-step-completed {
    border-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.gw-step.gw-step-completed::before {
    background: #28a745;
}

.gw-step.gw-step-pending {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
}

.gw-step.gw-step-pending::before {
    background: #ffc107;
}

.gw-step.gw-step-disabled {
    opacity: 0.6;
    background: #f8f9fa;
}

.gw-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.gw-step-completed .gw-step-icon {
    background: #28a745;
    color: #fff;
}

.gw-step-pending .gw-step-icon {
    background: #ffc107;
    color: #212529;
}

.gw-step-disabled .gw-step-icon {
    background: #6c757d;
    color: #fff;
}

.gw-step-content {
    flex: 1;
}

.gw-step-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.gw-step-content p {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.gw-step-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.gw-step-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    color: #fff;
    text-decoration: none;
}

.gw-step-action:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* 动画效果 */
@keyframes gwStepSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gw-step {
    animation: gwStepSlideIn 0.4s ease-out;
}

.gw-step:nth-child(1) {
    animation-delay: 0.1s;
}

.gw-step:nth-child(2) {
    animation-delay: 0.2s;
}

.gw-step:nth-child(3) {
    animation-delay: 0.3s;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .gw-sensitive-protection {
        padding: 30px 20px;
        margin: 20px auto;
    }

    .gw-sensitive-title {
        font-size: 24px;
    }

    .gw-sensitive-description {
        font-size: 14px;
    }

    .gw-verification-steps {
        max-width: 100%;
    }

    .gw-step {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .gw-step-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .gw-step-content {
        text-align: center;
    }

    .gw-step-action {
        margin-top: 8px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .gw-contact-qrcode img {
        max-width: 100px;
        max-height: 100px;
    }

    .gw-contact-qrcode {
        padding: 10px;
        margin: 10px 0;
    }

    .gw-qrcode-tips {
        font-size: 11px;
        padding: 0 5px;
    }

    .gw-verification-section {
        padding: 15px;
    }

    .gw-verification-box {
        padding: 15px;
    }

    .gw-sensitive-protection {
        padding: 24px 16px;
        margin: 16px auto;
    }

    .gw-sensitive-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .gw-sensitive-icon svg {
        width: 40px;
        height: 40px;
    }

    .gw-sensitive-title {
        font-size: 20px;
    }

    .gw-step {
        padding: 12px;
    }

    .gw-step-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* 新增样式：优化验证码界面文案布局 */
.gw-box-description {
    margin-bottom: 24px;
}

.gw-main-notice {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.gw-contact-notice {
    margin: 0;
    font-size: 14px;
    color: #777;
    line-height: 1.4;
}

/* 版权声明样式 */
.gw-copyright-notice {
    margin-top: -10px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.gw-copyright-content {
    text-align: center;
}

.gw-copyright-main {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #888;
    font-weight: 300;
    line-height: 1.3;
}

.gw-copyright-warning {
    margin: 0;
    font-size: 14px;
    color: #bbb;
    line-height: 1.2;
    font-weight: 300;
}

/* 移动端优化 */
@media (max-width: 480px) {
    .gw-box-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .gw-box-description {
        margin-bottom: 20px;
    }

    .gw-main-notice {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .gw-contact-notice {
        font-size: 12px;
    }

    .gw-copyright-main {
        font-size: 9px;
    }

    .gw-copyright-warning {
        font-size: 8px;
    }

    .gw-copyright-notice {
        padding-top: 16px;
    }
}