
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft Yahei", sans-serif;
    color: #222;
    background-color: #f5f7fa;
}
a { color: #0b7bd6; text-decoration: none; }
a:hover { text-decoration: underline; }
header {
    background: #083b66;
    color: #fff;
    padding: 12px 24px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.nav-bar {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}
.nav-links a {
    color: #e6edf5;
}
.nav-links a:hover {
    color: #fff;
}
.lang-switch a {
    padding: 4px 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 12px;
}
main {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}
.hero {
    background: radial-gradient(circle at top left, #1fa2ff, #12d8fa, #0ac2a3);
    color: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr);
    gap: 24px;
}
.hero h1 {
    margin-top: 0;
    font-size: 28px;
}
.hero p {
    font-size: 15px;
    line-height: 1.8;
}
.hero-highlight {
    font-size: 13px;
    opacity: 0.95;
    margin-top: 8px;
}
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.chip {
    background: rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 12px;
}
.hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 14px;
}
.btn-primary {
    background: #fff;
    color: #0b7bd6;
    font-weight: 600;
}
.btn-secondary {
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
}
.hero-right {
    font-size: 13px;
    line-height: 1.9;
    opacity: 0.94;
}
.section {
    margin-top: 32px;
}
.section h2 {
    font-size: 22px;
    margin-bottom: 8px;
}
.section h3 {
    font-size: 18px;
    margin-bottom: 6px;
}
.section p {
    font-size: 14px;
    line-height: 1.8;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.card {
    background: #fff;
    border-radius: 14px;
    padding: 16px 16px 18px;
    box-shadow: 0 6px 18px rgba(15,35,52,0.07);
    border: 1px solid #edf0f5;
}
.card h3 {
    margin-top: 0;
    font-size: 16px;
}
.card p {
    font-size: 13px;
    line-height: 1.8;
}
.card a.more {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
}
.tagline {
    font-size: 13px;
    color: #5f6b7a;
}
ul.tagline {
    padding-left: 18px;
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 13px;
}
.table th, .table td {
    border: 1px solid #e0e4ec;
    padding: 6px 8px;
    text-align: left;
}
.table th {
    background: #f3f5fb;
    font-weight: 600;
}
.notice {
    font-size: 12px;
    color: #8a93a5;
    margin-top: 8px;
}
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    background: #e6f4ff;
    color: #0b5fd3;
    margin-left: 4px;
}
footer {
    border-top: 1px solid #e0e4ec;
    padding: 16px;
    margin-top: 32px;
    font-size: 12px;
    color: #666;
    background: #f0f3f8;
}
footer .footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }
    .nav-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        flex-wrap: wrap;
    }
}

.nav-left img {
    animation: jjdzLogoGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}
.nav-left img:hover {
    transform: scale(1.03);
}
@keyframes jjdzLogoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(255,255,255,0));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.9));
    }
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 12px;
}
.news-item {
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px 16px;
    box-shadow: 0 4px 14px rgba(15,35,52,0.06);
    border: 1px solid #edf0f5;
}
.news-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
}
.news-date {
    font-size: 12px;
    color: #8a93a5;
    margin-bottom: 4px;
}
.news-more {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
}

.map-placeholder {
    width: 100%;
    max-width: 720px;
    height: 260px;
    border-radius: 14px;
    border: 1px dashed #c4ccda;
    background: repeating-linear-gradient(
        45deg,
        #f9fbff,
        #f9fbff 10px,
        #f3f6fc 10px,
        #f3f6fc 20px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #5f6b7a;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 720px;
}
.form-row {
    margin-bottom: 12px;
}
.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 6px 8px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid #d1d7e3;
    box-sizing: border-box;
}
.form-row textarea {
    min-height: 100px;
    resize: vertical;
}
.form-actions {
    margin-top: 8px;
}
.form-actions button {
    padding: 8px 18px;
    border-radius: 18px;
    border: none;
    font-size: 13px;
    cursor: pointer;
}
.form-actions button[type="submit"] {
    background: #0b7bd6;
    color: #fff;
    margin-right: 8px;
}
.form-actions button[type="reset"] {
    background: #eef2f8;
    color: #333;
}
