/* Banner轮播区域 */
.banner {
    width: 1200px;
    height: 320px;
    background: linear-gradient(135deg, #c3eb25, #e55c46);
    margin: 20px auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    color: #fff;
}

.banner-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* 快捷功能入口模块 */
.module-title {
    text-align: center;
    font-size: 22px;
    color: #111;
    margin: 40px 0 30px;
    position: relative;
}

.module-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #FFA415;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.func-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.func-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
}

.func-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(15, 82, 186, 0.15);
}

.func-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.func-card:nth-child(1) .func-icon {
    background: #3b82f6;
}

.func-card:nth-child(2) .func-icon {
    background: #10b981;
}

.func-card:nth-child(3) .func-icon {
    background: #f97316;
}

.func-card:nth-child(4) .func-icon {
    background: #ec4899;
}

.func-card:nth-child(5) .func-icon {
    background: #8b5cf6;
}

.func-card:nth-child(6) .func-icon {
    background: #14b8a6;
}

.func-card:nth-child(7) .func-icon {
    background: #eab308;
}

.func-card:nth-child(8) .func-icon {
    background: #ef4444;
}

.func-card:nth-child(9) .func-icon {
    background: #64748b;
}

.func-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #222;
}

.func-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* 数据统计板块 */
.data-section {
    margin: 50px 0;
    background: #FFA415;
    padding: 40px 0;
    border-radius: 10px;
}

.data-wrap {
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: #fff;
}

.data-item h4 {
    font-size: 42px;
    margin-bottom: 8px;
}

.data-item span {
    font-size: 15px;
    opacity: 0.85;
}

/* 资讯公告区域 */
.news-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.news-box {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.news-head h3 {
    font-size: 18px;
    color: #FFA415;
}

.news-head a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.news-list li {
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.news-list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.news-list li a:hover {
    color: #FFA415;
}

.news-list .date {
    color: #999;
    font-size: 13px;
}