* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e3a8a 0%, #dc2626 50%, #fbbf24 100%);
    min-height: 100vh;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 15px;
    background: white;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 3px solid #dc2626;
}

.header {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
    background: linear-gradient(45deg, #dc2626, #fbbf24);
    border-radius: 8px;
    color: white;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.header h1 {
    color: white;
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.announcement {
    margin-bottom: 25px;
}

.policy-banner {
    background: linear-gradient(45deg, #dc2626, #1e3a8a);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    border: 2px solid #fbbf24;
}

.policy-banner h2 {
    font-size: 1.1em;
    margin-bottom: 8px;
    line-height: 1.3;
    white-space: nowrap;
}

.policy-banner h3 {
    font-size: 1.1em;
    font-weight: normal;
    background: rgba(255,255,255,0.2);
    padding: 8px;
    border-radius: 5px;
}

.content {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    padding: 18px;
    border-radius: 8px;
    border: 2px solid #dc2626;
    text-align: justify;
    line-height: 1.5;
}

.content p {
    margin-bottom: 10px;
    font-size: 0.95em;
    text-align: justify;
    text-indent: 2em;
}

.main-benefit {
    font-size: 1.3em;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 15px;
}

.sub-info {
    font-size: 1.1em;
    color: #1e3a8a;
    font-weight: 600;
}

.company-info {
    font-size: 0.95em;
    color: #374151;
    font-style: italic;
}

.highlight {
    background: linear-gradient(120deg, #ffd700, #ffed4e);
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    border: 2px solid #f1c40f;
    text-indent: 0;
    text-align: center;
    margin: 12px 0;
}

.application-form {
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    padding: 25px;
    border-radius: 8px;
    border: 3px solid #dc2626;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.application-form h3 {
    color: #dc2626;
    font-size: 1.3em;
    margin-bottom: 18px;
    text-align: center;
    font-weight: bold;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1em;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #fbbf24);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #1e3a8a;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
    background: linear-gradient(45deg, #b91c1c, #f59e0b);
}

.contact-info {
    text-align: center;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 2px dashed #c41e3a;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #c41e3a;
    font-weight: bold;
}

.qr-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code {
    width: 200px;
    height: 200px;
    border: 3px solid #c41e3a;
    border-radius: 10px;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s;
}

.contact-link:hover {
    background: #128c7e;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }
    
    .header h1 {
        font-size: 1.8em;
    }
    
    .policy-banner h2 {
        font-size: 1.5em;
    }
    
    .content p {
        font-size: 1em;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    animation: fadeIn 0.8s ease-out;
}

.form-group {
    animation: fadeIn 0.6s ease-out;
}

/* 强调文字样式 */
strong {
    color: #c41e3a;
    font-weight: bold;
}
