* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px 0;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
    }
    body {
        padding: 10px 0;
    }
}
h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a56db;
    font-size: 24px;
    font-weight: 700;
}
h2 {
    text-align: center;
    margin: 30px 0 20px;
    color: #4a5568;
    font-size: 18px;
    font-weight: 600;
}
.form-group {
    margin-bottom: 25px;
}
.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #4a5568;
}
.radio-group input[type="radio"] {
    margin-right: 8px;
    accent-color: #1a56db;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.form-control:focus {
    outline: none;
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
textarea.form-control {
    resize: vertical;
    min-height: 180px;
    line-height: 1.5;
}
.form-help {
    margin-top: 8px;
    font-size: 13px;
    color: #718096;
}
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}
.btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #1a56db 0%, #1e429f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 86, 219, 0.4);
}
.btn:active {
    transform: translateY(0);
}
.link-group a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.link-group a:hover {
    color: #1a56db;
    text-decoration: underline;
}
.friendly-links {
    margin-top: 200px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.friendly-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}
.friendly-links-list a {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.7;
    transition: color 0.3s ease;
}
.friendly-links-list a:hover {
    color: #1a56db;
    text-decoration: underline;
}
.declaration {
    margin-top: 0px;
    font-size: 12px;
    color: #718096;
    text-align: left;
    width: 70%;
}
.update-info {
    margin-top: 30px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
table th {
    background-color:#f1f1f1;
    color:black;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}
table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #4a5568;
}
table tr:last-child td {
    border-bottom: none;
}
table tr:hover {
    background: rgba(26, 86, 219, 0.05);
}
@media (max-width: 768px) {
    table {
        font-size: 13px;
    }
    table th, table td {
        padding: 8px 10px;
    }
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 16px;
    }
}

/* 网络波动提示横幅样式 */
.network-alert {
    top: 0;
    padding: 5px 10px;
    margin-bottom: 5px;
    font-size: 12px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}
.alert-content {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.alert-content span {
    color: #6c757d;
    flex: 1;
    min-width: 200px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .alert-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* 图标样式 */
.icon-svg {
    vertical-align: middle;
    margin-right: 4px;
}

/* 内联样式转class */
.uploadFile {
    display: none;
}
#yue {
    display: none;
    color: #248aff;
}
#process {
    text-align: center;
    font-size: 14px;
    color: #ff6620;
}
.text-right {
    text-align: right;
}

/* Modal 弹框样式 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-overlay.active {
    display: flex;
}
.modal-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
    padding: 30px 24px 24px;
    position: relative;
    text-align: center;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    border: none;
    background: none;
    line-height: 1;
}
.modal-close:hover {
    color: #333;
}
.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a56db;
    margin-bottom: 20px;
}
.modal-body p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}
.modal-body .highlight-code {
    font-size: 24px;
    font-weight: 700;
    color: #e53e3e;
    letter-spacing: 4px;
    margin: 10px 0;
}
.modal-body img.gzh-img {
    width: 200px;
    margin: 15px auto;
    display: block;
}
.modal-body .pay-info {
    font-size: 14px;
    color: #4a5568;
    margin: 10px 0;
}
.modal-body .pay-amount {
    font-size: 20px;
    font-weight: 700;
    color: #e53e3e;
}
.modal-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
}
.modal-input:focus {
    outline: none;
    border-color: #1a56db;
}
.modal-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #1a56db 0%, #1e429f 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    width: 100%;
}
.modal-btn:hover {
    opacity: 0.9;
}
.modal-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.modal-status {
    font-size: 13px;
    color: #718096;
    margin-top: 12px;
}
#payQrcodeImg {
    margin: 15px auto;
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    .modal-box {
        width: 95%;
        padding: 24px 16px 16px;
    }
}
