﻿body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* 头部banner */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contentContainer {
    width: 1400px;
    height: auto;
}

/* 头条 */
.tt {
    box-shadow: 2px 0px 4px #f1f1f1,  0px 2px 4px #f1f1f1, 2px 0px 4px #f1f1f1, 0px 2px 4px #f1f1f1;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
}

.tt title {  
    text-align: center;
}

.tt .title a {
    font-size: 37px;
    font-weight: bold;
    color: #d0000d;
}

.tt .info {
    margin-top: 20px;
    text-align: left;
    color: #333;
    font-size: 18px;
    line-height: 36px;
    text-indent: 2em;
}

.tt .info a {
    font-size: 18px;
    font-weight: 500;
    color: #d0000d;
}

/* 党建专题 */
.djzt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.djztLeft,
.djztRight {
    width: 680px;
    height: 414px;
    display: flex;
    flex-direction: column;
}

.djztLeft .top,
.djztRight .top,
.djztLeft .bottom,
.djztRight .bottom {
    height: 35px;
}

.djztLeft .bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.djztRight .bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.djztLeft .info,
.djztRight .info {
    flex: 1;
    background-color: #FFF3EE;
}

.djztLeft .info .title,
.djztRight .info .title {
    width: 620px;
    height: 80px;
    background: linear-gradient( 90deg, #FFE2CE 0%, #FFEBDD 47.12%, #FFE2CE 100%);
    border-radius: 0px 0px 0px 0px;
    margin: 30px 30px 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 22px;
    color: #000000;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.djztLeft .info .desc,
.djztRight .info .desc {
    color: #000000;
    text-align: justified;
    font-style: normal;
    text-transform: none;
    margin: 9px 30px;
    text-indent: 2em;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-indent: 2em;
    font-weight: 400;
    font-size: 16px;
}

.djztImg {
    width: 628px;
    height: 414px;
}

.djztImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 学习贯彻 */
.xxgc {
    margin-top: 70px;
}

.xxgc .title {
    width: 100%;
}

.xxgc .descs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 50px;
    margin-top: 30px;
}

.xxgc .descs .desc {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #FFF7F1;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid #CF1B1D;
    border-left: 4px solid #CF1B1D;
}

.xxgc .descs .desc a,
.xxgc .descs .desc a {
    cursor: pointer;
    color: #000000;
}

.xxgc .more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    cursor: pointer;
}

/* 典型榜样 */
.dxby {
    margin-top: 70px;
}

.dxby .title {
    width: 100%;
}

.dxby .descs {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dxby .descs > div {
    flex: 1;
    padding: 20px 24px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #F5F5F5;
    box-sizing: border-box;
    position: relative;
    background: #FFF7F1;
    font-weight: 400;
    font-size: 22px;
    color: #444444;
    text-align: center;
}

.dxby .descs > div::before,
.dxby .descs > div::after {
    content: '';
    position: absolute;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #ccc;
}

.dxby .descs > div::before {
    left: 0;
}

.dxby .descs > div::after {
    right: 0;
}

.dxby .descs > div:first-child::before {
    display: none;
}

.dxby .descs > div:last-child::after {
    display: none;
}

.dxby .descs .desc-item a {
    color: #444444;
}

.dxby .descs .desc-item a:hover {
    color: #111111;
    cursor: pointer;
    font-weight: bold;
}

.dxby .infos-wrap {
    position: relative;
}

.dxby .infos {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px 20px;
}

.dxby .infos .info-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
}

.dxby .infos .info-item img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.dxby .infos .info-item .info-text {
    flex: 1;
    overflow: hidden;
}

.dxby .infos .info-item .info-text h3 {
    margin: 0 0 10px 0;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 233px;
    font-weight: 400;
    font-size: 20px;
    color: #111111;
}

.dxby .infos .info-item .info-text p {
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-indent: 2em;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

/* 引航先锋 */
.yhxf {
    margin-top: 70px;
}

.yhxf .title {
    width: 100%;
}

.yhxf .descs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 50px;
    margin-top: 30px;
}

.yhxf .descs .desc {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.yhxf .descs .desc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    width: 4px;
    height: 30%;
    background-color: #CF1B1D;
}

.yhxf .descs .desc a,
.yhxf .descs .desc a {
    cursor: pointer;
    color: #000000;
}

/* 底部 */
.footer {
    width: 100%;
    height: 165px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../img/foot.png);
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
}

.footer p {
    margin: 5px 0;
    text-align: center;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
}



