/************************************** 以上是默认设置除了高亮和滑过别的不要动，想到可以随时添加  *******************************************/
/**************************************** css文件不要改，要改同名的less文件并重新生成css文件！！！！！！****************************************/
.wrap {
    width: 100%;
    overflow: hidden;
}

.wrap .header {
    width: 100%;
    height: 150px;
    background: url(../images/headbg.jpg) center top no-repeat;
    background-size: cover;
}

.wrap .header .w1400 {
    display: flex;
    justify-content: space-between;
    padding-top: 55px;
    padding-bottom: 30px;
    height: 100%;
}

.wrap .header .logo img {
    height: 65px;
}

.wrap .header .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wrap .header .search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.wrap .header .search-btn {
    width: 44px;
    height: 44px;
    background: #FFFFFF url(../images/icon1.png) center no-repeat;
    background-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 2;

}

.wrap .header .search-btn img {
    display: none;
}

.wrap .header .search-box {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: width 0.3s ease;
    z-index: 1;
}

.wrap .header .search-box.active {
    width: 310px;
    z-index: 3;
}

.wrap .header .search-box input {
    float: left;
    width: calc(100% - 60px);
    height: 44px;
    padding: 0 15px 0 20px;
    font-size: 14px;
    color: #333;
    border: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}

.wrap .header .search-box.active input {
    opacity: 1;
}

.wrap .header .search-box input::placeholder {
    color: #999;
}

.wrap .header .search-box button {
    float: right;
    width: 60px;
    height: 44px;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/icon1.png) center no-repeat;
    transition: all 0.3s;
}

.wrap .header .search-box button img {
    display: none;
}

.wrap .header .wechat-wrap {
    position: relative;
}

.wrap .header .wechat-btn {
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wrap .header .wechat-qrcode {
    display: none;
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
    width: 124px;
    height: 131px;
    background: url(../images/bg14.png) center no-repeat;
    background-size: 100% 100%;
    padding: 7px;
    padding-top: 14px;
    z-index: 9999;
}

.wrap .header .wechat-wrap:hover .wechat-qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap .header .wechat-qrcode img {
    width: 110px;
    height: 110px;
}

.wrap .nav {
    height: 60px;
    background: #186FE4;
}

.wrap .nav ul {
    padding: 0;
    list-style: none;
}

.wrap .nav>ul a {
    display: block;
}

.wrap .nav>ul>li {
    float: left;
    position: relative;
    width: calc(100% / 6);
}

.wrap .nav>ul>li>a {
    position: relative;
    font-size: 20px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    font-weight: bold;
}

.wrap .nav>ul>li>a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.5);
    z-index: 9;
}

.wrap .nav>ul>li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #3EB134;
    transition: 0.5s;
    z-index: 99;
}

.wrap .nav>ul>li:hover>a,
.wrap .nav>ul>li.active>a {
    background: #1366D7;
}

.wrap .nav>ul>li:hover::before,
.wrap .nav>ul>li.active::before {
    width: 100%;
}

.wrap .nav>ul>li:hover .menu-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wrap .nav>ul>li .menu-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 150px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.wrap .nav>ul>li .menu-nav ul {
    padding: 8px 0;
    list-style: none;
    margin: 0;
    display: block;
    height: auto;
}

.wrap .nav>ul>li .menu-nav ul li {
    display: block;
    width: 100%;
    height: auto;
    flex: none;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
}

.wrap .nav>ul>li .menu-nav ul li:last-child {
    border-bottom: none;
}

.wrap .nav>ul>li .menu-nav ul li a {
    display: block;
    height: auto;
    line-height: 1.6;
    padding: 10px 20px;
    font-size: 16px;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: normal;
    background: transparent;
}

.wrap .nav>ul>li .menu-nav ul li:hover {
    background: #f8f8f8;
}

.wrap .nav>ul>li .menu-nav ul li:hover a {
    color: #0E5DBE;
    background: transparent;
}

.wrap .banner {
    width: 100%;
    height: 730px;
    position: relative;
    overflow: hidden;
}

.wrap .banner .banner-swiper {
    width: 100%;
    height: 100%;
}

.wrap .banner .banner-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wrap .banner .banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wrap .banner .banner-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.wrap .banner .banner-swiper .swiper-button-next,
.wrap .banner .banner-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    cursor: pointer;
}

.wrap .banner .banner-swiper .swiper-button-next::after,
.wrap .banner .banner-swiper .swiper-button-prev::after {
    display: none;
}

.wrap .banner .banner-swiper .swiper-button-next {
    right: 30px;
}

.wrap .banner .banner-swiper .swiper-button-prev {
    left: 30px;
}

.wrap .banner .banner-swiper .w1400 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0 auto;
    z-index: 9;
}

.wrap .banner .banner-swiper .w1400 .custom-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    z-index: 10;
}

.wrap .banner .banner-swiper .w1400 .custom-pagination .pagination-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.wrap .banner .banner-swiper .w1400 .custom-pagination .pagination-item .line-right {
    width: 12px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}

