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

/* Desktop full width */
html {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    min-width: 1200px;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.15);
    min-width: 1200px;
    transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header.scrolled .nav-item {
    color: #333;
}

.header.scrolled .nav-item.active {
    color: #DB4442;
}

.header-inner {
    /* max-width: 1300px; */
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding-right: 200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.logo-icon {
    font-size: 24px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-toggle {
    display: none;
}

.nav-overlay {
    display: none;
}

.nav-item {
    color: #fff;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-item.active {
    color: #DB4442;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #DB4442;
    border-radius: 2px;
}

.nav-item:hover {
    color: #DB4442;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    background: #1a1a2e;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); */
}

.hero-content {
    position: absolute;
    bottom: 25%;
    left: 13.5%;
    z-index: 2;
    max-width: 1200px;
    padding: 0;
    width: auto;
}

.hero-badge {
    font-size: 48px;
    color: rgba(255,255,255,0.15);
    font-weight: bold;
    letter-spacing: 8px;
    margin-bottom: -10px;
}

.hero-title {
    font-size: 52px;
    color: #DB4442;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    /* max-width: 500px; */
}

.hero-calligraphy {
    position: absolute;
    top: 30px;
    right: 80px;
    font-size: 60px;
    color: #DB4442;
    font-weight: bold;
    z-index: 2;
    line-height: 1.2;
    font-family: "KaiTi", "STKaiti", serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-disclaimer {
    position: absolute;
    bottom: 30px;
    right: 80px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    z-index: 2;
}

/* Statistics */
.statistics {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 20px;
    max-width: 1200px;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 35px 20px;
    border-right: none;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: #eee;
}

.stat-item:last-child::after {
    display: none;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    margin-bottom: 16px;
}

.stat-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #DB4442;
    margin-bottom: 8px;
}

.stat-unit {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.stat-label {
    font-size: 13px;
    color: #999;
}

/* Notice Section */
.notice-section {
    padding: 50px 0;
    background: #fff;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.notice-panel {
    /* border: 1px solid #eee; */
    border-radius: 4px;
    overflow: hidden;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #F9F1F1;
}

.panel-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.more-link {
    font-size: 12px;
    color: #999;
    transition: color 0.3s;
}

.more-icon {
    height: 16px;
    width: auto;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.more-link:hover {
    color: #DB4442;
}

.panel-content {
    padding: 0;
}

/* Notice Items */
.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #E3E3E3;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.notice-item:last-child {
    border-bottom: 1px solid #E3E3E3;
}

.notice-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.date-day {
    font-size: 28px;
    font-weight: bold;
    color: #DB4442;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.notice-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    flex: 1;
}

/* News Items */
.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #E3E3E3;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.news-item:last-child {
    border-bottom: 1px solid #E3E3E3;
}

.news-thumb {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info {
    flex: 1;
}

.news-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.5;
}

.news-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.5;
}

.news-meta {
    font-size: 12px;
    color: #aaa;
}

/* Partners Section */
.partners-section {
    padding: 50px 0 60px;
    background: #fff;
    padding-top: 0;
}

.partners-grid {
    margin-top: 20px;
    position: relative;
}

.partners-grid::before,
.partners-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.partners-grid::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.partners-grid::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.partner-row {
    overflow: hidden;
    padding: 18px 0;
    /* border-bottom: 1px solid #E3E3E3; */
}

.partner-row:last-child {
    border-bottom: none;
}

.partner-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scrollLeft 20s linear infinite;
}

.partner-row:nth-child(2) .partner-track {
    animation-duration: 25s;
}

.partner-row:nth-child(3) .partner-track {
    animation-duration: 22s;
}

.partner-row:nth-child(4) .partner-track {
    animation-duration: 28s;
}

.partner-item {
    font-size: 14px;
    color: #666;
    padding: 8px 16px;
    min-width: 140px;
    text-align: center;
    flex-shrink: 0;
}

.partner-item img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: #ccc;
}

.footer-main {
    padding: 50px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-grid h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 8px;
}

.phone-number {
    font-size: 28px;
    font-weight: bold;
    color: #E23431;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-posi-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.footer-link-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.footer-links a,
.footer-info a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover,
.footer-info a:hover {
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid #fff;
}

.footer-links p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-qrcodes {
    display: flex;
    gap: 20px;
}

.qrcode-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qrcode-placeholder {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 4px;
}

.qrcode-img {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    object-fit: cover;
}

.qrcode-group span {
    font-size: 12px;
    color: #fff;
}

.footer-contact,
.footer-links,
.footer-info {
    position: relative;
}

.footer-contact::after,
.footer-links::after,
.footer-info::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #444;
}

.footer-bottom {
    border-top: none;
    padding: 15px 0;
    margin: 0 30px;
    border-top: 1px solid #444;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #fff;
    flex-wrap: wrap;
}

.footer-bottom-inner a {
    color: inherit;
    text-decoration: none;
}

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

.footer-logo-small {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.logo-icon-small {
    font-size: 16px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-company-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
}

.footer-jing-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}
