:root {
    /* 主题色变量定义 */
    --primary-color: #ba2a17;
    --text-color: #131b26;
    --text-color-dark: #666;
    --text-color-light: #999;
    --background-color: #f1f5f7;
}

body {
    min-width: 1024px;
}

.header {
    width: 100%;
    height: 118px;
    background-image: linear-gradient(rgb(173, 57, 43) 0%, rgba(178, 97, 50, 0.2) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.header .header-content {
    width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content .logo {
    width: auto;
    height: 75px;
}

.header-content .content-right {
    display: block;
    width: 100%;
    height: 100%;
}

.header-content .content-right .link {
    display: flex;
    align-items: center;
    justify-content: right;
    height: 70px;
}

.header-content .content-right .link a {
    display: inline-block;
    height: 48px;
    line-height: 60px;
    color: #fff;
    font-size: 16px;
    margin-right: 32px;
}

.header-content nav {
    display: flex;
    align-items: center;
    justify-content: right;
    height: 48px;
}

.header-content nav>div {
    display: inline-block;
    height: 48px;
    line-height: 48px;
    color: #fff;
    font-size: 17px;
    padding: 0 14px;
    margin-right: 20px;
    cursor: pointer;
    position: relative;
}

.header-content nav>div.active,
.header-content nav>div:hover {
    font-weight: 600;
    background: url(../images/06f2e6d3d878c0bd63a1cdc9563c1b8b.png) repeat-y center bottom;
    background-size: 100% 100%;
}

.header-content nav>div:hover {
    line-height: 50px;
}

.header-content nav>div:hover .pull-box {
    display: block;
}

.header-content nav>div .pull-box {
    display: none;
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: auto !important;
    height: 48px;
    min-height: 48px;
    background-color: #fff;
    z-index: 100;
}

.header-content nav>div .pull-box a {
    display: block;
    width: 120px;
    line-height: 48px;
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.header-content nav>div .pull-box a:hover {
    font-weight: 600;
    color: var(--primary-color);
    background-color: #eff3ff;
}

.main {
    width: 100%;
    padding-bottom: 32px;
}

.banner {
    width: 100%;
    height: 800px;
}

.banner .banner-swiper,
.banner .banner-swiper .swiper-slide,
.banner .banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
}

.banner-content {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.banner-content .search-box {
    width: 1200px;
    height: 220px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 32px 108px;
    box-sizing: border-box;
}

.banner-content .search-box .search-tab {
    display: flex;
    align-items: center;
    justify-content: start;
}

.banner-content .search-box .search-tab a {
    display: inline-block;
    width: 104px;
    height: 42px;
    line-height: 42px;
    border-radius: 4px;
    text-align: center;
    color: var(--text-color);
    font-size: 18px;
    margin-right: 20px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
}

.banner-content .search-box .search-tab a.active,
.banner-content .search-box .search-tab a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.banner-content .search-box .search-input {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: #fff;
    border-radius: 4px;
    padding: 0 132px 0 20px;
    box-sizing: border-box;
    margin-top: 26px;
    position: relative;
}

.banner-content .search-box .search-input input {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: var(--text-color);
}

.banner-content .search-box .search-input input::placeholder {
    color: var(--text-color-light);
}

.banner-content .search-box .search-input button {
    width: 120px;
    height: 50px;
    border-radius: 0 4px 4px 0;
    color: #fff;
    font-size: 18px;
    background-color: #fa894e;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    border: none;
    outline: none;
    cursor: pointer;
}

.quick-nav {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 1400px;
    margin: -100px auto 0;
    position: relative;
    z-index: 2;
}

.quick-nav .nav-item {
    width: 334px;
    height: 86px;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 26px;
    box-sizing: border-box;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.quick-nav .nav-item.active,
.quick-nav .nav-item:hover {
    height: 144px;
    color: #fff;
    background-image: linear-gradient(#a43327 0%, #a8512b 100%);
}

.quick-nav .nav-item.active h1,
.quick-nav .nav-item:hover h1 {
    color: #fff;
    height: 32px;
    line-height: 32px;
}

.quick-nav .nav-item.active p,
.quick-nav .nav-item:hover p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-top: 18px;
    width: 100%;
    height: 44px;
    line-height: 22px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.quick-nav .nav-item img {
    width: 72px;
    height: 72px;
    position: absolute;
    top: -24px;
    left: 26px;
}

.quick-nav .nav-item h1 {
    display: block;
    width: 100%;
    height: 54px;
    line-height: 54px;
    font-size: 20px;
    color: var(--text-color);
    text-align: center;
}

.quick-nav .nav-item p {
    display: none;
}

.content-box {
    width: 1400px;
    margin: 0 auto;
}

.news-box {
    width: 100%;
    margin: 120px auto 40px;
    background: #fff;
}

.news-box .news-title,
.video-box .video-title {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.news-box .news-title img,
.video-box .video-title img {
    height: 40px;
}

.news-box .news-title a,
.video-box .video-title a,
.notice-box .notice-title a,
.resource-box .resource-title a {
    height: 36px;
    line-height: 36px;
    background: url(../images/f2305cfec782a4cdcfa2636a87b45668.png) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 15px;
    color: var(--text-color-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-box .news-title a img,
.video-box .video-title a img,
.notice-box .notice-title a img,
.resource-box .resource-title a img {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.notice-box .notice-title a,
.resource-box .resource-title a {
    top: auto;
    bottom: 30px;
    right: auto;
    left: 0;
}

.news-box .news-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-box .news-content .news-left {
    display: inline-block;
    width: 700px;
    height: 425px;
    background: url(../images/7a1e60dba8164e6821ad345769e6a138.png) no-repeat right 26px top;
    background-size: 614px 394px;
}

.news-box .news-content .news-left>img {
    display: none;
}

.news-box .news-content .news-left>img.show {
    display: block;
    width: 624px;
    height: 360px;
    border-radius: 8px;
    margin: 40px 0 0 30px;
}

.news-box .news-content .news-right {
    display: inline-block;
    width: 700px;
    height: 425px;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
}

.news-box .news-content .news-right .news-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 82px;
    border-bottom: 2px solid #727272;
    cursor: pointer;
}

.news-box .news-content .news-right .news-item .date {
    display: none;
}

.news-box .news-content .news-right .news-item:last-child {
    border-bottom: none;
}

.news-box .news-content .news-right .news-item.active {
    height: 172px;
}

.news-box .news-content .news-right .news-item.active .date {
    display: block;
    text-align: center;
    margin-right: 26px;
}

.news-box .news-content .news-right .news-item.active .date h1 {
    font-size: 44px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
}

.news-box .news-content .news-right .news-item .date p {
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 24px;
}

.news-box .news-content .news-right .news-item .content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 18px;
    color: var(--text-color);
    width: 560px;
    background: url(../images/bc06ac302c4005c42c72cf7fde77194b.png) no-repeat left center;
    background-size: 10px 10px;
    padding-left: 24px;
}

.notice-box {
    width: 100%;
    height: 660px;
    padding: 60px 0 40px;
    background: url(../images/c0fd82ce67d77e159024215542162667.png) no-repeat center center;
    background-size: cover;
}

.notice-box .content-box,
.resource-box .content-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notice-box .notice-title,
.resource-box .resource-title {
    display: block;
    width: 120px;
    height: 560px;
    text-align: left;
    position: relative;
}

.notice-box .notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notice-box .notice-content .notice-item {
    display: inline-block;
    width: 420px;
    height: 365px;
    background: url(../images/850dc1c706848d491fc0fd0d7a9d7c46.png) no-repeat center bottom 30px;
    background-size: 347px 325px;
}

.notice-box .notice-content .notice-item:nth-child(2) {
    margin-top: 100px;
}

.notice-box .notice-content .notice-item .text {
    display: block;
    width: 347px;
    height: 162px;
    padding: 30px 20px;
    box-sizing: border-box;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: url(../images/f2a7660abc2024d3c394a3c4a27f40d8.png) no-repeat center center;
    background-size: 100% 100%;
}

.notice-box .notice-content .notice-item .text h1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 50px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-color);
}

.notice-box .notice-content .notice-item .text p {
    display: block;
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    color: var(--text-color-light);
    padding-left: 30px;
    background: url(../images/a8074308531d978d8313d1a006f03040.png) no-repeat left center;
    background-size: 25px 25px;
}

.notice-box .notice-content .notice-item:hover {
    background-image: url(../images/f45937bd295ef4e7f157d84840e3486e.png);
}

.notice-box .notice-content .notice-item:hover .text {
    background-image: url(../images/03a7c25f5a95af60029af2c323d7e4a9.png);
}

.notice-box .notice-content .notice-item:hover .text h1 {
    color: #fff;
}

.notice-box .notice-content .notice-item:hover .text p {
    color: #fff;
    background: url(../images/b9e8141bd2f34b65664d1ac724b48db8.png) no-repeat left center;
    background-size: 25px 25px;
}

.service-box {
    width: 100%;
    height: 455px;
    padding: 120px 0 0;
    background: url(../images/fdd7c1d779cd99aa970bbdc3345c9e87.png) no-repeat center top;
    background-size: cover;
}

.service-box .service-title {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.service-box .service-title img {
    height: 40px;
}

.service-box .service-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-box .service-content .service-item {
    display: flex;
    align-items: center;
    justify-content: start;
    width: calc(20% - 40px);
    height: 76px;
    background-color: #fff;
    background: url(../images/40deffb42bb90d61582e2ec91d39d017.png) no-repeat center center;
    background-size: 100% 100%;
}

.service-box .service-content .service-item img {
    width: 44px;
    height: 44px;
    margin: 0 24px 0 30px;
}

.service-box .service-content .service-item h1 {
    font-size: 17px;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
}

.service-box .service-content .service-item:hover h1 {
    color: var(--primary-color);
}

.resource-box {
    width: 100%;
    height: 842px;
    padding: 180px 0 0;
    background: url(../images/8c6b24f6e5102440ad2d9d06a0c2417d.png) no-repeat center bottom;
    background-size: cover;
}

.resource-box .resource-title {
    height: 520px;
}

.resource-box .content-box {
    align-items: end;
}

.resource-box .resource-content {
    display: inline-block;
    width: 1256px;
    height: 100%;
}

.resource-box .resource-tab {
    display: flex;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.resource-box .resource-tab a {
    width: 160px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin-right: 60px;
    font-size: 20px;
    color: #7e7d8d;
    text-decoration: none;
    background-color: #f3f3f6;
    position: relative;
}

.resource-box .resource-tab a.active,
.resource-box .resource-tab a:hover {
    color: #fff;
    font-weight: bold;
    background: url(../images/03d3697a37e69d183c7f6e4a63eb6389.png) no-repeat center center;
    background-size: 160px 60px;
}

.resource-box .resource-tab a.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.resource-box .resource-list {
    width: 100%;
    height: 456px;
}

.resource-box .resource-group {
    display: none;
    flex-wrap: wrap;
    gap: 20px;
}

.resource-box .resource-group.active {
    display: flex;
}

.resource-box .resource-item {
    width: calc(25% - 15px);
    height: 218px;
    overflow: hidden;
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.resource-box .resource-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    background-image: linear-gradient(to bottom, #fff, rgba(0, 0, 0, 0.1));
}

.video-box {
    width: 100%;
    height: 732px;
    padding: 30px 0 0;
    background: url(../images/c9feba3abdda3e8cb56e228a68121f58.png) no-repeat center center;
    background-size: cover;
}

.video-box .video-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-box .video-content .video-item {
    width: 435px;
    height: 400px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-box .video-content .video-item .cover {
    width: 100%;
    height: 266px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-box .video-content .video-item .video-info {
    width: 100%;
    height: 134px;
    background: url(../images/f90e038df2d229a18583341f0fa23870.png) no-repeat center bottom 45px;
    background-size: auto 22px;
    padding: 24px 24px 0;
    box-sizing: border-box;
    text-align: center;
}

.video-box .video-content .video-item .video-info h1 {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.video-box .video-content .video-item .video-info p {
    font-size: 15px;
    color: var(--text-color-light);
}

.video-box .video-content .video-item:hover {
    transform: translateY(-30px);
    transition: transform 0.8s ease;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.05);
    background-color: var(--primary-color);
}

.video-box .video-content .video-item:hover .video-info {
    background-image: url(../images/323ea7970ce7b782c5a6b1d913ac5fbd.png);
}

.video-box .video-content .video-item:hover h1,
.video-box .video-content .video-item:hover p {
    color: #fff;
}

.political-box {
    width: 100%;
    height: 550px;
    background: url(../images/08ee5872cd0541325ecc04eb9a5b62c2.png) no-repeat center bottom;
    background-size: cover;
}

.political-box .political-title {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.political-box .political-title img {
    height: 40px;
}

.political-box .political-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.political-box .political-content .political-item {
    display: inline-block;
    width: 310px;
    height: 310px;
    padding: 120px 40px 0;
    background-size: 100% auto !important;
}

.political-box .political-content .political-item:hover,
.political-box .political-content .political-item.active {
    width: 408px;
    padding: 40px 40px 0;
    cursor: pointer;
}

.political-box .political-content .political-item:nth-child(1) {
    background: url(../images/6e21eca082d27427a6b9f2ab861d459e.png) no-repeat center bottom;
}

.political-box .political-content .political-item:nth-child(2) {
    background: url(../images/30062b86ca4b40b8a1de9287db38e577.png) no-repeat center bottom;
}

.political-box .political-content .political-item:nth-child(3) {
    background: url(../images/6f2a347bfbd78ba792af6f98f5b2ab67.png) no-repeat center bottom;
}

.political-box .political-content .political-item:nth-child(4) {
    background: url(../images/247d9b4891212189aeb5e82a9e6eec59.png) no-repeat center bottom;
}

.political-box .political-content .political-item:nth-child(1):hover,
.political-box .political-content .political-item:nth-child(1).active {
    background-image: url(../images/c51bb25c2dee53d3e8f9b464fea0dfbe.png);
}

.political-box .political-content .political-item:nth-child(2):hover,
.political-box .political-content .political-item:nth-child(2).active {
    background-image: url(../images/a769edb65b40604b0d1783e2067557dc.png);
}

.political-box .political-content .political-item:nth-child(3):hover,
.political-box .political-content .political-item:nth-child(3).active {
    background-image: url(../images/cdf2006a5ef670144a9e8487a127b8e4.png);
}

.political-box .political-content .political-item:nth-child(4):hover,
.political-box .political-content .political-item:nth-child(4).active {
    background-image: url(../images/0ff8b10ddbb3e46ab131d891a0b6a48c.png);
}

.political-box .political-content .political-item span {
    display: block;
    width: 100%;
    height: 34px;
    line-height: 34px;
    font-size: 28px;
    color: #fff;
    margin-bottom: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.political-box .political-content .political-item:hover span,
.political-box .political-content .political-item.active span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 70px;
}

.political-box .political-content .political-item p {
    display: none;
    color: #fff;
    font-size: 16px;
}

.political-box .political-content .political-item:hover p,
.political-box .political-content .political-item.active p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 30px;
    margin-left: 20px;
}

.data-box {
    width: 100%;
    height: 1128px;
    padding: 60px 0 0;
    background: url(../images/5b4d2cbaa3019119eb57c0f79225c3d0.png) no-repeat center top;
    background-size: cover;
}

.data-box .data-title {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.data-box .data-title img {
    height: 40px;
}

.data-box .data-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 690px;
}

.data-box .data-content .data-left {
    width: 320px;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
}

.data-box .data-content .data-left .data-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 172px;
    border-bottom: 1px solid #fff;
}

.data-box .data-content .data-left .data-item img {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.data-box .data-content .data-left .data-item .data-item-content {
    display: inline-block;
    width: calc(100% - 80px);
}

.data-box .data-content .data-left .data-item .data-item-content h1 {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 20px;
    color: var(--primary-color);
}

.data-box .data-content .data-left .data-item .data-item-content h1 i {
    display: inline-block;
    margin-right: 6px;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 32px;
    color: var(--primary-color);
    font-style: normal;
}

.data-box .data-content .data-left .data-item .data-item-content p {
    font-size: 16px;
    color: var(--text-color-light);
}


.data-box .data-content .data-center {
    width: 728px;
    height: 100%;
}

.data-box .data-content .data-center-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.data-box .data-content .data-center-top .data-center-top-item {
    display: inline-block;
    width: 174px;
    height: 144px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 20px 0;
    box-sizing: border-box;
}

.data-box .data-content .data-center-top .data-center-top-item p {
    display: block;
    width: 100%;
    height: 34px;
    line-height: 34px;
    font-size: 16px;
    color: var(--text-color-dark);
    text-align: center;
}

.data-box .data-content .data-center-top .data-center-top-item h1 {
    display: block;
    width: 100%;
    height: 100px;
    line-height: 100px;
    font-size: 26px;
    color: var(--primary-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.data-box .data-content .data-center-bottom {
    display: block;
    width: 100%;
    height: calc(100% - 154px);
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 20px 0;
    box-sizing: border-box;
}


.data-box .data-content .data-right {
    width: 330px;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding-left: 15px;
    box-sizing: border-box;
}

.data-box .data-content .data-right .data-tit {
    display: block;
    width: 100%;
    height: 76px;
    line-height: 76px;
    font-size: 20px;
    color: var(--text-color);
    background: url(../images/12ef469c763e65cdb562f04661c37805.png) no-repeat left center;
    background-size: 23px 23px;
    text-align: left;
    text-indent: 40px;
}

.data-box .data-content .data-right .data-list {
    display: block;
    width: 100%;
    height: calc(100% - 86px);
}

.data-box .data-content .data-right .data-list .data-item {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 66px;
    line-height: 66px;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 9px;
    text-align: left;
    padding-left: 12px;
    box-sizing: border-box;
    cursor: pointer;
}

.data-box .data-content .data-right .data-list .data-item img {
    display: inline-block;
    margin-right: 10px;
}

.data-box .data-content .data-right .data-list .data-item span {
    display: inline-block;
    width: calc(100% - 80px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.data-box .data-content .data-right .data-list .data-item img:nth-child(-n+3) {
    width: 26px;
    height: 32px;
}

.data-box .data-content .data-right .data-list .data-item img:nth-child(n+4) {
    width: 30px;
    height: 30px;
}

.data-box .data-content .data-right .data-list .data-item:nth-child(1) {
    background: url(../images/f422ad06c215e1e7f4f3bbaa6d021892.png) no-repeat left center;
    background-size: auto 66px;
}

.data-box .data-content .data-right .data-list .data-item:nth-child(2) {
    background: url(../images/e7fa37dd2806fa05a230aaf218b06fa8.png) no-repeat left center;
    background-size: auto 66px;
}

.data-box .data-content .data-right .data-list .data-item:nth-child(3) {
    background: url(../images/39f9b4eb5e225899cf664f722521de61.png) no-repeat left center;
    background-size: auto 66px;
}

.data-box .data-content .data-right .data-list .data-item:nth-child(n+4) {
    background: url(../images/d7402f8485b569801ba916839eb63fd6.png) no-repeat left center;
    background-size: auto 66px;
}

body.list,
body.details {
    background-color: #f1f5f7;
}

body.list .header,
body.details .header {
    position: relative;
}

body.list .main,
body.details .main {
    min-height: calc(100vh - 629px);
}

body.list .footer,
body.details .footer {
    margin-top: 0;
}

.main .crumb {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 1400px;
    height: 64px;
    line-height: 40px;
    text-align: left;
    font-size: 14px;
    margin: 0 auto;
    padding: 12px 0;
    box-sizing: border-box;
    color: var(--text-color-dark);
}

.main .crumb a {
    color: var(--text-color-dark);
    text-decoration: none;
}

.main .crumb a:hover {
    color: var(--primary-color);
}

.main .crumb a.current {
    color: var(--primary-color);
}

.main .list-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1400px;
    margin: 0 auto;
}

.main .list-content .list-left {
    display: inline-block;
    width: 295px;
    height: 100%;
}

.main .list-content .list-left a {
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    color: var(--text-color);
    text-align: left;
}

.main .list-content .list-left a:hover,
.main .list-content .list-left a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.main .list-content .list-right {
    display: inline-block;
    width: 1080px;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 40px 30px;
    box-sizing: border-box;
}

.main .list-content .list-right>ul {
    list-style-type: disc;
    list-style-position: inside;
}

.main .list-content .list-right .list-item {
    display: block;
    width: 100%;
    height: 64px;
    line-height: 64px;
    border-bottom: 1px solid #e5e5e5;
}

.main .list-content .list-right .list-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.main .list-content .list-right .list-item h1 {
    display: inline-block;
    width: calc(100% - 100px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-indent: 20px;
    font-size: 16px;
    color: var(--text-color);
}

.main .list-content .list-right .list-item:hover h1 {
    color: var(--primary-color);
}

.main .list-content .list-right .list-item span {
    font-size: 14px;
    color: var(--text-color-light);
}


.main .details-content {
    width: 1200px;
    height: auto !important;
    height: calc(100vh - 629px);
    min-height: calc(100vh - 629px);
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 28px 28px 56px;
    box-sizing: border-box;
    position: relative;
}

.main .details-content h1 {
    font-size: 24px;
    color: var(--text-color);
    font-weight: 600;
    margin: 26px 12px;
    text-align: center;
}

.main .details-content .sub {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 14px;
    color: var(--text-color-light);
    margin-bottom: 18px;
}

.main .details-content .sub p {
    display: inline-block;
    margin: 0 8px;
}

.main .details-content .content {
    width: 100%;
    height: auto;
    font-size: 16px;
    color: var(--text-color);
    line-height: 32px;
    text-indent: 32px;
}

.main .details-content .content p {
    margin-bottom: 12px;
}

.main .details-content .next {
    display: block;
    width: calc(100% - 56px);
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    color: var(--text-color);
    text-align: left;
    position: absolute;
    bottom: 18px;
    left: 28px;
    right: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer {
    width: 100%;
    height: 511px;
    background: url(../images/ef116c5a44319e92fa09b83eba5f9286.png) no-repeat center top;
    background-size: cover;
    margin-top: -200px;
}

.footer-content {
    display: block;
    width: 1400px;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-content .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 450px;
}

.footer-content .footer-top-left {
    display: inline-block;
    width: 550px;
    margin-top: 70px;
}

.footer-content .footer-top-left>img {
    display: block;
    width: auto;
    height: 65px;
    margin-bottom: 64px;
}

.footer-content .footer-top-left .footer-top-left-item {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 20px;
}

.footer-content .footer-top-left .footer-top-left-item img {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.footer-content .footer-top-left .footer-top-left-item span {
    display: inline-block;
    font-size: 16px;
    color: #fff
}

.footer-content .footer-top-center {
    display: inline-block;
    width: 340px;
    margin-top: 130px;
}

.footer-content .footer-top-center .footer-top-center-tit {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
}

.footer-content .footer-top-center hr {
    display: block;
    width: 36px;
    height: 1px;
    background-color: #bd8f62;
    border: none;
    margin-bottom: 20px;
}

.footer-content .footer-top-center .footer-top-center-list {
    display: block;
    width: 100%;
}

.footer-content .footer-top-center .footer-top-center-list a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #fff;
    text-align: left;
    box-sizing: border-box;
    margin-bottom: 16px;
}

.footer-content .footer-top-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 500px;
    margin-top: 120px;
}

.footer-content .footer-top-right .qrcode {
    display: inline-block;
    width: 120px;
    height: 100%;
    text-align: center;
}

.footer-content .footer-top-right .qrcode img {
    display: block;
    width: 115px;
    height: 115px;
    margin: 0 auto;
}

.footer-content .footer-top-right .qrcode p {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-top: 16px
}

.footer-content .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.footer-content .footer-bottom span {
    display: inline-block;
    text-align: center;
    margin: 0 24px;
}

/* 分页组件样式 */
.page-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    margin-top: 40px;
    padding: 20px 0;
    box-sizing: border-box;
}

.page-box .page-box-text {
    display: inline-block;
    font-size: 16px;
    color: var(--text-color-dark);
    margin-right: 20px;
}

.page-box .page-box-text span {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 4px;
}

.page-box a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid #e0e0e0;
    margin: 0 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-box a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(186, 42, 23, 0.1);
}

.page-box a.active {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.page-box .page-box-go {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-color-dark);
    margin-left: 20px;
}

.page-box .page-box-go-input {
    width: 50px;
    height: 32px;
    text-align: center;
    font-size: 14px;
    color: var(--text-color);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 0 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.page-box .page-box-go-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(186, 42, 23, 0.1);
}

.page-box .page-box-go-input::placeholder {
    color: var(--text-color-light);
}