.wrap .banner .banner-swiper .w1400 .custom-pagination .pagination-item .number {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin: 0 10px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.wrap .banner .banner-swiper .w1400 .custom-pagination .pagination-item:last-child .number {
    margin-right: 0;
}

.wrap .banner .banner-swiper .w1400 .custom-pagination .pagination-item:hover .number {
    color: #0E5DBE;
}

.wrap .banner .banner-swiper .w1400 .custom-pagination .pagination-item.active .number {
    color: #0E5DBE;
    border-bottom-color: #0E5DBE;
}

.wrap .banner .banner-swiper .w1400 .custom-pagination .pagination-item:last-child .line-right {
    display: none;
}

.wrap .content .section .section-title {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.wrap .content .section .section-title h6 {
    font-size: 30px;
    color: #333;
    text-align: center;
}

.wrap .content .section .section-title h6 span {
    margin: 0 20px;
}

.wrap .content .section .section-title .more {
    position: absolute;
    top: 9px;
    right: 0;
    font-size: 16px;
    color: #0E5DBE;
}

.wrap .content .section.section1 {
    margin: 50px 0;
    margin-bottom: 60px;
    position: relative;
}

.wrap .content .section.section1 .news-slide {
    float: left;
    position: relative;
    width: 780px;
    overflow: hidden;
}

.wrap .content .section.section1 .news-slide .swiper-slide .img-box {
    position: relative;
    width: 100%;
    height: 468px;
    overflow: hidden;
}

.wrap .content .section.section1 .news-slide .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wrap .content .section.section1 .news-slide .swiper-slide .img-box::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100px;
    background: url(../images/bg4.png) repeat-x bottom center;
    background-size: 100% 100%;
    z-index: 2;
    opacity: 0.6;
}

.wrap .content .section.section1 .news-slide .swiper-slide .item-cont {
    margin-top: 8px;
    padding: 12px 25px;
    padding-top: 18px;
    height: 98px;
    text-align: center;
    background: #F5F5F5 url("../images/bg12.png") no-repeat;
    overflow: hidden;
}

.wrap .content .section.section1 .news-slide .swiper-slide .item-cont h6 {
    font-size: 18px;
    color: #333;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*要显示的行数*/
    overflow: hidden;
}

.wrap .content .section.section1 .news-slide .swiper-slide .item-cont p {
    margin-top: 12px;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*要显示的行数*/
    overflow: hidden;
}

.wrap .content .section.section1 .news-slide .swiper-slide.swiper-slide-active .img-box img {
    animation: zoomIn 5s ease-out forwards;
}

.wrap .content .section.section1 .news-slide .swiper-horizontal>.swiper-pagination-bullets,
.wrap .content .section.section1 .news-slide .swiper-pagination-bullets.swiper-pagination-horizontal,
.wrap .content .section.section1 .news-slide .swiper-pagination-custom,
.wrap .content .section.section1 .news-slide .swiper-pagination-fraction {
    text-align: center;
    bottom: 15px;
}

.wrap .content .section.section1 .news-slide .swiper-pagination-bullet {
    margin: 0 4px;
    width: 22px;
    height: 4px;
    background: #C8C6C7;
    border-radius: 2px;
    opacity: .5;
}

.wrap .content .section.section1 .news-slide .swiper-pagination-bullet-active {
    background: #186FE4;
    opacity: 1;
}

.wrap .content .section.section1 .news-tab {
    float: right;
    width: 580px;
}

.wrap .content .section.section1 .news-tab .tab-nav {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 35px;
    height: 38px;
    margin-bottom: 20px;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item {
    cursor: pointer;
    transition: all 0.3s;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item .tab-title {
    font-weight: bold;
    font-size: 20px;
    color: #000;
    transition: all 0.3s;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item .tab-title img {
    display: none;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item a {
    display: none;
    position: absolute;
    top: 7px;
    right: 0;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item.active .tab-title {
    font-size: 28px;
    color: #0E5DBE;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item.active .tab-title span {
    margin: 0 14px;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item.active .tab-title img {
    display: inline-block;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item:hover:not(.active) .tab-title {
    color: #0E5DBE;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-item.active a {
    display: block;
}

.wrap .content .section.section1 .news-tab .tab-nav .tab-separator {
    font-weight: 400;
    font-size: 16px;
    color: #999;
    margin: 0 13px;
}

.wrap .content .section.section1 .news-tab .tab-content .news-swiper {
    overflow: hidden;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item:last-child {
    margin-bottom: 0;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item:hover .date-box {
    background-image: url(../images/bg2_2.png);
    transform: rotateY(360deg);
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item:hover .date-box .day,
.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item:hover .date-box .month-year {
    color: #fff;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item:hover .content-box .news-title {
    color: #0E5DBE;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-image: url(../images/bg2.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box .day {
    font-weight: bold;
    font-size: 20px;
    color: #0E5DBE;
    line-height: 1;
    transition: all 0.3s;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box .month-year {
    font-size: 12px;
    color: #0E5DBE;
    line-height: 1;
    margin-top: 2px;
    transition: all 0.3s;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box {
    width: 545px;
    height: 114px;
    padding: 16px 30px 16px 55px;
    margin-left: -35px;
    z-index: 1;
    position: relative;
    background: #F5F5F5;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item:hover .content-box {
    background: #F5F5F5 url("../images/bg13.png") no-repeat;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-title {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    transition: all 0.3s;
}

.wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-desc {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.wrap .content .section.section1 .news-tab .tab-content .item-more {
    text-align: right;
}

.wrap .content .section.section1 .news-tab .tab-content .item-more a {
    font-size: 16px;
    color: #0E5DBE;
}

.wrap .content .section.section1 .news-tab .tab-content .item-more a:hover {
    text-decoration: underline;
}

.wrap .content .section.section1 .bg_img {
    position: absolute;
    left: 0;
    bottom: -95px;
    z-index: -1;
}

.wrap .content .section.section2 {
    padding-bottom: 60px;
    position: relative;
}

.wrap .content .section.section2 .bg_img {
    position: absolute;
    top: -95px;
    right: -16px;
    z-index: -1;
}

.wrap .content .section.section2 .quick-slide {
    margin-bottom: 72px;
    position: relative;
    width: 100%;
}

.wrap .content .section.section2 .quick-slide .quick-swiper {
    overflow: hidden;
}

.wrap .content .section.section2 .quick-slide .quick-swiper .swiper-wrapper .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
}

.wrap .content .section.section2 .quick-slide .quick-swiper .swiper-wrapper .swiper-slide a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.wrap .content .section.section2 .quick-slide .quick-swiper .swiper-wrapper .swiper-slide a img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    transition: all 0.3s;
}

.wrap .content .section.section2 .quick-slide .quick-swiper .swiper-wrapper .swiper-slide a img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wrap .content .section.section2 .quick-slide .quick-nav-prev,
.wrap .content .section.section2 .quick-slide .quick-nav-next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    z-index: 10;
    outline: none;
    transition: all 0.3s;
}

.wrap .content .section.section2 .quick-slide .quick-nav-prev img,
.wrap .content .section.section2 .quick-slide .quick-nav-next img {
    transition: all 0.3s;
}

.wrap .content .section.section2 .quick-slide .quick-nav-prev {
    left: -27px;
    justify-content: left;
}

.wrap .content .section.section2 .quick-slide .quick-nav-prev:hover img {
    opacity: 0;
}

.wrap .content .section.section2 .quick-slide .quick-nav-prev:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 7px;
    height: 18px;
    margin: auto 0;
    background-image: url(../images/prev2_2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.wrap .content .section.section2 .quick-slide .quick-nav-next {
    right: -27px;
    justify-content: right;
}

.wrap .content .section.section2 .quick-slide .quick-nav-next:hover img {
    opacity: 0;
}

.wrap .content .section.section2 .quick-slide .quick-nav-next:hover::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 7px;
    height: 18px;
    margin: auto 0;
    background-image: url(../images/next2_2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item {
    position: relative;
    width: 182px;
    height: 450px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item a {
    display: block;
    height: 100%;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header {
    padding: 30px 30px 20px 20px;
    z-index: 2;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header .icon-box {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header .accordion-title {
    font-weight: bold;
    font-size: 22px;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
    width: 105px;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(1) .accordion-header .accordion-title,
.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(5) .accordion-header .accordion-title {
    width: 110px;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content {
    flex: 1;
    display: flex;
    padding: 0 30px 0 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner {
    width: 100%;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-desc {
    margin-bottom: 60px;
    height: 140px;
    overflow: hidden;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-desc p {
    font-size: 14px;
    color: #333;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    /*要显示的行数*/
    overflow: hidden;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 48px;
    border-radius: 24px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(1) {
    background-image: url(../images/img7.jpg);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(1) .accordion-header .icon-box img {
    filter: drop-shadow(0px 72px #0277e7);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#0277e7', Positive='true')";
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(2) {
    background-image: url(../images/img8.jpg);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(2) .accordion-header .icon-box img {
    filter: drop-shadow(0px 72px #4663F2);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#4663F2', Positive='true')";
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(3) {
    background-image: url(../images/img9.jpg);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(3) .accordion-header .icon-box img {
    filter: drop-shadow(0px 72px #F18B43);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#F18B43', Positive='true')";
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(4) {
    background-image: url(../images/img10.jpg);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(4) .accordion-header .icon-box img {
    filter: drop-shadow(0px 72px #32BCF2);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#32BCF2', Positive='true')";
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(5) {
    background-image: url(../images/img11.jpg);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(5) .accordion-header .icon-box img {
    filter: drop-shadow(0px 72px #6D78E8);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#6D78E8', Positive='true')";
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(6) {
    background-image: url(../images/img12.jpg);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(6) .accordion-header .icon-box img {
    filter: drop-shadow(0px 72px #f13b41);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#f13b41', Positive='true')";
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(7) {
    background-image: url(../images/img13.jpg);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:nth-child(7) .accordion-header .icon-box img {
    filter: drop-shadow(0px 72px #15BB84);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#15BB84', Positive='true')";
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active {
    width: 350px;
    background-image: url(../images/img7_2.jpg) !important;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active .accordion-header {
    padding-left: 30px;
    padding-bottom: 30px;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active .accordion-header .accordion-title {
    width: 100%;
    color: #0E5DBE;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active .accordion-content {
    opacity: 1;
    visibility: visible;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(1) {
    background-image: url(../images/img7_2.jpg) !important;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(1) .accordion-header .accordion-title {
    color: #0277e7;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(1) .accordion-header .icon-box img {
    transform: translateY(-72px);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(1) .accordion-content .content-inner .content-btn {
    background: linear-gradient(90deg, #0EA8F0 0%, #0277E6 100%);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(1) .accordion-content .content-inner .content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 168, 240, 0.4);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(2) {
    background-image: url(../images/img8_2.jpg) !important;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(2) .accordion-header .accordion-title {
    color: #4663F2;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(2) .accordion-header .icon-box img {
    transform: translateY(-72px);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(2) .accordion-content .content-inner .content-btn {
    background: linear-gradient(90deg, #7B8EEF 0%, #4663F2 100%);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(2) .accordion-content .content-inner .content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 142, 239, 0.4);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(3) {
    background-image: url(../images/img9_2.jpg) !important;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(3) .accordion-header .accordion-title {
    color: #F18B43;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(3) .accordion-header .icon-box img {
    transform: translateY(-72px);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(3) .accordion-content .content-inner .content-btn {
    background: linear-gradient(90deg, #FFC975 0%, #F08942 100%);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(3) .accordion-content .content-inner .content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 201, 117, 0.4);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(4) {
    background-image: url(../images/img10_2.jpg) !important;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(4) .accordion-header .accordion-title {
    color: #32BCF2;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(4) .accordion-header .icon-box img {
    transform: translateY(-72px);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(4) .accordion-content .content-inner .content-btn {
    background: linear-gradient(90deg, #6BECFE 0%, #35BCF2 100%);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(4) .accordion-content .content-inner .content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 236, 254, 0.4);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(5) {
    background-image: url(../images/img11_2.jpg) !important;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(5) .accordion-header .accordion-title {
    color: #6D78E8;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(5) .accordion-header .icon-box img {
    transform: translateY(-72px);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(5) .accordion-content .content-inner .content-btn {
    background: linear-gradient(90deg, #B5BCFE 0%, #6C77E8 100%);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(5) .accordion-content .content-inner .content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 188, 254, 0.4);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(6) {
    background-image: url(../images/img12_2.jpg) !important;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(6) .accordion-header .accordion-title {
    color: #f13b41;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(6) .accordion-header .icon-box img {
    transform: translateY(-72px);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(6) .accordion-content .content-inner .content-btn {
    background: linear-gradient(90deg, #f2a2a2 0%, #f13b41 100%);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(6) .accordion-content .content-inner .content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 59, 65, 0.4);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(7) {
    background-image: url(../images/img13_2.jpg) !important;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(7) .accordion-header .accordion-title {
    color: #15BB84;
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(7) .accordion-header .icon-box img {
    transform: translateY(-72px);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(7) .accordion-content .content-inner .content-btn {
    background: linear-gradient(90deg, #92EAB1 0%, #15BB84 100%);
}

.wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active:nth-child(7) .accordion-content .content-inner .content-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 234, 177, 0.4);
}

.wrap .content .section.section3 {
    padding-top: 53px;
    padding-bottom: 60px;
    background: url(../images/bg5.jpg) bottom center no-repeat;
}

.wrap .content .section.section3 .discussion-list {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.wrap .content .section.section3 .discussion-list li {
    width: 331px;
    overflow: hidden;
}

.wrap .content .section.section3 .discussion-list li a {
    display: block;
    padding: 15px;
    padding-bottom: 20px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: 0.5s;
    overflow: hidden;
}

.wrap .content .section.section3 .discussion-list li a .img-box {
    width: 100%;
    height: 190px;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.wrap .content .section.section3 .discussion-list li a .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.wrap .content .section.section3 .discussion-list li a .item-cont {
    padding-top: 15px;
    overflow: hidden;
}

.wrap .content .section.section3 .discussion-list li a .item-cont .item-top {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid #EAEAEA;
}

.wrap .content .section.section3 .discussion-list li a .item-cont .item-top h6 {
    height: 56px;
    font-size: 18px;
    color: #333;
    line-height: 28px;
    font-weight: normal;
    transition: 0.5s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*要显示的行数*/
    overflow: hidden;
}

.wrap .content .section.section3 .discussion-list li a .item-cont .item-top .time {
    margin-top: 13px;
    font-size: 14px;
    color: #666;
}

.wrap .content .section.section3 .discussion-list li a .item-cont .item-top::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #186FE4;
    transition: 0.5s;
}

.wrap .content .section.section3 .discussion-list li a .item-cont .item-text {
    font-size: 12px;
    color: #888;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*要显示的行数*/
    overflow: hidden;
}

.wrap .content .section.section3 .discussion-list li:hover a {
    background: #F6FAFF;
    border-color: #CFE1F8;
}

.wrap .content .section.section3 .discussion-list li:hover a .img-box img {
    transform: scale(1.05);
}

.wrap .content .section.section3 .discussion-list li:hover a .item-cont .item-top h6 {
    color: #186FE4;
    font-weight: bold;
}

.wrap .content .section.section3 .discussion-list li:hover a .item-cont .item-top::after {
    left: 90px;
}

.wrap .content .section.section4 {
    padding-top: 53px;
    padding-bottom: 40px;
    background: rgba(241, 247, 253, 0.7);
}

.wrap .content .section.section4 .section-title {
    margin-bottom: 35px;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper {
    padding-bottom: 40px;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide {
    margin-right: 40px;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box {
    margin-left: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-image: url(../images/bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box .day {
    font-weight: bold;
    font-size: 24px;
    color: #0E5DBE;
    line-height: 1;
    transition: all 0.3s;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box .month-year {
    font-size: 12px;
    color: #0E5DBE;
    line-height: 1;
    margin-top: 2px;
    transition: all 0.3s;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box {
    background: #fff;
    border-radius: 5px;
    padding: 60px 30px 25px 30px;
    margin-top: -35px;
    position: relative;
    transition: all 0.3s ease;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box .viewpoint-title {
    margin-bottom: 12px;
    height: 52px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box .viewpoint-desc {
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item:hover .date-box {
    background-image: url(../images/bg2_2.png);
    background-repeat: no-repeat;
    transform: rotateY(360deg);
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item:hover .date-box .day,
.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item:hover .date-box .month-year {
    color: #fff;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item:hover .content-box {
    box-shadow: 0px 3px 21px 0px rgba(14, 93, 190, 0.09);
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item:hover .content-box .viewpoint-title {
    color: #0E5DBE;
    text-decoration: underline;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-pagination {
    bottom: 0;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #f7efe6;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #2E7DDE;
}

.wrap .content .section.section5 {
    padding-top: 60px;
    padding-bottom: 170px;
    background: url(../images/bg6.jpg) top center no-repeat;
}

.wrap .content .section.section5 .img-box {
    height: 140px;
    border-radius: 5px;
    overflow: hidden;
}

.wrap .content .section.section5 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.wrap .content .section.section5 .img-box:hover img {
    transform: scale(1.05);
}

.wrap .content .section.section6 {
    padding-top: 135px;
    padding-bottom: 60px;
    margin-top: -135px;
    background: url(../images/bg7.png) top center no-repeat;
}

.wrap .content .section.section6 .section-title {
    margin-bottom: 35px;
}

.wrap .content .section.section6 .link-slide {
    position: relative;
}

.wrap .content .section.section6 .link-slide .link-swiper {
    overflow: hidden;
    border-radius: 10px;
    padding-bottom: 40px;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li {
    width: 280px;
    height: 90px;
    background: #fff;
    border: 1px solid #D6E8FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:first-child {
    border-radius: 10px 0 0 0;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(5) {
    border-radius: 0 10px 0 0;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(11) {
    border-radius: 0 0 0 10px;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(15) {
    border-radius: 0 0 10px 0;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:hover {
    box-shadow: 0 2px 8px rgba(14, 93, 190, 0.1);
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li a img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:hover a img {
    transform: scale(1.05);
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-pagination {
    bottom: 0;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.wrap .content .section.section6 .link-slide .link-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #0E5DBE;
}

.wrap .content .section.section6 .link-slide .link-nav-prev,
.wrap .content .section.section6 .link-slide .link-nav-next {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    width: 36px;
    height: 108px;
    background: #9BBCE5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.wrap .content .section.section6 .link-slide .link-nav-prev:hover,
.wrap .content .section.section6 .link-slide .link-nav-next:hover {
    background: #0E5DBE;
}

.wrap .content .section.section6 .link-slide .link-nav-prev {
    left: -36px;
    border-radius: 10px 0px 0px 10px;
}

.wrap .content .section.section6 .link-slide .link-nav-next {
    right: -36px;
    border-radius: 0px 10px 10px 0px;
}

.wrap .content .breadcrumb {
    padding: 20px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.wrap .content .breadcrumb img {
    margin-right: 15px;
    filter: drop-shadow(0px 72px #C50C11);
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=72, Color='#C50C11', Positive='true')";
}

.wrap .content .breadcrumb a {
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.wrap .content .breadcrumb a:hover,
.wrap .content .breadcrumb a.current {
    color: #0E5DBE;
}

.wrap .content .breadcrumb .separator {
    font-size: 16px;
    color: #333;
    margin: 0 8px;
    font-weight: normal;
}

.wrap .content .page-content {
    padding-bottom: 30px;
    min-height: calc(100vh - 376px);
}

.wrap .content .page-content .sidenav {
    float: left;
    width: 200px;
    background: linear-gradient(180deg, #186FE4 0%, #1776F5 100%);
    border-radius: 0px 30px 0px 0px;
}

.wrap .content .page-content .sidenav ul {
    padding: 5px 25px;
    padding-bottom: 100px;
    background: url(../images/bg9.png) center bottom no-repeat;
    list-style: none;
    overflow: hidden;
}

.wrap .content .page-content .sidenav ul li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.wrap .content .page-content .sidenav ul li a {
    position: relative;
    display: block;
    padding: 22px 0;
    padding-bottom: 21px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.wrap .content .page-content .sidenav ul li:hover a,
.wrap .content .page-content .sidenav ul li.active a {
    font-weight: bold;
}

.wrap .content .page-content .sidenav ul li:hover::after,
.wrap .content .page-content .sidenav ul li.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: url(../images/bg8.png) bottom no-repeat;
    opacity: 0.7;
}

.wrap .content .page-content .cont-right {
    float: right;
    width: calc(100% - 250px);
}

.wrap .content .page-content .page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.wrap .content .page-content .page-title h6 {
    font-size: 24px;
    color: #333;
}

.wrap .content .page-content .first-list {
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.wrap .content .page-content .first-list li {
    padding: 25px 0;
    border-bottom: 1px dashed #dcdcdc;
    overflow: hidden;
}

.wrap .content .page-content .first-list li:first-child {
    padding-top: 0;
}

.wrap .content .page-content .first-list li .img-box {
    float: left;
    width: 200px;
    height: 130px;
    overflow: hidden;
}

.wrap .content .page-content .first-list li .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.wrap .content .page-content .first-list li .item-cont {
    margin-left: 220px;
    margin-top: 3px;
    overflow: hidden;
}

.wrap .content .page-content .first-list li .item-cont h6 {
    font-size: 18px;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s;
}

.wrap .content .page-content .first-list li .item-cont p {
    font-size: 14px;
    line-height: 24px;
}

.wrap .content .page-content .first-list li .item-cont p.item-text {
    margin-top: 16px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*要显示的行数*/
    overflow: hidden;
}

.wrap .content .page-content .first-list li .item-cont p.item-time {
    margin-top: 11px;
    color: #999;
}

.wrap .content .page-content .first-list li a:hover .img-box img {
    transform: scale(1.05);
}

.wrap .content .page-content .first-list li a:hover .item-cont h6 {
    margin-left: 10px;
    color: #0E5DBE;
}

.wrap .content .page-content .first-list.two {
    margin-top: 0;
}

.wrap .content .page-content .first-list.two li .img-box {
    float: right;
}

.wrap .content .page-content .first-list.two li .item-cont {
    margin-left: 0;
    margin-right: 230px;
}

.wrap .content .page-content .two-list {
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.wrap .content .page-content .two-list li {
    margin-bottom: 20px;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.wrap .content .page-content .two-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.wrap .content .page-content .two-list li:hover img {
    transform: scale(1.05);
}

.wrap .content .page-content .three-list {
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.wrap .content .page-content .three-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wrap .content .page-content .three-list li:nth-child(5n) {
    padding-bottom: 25px;
    margin-bottom: 17px;
    border-bottom: 1px dashed #E0E0E0;
}

.wrap .content .page-content .three-list li:last-child {
    margin-bottom: 0;
}

.wrap .content .page-content .three-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.wrap .content .page-content .three-list li a .title-section {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 85%;
}

.wrap .content .page-content .three-list li a .title-section .dot {
    width: 5px;
    height: 5px;
    background: #BDCCDF;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wrap .content .page-content .three-list li a .title-section .title {
    font-size: 18px;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s;
}

.wrap .content .page-content .three-list li a .title-section .title span {
    color: #186FE4;
}

.wrap .content .page-content .three-list li a .time {
    font-size: 18px;
    color: #999;
    flex-shrink: 0;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.wrap .content .page-content .three-list li a:hover .title-section .title {
    padding-left: 10px;
    color: #0E5DBE;
}

.wrap .content .page-content .four-list {
    padding: 0;
    margin-top: 50px;
    list-style: none;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.wrap .content .page-content .four-list li {
    width: 565px;
    height: 95px;
    background: #F3F7FB;
    padding: 20px 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.wrap .content .page-content .four-list li .content-left {
    flex: 1;
}

.wrap .content .page-content .four-list li .content-left .title {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    line-height: 1.2;
}

.wrap .content .page-content .four-list li .content-left .text {
    font-size: 16px;
    color: #333;
    line-height: 1.2;
}

.wrap .content .page-content .four-list li .btn-right {
    height: 38px;
    background: #186FE4;
    border-radius: 4px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.wrap .content .page-content .four-list li .btn-right span {
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
}

.wrap .content .page-content .four-list li .btn-right:hover {
    background: #1366D7;
    transform: translateY(-2px);
}

.wrap .content .page-content .five-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 26px;
}

.wrap .content .page-content .five-list li {
    position: relative;
    width: 366px;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

.wrap .content .page-content .five-list li .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wrap .content .page-content .five-list li .title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 366px;
    height: 150px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.wrap .content .page-content .five-list li .title-overlay .title-text {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    padding: 0 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.wrap .content .page-content .five-list li .button-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 366px;
    height: 90px;
    background: rgba(24, 111, 228, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.wrap .content .page-content .five-list li .button-overlay .btn-item {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wrap .content .page-content .five-list li .button-overlay .btn-item i {
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
}

.wrap .content .page-content .five-list li .button-overlay .btn-item i .smallimg {
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap .content .page-content .five-list li .button-overlay .btn-item.zoom-btn i {
    background-image: url(../images/icon26.png);
}

.wrap .content .page-content .five-list li .button-overlay .btn-item.link-btn i {
    background-image: url(../images/icon27.png);
}

.wrap .content .page-content .five-list li:hover .bg-img {
    transform: scale(1.05);
}

.wrap .content .page-content .five-list li:hover .title-overlay {
    opacity: 1;
    transform: translateY(0);
}

.wrap .content .page-content .five-list li:hover .button-overlay {
    opacity: 1;
    transform: translateY(0);
}

.wrap .content .page-content .six-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 26px;
}

.wrap .content .page-content .six-list li {
    position: relative;
    width: 366px;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

.wrap .content .page-content .six-list li a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wrap .content .page-content .six-list li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.wrap .content .page-content .six-list li a .cover-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 20px;
    padding-bottom: 14px;
    background: rgba(0, 0, 0, 0.5);
}

.wrap .content .page-content .six-list li a .cover-title p {
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wrap .content .page-content .six-list li a:hover img {
    transform: scale(1.05);
}

.wrap .content .page-content .section .section-title h6 {
    float: left;
    font-size: 20px;
    text-align: left;
    color: #0E5DBE;
}

.wrap .content .page-content .section .section-title h6 img {
    margin-left: 10px;
    height: 21px;
}

.wrap .content .page-content .section .section-title .more {
    float: right;
    top: 4px;
    font-size: 14px;
    color: #266DC5;
}

.wrap .content .page-content .section.section7 {
    margin-bottom: 27px;
}

.wrap .content .page-content .section.section7 .first-list li:first-child {
    padding-top: 0;
}

.wrap .content .page-content .section.section7 .three-list {
    padding-bottom: 23px;
    border-bottom: 1px dashed #dcdcdc;
}

.wrap .content .page-content .section.section7 .three-list li a .time {
    font-size: 14px;
}

.wrap .content .page-content .section.section8 {
    margin-bottom: 10px;
}

.wrap .content .page-content .section.section8 .six-list {
    margin-top: 25px;
}

.wrap .content .page-content .committee-img {
    margin-bottom: 25px;
    height: 200px;
    overflow: hidden;
}

.wrap .content .page-content .committee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.wrap .content .page-content .committee-img:hover img {
    transform: scale(1.05);
}

.wrap .content .page-content .section.section9 {
    margin-bottom: 25px;

}

.wrap .content .section.section9 .section-title {
    margin-bottom: 14px;
}

.wrap .content .section.section9 .six-list {
    margin-bottom: 30px;
    margin-top: 23px;
}

.property-list {
    padding: 0;
    list-style: none;
    margin-top: 10px;
    overflow: hidden;
}

.property-list li {
    margin-bottom: 15px;
    background: #F5F5F5;
    overflow: hidden;
}

.property-list li:hover {
    background: #f5f5f5 url(../images/bg15.png) no-repeat;
    background-size: 100% 100%;
}

.property-list li a {
    display: block;
    padding: 18px 30px;
    overflow: hidden;
}

.property-list li a span {
    display: block;
    padding-left: 15px;
    position: relative;
    font-size: 18px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.property-list li a span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    width: 5px;
    height: 5px;
    background: #BDCCDF;
    border-radius: 50%;
}

.property-list li:hover a span {
    color: #0E5DBE;
    font-weight: bold;
}

.property-list li:hover a span::before {
    background: #0E5DBE;
}

.section11 {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.property-slide {
    width: 700px;
    overflow: hidden;
}

.property-slide .slide-top {
    margin-bottom: 20px;
}

.property-slide .slide-top .swiper-slide {
    width: 100%;
    height: 460px;
}

.property-slide .slide-top .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-slide .slide-bottom {
    position: relative;
    padding: 0 30px;
}

.property-slide .slide-bottom .swiper-slide img {
    width: 100%;
    height: 78px;
    object-fit: cover;
    cursor: pointer;
}

.property-slide .slide-bottom .swiper-slide.swiper-slide-thumb-active {
    border: 2px solid #186FE4;
}

.property-slide .slide-bottom .swiper-slide.swiper-slide-thumb-active img {
    height: 74px;
}

.property-slide .slide-bottom .swiper-button-next,
.property-slide .slide-bottom .swiper-button-prev {
    top: 0;
    margin-top: 0;
    width: 20px;
    height: 78px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.property-slide .slide-bottom .swiper-button-next,
.property-slide .slide-bottom .swiper-rtl .swiper-button-prev {
    right: 0;
}

.property-slide .slide-bottom .swiper-button-prev,
.property-slide .slide-bottom .swiper-rtl .swiper-button-next {
    left: 0;
}

.property-slide .slide-bottom .swiper-button-next:after,
.property-slide .slide-bottom .swiper-button-prev:after {
    content: "";
    width: 6px;
    height: 11px;
}

.property-slide .slide-bottom .swiper-button-prev::after {
    background: url(../images/icon35.jpg) center center no-repeat;
}

.property-slide .slide-bottom .swiper-button-next::after {
    background: url(../images/icon36.jpg) center center no-repeat;
}

.section11 .property-section {
    float: right;
    padding: 25px 30px;
    padding-right: 40px;
    width: 680px;
    background: #F6F6F6 url(../images/logo17.png) right bottom no-repeat;
}

.section11 .property-section h6 {
    font-size: 22px;
    color: #333;
    font-weight: normal;
    line-height: 1.5;
}

.section11 .property-section .info-list {
    padding: 0;
    list-style: none;
    margin-top: 33px;
    overflow: hidden;
}

.section11 .property-section .info-list li {
    display: flex;
    margin-bottom: 12px;
    gap: 20px;
    font-size: 18px;
}

.section11 .property-section .info-list li label {
    width: 125px;
    color: #666;
}

.section11 .property-section .info-list li .item-cont {
    flex: 1;
    color: #333;
}

.section12 {
    overflow: hidden;
}

.section-title2 {
    overflow: hidden;
}

.section-title2 h6 {
    position: relative;
    padding-left: 15px;
    font-size: 18px;
    color: #333;
}

.section12 .introduction-section {
    margin-top: 10px;
}

.section12 .introduction-section .introduction-text p {
    text-align: justify;
}

.section-title2 h6::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 6px;
    height: 18px;
    background: #0E5DBE;
    border-radius: 0px 5px 0px 5px;
}

.wrap .content .page-content .nodata-section,
.wrap .content .page-content .nodata-section2,
.wrap .content .page-content .nodata-section3 {
    margin: 50px 0;
    margin-bottom: 28px;
    text-align: center;
    overflow: hidden;
}

.wrap .content .page-content .nodata-section {
    margin: 60px 0;
}

.wrap .content .page-content .nodata-section p,
.wrap .content .page-content .nodata-section2 p,
.wrap .content .page-content .nodata-section3 p {
    margin-top: 45px;
    font-size: 16px;
    color: #666;
}

.wrap .content .page-content .nodata-section2 p {
    margin-top: 5px;
    color: #666;
}

.wrap .content .page-content .nodata-section3 {
    margin: 25px 0;
}

.wrap .content .page-content .nodata-section3 p {
    margin-top: 25px;
    color: #999;
}

.wrap .content .page-content .editor-section {
    padding-top: 20px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px dashed #dcdcdc;
}

.wrap .content .page-content .editor-section a {
    margin-right: 15px;
    width: 149px;
    height: 40px;
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 38px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #186FE4;
    transition: all 0.3s;
}

.wrap .content .page-content .editor-section a:last-child {
    margin-right: 0;
}

.wrap .content .page-content .editor-section a:hover {
    color: #fff;
    background: #186FE4;
}

.wrap .content .page-content .introduction-section {
    overflow: hidden;
}

.wrap .content .page-content .introduction-section .introduction-title {
    margin-bottom: 15px;
    font-size: 22px;
    color: #333;
    text-align: center;
}

.wrap .content .page-content .introduction-section .introduction-text {
    font-size: 18px;
    color: #333;
    line-height: 2;
}

.wrap .content .page-content .certificate-form {
    padding-top: 25px;
}

.wrap .content .page-content .certificate-form .certificate-title {
    font-size: 24px;
    color: #333;
    font-weight: normal;
    text-align: center;
    margin-bottom: 8px;
}

.wrap .content .page-content .certificate-form .certificate-desc {
    margin-bottom: 27px;
    font-size: 14px;
    color: #999;
    text-align: center;
}

.wrap .content .page-content .certificate-form .certificate-search-form {
    max-width: 575px;
    margin: 0 auto;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__label {
    font-size: 16px;
    color: #333;
    text-align: right;
    width: 95px !important;
    padding-right: 0;
    line-height: 40px;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content {
    flex: 1;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .el-input {
    width: 480px;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .el-input .el-input__inner {
    width: 480px;
    height: 40px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    color: #333;
    padding: 0 15px;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .el-input .el-input__inner::placeholder {
    font-size: 14px;
    color: #999;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .captcha-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .captcha-input .el-input {
    width: 398px;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .captcha-input .el-input .el-input__inner {
    width: 398px;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .captcha-input .captcha-img {
    width: 72px;
    height: 40px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .captcha-input .captcha-img img {
    max-width: 100%;
    max-height: 100%;
}

.wrap .content .page-content .certificate-form .certificate-search-form .form-submit {
    text-align: center;
    margin-top: 30px;
}

.wrap .content .page-content .certificate-form .certificate-search-form .form-submit .el-button {
    padding: 10px 20px;
    width: 150px;
    background: #186FE4;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.wrap .content .page-content .certificate-form .certificate-search-form .form-submit .el-button:hover {
    background: #0E5DBE;
}

.wrap .content .page-content .result-section {
    margin-top: 40px;
}

.wrap .content .page-content .result-section .result-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.wrap .content .page-content .result-section .result-table .table-header {
    background: #186FE4;
}

.wrap .content .page-content .result-section .result-table .table-header th {
    padding: 15px 10px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
}

.wrap .content .page-content .result-section .result-table .table-header th:first-child {
    text-align: left;
}

.wrap .content .page-content .result-section .result-table .table-body tr {
    background: #F5F6F9;
}

.wrap .content .page-content .result-section .result-table .table-body tr td {
    padding: 15px 10px;
    font-size: 16px;
    color: #333;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.wrap .content .page-content .result-section .result-table .table-body tr td.photo-cell {
    padding-left: 20px;
    text-align: left;
}

.wrap .content .page-content .result-section .result-table .table-body tr td.photo-cell .photo-img {
    width: 100px;
    height: 140px;
    object-fit: cover;
}

.wrap .content .page-content .result-section .result-table .table-body tr td.desc-cell {
    padding-right: 20px;
    line-height: 1.6;
    word-wrap: break-word;
    white-space: inherit;
}

.wrap .content .page-content .committee-img {
    height: auto;
}

.party-img {
    margin-top: 30px;
    overflow: hidden;
}

.party-img img {
    width: 100%;
}

.partynews-section {
    margin-top: 30px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    overflow: hidden;
}

.partynews-group {
    width: 685px;
}

.partynews-title {
    padding: 15px 20px;
    padding-bottom: 14px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #C60013;
}

.partynews-title h6 {
    float: left;
    font-size: 20px;
    color: #fff;
}

.partynews-title h6 img {
    margin-right: 10px;
}

.partynews-title2 {
    padding: 0 20px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F5F5F5;
}

.partynews-title2 h6 {
    position: relative;
    padding: 0 10px;
    height: 50px;
    font-size: 20px;
    color: #C60013;
    line-height: 50px;
    border-bottom: 2px solid #C60013;
}

.partynew-box {
    padding: 20px 20px;
    padding-bottom: 20px;
    height: calc(100% - 56px);
    border: 1px solid #DEDEDE;
    overflow: hidden;
}

.partynew-box2 {
    margin-top: 7px;
    overflow: hidden;
}

.partynew-list {
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.partynew-list li {
    position: relative;
    padding-left: 15px;
    line-height: 40px;
    overflow: hidden;
}

.partynew-list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    width: 5px;
    height: 5px;
    background: #C60013;
    border-radius: 50%;
}

.partynew-list li a {
    float: left;
    max-width: 81%;
    font-size: 18px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.partynew-list li a:hover {
    color: #C60013;
}

.partynew-list li .time {
    float: right;
    font-size: 18px;
    color: #999;
}

.wrap .footer {
    padding-top: 30px;
    padding-bottom: 34px;
    background: url(../images/footerbg.jpg) top center no-repeat;
}


.wrap .footer .footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

.wrap .footer .footer-top .social-icons {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.wrap .footer .footer-top .social-icons li {
    position: relative;
}

.wrap .footer .footer-top .social-icons li .social-link {
    display: block;
    position: relative;
}

.wrap .footer .footer-top .social-icons li .social-link .icon-circle {
    width: 36px;
    height: 36px;
    background: #467BBD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.wrap .footer .footer-top .social-icons li .social-link .icon-circle .default-icon,
.wrap .footer .footer-top .social-icons li .social-link .icon-circle .hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.wrap .footer .footer-top .social-icons li .social-link .icon-circle .hover-icon {
    opacity: 0;
}

.wrap .footer .footer-top .social-icons li .social-link .qr-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.wrap .footer .footer-top .social-icons li .social-link .qr-popup .qr-content {
    position: relative;
    padding: 5px;
    height: 138px;
    background: url(../images/bg10.png) no-repeat;
}

.wrap .footer .footer-top .social-icons li .social-link .qr-popup .qr-content .qr-code {
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 4px;
}

.wrap .footer .footer-top .social-icons li .social-link .qr-popup .qr-content .qr-code img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.wrap .footer .footer-top .social-icons li .social-link:hover .icon-circle {
    background: #FFFFFF;
}

.wrap .footer .footer-top .social-icons li .social-link:hover .icon-circle .default-icon {
    opacity: 0;
}

.wrap .footer .footer-top .social-icons li .social-link:hover .icon-circle .hover-icon {
    opacity: 1;
}

.wrap .footer .footer-top .social-icons li .social-link:hover .qr-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.wrap .footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrap .footer .footer-bottom .footer-left p {
    font-size: 16px;
    color: #fff;
    line-height: 34px;
}

.wrap .footer .footer-bottom .footer-left p img {
    margin-right: 5px;
    margin-bottom: 5px;
}

.wrap .footer .footer-bottom .footer-left p span {
    margin-right: 20px;
}

/** 党建红色 **/
.wrap.party-wrap .header {
    background: url(../images/headbg2.jpg) center top no-repeat;
    background-size: cover;
}

.wrap.party-wrap .header .search-box button {
    background: url(../images/icon1_3.png) center no-repeat;
}

.wrap.party-wrap .content .breadcrumb img {
    transform: translateY(-72px);
}

.wrap.party-wrap .header .search-btn {
    background: #fff url(../images/icon1_3.png) center no-repeat;
    background-size: 20px;
}

.wrap.party-wrap .nav,
.wrap.party-wrap .TextTitle .shar .set-font.active,
.wrap.party-wrap .content .page-content .editor-section a:hover {
    background: #C50C11;
}

.wrap.party-wrap .nav>ul>li::before {
    background: #EB9C9E;
}

.wrap.party-wrap .nav>ul>li:hover>a,
.wrap.party-wrap .nav>ul>li.active>a {
    background: #D7383C;
}

.wrap.party-wrap .nav>ul>li .menu-nav ul li:hover a,
.wrap.party-wrap .content .breadcrumb a:hover,
.wrap.party-wrap .content .breadcrumb a.current,
.wrap.party-wrap .content .page-content .first-list li a:hover .item-cont h6,
.wrap.party-wrap .TextTitle .shar .set-font,
.wrap.party-wrap .NewsPages a:hover {
    color: #C50C11;
}

.wrap.party-wrap .TextTitle .shar .set-font.active {
    color: #fff;
}

.wrap.party-wrap .content .page-content .sidenav {
    background: linear-gradient(180deg, #C50C11 0%, #F75C60 100%);
}

.wrap.party-wrap .content .page-content .sidenav ul li:hover::after,
.wrap.party-wrap .content .page-content .sidenav ul li.active::after {
    background: url(../images/bg8_2.png) bottom no-repeat;
}

.wrap.party-wrap .footer {
    background: url(../images/footerbg2.jpg) top center no-repeat;
}

.wrap.party-wrap .footer .footer-top .social-icons li .social-link .icon-circle {
    background: #E34C4F;
}

.wrap.party-wrap .footer .footer-top .social-icons li .social-link:hover .icon-circle {
    background: #FFFFFF;
}

.wrap.party-wrap .pages .pagination li.active {
    border-color: #C50C11;
    background: #C50C11;
}

.wrap.party-wrap .pages .pagination li:hover:not(.disabled) {
    border-color: #C50C11;
    background: #C50C11;
}

.wrap.party-wrap .pages .pagination li.first:hover:not(.disabled),
.wrap.party-wrap .pages .pagination li.last:hover:not(.disabled) {
    color: #C50C11;
    border-color: #C50C11;
    background: #fff;
}

.wrap.party-wrap .pages .pagination li.first:hover:not(.disabled) a,
.wrap.party-wrap .pages .pagination li.last:hover:not(.disabled) a,
.wrap.party-wrap .pages .pagination li.first:hover:not(.disabled) span,
.wrap.party-wrap .pages .pagination li.last:hover:not(.disabled) span {
    color: #C50C11;
}

.wrap.party-wrap .pages .pagination li.prev:hover:not(.disabled),
.wrap.party-wrap .pages .pagination li.next:hover:not(.disabled) {
    color: #C50C11;
    border-color: #C50C11;
    background: #fff;
}

.wrap.party-wrap .pages .pagination li.prev:hover:not(.disabled) a,
.wrap.party-wrap .pages .pagination li.next:hover:not(.disabled) a,
.wrap.party-wrap .pages .pagination li.prev:hover:not(.disabled) span,
.wrap.party-wrap .pages .pagination li.next:hover:not(.disabled) span {
    color: #C50C11;
}

.wrap.party-wrap .content .page-content .editor-section a {
    border-color: #C50C11;
}

@media print {

    .header,
    .nav,
    .m-nav-pop,
    .editor-section,
    .NewsPages,
    .pages,
    .footer,
    .banner,
    .breadcrumb,
    .page-title {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin: 0 !important;
        padding: 15px !important;
    }

    .wrap {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background: white !important;
    }

    .w1400 {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .TextTitle {
        margin-bottom: 15px !important;
        padding-bottom: 10px !important;
        border-bottom: 1px dashed #dcdcdc !important;
        page-break-after: avoid !important;
        page-break-inside: avoid !important;
    }

    .TextTitle h5 {
        font-size: 24px !important;
        font-weight: bold !important;
        color: #333 !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .TextTitle .shar {
        font-size: 14px !important;
        color: #666 !important;
        line-height: 1.4 !important;
    }

    .TextTitle .shar .set-font {
        color: #186FE4 !important;
    }

    .TextTitle .shar .set-font.active {
        color: #fff !important;
    }

    .TextTitle .shar .item-info {
        margin-right: 15px !important;
        display: inline-block !important;
    }

    .TextTitle .shar .item-info:last-child {
        margin-right: 0 !important;
    }

    .NewsText {
        font-size: 18px !important;
        color: #333 !important;
        line-height: 1.6 !important;
        page-break-before: avoid !important;
    }

    .NewsText p {
        margin-bottom: 10px !important;
        text-indent: 2em !important;
        font-size: 18px !important;
        color: #333 !important;
        line-height: 1.6 !important;
        orphans: 2 !important;
        widows: 2 !important;
    }

    .NewsText h1,
    .NewsText h2,
    .NewsText h3,
    .NewsText h4,
    .NewsText h5,
    .NewsText h6 {
        font-weight: bold !important;
        color: #333 !important;
        margin: 12px 0 6px 0 !important;
        page-break-after: avoid !important;
    }

    .NewsText ul,
    .NewsText ol {
        margin: 10px 0 !important;
        padding-left: 25px !important;
    }

    .NewsText li {
        margin-bottom: 5px !important;
        line-height: 1.5 !important;
    }

    .NewsText img {
        max-width: 100% !important;
        height: auto !important;
        margin: 10px 0 !important;
        page-break-inside: avoid !important;
    }

    .NewsText table {
        width: 100% !important;
        border-collapse: collapse !important;
        margin: 10px 0 !important;
        page-break-inside: avoid !important;
    }

    .NewsText table th,
    .NewsText table td {
        border: 1px solid #333 !important;
        padding: 5px !important;
        text-align: left !important;
        font-size: 12px !important;
    }

    .NewsText table th {
        background: #f0f0f0 !important;
        font-weight: bold !important;
    }

    .TextTitle+.NewsText {
        page-break-before: avoid !important;
    }

    .section {
        margin: 0 !important;
        padding: 0 !important;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.bigimg {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
    z-index: 99999;
    border: 10px solid #fff;
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.5;
    filter: alpha(opacity=50);
    z-index: 98;
    transition: all 1s;
    display: none;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    z-index: 9999;
}

.mask:hover {
    cursor: zoom-out;
}

.m-search-btn,
.m-nav-btn,
.m-nav-pop,
.submenu-bar,
.mobile-cover {
    display: none;
}

@media screen and (min-width: 0px) and (max-width: 1560px) {
    .w1400 {
        width: 1200px;
    }

    .wrap .content .section .section-title h6 {
        font-size: 26px;
    }

    .wrap .content .section .section-title .more {
        top: 7px;
    }

    .wrap .content .section .section-title .more img {
        width: 18px;
    }

    .wrap .content .section.section1 .news-slide {
        width: 650px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .img-box {
        height: 390px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .item-cont h6 {
        font-size: 20px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .item-cont p {
        font-size: 13px;
        line-height: 20px;
    }

    .wrap .content .section.section1 .news-slide .swiper-horizontal>.swiper-pagination-bullets,
    .wrap .content .section.section1 .news-slide .swiper-pagination-bullets.swiper-pagination-horizontal,
    .wrap .content .section.section1 .news-slide .swiper-pagination-custom,
    .wrap .content .section.section1 .news-slide .swiper-pagination-fraction {
        bottom: 150px;
    }

    .wrap .content .section.section1 .news-tab {
        width: 520px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav {
        padding-left: 30px;
        margin-bottom: 20px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item .tab-title {
        font-size: 18px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item.active .tab-title {
        font-size: 24px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item a {
        top: 11px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item a img {
        width: 18px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-separator {
        font-size: 14px;
        margin: 0 10px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item {
        margin-bottom: 16px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box {
        width: 60px;
        height: 60px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box .day {
        font-size: 18px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box .month-year {
        font-size: 11px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box {
        width: 460px;
        height: 97px;
        padding: 14px 25px 14px 45px;
        margin-left: -30px;
        background-size: 100% 100%;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-title {
        font-size: 16px;
        margin: 0 0 8px 0;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .wrap .content .section.section2 .quick-slide {
        margin-bottom: 40px;
    }

    .wrap .content .section.section2 .quick-slide .quick-swiper .swiper-wrapper .swiper-slide a img {
        height: 90px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list {
        gap: 16px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item {
        width: 164px;
        height: 380px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active {
        width: 300px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header {
        padding: 15px 15px 20px 15px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header .accordion-title {
        font-size: 20px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-desc {
        margin-bottom: 30px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-btn {
        width: 130px;
        height: 40px;
        font-size: 16px;
        border-radius: 20px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active .accordion-header {
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active .accordion-header .accordion-title {
        font-size: 26px;
    }

    .wrap .content .section.section3 {
        background-size: cover;
    }

    .wrap .content .section.section3 .discussion-list {
        gap: 20px;
    }

    .wrap .content .section.section3 .discussion-list li {
        width: 285px;
    }

    .wrap .content .section.section3 .discussion-list li a {
        padding: 12px;
        padding-bottom: 16px;
    }

    .wrap .content .section.section3 .discussion-list li a .img-box {
        height: 165px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont {
        padding-top: 12px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top {
        padding-bottom: 12px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top h6 {
        height: 48px;
        font-size: 16px;
        line-height: 24px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top .time {
        margin-top: 10px;
        font-size: 13px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-text {
        line-height: 18px;
    }

    .wrap .content .section.section4 {
        padding-top: 35px;
        padding-bottom: 32px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper {
        padding-bottom: 32px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide {
        margin-right: 32px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box {
        width: 60px;
        height: 60px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box .day {
        font-size: 20px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box .month-year {
        font-size: 11px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box {
        padding: 50px 25px 20px 25px;
        margin-top: -30px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box .viewpoint-title {
        margin-bottom: 10px;
        height: 44px;
        font-size: 16px;
        line-height: 22px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box .viewpoint-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }

    .wrap .content .section.section5 {
        padding-top: 50px;
        padding-bottom: 140px;
    }

    .wrap .content .section.section5 .img-box {
        height: 120px;
    }

    .wrap .content .section.section6 {
        padding-top: 110px;
        padding-bottom: 80px;
        margin-top: -110px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper {
        padding-bottom: 32px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li {
        width: 240px;
        height: 75px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li a img {
        max-width: 85%;
        max-height: 85%;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }

    .wrap .content .section.section6 .link-slide .link-nav-prev,
    .wrap .content .section.section6 .link-slide .link-nav-next {
        width: 30px;
        height: 90px;
    }

    .wrap .content .section.section6 .link-slide .link-nav-prev {
        left: -30px;
    }

    .wrap .content .section.section6 .link-slide .link-nav-next {
        right: -30px;
    }

    .property-slide {
        width: 600px;
    }

    .property-slide .slide-top .swiper-slide {
        height: 390px;
    }



    .property-slide .slide-bottom .swiper-slide img {
        height: 65px;
    }

    .property-slide .slide-bottom .swiper-slide.swiper-slide-thumb-active img {
        height: 62px;
    }

    .wrap .content .page-content .two-list li {
        height: auto;
    }

    .property-slide .slide-bottom .swiper-button-next,
    .property-slide .slide-bottom .swiper-button-prev {
        height: 100%;
        bottom: 0;
    }

    .section11 .property-section {
        padding: 20px 25px;
        padding-right: 35px;
        width: 580px;
    }

    .section11 .property-section h6 {
        font-size: 18px;
    }

    .section11 .property-section .info-list {
        margin-top: 20px;
    }

    .section11 .property-section .info-list li {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .wrap .content .page-content .six-list li {
        width: calc(33.33% - 18px);
        height: 196px;
    }

    .wrap .content .page-content .six-list li a .cover-title {
        padding: 10px 15px;
    }

    .wrap .content .page-content .six-list li a .cover-title p {
        font-size: 14px;
    }

    .wrap .content .page-content .four-list li {
        width: calc(50% - 10px);
    }

    .wrap .content .page-content .five-list li {
        width: calc(33.33% - 18px);
        height: 200px;
    }

    .wrap .content .page-content .five-list li .title-overlay,
    .wrap .content .page-content .five-list li .button-overlay {
        width: 100%;
        height: 50%;
    }

    .partynews-group {
        width: 585px;
    }
}

@media screen and (min-width: 0px) and (max-width: 1340px) {
    .w1400 {
        width: 90%;
    }

    .wrap .content .section .section-title h6 {
        font-size: 24px;
    }

    .wrap .content .section.section1 {
        margin: 40px 0;
        background-size: 54%;
    }

    .wrap .content .section.section1 .news-slide {
        width: 58%;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .img-box {
        height: 380px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .item-cont {
        background-size: 100% 100%;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .item-cont h6 {
        font-size: 20px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .item-cont p {
        font-size: 13px;
        line-height: 22px;
    }

    .wrap .content .section.section1 .news-tab {
        width: 40%;
    }

    .wrap .content .section.section1 .news-tab .tab-nav {
        margin-bottom: 20px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item .tab-title {
        font-size: 18px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item.active .tab-title {
        font-size: 24px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item {
        margin-bottom: 18px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box {
        width: 58px;
        height: 58px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box .day {
        font-size: 17px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .date-box .month-year {
        font-size: 11px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box {
        width: calc(100% - 28px);
        padding: 12px 20px 12px 40px;
        margin-left: -28px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-desc {
        font-size: 12px;
        line-height: 20px;
    }

    .wrap .content .section.section2 .quick-slide {
        margin-bottom: 40px;
    }

    .wrap .content .section.section2 .quick-slide .quick-swiper .swiper-wrapper .swiper-slide a img {
        height: 105px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list {
        gap: 15px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item {
        width: 170px;
        height: 400px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header {
        padding: 25px 25px 18px 18px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header .accordion-title {
        font-size: 20px;
        width: 100px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content {
        padding: 0 25px 0 25px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-desc {
        margin-bottom: 50px;
        height: 130px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-desc p {
        font-size: 13px;
        line-height: 26px;
    }

    .wrap .content .section.section3 {
        padding-top: 35px;
        padding-bottom: 40px;
    }

    .wrap .content .section.section3 .discussion-list {
        gap: 15px;
        justify-content: space-between;
    }

    .wrap .content .section.section3 .discussion-list li {
        width: calc(25% - 15px);
        max-width: 590px;
    }

    .wrap .content .section.section3 .discussion-list li a {
        padding: 15px;
        padding-bottom: 20px;
    }

    .wrap .content .section.section3 .discussion-list li a .img-box {
        height: 155px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont {
        padding-top: 15px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top {
        padding-bottom: 15px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top h6 {
        height: 52px;
        font-size: 17px;
        line-height: 26px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top .time {
        margin-top: 12px;
        font-size: 14px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-text {
        font-size: 13px;
        line-height: 20px;
    }

    .wrap .content .section.section4 {
        padding-top: 35px;
        padding-bottom: 32px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper {
        padding-bottom: 35px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide {
        margin-right: 30px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box {
        width: 60px;
        height: 60px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box .day {
        font-size: 20px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box .month-year {
        font-size: 11px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box {
        padding: 50px 25px 20px 25px;
        margin-top: -30px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box .viewpoint-title {
        margin-bottom: 10px;
        height: 44px;
        font-size: 16px;
        line-height: 22px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box .viewpoint-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .wrap .content .section.section5 {
        padding-top: 50px;
        padding-bottom: 140px;
    }

    .wrap .content .section.section5 .img-box {
        height: 120px;
    }

    .wrap .content .section.section6 {
        padding-top: 110px;
        padding-bottom: 80px;
        margin-top: -110px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper {
        padding-bottom: 35px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li {
        width: 20%;
        height: 80px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li a img {
        max-width: 80%;
        max-height: 80%;
    }

    .wrap .content .section.section6 .link-slide .link-nav-prev,
    .wrap .content .section.section6 .link-slide .link-nav-next {
        width: 32px;
        height: 95px;
    }

    .wrap .content .section.section6 .link-slide .link-nav-prev {
        left: -32px;
    }

    .wrap .content .section.section6 .link-slide .link-nav-next {
        right: -32px;
    }

    .property-slide {
        width: 600px;
    }

    .section11 .property-section {
        padding: 15px 20px;
        padding-right: 30px;
        width: calc(100% - 630px);
        background-size: 60%;
    }

    .wrap .content .page-content .five-list li {
        height: 187px;
    }

    .wrap .content .page-content .six-list li {
        height: 183px;
    }

    .partynews-section {
        gap: 20px 15px;
    }

    .partynews-group {
        width: calc((100% - 15px) / 2);
    }

    .partynew-list li a {
        max-width: 78%;
    }
}

@media screen and (min-width: 0px) and (max-width: 768px) {
    .w1400 {
        width: calc(100% - 80px);
    }

    .wrap .header {
        position: relative;
        padding: 20px 0;
        height: auto;
    }

    .wrap .header .logo img {
        height: 40px;
    }

    .wrap .header .search-btn,
    .wrap .header .wechat-wrap {
        display: none;
    }

    .wrap .header .search-wrap {
        position: inherit;
        position: initial;
    }

    .wrap .header .search-box {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        border: 1px solid #eee;
        z-index: 99;
    }

    .wrap .header .search-box input {
        opacity: 1;
    }

    .wrap .header .m-search-btn {
        display: inline-block;
        width: 22px;
        height: 22px;
        background: url(../images/icon1_2.png) center no-repeat;
        background-size: 22px;
        cursor: pointer;
    }

    .wrap .header .m-nav-btn {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url(../images/icon3.png) center no-repeat;
        background-size: 20px;
        cursor: pointer;
    }

    .wrap .banner .banner-swiper .swiper-button-next,
    .wrap .banner .banner-swiper .swiper-button-prev {
        width: 30px;
    }

    .wrap .banner .banner-swiper .swiper-button-next img,
    .wrap .banner .banner-swiper .swiper-button-prev img {
        max-width: 100%;
    }

    .wrap .banner .banner-swiper .swiper-button-prev {
        left: 10px;
    }

    .wrap .banner .banner-swiper .swiper-button-next {
        right: 10px;
    }

    .wrap .content .section.section1 {
        background: none;
    }

    .wrap .content .section.section1 .w1400 {
        width: 100%;
    }

    .wrap .content .section.section1 .news-slide,
    .wrap .content .section.section1 .news-tab {
        float: none;
        padding: 0 40px;
        width: 100%;
    }

    .wrap .content .section.section1 .news-slide {
        margin-bottom: 30px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .img-box {
        height: 412px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-title {
        font-size: 16px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-desc {
        font-size: 14px;
    }

    .wrap .content .section.section2 .quick-slide .quick-swiper .swiper-wrapper .swiper-slide a img {
        height: 65px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        width: max-content;
        min-width: 100%;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item {
        flex-shrink: 0;
        width: 190px;
        height: auto;
        min-height: 400px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header {
        padding: 20px 20px 15px 20px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header .icon-box {
        margin-bottom: 10px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header .icon-box img {
        filter: brightness(0) invert(1);
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-header .accordion-title {
        font-size: 18px;
        color: #fff;
        width: auto;
        line-height: 1.3;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content {
        flex: 1;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-desc {
        margin-bottom: 20px;
        height: auto;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item .accordion-content .content-inner .content-desc p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active .accordion-header .accordion-title {
        font-size: 24px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion::-webkit-scrollbar {
        height: 6px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion::-webkit-scrollbar-thumb {
        background: #0E5DBE;
        border-radius: 3px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion::-webkit-scrollbar-thumb:hover {
        background: #0E5DBE;
    }

    .wrap .content .section.section3 .discussion-list {
        gap: 10px;
    }

    .wrap .content .section.section3 .discussion-list li {
        width: calc(25% - 10px);
    }

    .wrap .content .section.section3 .discussion-list li a {
        padding: 10px;
        padding-bottom: 15px;
    }

    .wrap .content .section.section3 .discussion-list li a .img-box {
        height: 90px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top h6 {
        height: 44px;
        font-size: 16px;
        line-height: 22px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top .time {
        margin-top: 8px;
    }

    .wrap .content .section.section5 {
        padding-top: 40px;
        padding-bottom: 55px;
        background-size: 100% auto;
    }

    .wrap .content .section.section6 {
        padding-bottom: 40px;
    }

    .section11 {
        display: block;
    }

    .property-slide {
        width: 100%;
    }

    .property-slide .slide-top .swiper-slide {
        height: 450px;
    }

    .property-slide .slide-bottom .swiper-slide img {
        height: 76px;
    }

    .property-slide .slide-bottom .swiper-slide.swiper-slide-thumb-active img {
        height: 74px;
    }

    .section11 .property-section {
        margin-top: 25px;
        width: 100%;
        background-size: 38%;
    }

    .wrap .content .page-content .submenu-bar {
        display: block;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 16px;
        color: #333;
        background: url(../images/icon3.png) left center no-repeat;
        background-size: 20px;
    }

    .wrap .content .page-content .mobile-cover {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .wrap .content .page-content .sidenav {
        position: fixed;
        z-index: 2000;
        top: 0;
        left: -60%;
        width: 60%;
        bottom: 0;
        overflow-y: auto;
        background-color: #fff;
        transition: left 0.6s;
    }

    .wrap .content .page-content .cont-right {
        width: 100%;
        float: none;
    }

    .wrap .content .page-content .page-title h6 {
        font-size: 18px;
    }

    .wrap .content .page-content .page-title img {
        max-height: 30px;
    }

    .wrap .content .page-content .first-list {
        margin-top: 0;
    }

    .wrap .content .page-content .first-list li {
        padding: 20px 0;
    }

    .wrap .content .page-content .first-list li .item-cont h6 {
        font-size: 16px;
    }

    .wrap .content .page-content .first-list.two li .item-cont {
        margin-left: 0;
        margin-right: 135px;
    }

    .wrap .content .page-content .two-list {
        margin-top: 20px;
    }

    .wrap .content .page-content .four-list li {
        padding: 15px;
        height: 75px;
    }

    .wrap .content .page-content .four-list li .content-left .title {
        font-size: 16px;
    }

    .wrap .content .page-content .four-list li .content-left .text {
        font-size: 14px;
    }

    .wrap .content .page-content .four-list li .btn-right {
        padding: 0 10px;
        height: 35px;
    }

    .wrap .content .page-content .four-list li .btn-right span {
        font-size: 14px;
    }

    .wrap .content .page-content .five-list {
        margin-top: 20px;
        gap: 20px 15px;
    }

    .wrap .content .page-content .five-list li {
        width: calc(33.33% - 10px);
        height: 147px;
    }

    .wrap .content .page-content .five-list li .title-overlay,
    .wrap .content .page-content .five-list li .button-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .wrap .content .page-content .five-list li .title-overlay .title-text,
    .wrap .content .page-content .five-list li .button-overlay .title-text {
        font-size: 16px;
    }

    .wrap .content .page-content .six-list {
        margin-top: 20px;
        gap: 20px 15px;
    }

    .wrap .content .page-content .six-list li {
        width: calc(33.33% - 10px);
        height: 143px;
    }

    .wrap .content .page-content .committee-img {
        margin-top: 20px;
    }

    .wrap .content .page-content .section .section-title h6 {
        font-size: 16px;
    }

    .wrap .content .page-content .section .section-title h6 img {
        height: 15px;
    }

    .wrap .content .page-content .section.section7 {
        margin-bottom: 25px;
    }

    .wrap .content .page-content .section.section8 .six-list {
        margin-top: 15px;
    }

    .wrap .content .page-content .TextTitle h5 {
        font-size: 18px;
    }

    .wrap .content .page-content .TextTitle .shar {
        margin-top: 7px;
    }

    .wrap .content .page-content .NewsText {
        font-size: 16px;
        line-height: 1.85;
    }

    .wrap .content .page-content .NewsText.font-large,
    .wrap .content .page-content .NewsText.font-large * {
        font-size: 18px !important;
    }

    .wrap .content .page-content .NewsText.font-medium,
    .wrap .content .page-content .NewsText.font-medium * {
        font-size: 16px !important;
    }

    .wrap .content .page-content .NewsText.font-small,
    .wrap .content .page-content .NewsText.font-small * {
        font-size: 14px !important;
    }

    .wrap .content .page-content .result-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wrap .content .page-content .result-section .result-table {
        width: 100%;
        border-collapse: collapse;
    }

    .wrap .content .page-content .result-section .result-table .table-header th {
        padding: 10px 8px;
        font-size: 14px;
        white-space: nowrap;
    }

    .wrap .content .page-content .result-section .result-table .table-header th:last-child {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }

    .wrap .content .page-content .result-section .result-table .table-body tr td {
        padding: 8px;
        font-size: 14px;
    }

    .wrap .content .page-content .result-section .result-table .table-body tr td:last-child {
        width: 300px;
        min-width: 300px;
        max-width: 300px;
        padding: 8px 12px 8px 8px;
        line-height: 1.4;
        word-wrap: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .wrap .content .page-content .result-section .result-table .table-body tr td.photo-cell .photo-img {
        width: 60px;
        height: 85px;
    }

    .m-nav-pop {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 99999;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: block;
    }

    .m-nav-pop .m-nav-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .m-nav-pop .m-nav-close img {
        width: 100%;
        height: 100%;
    }

    .m-nav-pop .m-nav-list {
        padding: 0;
        list-style: none;
        margin: 0;
        margin-top: 45px;
    }

    .m-nav-pop .m-nav-list>li {
        font-size: 16px;
        color: #666;
        border-bottom: 1px solid #dcdcdc;
    }

    .m-nav-pop .m-nav-list>li>a {
        position: relative;
        display: block;
        padding: 14px 20px;
        color: #666;
        z-index: 99;
    }

    .m-nav-pop .m-nav-list>li.more {
        position: relative;
    }

    .m-nav-pop .m-nav-list>li.more::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 20px;
        width: 16px;
        height: 16px;
        background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNCA2bDQgNCA0LTQiIHN0cm9rZT0iIzY2NiIgc3Ryb2tlLXdpZHRoPSIyIiBmaWxsPSJub25lIi8+PC9zdmc+) center no-repeat;
        background-size: 16px;
        transition: transform 0.3s;
    }

    .m-nav-pop .m-nav-list>li.more.active {
        border-bottom: 0;
    }

    .m-nav-pop .m-nav-list>li.more.active::after {
        transform: rotate(180deg);
    }

    .m-nav-pop .m-nav-list>li .menu-nav {
        display: none;
        background: #f5f5f5;
    }

    .m-nav-pop .m-nav-list>li .menu-nav ul {
        padding: 0;
        list-style: none;
        margin: 0;
    }

    .m-nav-pop .m-nav-list>li .menu-nav ul li {
        border-bottom: 1px solid #e0e0e0;
    }

    .m-nav-pop .m-nav-list>li .menu-nav ul li:last-child {
        border-bottom: none;
    }

    .m-nav-pop .m-nav-list>li .menu-nav ul li a {
        display: block;
        padding: 12px 40px;
        font-size: 14px;
        color: #666;
    }

    .nav {
        display: none;
    }

    .party-img {
        margin-top: 20px;
    }

    .partynews-section {
        margin-top: 20px;
        margin-bottom: 0;
        display: block;
    }

    .partynews-group {
        margin-bottom: 20px;
        width: 100%;
    }

    .partynews-group:last-child {
        margin-bottom: 0;
    }

    .partynews-title {
        padding: 10px 15px;
        height: auto;
    }

    .partynews-title h6,
    .partynews-title2 h6 {
        font-size: 18px;
    }

    .partynews-title2 h6 {
        height: 40px;
        line-height: 40px;
    }

    .partynew-box {
        padding: 11px 15px;
        height: auto;
    }

    .partynew-list li {
        line-height: 32px;
    }

    .partynew-list li a,
    .partynew-list li .time {
        font-size: 16px;
    }
}

@media screen and (min-width: 0px) and (max-width: 640px) {
    .w1400 {
        width: calc(100% - 30px);
    }

    .wrap .header {
        padding: 15px 0;
    }

    .wrap .header .w1400 {
        padding: 0;
    }

    .wrap .header .logo img {
        height: 30px;
    }

    .wrap .banner {
        height: auto;
    }

    .wrap .banner .banner-swiper .swiper-button-next,
    .wrap .banner .banner-swiper .swiper-button-prev {
        display: none;
    }

    .wrap .banner .banner-swiper .w1400 {
        bottom: 10px;
    }

    .wrap .content .section .section-title {
        margin-bottom: 15px;
    }

    .wrap .content .section .section-title h6 {
        font-size: 18px;
    }

    .wrap .content .section .section-title h6 span {
        margin: 0 10px;
    }

    .wrap .content .section .section-title h6 img {
        height: 15px;
    }

    .wrap .content .section .section-title .more img {
        width: 16px;
    }

    .wrap .content .section.section1 {
        margin: 25px 0;
    }

    .wrap .content .section.section1 .news-slide,
    .wrap .content .section.section1 .news-tab {
        padding: 0 15px;
    }

    .wrap .content .section.section1 .news-slide {
        margin-bottom: 15px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .img-box {
        height: 207px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .item-cont {
        margin: 10px 0;
        margin-bottom: 0;
        padding: 10px 15px;
        padding-bottom: 20px;
        height: auto;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .item-cont h6 {
        font-size: 14px;
    }

    .wrap .content .section.section1 .news-slide .swiper-slide .item-cont p {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.5;
    }

    .wrap .content .section.section1 .news-slide .swiper-horizontal>.swiper-pagination-bullets,
    .wrap .content .section.section1 .news-slide .swiper-pagination-bullets.swiper-pagination-horizontal,
    .wrap .content .section.section1 .news-slide .swiper-pagination-custom,
    .wrap .content .section.section1 .news-slide .swiper-pagination-fraction {
        right: 5px;
        bottom: 6px;
    }
    .wrap .content .section.section1 .news-tab .tab-nav{
        margin-bottom: 10px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item .tab-title {
        font-size: 16px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item.active .tab-title {
        font-size: 18px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item.active .tab-title span {
        margin: 0 6px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item.active .tab-title img {
        width: 10px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-item a img {
        width: 16px;
    }

    .wrap .content .section.section1 .news-tab .tab-nav .tab-separator {
        margin: 0 5px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box {
        height: auto;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-title {
        font-size: 14px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item .content-box .news-desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .wrap .content .section.section1 .news-tab .tab-content .news-list .news-item:last-child {
        margin-bottom: 10px;
    }

    .wrap .content .section.section1 .news-tab .tab-content .item-more a {
        font-size: 12px;
    }
    .wrap .content .section.section1 .bg_img{
        bottom: 50%;
    }
    .wrap .content .section.section1 .bg_img img{
        max-width: 50%;
    }

    .wrap .content .section.section2 .bg_img {
        top: -35px;
        right: 0;
        text-align: right;
    }

    .wrap .content .section.section2 .bg_img img {
        max-width: 40%;
    }

    .wrap .content .section.section2 .quick-slide {
        margin-bottom: 22px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item {
        width: 165px;
    }

    .wrap .content .section.section2 .hotspot-section .hotspot-accordion .accordion-list .accordion-item.active .accordion-header .accordion-title {
        font-size: 20px;
    }

    .wrap .content .section.section3 {
        padding: 25px 0;
    }

    .wrap .content .section.section3 .discussion-list li {
        width: 100%;
    }

    .wrap .content .section.section3 .discussion-list li a {
        padding-bottom: 10px;
    }

    .wrap .content .section.section3 .discussion-list li a .img-box {
        height: 205px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont {
        padding-top: 10px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top h6 {
        height: auto;
        font-size: 14px;
        line-height: 22px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-top .time {
        margin-top: 6px;
        font-size: 12px;
    }

    .wrap .content .section.section3 .discussion-list li a .item-cont .item-text {
        font-size: 12px;
    }

    .wrap .content .section.section4 {
        padding: 25px 0;
    }

    .wrap .content .section.section4 .section-title {
        margin-bottom: 15px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper {
        padding-bottom: 25px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .date-box .day {
        font-size: 17px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box {
        padding: 40px 15px 15px 15px;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box .viewpoint-title {
        margin-bottom: 5px;
        height: auto;
        font-size: 14px;
        line-height: 1.5;
    }

    .wrap .content .section.section4 .viewpoint-slide .viewpoint-swiper .swiper-wrapper .swiper-slide .viewpoint-item .content-box .viewpoint-desc {
        font-size: 12px;
    }

    .wrap .content .section.section5 {
        padding-top: 25px;
    }

    .wrap .content .section.section5 .img-box {
        height: auto;
    }

    .wrap .content .section.section6 {
        padding-bottom: 25px;
    }

    .wrap .content .section.section6 .section-title {
        margin-bottom: 15px;
    }

    .wrap .content .section.section6 .link-slide .link-nav-prev,
    .wrap .content .section.section6 .link-slide .link-nav-next {
        display: none;
    }

    .wrap .content .section.section6 .link-slide .link-swiper {
        padding-bottom: 25px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li {
        width: 33.33%;
        height: 55px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:first-child {
        border-radius: 0;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(5) {
        border-radius: 0;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(11) {
        border-radius: 0;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(15) {
        border-radius: 0;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:first-child {
        border-radius: 10px 0 0 0;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(3) {
        border-radius: 0 10px 0 0;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(13) {
        border-radius: 0 0 0 10px;
    }

    .wrap .content .section.section6 .link-slide .link-swiper .swiper-wrapper .swiper-slide .link-list li:nth-child(15) {
        border-radius: 0 0 10px 0;
    }

    .wrap .content .page-content .section.section7 .three-list {
        padding-bottom: 10px;
    }

    .property-slide .slide-top .swiper-slide {
        height: 226px;
    }

    .property-slide .slide-bottom .swiper-slide img {
        height: 57px;
    }

    .property-slide .slide-bottom .swiper-slide.swiper-slide-thumb-active img {
        height: 55px;
    }

    .section11 .property-section {
        margin-top: 20px;
        padding: 15px;
        background-size: 40%;
    }

    .section11 .property-section h6 {
        font-size: 16px;
    }

    .section11 .property-section .info-list {
        margin-top: 15px;
    }

    .section11 .property-section .info-list li {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .wrap .content .page-content .section12 .introduction-section {
        margin-top: 15px;
    }

    .wrap .content .breadcrumb {
        display: none;
    }

    .wrap .content .page-content {
        padding-top: 12px;
        padding-bottom: 20px;
        min-height: calc(100vh - 325px);
    }

    .wrap .content .page-content .submenu-bar {
        font-size: 14px;
    }

    .wrap .content .page-content .first-list li {
        padding: 15px 0;
    }

    .wrap .content .page-content .first-list li .img-box {
        width: 120px;
        height: 78px;
    }

    .wrap .content .page-content .first-list li .item-cont {
        margin-left: 135px;
        margin-top: 0;
    }

    .wrap .content .page-content .first-list li .item-cont h6 {
        font-size: 14px;
    }

    .wrap .content .page-content .first-list li .item-cont p {
        font-size: 12px;
        line-height: 1.5;
    }

    .wrap .content .page-content .first-list li .item-cont p.item-text,
    .wrap .content .page-content .first-list li .item-cont p.item-time {
        margin-top: 2px;
    }

    .wrap .content .page-content .two-list {
        margin-top: 15px;
    }

    .wrap .content .page-content .two-list li {
        margin-bottom: 15px;
    }

    .wrap .content .page-content .two-list li:last-child {
        margin-bottom: 0;
    }

    .wrap .content .page-content .three-list {
        margin-top: 10px;
    }

    .wrap .content .page-content .three-list li {
        padding: 5px 0;
    }

    .wrap .content .page-content .three-list li a .title-section {
        max-width: 70%;
    }

    .wrap .content .page-content .three-list li a .title-section .title {
        font-size: 14px;
    }

    .wrap .content .page-content .three-list li a .time {
        font-size: 14px;
    }

    .wrap .content .page-content .three-list li:nth-child(5n) {
        padding-bottom: 12px;
        margin-bottom: 7px;
    }

    .wrap .content .page-content .three-list li:last-child {
        margin-bottom: 0;
    }

    .wrap .content .page-content .four-list {
        margin-top: 20px;
    }

    .wrap .content .page-content .four-list li {
        width: 100%;
        height: auto;
    }

    .wrap .content .page-content .six-list {
        margin-top: 15px;
        gap: 15px 10px;
    }

    .wrap .content .page-content .six-list li {
        width: calc(50% - 5px);
        height: 110px;
    }

    .wrap .content .page-content .six-list li a .cover-title {
        padding: 7px 10px;
    }

    .wrap .content .page-content .six-list li a .cover-title p {
        font-size: 12px;
    }

    .wrap .content .page-content .five-list {
        margin-top: 15px;
        gap: 15px 10px;
    }

    .wrap .content .page-content .five-list li {
        width: calc(50% - 5px);
        height: 112px;
    }

    .wrap .content .page-content .five-list li .title-overlay {
        height: 60%;
    }

    .wrap .content .page-content .five-list li .title-overlay .title-text {
        padding: 0 10px;
        font-size: 14px;
    }

    .wrap .content .page-content .five-list li .button-overlay {
        gap: 15px;
        height: 40%;
    }

    .wrap .content .page-content .five-list li .button-overlay .btn-item {
        width: 28px;
        height: 28px;
    }

    .wrap .content .page-content .five-list li .button-overlay .btn-item i {
        width: 100%;
        height: 100%;
    }

    .wrap .content .page-content .five-list li .button-overlay .btn-item.zoom-btn i,
    .wrap .content .page-content .five-list li .button-overlay .btn-item.link-btn i {
        background-size: 16px;
    }

    .wrap .content .page-content .section.section9 {
        margin-bottom: 20px;
    }

    .wrap .content .page-content .section.section9 .section-title {
        margin-bottom: 0;
    }

    .wrap .content .page-content .section.section9 .introduction-section {
        margin-top: 10px;
    }

    .wrap .content .section.section9 .six-list {
        margin-top: 15px;
        margin-bottom: 0;
    }

    .property-list li a {
        padding: 10px 15px;
    }

    .property-list li a span {
        font-size: 14px;
    }

    .wrap .content .page-content .pages {
        margin-top: 20px;
    }

    .wrap .content .page-content .pages .pagination li {
        margin-right: 5px;
        width: 30px;
        height: 30px;
        font-size: 12px;
        line-height: 28px;
        border-radius: 3px;
    }

    .wrap .content .page-content .pages .pagination li.first,
    .wrap .content .page-content .pages .pagination li.last {
        display: none;
    }

    .wrap .content .page-content .pages .pagination li.prev,
    .wrap .content .page-content .pages .pagination li.next {
        width: 50px;
    }

    .wrap .content .page-content .nodata-section img,
    .wrap .content .page-content .nodata-section2 img,
    .wrap .content .page-content .nodata-section3 img {
        max-width: 80%;
    }

    .wrap .content .page-content .nodata-section p,
    .wrap .content .page-content .nodata-section2 p,
    .wrap .content .page-content .nodata-section3 p {
        font-size: 14px;
    }

    .wrap .content .page-content .nodata-section p {
        margin-top: 25px;
    }

    .wrap .content .page-content .nodata-section3 img {
        max-width: 200px;
    }

    .wrap .content .page-content .TextTitle {
        padding-top: 15px;
        padding-bottom: 5px;
    }

    .wrap .content .page-content .TextTitle .shar {
        font-size: 12px;
    }

    .wrap .content .page-content .TextTitle .shar .item-info {
        margin: 0 10px;
        line-height: 1.85;
    }

    .wrap .content .page-content .TextTitle .shar .share_items {
        display: none;
    }

    .wrap .content .page-content .NewsText {
        padding-bottom: 10px;
        font-size: 14px;
        border-bottom: 1px dashed #dcdcdc;
    }

    .wrap .content .page-content .NewsText.font-large,
    .wrap .content .page-content .NewsText.font-large * {
        font-size: 16px !important;
    }

    .wrap .content .page-content .NewsText.font-medium,
    .wrap .content .page-content .NewsText.font-medium * {
        font-size: 14px !important;
    }

    .wrap .content .page-content .NewsText.font-small,
    .wrap .content .page-content .NewsText.font-small * {
        font-size: 12px !important;
    }

    .wrap .content .page-content .editor-section {
        display: none;
    }

    .wrap .content .page-content .NewsPages {
        font-size: 12px;
    }

    .wrap .content .page-content .introduction-section {
        margin-top: 20px;
    }

    .wrap .content .page-content .introduction-section .introduction-title {
        font-size: 18px;
    }

    .wrap .content .page-content .introduction-section .introduction-text {
        font-size: 14px;
        line-height: 1.85;
    }

    .wrap .content .page-content .certificate-form {
        padding-top: 20px;
    }

    .wrap .content .page-content .certificate-form .certificate-title {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form {
        max-width: 100%;
        width: 100%;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .el-form-item {
        display: block;
        margin-bottom: 15px;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__label {
        float: none;
        display: block;
        width: 100% !important;
        font-size: 14px;
        text-align: left;
        line-height: 1.85;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content {
        margin-left: 0 !important;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .el-input {
        display: block;
        width: 100%;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .el-input .el-input__inner {
        width: 100%;
        height: 35px;
        line-height: 35px;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .captcha-input .el-input {
        width: calc(100% - 85px);
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .el-form-item .el-form-item__content .captcha-input .el-input .el-input__inner {
        width: 100%;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .form-submit {
        margin-top: 20px;
    }

    .wrap .content .page-content .certificate-form .certificate-search-form .form-submit .el-button {
        font-size: 14px;
    }

    .wrap .content .page-content .result-section {
        margin-top: 25px;
    }

    .pages .form {
        display: none;
    }

    .wrap .footer {
        padding: 15px 0;
        background-size: cover !important;
    }

    .wrap .footer .footer-top {
        padding-bottom: 15px;
        justify-content: center;
    }

    .wrap .footer .footer-top .social-icons li .social-link .icon-circle {
        width: 30px;
        height: 30px;
    }

    .wrap .footer .footer-top .social-icons li .social-link .icon-circle .default-icon img,
    .wrap .footer .footer-top .social-icons li .social-link .icon-circle .hover-icon img {
        max-width: 100%;
    }

    .wrap .footer .footer-bottom {
        padding-top: 15px;
        display: block;
    }

    .wrap .footer .footer-bottom .footer-left p {
        font-size: 12px;
        line-height: 1.65;
    }

    .wrap .footer .footer-bottom .footer-left p span {
        margin-bottom: 5px;
        display: block;
        margin-right: 0;
    }

    .wrap .footer .footer-bottom .footer-right {
        text-align: center;
    }

    .wrap .footer .footer-bottom .footer-right img {
        height: 50px;
    }

    .el-message {
        min-width: 80% !important;
    }

    .partynew-box {
        padding: 8px 15px;
    }

    .partynew-list li {
        line-height: 30px;
    }

    .partynew-list li a,
    .partynew-list li .time {
        font-size: 14px;
    }

    .partynew-list li a {
        max-width: 69%;
    }
}

/* el-message 水平垂直居中 */
.el-message {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    position: fixed !important;
}