:root {
    --blue: #2f77ff;
    --deep: #1e5bd8;
    --light: #ecf5ff;
    --line: #cfe1ff;
    --text: #234b7a;
    --muted: #6c8fb6;
}

a {
    color: var(--blue);
    text-decoration: none
}

.city-wrap {
    width: 1260px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 40px;
}

/* 顶部标题 */
.top-banner {
    border-radius: 8px;
    background: url('../images/csrl.png') center/contain no-repeat;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    width: 1260px;
    height: 224px;
    position: relative;
    margin-bottom: 20px;
}

.decorate-line {
    width: 1210px;
    height: 80px;
    background: url('../images/ty1.png') center/contain no-repeat;
    position: absolute;
    right: 25px;
    bottom: -50px;
    z-index: 999;
}

.bg-blue-white {
    width: 1260px;
    height: 75px;
    background: linear-gradient(180deg, rgba(168, 231, 255, 0.7), rgba(255, 255, 255, 0.7));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 8px;
}



/* 卡片与分区容器通用 */
.card {
    width: 430px;
    height: 420px;
    background: #F5FAFF;
    box-shadow: 0px 2px 8px 0px rgba(51, 133, 228, 0.1);
    border-radius: 8px 8px 0px 0px;
}

.section {
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding-top: 45px;
    background-color: #FFFFFF;
}

.section1 {
    padding: 53px 61px 63px 61px;
    background: linear-gradient(180deg, #A8E7FF, #FFFFFF);
}


.section2 {
    width: 1260px;
    height: 320px;
}

.section3 {
    width: 1260px;
    height: 440px;
}

.section4 {
    width: 1260px;
    height: 320px;
}

.section5 {
    width: 1260px;
    height: 320px;
}

/* 主卡片：日历 + 资讯列表 */
.grid-2 {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 28px
}

#articleList {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.list-item {
    width: 660px;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(51, 133, 228, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 16px;
}

.list-item .date {
    width: 68px;
    height: 64px;
    text-align: center;
    background: url('../images/zx1.png') center/contain no-repeat;
    position: absolute;
    top: -8px;
    left: 11px;
}

.list-item .date .day {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 24px;
    color: #E4F1FF;
    height: 50%;
}

.list-item .date .month {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #48A3FC;
}

.list-item .text {
    display: block;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 95px;
}

.list-item .text:hover {
    color: #3385E4;
}

/* 两列资讯列表 */
.two-cols {}

.ulist {
    width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    /* 自动填充列，每列最小200px */
    list-style-type: none;
    /* 移除默认的列表样式 */
    padding: 0;
    /* 移除默认的padding */
    gap: 0 60px;
}

.ulist li {
    display: flex;
    justify-content: space-between;
}

.ulist .title::before {
    display: inline-block;
    content: "";
    /* 空字符串，不添加内容 */
    width: 16px;
    /* 设置宽度 */
    height: 15px;
    /* 设置高度 */
    background-image: url('../images/list-before.png');
    /* 设置背景图片 */
    background-size: cover;
    /* 背景图片覆盖整个空间 */
    margin-right: 14px;
    /* 与文本的间距 */
}

.ulist .title {
    max-width: 418px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 40px;
    margin-right: 33px;
}

.ulist .time {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 40px;
    opacity: 0.5;
}

/* 媒体聚焦 图文卡片 */
.gallery {
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.g-item {}

.g-item .thumb {
    width: 278px;
    height: 186px;
}

.g-item .g-body {
    height: 73px;
    padding-top: 23px;
    background: #EBF5FF;
    border-bottom: 3px solid #93D9FF;
}

.g-item .g-title {
    display: block;
    margin: 0 auto;
    width: 259px;
    height: 50px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 31px;
}

/* 招考信息 卡片 */
.recruit {
    margin: 0 auto;
    width: 1170px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px 30px
}

.recruit .r-item {
    height: 72px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #93D9FF;
    display: flex;
    align-items: center;
}

.r-item .r-head {
    width: 400px;
    display: flex;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    line-height: 31px;
    margin-left: 20px;
}

.r-item .r-head .date {
    width: 53px;
    display: flex;
    justify-content: center;
    font-size: 16px;
    margin-right: 13px;
}

.r-item .r-head a {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    line-height: 31px;
}

.r-item .r-head a:hover {
    color: #3385E4;
}

.date .month {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 24px;
    color: #333333;
    line-height: 31px;
}

/* 分区头图装饰（使用提供图片）*/
.caption {
    width: 944px;
    height: 27px;
    margin: 0 auto;
    background-size: cover !important;
}

.bmts {
    background: url('../images/bmts.png') no-repeat;
    margin-bottom: 54px;
    z-index: 2;
    position: relative;
}

.mtjj {
    background: url('../images/mtjj.png') no-repeat;
    margin-bottom: 37px;
    z-index: 2;
    position: relative;
}

.jyzx {
    background: url('../images/jyzx.png') no-repeat;
    margin-bottom: 54px;
    z-index: 2;
    position: relative;
}

.zkxx {
    background: url('../images/zkxx.png') no-repeat;
    margin-bottom: 36px;
    z-index: 2;
    position: relative;
}