* {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}
body::-webkit-scrollbar {
    display: none;
    /* Chrome Safari */
}
/* 中上部 */
.centerTop {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    width: 100%;
    min-width: 1400px;
    height: 420px;
}
.news-banner {
    width: 100%;
    height: 100%;
    position: absolute;
   background-size:cover;
background-repeat: no-repeat;
    animation: new-banner 1s ;
    z-index: -1;
}
@keyframes new-banner {
    0% {
        transform: scale(1.2);
        /*transform: translateZ(-800px);*/
    }
    100% {
        transform: scale(1);
        /*transform: translateZ(-800px);*/
    }
}
.centerTopTitle {
    display: flex;
    margin: 103px 0 0 0;
    flex-direction: column;
    width: 1400px;
}

.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;
    z-index: 1;
}
@keyframes top-desc-title {
    0% {
        transform: translateX(-100px) translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(0) translateZ(-800px);
        opacity: 1;
    }
}

.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;
    z-index: 1;
}
@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;
}
.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 1400px;
    z-index: 5;
    margin: -120px 0 0 0;
    background-color: #FFFFFF;
    padding-bottom: 55px;
    margin-bottom: 80px;
}

.contentLine {
    width: 100%;
    height: 1px;
    border-top: dashed 1px black;
    margin: -10px 0 0 0;
}

/* 顶部导航 */
.contentBar {
    margin: 35px 0 0 0;
    width: 1338px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F6F6F6;
}

.contentBarLeft {
    width: 208px;
    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';
}

.contentBarUnderLine {
    width: 100%;
    height: 1px;
    margin: -58px 0 0 0;
    border-bottom: 1px dashed black;
}
.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 100px;
}
.contentBarType {
    display: inline-block;
    height: 41px;
    color: #3F51B5 !important;
}

.contentBarNormal {
    color: #404040; !important;
}

.contentWork{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contentTitle {
    display: flex;
    width: 1335px;
    padding: 32px 0;
    border-bottom: 1px solid #D9D9D9;
    margin-top: 27px;
}

.contentTitle>a>img {
    width: 406px;
    height: 238px;
    margin-right: 32px;
}

.contentTitle>a>li {
    display: flex;
    flex-direction: column;
    width: 877px;
}

.contentTitleD {
    color: #8C8C8C;
    font: normal 400 14px 'Source Han Sans SC-Regular';
}

.contentTitleT {
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 500;
    font-size: 20px;
    color: #262626;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 8px 0 28px;
}

.contentTitleP {
    color: #8C8C8C;
    font: normal 400 14px 'Source Han Sans SC-Regular';
}

.contentTitleM {
    color: #3F51B5;
    font: normal 500 14px 'Source Han Sans SC-Medium';
    margin-top: 28px;
}

.contentMain {
    display: flex;
    flex-direction: column;
    width: 1341px;
}

.contentMain > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    border-bottom: 1px solid #F0F0F0;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* 只使用transform进行过渡动画 */
}

.contentMain >  a:hover {
    transform: translateY(-5px); /* 向上移动5px */
    box-shadow: 0 15px 10px -15px #B5CEFF;
}
.contentMain > a:last-child {
    margin-bottom: 50px;
}
.contentMain > a > div{
    display: flex;
    flex-direction: column;
}
.contentMainD {
    color: #8C8C8C;
    font: normal 400 14px 'Source Han Sans SC-Regular';
    margin: 28px 0 8px;
}

.contentMainT {
    color: #262626;
    font: normal 500 20px 'Source Han Sans SC-Medium';
}

.contentPage {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 388px;
    height: 36px;
}

.el-pagination {
    display: flex;
    list-style: none;
}

.el-pagination button,
.el-pagination span {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    cursor: pointer;
    border-radius: 2px;
    border: none;
    margin: 0 4px;
}

.el-pagination button:disabled {
    background-color: #FFFFFF;
    color: #ccc;
    cursor: not-allowed;
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 400;
    font-size: 12px;
    color: #404040;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.el-pagination button.active {
    background-color: #3F51B5;
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
