* {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome Safari */
}

/* 中上部 */
.centerTop {
    width: 100%;
    height: 420px;
    min-width: 1400px;
    display: flex;
    position: relative;
    margin: 0;
    justify-content: center;
}
.party-banner {
    position: absolute;
    width: 100%;
    height: 100%;
   background-size:cover;
background-repeat: no-repeat;
    animation: party-banner 1s ;
    z-index: -1;
}
@keyframes party-banner {
    0% {
        transform: scale(1.2);
        /*transform: translateZ(-800px);*/
    }
    100% {
        transform: scale(1);
        /*transform: translateZ(-800px);*/
    }
}
.party_work_centerTopTitle {
    display: flex;
    flex-direction: column;
    width: 1400px;
    margin-top: 103px;
}
.party_work_centerTopTitle>span:nth-child(1) {
    color: rgba(255, 255, 255, 0.4);
    font: normal bold 48px 'Source Han Sans SC-Bold';
    animation: top-desc-title 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes top-desc-title {
    0% {
        transform: translateX(-100px) translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(0) translateZ(-800px);
        opacity: 1;
    }
}

.party_work_centerTopTitle>span:nth-child(2) {
    color: #FFFFFF;
    font: normal bold 54px 'Source Han Sans SC-Bold';
    animation: top-desc-content 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes top-desc-content {
    0% {
        -webkit-transform: translateX(100px) translateY(100px);
        transform: translateX(100px) translateY(100px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}
/* 中下部 */
.centerBottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 1400px;
    background-color: #EEF2FB;
    z-index: 2;
    padding-bottom: 80px;
}
.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 1400px;
    z-index: 5;
    margin: -120px 0 0 0;
    background-color: #FFFFFF;
    padding-bottom: 42px;
}
/* 顶部导航 */
.contentBar {
    margin: 35px 0 0 0;
    width: 1338px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F6F6F6;
}

.contentBarLeft {
    height: 22px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 0 0 24px;
    color: #8C8C8C;
    font: normal 400 14px 'Source Han Sans SC-Regular';
}
.contentBarLeft>a{
    color: #8C8C8C !important;
}
.contentBarLeft>span {
    color: #D9D9D9;
}

.pageC {
    font: normal 400 14px 'Source Han Sans SC-Regular';
    color: #262626;
}

.contentBarRight {
    width: 483px;
    height: 32px;
}

.contentBarRight>ul {
    display: flex;
    justify-content: space-around;
    font: normal 500 18px 'Source Han Sans SC-Medium';
}

.contentBarRight>ul>li {
    cursor: pointer;
}

.contentBarRight>div {
    width: 160px;
    color: #3F51B5;
    text-align: center;
    transition: all 1s;
}
.contentBarIndex{
    margin: -2px 0 0 230px;
}
.contentBarType {
    display: inline-block;
    height: 41px;
    color: #3F51B5 !important;
}

.contentBarNormal {
    color: #404040;
}
/* 内容 */
.contentMain {
    display: flex;
    width: 1400px;
    flex-wrap: wrap;
    margin-top: 36px;

}
.contentMain>div {
    width: 426px;
    margin: 0 0 24px  32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* 只使用transform进行过渡动画 */
}

.contentMain > div:hover {
    transform: translateY(-5px); /* 向上移动5px */
    box-shadow: 0 15px 10px -15px #B5CEFF;
}
.contentMain>div:last-child {
    margin-bottom: 40px;
}
.contentDate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    color: #000000;
}
.contentDate>img {
    width: 100%;
    height: 235px;
}

.contentDate > li {
    background: #F6F6F6;
    width: 100%;
    height: 64px;
    padding: 21px 24px 21px 18px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contentDate > li > label{
    white-space: nowrap; /* 防止换行 */
    overflow: hidden;
    text-overflow: ellipsis; /* 溢出时显示省略号 */
}
.viewBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 94px;
    height: 36px;
    background-color: #2778E5;
    border-radius: 6px;
    cursor: pointer;
    color: #ffffff!important;
}
/* 分页 */
.contentPage {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

