body {
    background: url(../../images/bodyBg.png) no-repeat top left #fff;
}

.sec-banner {
    width: 100%;
    height: 0;
    padding-bottom: 34.6%;
    position: relative;
}

.sec-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sec-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38%;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.sec-banner .center {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 30px;
    z-index: 2;
}

.sec-banner .center .sec-tit {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sec-banner .center .sec-tit h1 {
    font-size: 64px;
    color: #FFFFFF;
    line-height: 1;
}

.sec-banner .center .sec-tit span {
    font-size: 40px;
    color: #FFFFFF;
    line-height: 1;
    text-transform: capitalize;
}

.bread,
.bread a {
    display: flex;
    font-size: 16px;
    color: #FFFFFF;
}

.content .center {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.leftNav {
    border-left: 1px solid #C2C8D5;
    height: 50%;
    flex-shrink: 0;
    width: 400px;
    padding: 50px 0;
    padding-bottom: 200px;
    /* 页面滚动到一定距离后，左侧导航吸附固定在左侧 */
    position: sticky;
    top: 130px;
    align-self: flex-start;
}

.leftNav ul {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.leftNav ul li {
    padding: 0 30px;
}

.leftNav ul li>a {
    font-weight: bold;
    font-size: 34px;
    color: #666666;
    display: flex;
    align-items: center;
    position: relative;
}

.leftNav ul li>a::before {
    content: '';
    width: 0;
    height: 9px;
    background: #062A7B;
    position: absolute;
    left: -40px;
    transition: 0.3s;
}

.leftNav ul li.active>a,
.leftNav ul li:hover>a {
    color: #123B99;
}

.leftNav ul li.active>a::before,
.leftNav ul li:hover>a::before {
    width: 28px;
    transition: 0.3s;
}

.leftNav ul li dl {
    display: flex;
}
.leftNav ul li dl dd{margin:30px 0;}
.leftNav ul li dl dd>a {
    font-size: 26px;
    color: #333333;
    padding-right: 24px;
}

.leftNav ul li dl dd>a.active,
.leftNav ul li dl dd>a:hover {
    color: #062A7B;
    background: url(../../images/icon-dlOn.png) no-repeat right center/16px;
}

.rightCon {
    flex: 1;
    overflow: hidden;
    padding: 70px 40px;
    background: #fff;
}

.curTit {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #DBDBDB;
}

.curTit h2 {
    font-size: 30px;
    color: #333333;
    background: url(../../images/icon-cur.png) no-repeat left center/46px;
    padding-left: 58px;
}

.imgListItem {
    width: 100%;
    display: flex;
    padding: 40px 0;
    gap: 130px;
}

.imgListItem+.imgListItem {
    border-top: 1px solid #EEEEEE;
}

.imgListItem .img {
    width: 388px;
    height: 246px;
    flex-shrink: 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.imgListItem .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgListItem .txt {
    flex: 1;
    overflow: hidden;
}

.imgListItem .txt span {
    font-size: 14px;
    color: #666666;
}

.imgListItem .txt h6 {
    font-size: 24px;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.imgListItem .txt p {
    font-size: 16px;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.imgListItem .txt .more {
    font-size: 16px;
    color: #123B99;
    width: 124px;
    height: 40px;
    background: url(../../images/list-moreBg.png) no-repeat right center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    margin-top: 20px;
}

.imgListItem:hover .txt h6 {
    color: #123B99;
}

.imgListItem:hover .img img {
    transform: scale(1.1);
}

.imgListItem:hover .txt .more {
    transform: translateX(10px);
}

.sortBox {
    margin-top: 30px;
    width: 100%;
    background: #F5F6F9;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sortItem {
    display: flex;
    gap: 35px;
}

.sortItem>span {
    margin-right: 10px;
    font-size: 18px;
    color: #666666;
}

.sortItem>a {
    font-size: 18px;
    color: #666666;
}

.sortItem>a:hover,
.sortItem>a.active {
    color: #123B99;
    font-weight: bold;
}

.sortItem>ul {
    display: flex;
    gap: 16px 8px;
}

.sortItem>ul li>a {
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sortItem>ul li>a:hover,
.sortItem>ul li>a.active {
    background: #123B99;
    color: #fff;
}

.teaList {
    width: 100%;
    margin-top: 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.teaItem {
    width: calc(50% - 15px);
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    padding: 10px;
    gap: 20px;
    background: url(../../images/teaBg.png) no-repeat right bottom #fff;
}

.teaItem>i {
    width: 150px;
    height: 216px;
    flex-shrink: 0;
    overflow: hidden;
}

.teaItem .txt {
    flex: 1;
    overflow: hidden;
    margin-top: 20px;
}

.teaItem .txt h2 {
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 20px;
}

.teaItem .txt h2 p {
    font-size: 20px;
    color: #000000;
    padding: 10px 0;
    border-bottom: 4px solid #123B99;
    width: fit-content;
}

.teaItem .txt>p {
    font-size: 14px;
    color: #333333;
    margin: 10px 0;
}

.tea-article {
    width: 100%;
    margin-top: 30px;
}

.tea-mess {
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    background: url(../../images/word-sz.png) no-repeat center center;
}

.tea-mess>i {
    width: 250px;
    aspect-ratio: 250/345;
}

.tea-mess .txt .teaName {
    border-bottom: 1px solid #DBDBDB;
    padding-bottom: 30px;
}

.tea-mess .txt .teaName h2 {
    font-size: 30px;
    color: #333;
    padding-left: 46px;
    background: url(../../images/icon-teaHat.png) no-repeat left center/32px;
    line-height: 1;
}

.tea-mess .txt>p {
    font-size: 18px;
    color: #333333;
    margin: 20px 0;
}

.teaContent h2 {
    font-size: 24px;
    color: #123B99;
    border-bottom: 1px solid #DBDBDB;
    padding: 18px 0;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.teaContent h2::before {
    content: '';
    display: block;
    width: 9px;
    height: 36px;
    background: #123B99;
}

.teaContent>p {
    font-size: 16px;
    color: #333333;
    margin: 8px 0;
}

.introduction {
    margin: 30px 0;
    width: 100%;
}

.introduce .articleTit {
    padding-bottom: 22px;
    border-bottom: 1px dashed #D5D5D5;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.introduce .articleTit h4 {
    font-size: 20px;
    color: #333333;
    text-align: center;
}

.introduce .articleTit span {
    width: fit-content;
    color: #0C3398;
    font-size: 16px;
    margin-top: 8px;
    display: block;
    background: url(../../images/icon-timeBlue.png) no-repeat left center/16px;
    padding-left: 24px;
}

.introduce>p {
    font-size: 16px;
    color: #333333;
    text-indent: 2em;
    margin: 14px 0;
}

.introduce p.gpCmsImg {
    text-indent: 0!important;
}

.introduce p.gpCmsImg img,
.introduce p img {
    max-width: 100%!important;
    height: auto!important;
}

.article p.gpCmsImg img {
    width: 554px;
}

.paperCheck {
    border-top: 1px solid #DBDBDB;
    padding: 30px 0;
    display: grid;
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    column-gap: 40px;
    margin-top: 40px;
}

.paperCheck a {
    width: 100%;
    overflow: hidden;
}

.paperCheck a p {
    font-size: 14px;
    color: #333333;
    background: url(../../images/icon-checkL.png) no-repeat left center;
    padding-left: 20px;
    margin-bottom: 6px;
}

.paperCheck a:nth-child(2) {
    text-align: right;
}

.paperCheck a:nth-child(2) p {
    background-image: url(../../images/icon-checkR.png);
    background-position: right center;
    padding-right: 20px;
}

.paperCheck a span {
    font-size: 16px;
    color: #0059A0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
}

.listBox ul li {
    position: relative;
    width: 100%;
}

.listBox ul li a {
    width: 100%;
    padding: 40px 0;
    display: block;
    position: relative;
    z-index: 2;
}

.listBox ul li+li {
    border-top: 1px solid #EEEEEE;
}

.listBox ul li a .tit {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.listBox ul li a .tit h6 {
    font-size: 24px;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listBox ul li a .tit span {
    font-size: 18px;
    color: #333333;
    flex-shrink: 0;
    margin-left: 40px;
}

.listBox ul li a>p {
    font-size: 16px;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listBox ul li:before {
    content: '';
    display: block;
    width: calc(100% + 80px);
    height: 0;
    background: #123B99;
    position: absolute;
    top: 0;
    left: -40px;
    transition: 0.3s;
}

.listBox ul li:hover:before {
    height: 100%;
    transition: 0.3s;
}

.listBox ul li:hover a .tit h6,
.listBox ul li:hover a .tit span,
.listBox ul li:hover a>p {
    color: #fff;
}

.manageBox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 88px;
    margin: 30px 0;
    overflow: hidden;
}

.manage {
    flex: 0 0 calc(50% - 44px);
}

.manage:first-child {
    flex: 0 0 100%;
}

.manage h3 {
    border-bottom: 1px solid #CECECE;
}

.manage h3 p {
    font-size: 28px;
    color: #333333;
    padding: 10px 0;
    border-bottom: 5px solid #123B99;
    width: fit-content;
}

.main-team {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.leaderItem {
    width: 100%;
    display: flex;
    background: url(../../images/ruc-logo.png) no-repeat right bottom #FAFCFF;
    border-radius: 2px;
    margin-top: 54px;
    align-items: center;
}

.leaderItem>i {
    width: 194px;
    height: 253px;
    background: #123B99;
}

.leaderItem>i img {
    position: relative;
    left: 10px;
    bottom: 10px;
}

.leaderItem>.txt {
    flex: 1;
    overflow: hidden;
    padding: 10px 54px;
}

.leaderItem>.txt h4 {
    font-size: 24px;
    color: #333333;
    text-shadow: 0px 2px 2px #CACACA;
    text-stroke: 1px #FFFFFF;
}

.leaderItem>.txt p {
    font-size: 16px;
    color: #666666;
    margin-top: 8px;
}

.manage .tdry {
    width: 100%;
}

.manage .tdry p {
    display: flex;
    font-size: 20px;
    color: #333333;
    margin: 20px 0;
}

.manage .tdry p b {
    color: #123B99;
    width: 20%;
}

.expertItem {
    width: 100%;
    box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: flex-end;
    margin-top: 100px;
}

.expertItem .expertImg {
    width: 292px;
    height: 198px;
    background: url(../../images/zjjsBg.png) no-repeat right bottom/100%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.expertItem .expertImg>a {
    width: 212px;
    height: 250px;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    /* overflow:hidden; */
    display: flex;
    align-items: flex-end;
}
.expertItem .expertImg>a>img{width:100%;object-fit: contain;}

.expertIntro {
    overflow: hidden;
    width: calc(100% + 100px);
    position: relative;
    margin-left: -100px;
    z-index: 0;
}

.expertIntro .zjName {
    width: 100%;
    display: flex;
    gap: 28px;
    align-items: center;
    padding-left: 140px;
}

.zjName h2 {
    font-size: 24px;
    color: #000000;
    flex-shrink: 0;
}

.zjName span {
    font-size: 16px;
    color: #123B99;
}

.expertSummary {
    background: #F3F3F3;
    padding: 20px 40px;
    margin-top: 10px;
    padding-left: 140px;
}

.expertSummary p {
    font-size: 14px;
    color: #333333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expertSummary a {
    font-size: 16px;
    color: #333333;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.expertSummary a::after {
    content: '';
    width: 70px;
    height: 6px;
    display: block;
    background: #A2BEFF;
    position: relative;
    bottom: 10px;
    left: -2px;
    z-index: 1;
    z-index: -1;
}

.institution {
    width: 100%;
    display: flex;
    gap: 100px;
    margin: 44px 0;
}

.institL {
    width: 295px;
    height: 592px;
    flex-shrink: 0;
    background: url(../../images/yjjg-roll.png) no-repeat right center/contain;
}

.institL ul {
    width: 100%;
    height: 100%;
    position: relative;
}

.institL ul li {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 14px;
    background: url(../../images/icon-checkR.png) no-repeat right center/8px;
    cursor: pointer;
}

.institL ul li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #769DF3;
    border-radius: 50%;
    flex-shrink: 0;
}
.institL ul li.tab_act{color:#062A7B;font-weight:bold;}
.institL ul li.tab_act::before{background: #062A7B;}
.institL ul li:first-child,
.institL ul li:nth-child(6) {
    left: 110px;
}

.institL ul li:first-child {
    top: 0;
}

.institL ul li:nth-child(6) {
    bottom: 0;
}

.institL ul li:nth-child(2) {
    right: -40px;
    top: 100px;
}

.institL ul li:nth-child(5) {
    right: -56px;
    bottom: 100px;
}

.institL ul li:nth-child(3),
.institL ul li:nth-child(4) {
    right: -90px;
}

.institL ul li:nth-child(3) {
    top: 40%;
}

.institL ul li:nth-child(4) {
    top: 55%;
}

.institR {
    padding-left: 100px;
}

.institR h2 {
    font-size: 26px;
    color: #062A7B;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.institR h2::before {
    content: '';
    width: 26px;
    height: 6px;
    background: #062A7B;
}

.institR p {
    font-size: 16px;
    color: #333333;
    margin: 5px 0;
}


/* 研究院简介 */

.yjy-introduce {
    width: 100%;
    margin: 30px 0;
}

.yjy-introduce>div {
    margin-bottom: 60px;
}


/* 英文引导词 */

.yjy-introduce .yjy-en {
    display: block;
    font-size: 20px;
    color: #062A7B;
    font-weight: bold;
}


/* ============================================================
   板块一：顶部蓝色主视觉横幅
   ============================================================ */

.yjy-hero {
    background: url(../../images/yjy/yjy-topbg.png) no-repeat bottom center/cover;
    padding: 70px 40px 90px 40px;
    color: #fff;
}

.yjy-hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.yjy-hero-tag::before {
    content: '';
    width: 41px;
    height: 5px;
    background: #4CAEFF;
}

.yjy-hero h2 {
    font-size: 40px;
    line-height: 1.4;
    color: #fff;
    font-weight: bold;
}

.yjy-hero-desc {
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 10px;
}

.yjy-hero-stats {
    margin-top: 40px;
}

.yjy-hero-stats ul {
    background: #F6F8FC;
    display: flex;
    padding: 30px 0;
}

.yjy-hero-stats ul li {
    flex: auto;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
}

.yjy-hero-stats ul li+li {
    border-left: 1px solid #AFAFAF;
}

.yjy-hero-stats ul li p {
    display: flex;
    flex-direction: column;
}

.yjy-hero-stats ul li b {
    font-size: 30px;
    color: #333333;
}

.yjy-hero-stats ul li b i {
    font-size: 20px;
}

.yjy-hero-stats ul li p {
    font-size: 16px;
    color: #666666;
}


/* ============================================================
   板块二：About NAFR
   ============================================================ */

.yjy-sec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 40px;
}

.yjy-sec-head h3 {
    font-size: 36px;
    color: #1A1A1A;
    line-height: 1.4;
    font-weight: bold;
}

.yjy-sec-right {
    flex: 1;
    font-size: 16px;
    color: #666666;
}

.yjy-about-cards ul {
    display: flex;
    gap: 30px;
}

.yjy-about-cards ul li {
    flex: 1;
    background: #fff;
    box-shadow: 4px 4px 18px 2px rgba(0, 0, 0, 0.15);
    padding: 20px 35px;
    padding-top: 0;
}

.yjy-about-cards ul li p::before {
    content: '';
    display: block;
    width: 65px;
    height: 80px;
    background: url(../../images/yjy/01.png) no-repeat center/contain;
}

.yjy-about-cards ul li:nth-child(2) p::before {
    background-image: url(../../images/yjy/02.png);
}

.yjy-about-cards ul li:nth-child(3) p::before {
    background-image: url(../../images/yjy/03.png);
}

.yjy-about-cards ul li p {
    display: flex;
    flex-direction: column;
}

.yjy-about-cards ul li p b {
    font-size: 20px;
    color: #123B99;
    padding-bottom: 14px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 14px;
}

.yjy-about-cards ul li p {
    font-size: 16px;
    color: #333333;
}


/* ============================================================
   板块三：六大机构（深蓝底）
   ============================================================ */

.yjy-institutes {
    background: #062A7B;
    padding: 60px 50px 50px;
}

.yjy-institutes .yjy-en {
    color: #fff;
}

.yjy-inst-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 40px;
}

.yjy-inst-head h3 {
    font-size: 36px;
    color: #fff;
    line-height: 1.4;
    font-weight: bold;
}

.yjy-inst-head>p {
    flex: 1;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.yjy-inst-panel {
    position: relative;
    background: url(../../images/yjy/global.png) no-repeat bottom center/100% #fff;
    height: 390px;
    padding: 40px 16px;
}

.yjy-globe span {
    font-size: 14px;
    color: #9AA7C4;
}

.yjy-inst-panel ul {
    display: flex;
    justify-content: space-between;
}

.yjy-inst-panel ul li {
    width: 107px;
    height: 107px;
    background: rgba(235, 241, 255, 0.42);
    padding: 9px;
    border-radius: 50%;
    overflow: hidden;
}

.yjy-inst-panel ul li p {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #112B67;
    background: #DEE8FF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
}

.yjy-inst-panel ul li:nth-child(2),
.yjy-inst-panel ul li:nth-child(5) {
    margin-top: 50px;
}

.yjy-inst-panel ul li:nth-child(1),
.yjy-inst-panel ul li:nth-child(6) {
    margin-top: 140px;
}


/* ============================================================
   板块四：CCMRI 资本市场研究院
   ============================================================ */

.yjy-ccmri {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.yjy-history {
    width: 40%;
    flex-shrink: 0;
    background: url(../../images/yjy/yjyfz-bg.png) no-repeat top center/cover;
    padding: 40px;
    color: #fff;
}

.yjy-history h4 {
    font-size: 30px;
    color: #FFFFFF;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.yjy-timeline {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    border-left: 1px dashed rgba(255, 255, 255, 0.6);
}

.yjy-timeline p {
    display: flex;
    gap: 18px;
    font-size: 18px;
    color: #FFFFFF;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.yjy-timeline p:last-child {
    border-bottom: none;
}

.yjy-timeline p b {
    flex-shrink: 0;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.yjy-timeline p b::before {
    content: '';
    width: 14px;
    height: 5px;
    background: #FFFFFF;
}

.yjy-ccmri-con {
    flex: 1;
    padding: 10px 0;
}

.yjy-ccmri-con h3 {
    font-size: 38px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
}

.yjy-ccmri-con>p {
    font-size: 16px;
    color: #666666;
}

.yjy-ccmri-con ul {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.yjy-ccmri-con ul li {
    width: calc(50% - 8px);
    border-left: 6px solid #96B5FF;
    background: #fff;
    padding: 14px 26px;
    box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.15);
}

.yjy-ccmri-con ul li p {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #333333;
    gap: 6px;
}

.yjy-ccmri-con ul li p {
    font-size: 18px;
    color: #000000;
}


/* ============================================================
   板块五：研究方向
   ============================================================ */

.yjy-focus {
    background: #F3F6FC;
    padding: 40px;
}

.yjy-focus h3 {
    font-size: 32px;
    color: #062A7B;
}

.yjy-focus>p {
    font-size: 16px;
    color: #333333;
    margin-top: 8px;
}

.yjy-focus-cards {
    margin-top: 30px;
}

.yjy-focus-cards ul {
    display: flex;
    gap: 20px;
}

.yjy-focus-cards ul li {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.yjy-focus-cards ul li p {
    font-size: 20px;
    color: #000000;
}

.yjy-focus-cards ul li::before {
    content: '';
    width: 80px;
    height: 74px;
    background: url(../../images/yjy/yjy-icon.png) no-repeat center/contain;
    margin-bottom: 6px;
}

.yjy-focus-cards ul li:nth-child(2)::before {
    background-image: url(../../images/yjy/yjy-icon2.png);
}

.yjy-focus-cards ul li:nth-child(3)::before {
    background-image: url(../../images/yjy/yjy-icon3.png);
}

.yjy-focus-cards ul li:nth-child(4)::before {
    background-image: url(../../images/yjy/yjy-icon4.png);
}


/* ============================================================
   板块六：底部主张横幅
   ============================================================ */

.yjy-slogan {
    margin-top: 70px;
    background: url(../../images/yjy/yjy-botbg.png) no-repeat center/cover;
    padding: 40px 50px;
    color: #fff;
}

.yjy-slogan-tit {
    width: 55%;
    height: auto;
}

.yjy-slogan-tit img {
    width: 100%;
    height: auto;
}

.yjy-slogan>p {
    margin-top: 10px;
    font-size: 16px;
    color: #FFFFFF;
    width: 60%;
}


/*pagenation*/

.pageBox {
    margin: 40px 0 20px 0;
    width: 100%;
    padding: 0 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

.pagination>li>a,
.pagination>li>span,
.pagination>select {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    color: #333;
    padding: 3px 12px !important;
    width: 100%;
    display: inline-block;
    font-size: 14px;
}

.pagination>select {
    width: 60px;
}

.pagination>li>a.active {
    color: #fff!important;
    border-color: #123B99;
    background: #123B99;
}