/* 全局样式 - 全站共用，PPT要求单一样式表、风格统一 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", SimSun, sans-serif;
}

body {
    /* 你指定的蓝绿色系配色 */
    background-color: #e6f7ff;
    color: #333333;
    line-height: 1.7;
}

/* 顶部标题区 + 横幅（对应PPT主页布局顶部） */
.top-header {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}
.top-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-header h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #ffffff;
    font-size: 36px;
    text-shadow: 2px 2px 6px #000;
}

/* 导航栏（PPT主页布局标配） */
.nav-bar {
    background-color: #005ea5;
    border-bottom: 3px solid #ffc107;
}
.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: center;
}
.nav-bar li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 13px 28px;
}
/* 当前页面高亮，PPT示例导航样式 */
.nav-bar li a.active {
    background: #ffc107;
    color: #005ea5;
    font-weight: bold;
}
.nav-bar li a:hover {
    background: #ffffff;
    color: #005ea5;
    transition: 0.2s;
}

/* 主体容器：左右分栏（完全复刻PPT主页布局效果图） */
.wrap {
    width: 1180px;
    margin: 25px auto;
    display: flex;
    gap: 20px;
}

/* 左侧主内容区（PPT布局左侧板块） */
.main-left {
    width: 68%;
    background: #ffffff;
    padding: 22px;
    border-radius: 6px;
    box-shadow: 0 1px 8px #ccc;
}

/* 右侧侧边栏（PPT布局右侧板块） */
.side-right {
    width: 30%;
}

/* 板块标题样式（统一风格） */
.title {
    font-size: 19px;
    color: #005ea5;
    border-left: 4px solid #ffc107;
    padding-left: 10px;
    margin: 18px 0 12px;
}

/* 网站简介文本 */
.desc-text {
    text-indent: 2em;
    margin-bottom: 15px;
    font-size: 15px;
}

/* 新闻列表（PPT强制模块） */
.news-list {
    list-style: none;
}
.news-list li {
    padding: 9px 0;
    border-bottom: 1px dashed #dddddd;
    display: flex;
    justify-content: space-between;
}
.news-list li a {
    color: #333;
    text-decoration: none;
}
.news-list li a:hover {
    color: #005ea5;
}
.news-time {
    font-size: 13px;
    color: #666;
}

/* 右侧通用模块（友情链接/公告等，PPT布局右侧） */
.side-box {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 8px #ccc;
    margin-bottom: 20px;
}

/* 友情链接（PPT强制模块） */
.link-list {
    list-style: none;
}
.link-list li {
    padding: 7px 0;
}
.link-list li a {
    color: #005ea5;
    text-decoration: none;
}
.link-list li a:hover {
    color: #ffc107;
}

/* 图片展示区 */
.img-show {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0;
}
.img-show img {
    width: 220px;
    height: 160px;
    border-radius: 4px;
    object-fit: cover;
}

/* 页脚：版权+联系方式（PPT强制模块） */
.footer {
    width: 100%;
    background: #005ea5;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 3px solid #ffc107;
}
.footer p {
    margin: 6px 0;
    font-size: 14px;
}

/* 移动端自适应（PPT鼓励手机端开发，附加分） */
@media (max-width:768px) {
    .wrap {
        width: 96%;
        flex-direction: column;
    }
    .main-left, .side-right {
        width: 100%;
    }
    .nav-bar ul {
        flex-wrap: wrap;
    }
}