.register-container {
    min-height: calc(100vh - 44px - 60px); /* 减去导航栏和页脚的高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    padding-top: calc(44px + 24px); /* 导航栏高度 + 额外间距 */
    background-color: #f5f5f7;
}

.register-box {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.register-box h1 {
    font-size: 27px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 32px;
    text-align: center;
}

.register-form .form-group {
    margin-bottom: 20px;
}

.register-form label {
    display: block;
    font-size: 14px;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.register-form input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 15px;
    color: #1d1d1f;
    background: #ffffff;
    transition: all 0.3s ease;
}

.register-form input:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.verification-group .verification-input {
    display: flex;
    gap: 12px;
}

.verification-group input {
    flex: 1;
}

.send-code-btn {
    width: 120px;
    height: 44px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-code-btn:hover {
    background: #0077ED;
}

.send-code-btn:disabled {
    background: #d2d2d7;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    height: 50px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0077ED;
}

.form-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #86868b;
}

.form-footer a {
    color: #0071e3;
    text-decoration: none;
    margin-left: 4px;
}

.form-footer a:hover {
    text-decoration: underline;
}

.verification-input {
    /* ... existing code ... */
}

.verification-help {
    margin-top: 8px;
    text-align: right;
    font-size: 13px;
}

.verification-help a {
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.verification-help a:hover {
    color: #0077ed;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .register-box {
        padding: 24px;
    }

    .register-box h1 {
        font-size: 24px;
    }

    .verification-group .verification-input {
        flex-direction: column;
        gap: 8px;
    }

    .verification-group input {
        height: 44px;
        flex: none;
    }

    .send-code-btn {
        width: 100%;
        height: 44px;
        flex: none;
    }
}

/* 客服弹框样式 */
.customer-service-dialog {
    text-align: center;
    padding: 20px;
}

.customer-service-dialog p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.qrcode-container {
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode-container img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qrcode-tip {
    color: #888;
    font-size: 14px;
    margin-top: 10px;
}

.whatsapp-contact-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.whatsapp-icon-large {
    font-size: 48px;
    color: #25D366;
}

.whatsapp-info {
    text-align: left;
}

.whatsapp-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.whatsapp-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.whatsapp-link-dialog {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.whatsapp-link-dialog:hover {
    background: #20b954;
    color: white;
    text-decoration: none;
}

@media (max-width: 480px) {
    .whatsapp-contact-dialog {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-info {
        text-align: center;
    }
}