.home-banner {
    height: 100vh;
}

.home-banner .home-banner__inner {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.home-banner-swiper .swiper-scroll-tip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    width: 20px;
    animation: scroll-tip-animation 1.5s infinite;
}

@keyframes scroll-tip-animation {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    20% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    60% {
        transform: translate(-50%, 10px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 14px);
        opacity: 0;
    }
}

.home-banner-swiper .swiper-slide img {
    height: 100vh;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.home-banner-swiper .home-banner-pagination {
    bottom: 24px !important;
}

.home-banner-swiper .swiper-pagination-bullet {
    height: 0.08rem;
    width: 0.16rem;
    background-color: rgba(254, 253, 252, .7);
    border-radius: 5px;
    transition: .4s;
}

.home-banner-swiper .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    width: 0.08rem;
    border-radius: 50%;
    box-shadow: 0 0 0.08rem 0 rgba(37, 97, 233, .5);
}

.section-title-bar {
    padding-top: 0.6rem;
    padding-bottom: 0.42rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.section-title {
    font-size: 0.30rem;
    color: var(--theme-color);
    margin-right: 0.2rem;
    font-weight: normal;
    position: relative;
    padding-left: 0.15rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.05rem;
    height: 0.24rem;
    background-image: linear-gradient(to bottom, #3ec2ff, #225ee9);
}

.news-center-container {
    background-color: #fff;
    padding-bottom: 0.3rem;
}

.news-tabs {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.honor-download .news-tabs {
    width: 100%;
}

.news-tabs.mobile {
    display: none;
}

.news-tabs.honor {
    display: none;
}

.news-tabs .tab-item a {
    text-decoration: none;
    color: #666;
    font-size: 0.2rem;
    border-right: 1px solid #666666;
    padding: 0 0.1rem;
}

.news-tabs .tab-item:last-child a {
    border-right: none;
}

.news-tabs .tab-item.active a,
.news-tabs .tab-item a:hover {
    color: var(--theme-color);
}

.news-content-top {
    display: flex;
    margin-bottom: 0.4rem;
}

.news-featured {
    width: 5.7rem;
    height: 4.35rem;
    margin-right: 0.26rem;
    position: relative;
}

.news-featured-link {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.news-featured-link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    transition: .4s;
}

.news-featured-link:hover img {
    transform: scale(1.1);
}

.news-featured-link .date {
    position: absolute;
    left: 0.16rem;
    bottom: 1.58rem;
    color: #fff;
    font-size: 0.16rem;
}

.news-featured-link .learn-more {
    position: absolute;
    left: 0.16rem;
    bottom: 1.2rem;
    font-size: 0.16rem;
    font-weight: normal;
    color: #fff;
    padding: 0.04rem 0.12rem;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    transition: .4s;
}

.news-featured-link .learn-more:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    background-color: rgba(0, 0, 0, 0.7);
}

.news-featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(9, 85, 238, 0.7);
    color: #fff;
    padding: 0.14rem 0.18rem 0.18rem;
}

.news-featured-info h3 {
    font-size: 0.24rem;
    font-weight: bold;
    margin-bottom: 0.08rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news-featured-info .description {
    font-size: 0.18rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-right {
    display: grid;
    flex: 1;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.news-item-small {
    display: flex;
    height: 1.35rem;
}

.news-item-small a {
    display: block;
}

.news-item-small .news-item-left {
    width: 1.78rem;
    overflow: hidden;
    margin-right: 0.15rem;
}

.news-item-small .news-item-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: .4s;
}

.news-item-small:hover .news-item-left img {
    transform: scale(1.1);
}

.news-item-small .news-item-right {
    flex: 1;
    position: relative;
    padding: 0.02rem 0;
}

.news-item-small .news-item-right h4 {
    font-size: 0.2rem;
    font-weight: normal;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .4s;
}

.news-item-small:hover .news-item-right h4 {
    color: var(--theme-color);
}

.news-item-small .news-item-right p {
    font-size: 0.16rem;
    color: #666;
    margin-bottom: 0.08rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-right .news-meta {
    position: absolute;
    bottom: 0.12rem;
    left: 0;
    display: flex;
    align-items: center;
    font-size: 0.16rem;
    color: #999;
}

.news-item-right .news-meta .tag {
    background-color: #fff;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 0.04rem 0.1rem;
    border-radius: 0.04rem;
    font-size: 0.14rem;
    margin-right: 0.12rem;
}

.news-content-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-block {
    background-color: #fff;
}

.info-block.notifications {
    margin-right: 0.2rem;
    min-width: 8.2rem;
}

.info-block .section-content {
    display: flex;
}

.info-block .section-title-bar {
    padding: 0.2rem 0;
}

.info-block.regulations {
    flex: 1;
}

.info-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.14rem;
}

.info-block-header h3 {
    font-size: 0.22rem;
    color: #fff;
    font-weight: bold;
    background-color: var(--theme-color);
    padding: 0.08rem 0.26rem;
}

.info-block-header a {
    display: flex;
    align-items: center;
    font-size: 0.18rem;
    color: var(--theme-color);
}

.info-block-header a:hover {
    text-decoration: underline;
}

.info-block-header a img {
    margin-left: 0.04rem;
    width: 0.16rem;
    height: 0.06rem;
}

.info-block-left {
    display: block;
    width: 2.5rem;
    height: 3.43rem;
    min-width: 2.5rem;
    margin-right: 0.2rem;
}

.info-block-left a {
    display: block;
    position: relative;
    height: 100%;
}

.info-block-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.info-block-left img {
    transition: .4s;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.info-block-left:hover img {
    transform: scale(1.1);
}

.info-block-left p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.18rem;
    padding: 0.16rem 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #fff;
    background-color: rgba(9, 85, 238, 0.7);
}

.info-block-right {
    flex: 1;
    padding-right: 0.2rem;
}

.info-block-right .section-title-bar {
    padding: 0.2rem 0;
}

.info-list {
    flex: 1;
    list-style: none;
    padding-left: 0.2rem;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d1d1d1;
    position: relative;
    margin-bottom:  0.08rem;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.06rem;
    height: 0.06rem;
    background-color: var(--theme-color);
    border-radius: 50%;
}

.info-list li:last-child {
    border-bottom: none;
        margin-bottom:  none;
}

.info-list li a {
    text-decoration: none;
    color: #555;
    font-size: 0.20rem;
    margin-right: 0.2rem;
    padding-left: 0.14rem;
    height: 0.5rem;
    line-height: 0.48rem;
    flex: 1;
    width: 3.45rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-list li a:hover {
    color: #1a4a9f;
    text-decoration: underline;
}

.info-list li span {
    font-size: 0.14rem;
    color: #999;
    white-space: nowrap;
}

/* 新闻中心模块 END */


/* 党建工作模块 START */
.party-container {
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.party-container .main_container {
    background-color: rgba(240, 240, 240, .5);
    padding-bottom: 0.58rem;
}

.party-swiper {
    position: relative;
    overflow: hidden;
}

.party-swiper>.swiper-wrapper {
    width: 8.4rem;
    position: relative;
}

.party-swiper .party-item {
    width: 8.4rem;
    height: 4.72rem;
    overflow: hidden;
}

.party-swiper .party-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: .4s;
}

.party-swiper .party-item:hover img {
    transform: scale(1.1);
}

.party-swiper .party-text-bg {
    color: #fff;
    font-size: 0.74rem;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 0.94rem;
    transform: translateX(1.6rem);
}

.party-swiper .party-text-bg p {
    margin: 0;
    line-height: 0.9em;
}

.party-swiper .arrow {
    border: none;
    z-index: 12;
    background-color: var(--theme-red-color);
    color: #fff;
}

.party-swiper:hover .arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.party-swiper .party-prev-arrow {
    left: 10px;
}

.party-swiper .party-next-arrow {
    right: 10px;
}

.party-swiper .party-pagination {
    bottom: 0.06rem;
    transform: translateX(2.1rem);
}

.party-swiper .swiper-pagination-bullet {
    background-color: rgba(237, 27, 35, .5);
    width: 0.16rem;
    height: 0.06rem;
    border-radius: 0.06rem;
    transition: .4s;
}

.party-swiper .swiper-pagination-bullet-active {
    background-color: var(--theme-red-color);
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0px 2px rgba(206, 45, 71, .2);
}

/* 右下角信息框 */
.info-panel {
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 0.32rem;
    z-index: 10;
    width: 7rem;
    height: 2.2rem;
    background: url("/assets/index//images/index/party_box.png") no-repeat center center;
    background-size: 100% 100%;
}

.info-swiper {
    position: absolute;
    left: 0.9rem;
    top: 1rem;
    overflow: hidden;
    width: 5.6rem;
    height: 0.9rem;
}

.info-swiper>.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.info-swiper .info-title {
    font-size: 0.26rem;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.info-swiper .info-content {
    color: #616161;
    font-size: 0.18rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}


.info-swiper .swiper-slide-active {
    animation: slideInRight 0.6s ease-out;
}

.info-swiper .swiper-slide-active .info-title {
    animation: slideInRight 0.6s ease-out 0.2s both;
}

.info-swiper .swiper-slide-active .info-content {
    animation: slideInRight 0.6s ease-out 0.34s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 党建工作模块 END */

/* 会员展示模块 START */
.member-container {
    background-color: #fff;
}

.member-swiper {
    overflow: hidden;
    padding-bottom: 0.4rem;
    position: relative;
}

.member-swiper .swiper-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.2rem;
    padding: 0.14rem;
}

.member-swiper .member-item {
    padding: 0.26rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 1px 1px 12px rgba(4, 0, 0, .10);
    border: 1px solid transparent;
    transition: .4s;
    overflow: hidden;
}

.member-swiper .member-item:hover {
    box-shadow: 1px 1px 16px rgba(0, 105, 243, .28);
    border-color: var(--theme-color);
}

.member-swiper .member-item img {
    min-height: 0.72rem;
    max-height: 1.2rem;
    transition: .4s;
}

.member-swiper .swiper-slide .member-item:hover img {
    transform: scale(1.1);
}

.member-swiper .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, .5);
    width: 0.18rem;
    height: 0.06rem;
    border-radius: 0.06rem;
    transition: .4s;
}

.member-swiper .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0px 2px rgba(37, 97, 233, .2);
}

.member-swiper:hover .arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.member-swiper .arrow:hover {
    background-color: #0f39a8;
    color: white;
}

.member-swiper .arrow:active {
    transform: translateY(-50%) scale(.8);
}

.arrow.swiper-button-disabled:hover {
    background-color: #eff0f2;
    color: #666;
}

.arrow svg {
    fill: currentColor;
}


.member-prev-arrow {
    left: 10px;
}

.member-next-arrow {
    right: 10px;
}

/* 会员展示模块 END */

/* 走进协会模块 START */
.right-banner {
    min-width: 400px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex
;
}

.right-banner a {
    display: flex;
    height: 100%;
}

.right-banner a img {
    width: 100%;
    height: 100%;
    transition: .4s;
    object-fit: contain;
}

.right-banner-text {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #4f5255b0;
    padding: 0.18rem 0.5rem;
    font-size: 0.2rem;
    color: #fff;
    z-index: 2;
    text-wrap: nowrap;
}

.about-container {
    position: relative;
    background-color: #fff;
}


.about-content {
    display: flex;
    padding-bottom: 0;
}

.about-inner {
    padding-bottom: 0.3rem;
    width: 100%;
    position: relative;
    display: flex;
}

.about-content-left {
    margin-right: 0.2rem;
    width: 5.8rem;
}

.about-content-title {
    font-size: 0.32rem;
    color: #000;
    margin-bottom: 0.24rem;
}

.about-content-tag {
    display: inline-flex;
    border: 1px solid var(--theme-color);
    padding: 0.06rem 0.08rem;
    border-radius: 0.04rem;
    font-size: 0.18rem;
    color: var(--theme-color);
    margin-bottom: 0.15rem;
}

.about-content-desc {
    font-size: 0.16rem;
    margin-bottom: 0.34rem;
    color: #363636;
}

.about-content-btn a {
    font-size: 0.16rem;
    font-weight: normal;
    color: #000;
    padding: 0.08rem 0.16rem;
    border-radius: 4px;
    background-color: #ffd92a;
    transition: .4s;
}

.about-content-btn a:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    background-color: #e0be29;
}

.blue-mask {
    position: relative;
    z-index: 1;
    background: #116df1;
    /*background: url("/assets/index//images/index/blue-mask.png") no-repeat center center;*/
    background-size: 100% 100%;
    padding: 0.2rem 0 0.2rem;
}

.blue-mask .main_container {
    background-color: transparent;
}

.count-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.count-item-title {
    font-size: 0.4rem;
    color: #ffd92a;
    font-weight: bold;
}

.count-item-title small {
    font-size: 0.14rem;
    font-weight: normal;
}

.count-block-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.06rem;
    margin-bottom: 0.06rem;
}

.count-block-group span {
    display: block;
    width: 0.04rem;
    height: 0.05rem;
    background-color: #ffd92a;
    opacity: 0.5;
}

.count-block-group span.solid {
    opacity: 1;
}

.count-item-desc {
    font-size: 0.2rem;
    color: #fff;
    text-align: center;
}

.count-item-dashed {
    margin: 0 0.35rem;
    height: 0.56rem;
    border-right: 1px dashed #fff;
}

/* 走进协会模块 END */

/* 产品中心模块START */
.product-container {
    background-color: #f7f7f7;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.2rem;
}

.product-item {
    background-color: #fff;
    border: 1px solid #eee;
    text-align: center;
    box-sizing: border-box;
}

.product-item-img {
    width: 100%;
    height: 2.5rem;
    overflow: hidden;
    position: relative;
}

.product-item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: .4s;
}

.product-item-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.16rem;
    opacity: 0;
}

.product-item:hover .product-item-mask {
    opacity: 1;
}

.product-item:hover .product-item-img img {
    transform: scale(1.1);
}

.product-item p {
    padding: 0.1rem;
    background-color: #007bff;
    color: #fff;
    margin: 0;
    font-size: 0.16rem;
}

/* 产品中心模块END */

/* 荣誉榜和下载中心模块START */
.honor-download-container {
    padding-bottom: 0.5rem;
    background-color: #f7f7f7;
}

.honor-download {
    display: flex;
}

.honor-download>section {
    width: 50%;
}

.honor-roll {
    margin-right: 0.2rem;
}

.honor-roll .download-list {
    width: 100%;
    display: none;
}

.download-list li:last-child {
    margin-bottom: 0;
}

.honor-roll .download-list.active {
    display: block;
}

.honor-item {
    background-color: #fff;
    border: 1px solid #eee;
    width: calc(50% - 0.1rem);
    height: 5.2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: .4s;
    position: relative;
}

.honor-item:hover {
    border-color: var(--theme-color);
}

.honor-item:hover .honor-item-img img {
    transform: scale(1.1);
}

.honor-item-img {
    height: 2.3rem;
    margin-bottom: 0.1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-item img {
    transition: .4s;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.honor-content {
    padding: 0 0.15rem 0.18rem;
}

.honor-content h3 {
    font-size: 0.20rem;
    margin-bottom: 0.1rem;
    color: #000;
    transition: .4s;
}

.honor-item:hover .honor-content h3 {
    color: var(--theme-color);
}

.honor-content>p {
    border-top: 1px solid #d1d1d1;
    padding-top: 0.06rem;
    font-size: 0.18rem;
    color: #666;
    margin-bottom: 0.35rem;
}

.honor-meta {
    position: absolute;
    left: 0.15rem;
    right: 0.15rem;
    bottom: 0.18rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.14rem;
    color: #999;
}

.honor-meta-left {
    text-align: center;
}

.honor-meta-left p {
    font-size: 0.32rem;
    color: #333;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 0.06rem;
}

.honor-meta-left span {
    font-size: 0.14rem;
    color: #666;
}

.honor-meta-right img {
    width: 0.12rem;
    height: auto;
    transform: translateX(-0.06rem);
    transform: .4s;
}

.honor-item:hover .honor-meta-right img {
    transform: translateX(0);
}

.download-list {
    list-style: none;
    padding: 0.1rem 0.16rem 0;
    height: 4.2rem;
    margin: 0;
    background-color: #fff;
}

.download-list li {
    margin-bottom: 0.08rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.download-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.download-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
    padding-left: 0.2rem;
    height: 0.5rem;
    line-height: 0.5rem;
}

.download-item:hover .download-title {
    color: #007bff;
}

.download-title {
    transition: .4s;
    font-size: 0.20rem;
    position: relative;
}

.download-title::before {
    content: "";
    width: 0.06rem;
    height: 0.06rem;
    background-color: var(--theme-color);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-0.14rem, -50%);
}

.download-meta {
    font-size: 0.18rem;
    color: #999;
    white-space: nowrap;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 0.05rem;
    padding: 0.08rem 0.12rem;
    color: #fff;
    border-radius: 6px;
    font-size: 0.18rem;
    transition: 0.4s;
    background: var(--theme-color);
}

.download-button__icon {
    width: 0.2rem;
    height: 0.2rem;
}

.download-button:active {
    transform: scale(0.98);
    box-shadow: 0 0.05rem 0.16rem -0.05rem hsla(218, 62%, 51%, 0.5);
}

/* 荣誉榜和下载中心模块END */

/* 投稿箱模块START */
.submission-container {
    padding-top: 0.5rem;
    background-color: #f7f7f7;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 8.7rem;
}

.form-header {
    position: relative;
    text-align: center;
    font-size: 0.24rem;
    margin-bottom: 0.4rem;
    font-weight: bold;
}

.form-header h2 {
    color: #333;
    position: relative;
    z-index: 1;
}

.form-header h4 {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1em;
    letter-spacing: 0.04rem;
    font-size: 0.82rem;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}


.form-group {
    position: relative;
    margin-bottom: 0.32rem;
    display: flex;
    align-items: center;
}

.form-label {
    display: block;
    width: 1.1rem;
    font-size: 0.18rem;
    color: #333;
    font-weight: normal;
}

.form-input {
    flex: 1;
    padding: 0.18rem 0.2rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 0.16rem;
    transition: .3s;
    background: #fff;
    outline: none;
}

.form-input:focus {
    border-color: #4285f4;
}

.form-input.error {
    border-color: #ff4444;
}

.form-textarea {
    flex: 1;
    min-height: 120px;
    resize: none;
    background-color: #fff;
    border-radius: 0.06rem;
    padding: 0.1rem;
    transition: .4s;
    border: 2px solid transparent;
    position: relative;
}

.form-textarea.dragover {
    border-style: dashed;
    border-color: #409eff;
    background: rgb(235.9, 245.3, 255) !important;
}

.form-textarea.error {
    border-color: #ff4444 !important;
}

.form-textarea:focus-within {
    border-color: var(--theme-color);
}

.form-textarea .form-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    padding: 0.1rem;
    height: 1.4rem;
}

.form-textarea.focus {
    border-color: var(--theme-color);
}

.file-content {
    display: flex;
    gap: 0.44rem;
    padding: 0.2rem 0.2rem 0;
}

.file-list {
    flex: 1;
}

.upload-area {
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.upload-text {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 8px;
    padding: 0.06rem 0.16rem;
    display: flex;
    align-items: center;
    gap: 0.04rem;
    font-size: 0.14rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.upload-text img {
    width: 0.16rem;
}

.upload-hint {
    color: #999;
    font-size: 14px;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.08rem 0.18rem;
    font-size: 0.16rem;
    background: #f7f7f9;
    border-radius: 8px;
    margin-bottom: 0.1rem;
}

.file-item:last-child {
    margin-bottom: 0;
}

.file-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.file-name {
    color: #333;
    font-size: 0.16rem;
}

.file-size {
    color: #666;
    font-size: 12px;
    margin-left: 8px;
}

.remove-file {
    background: none;
    border: 1px solid #666;
    color: #666;
    cursor: pointer;
    font-size: 0.14rem;
    border-radius: 50%;
    width: 0.16rem;
    height: 0.16rem;
    display: flex;
    align-items: center;
    transition: .4s;
    justify-content: center;
}

.remove-file:hover {
    color: #000;
    border-color: #000;
}

.submit-btn {
    width: 100%;
    padding: 0.18rem;
    background: #0955ee;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.18rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #3367d6;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.error-message {
    color: #ff4444;
    font-size: 0.14rem;
    margin-top: 8px;
    display: none;
    position: absolute;
    bottom: 0;
    left: 1.1rem;
    right: 0;
    transform: translateY(calc(100% + 0.04rem));
}

.success-message {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 0.15rem;
    border-radius: 6px;
    margin-bottom: 0.2rem;
    font-size: 0.18rem;
    display: none;
}

.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4285f4;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .form-container {
        padding: 20px;
    }

    .header {
        font-size: 20px;
        padding: 20px 0;
    }
}

/* 投稿箱模块END */

@media (max-width: 992px) {

    /* 首图banner */
    .home-banner {
        height: 350px;
    }

    .home-banner .home-banner__inner {
        height: 100%;
    }

    .home-banner-swiper .home-banner-pagination {
        bottom: 0.14rem !important;
    }

    .home-banner-swiper .swiper-slide img {
        height: 350px;
    }

    .party-text-bg {
        display: none;
    }

    .news-content-top {
        flex-direction: column;
    }

    .news-featured,
    .news-list-right {
        width: 100%;
    }
    
    .news-featured {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .news-item-right .news-meta .tag {
        font-size: 0.16rem;
    }


    .news-item-right .news-meta .date {
        font-size: 0.22rem;
    }

    .news-item-small {
        height: 1.8rem;
        margin-bottom: 15px;
    }
    
    .news-item-small::last-child {
        margin-bottom: 0;;
    }

    .news-item-small .news-item-left {
        width: 2.7rem;
        margin-right: 15px;
    }

    .news-content-bottom {
        flex-direction: column;
        width: 90vw;
    }

    .news-item-small .news-item-right h4 {
        font-size: 0.28rem;
    }

    .news-item-small .news-item-right p {
        font-size: 0.2rem;
    }

    .section-title-bar {
        gap: 0.1rem;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
        flex-direction: row;
        align-items: center;
    }

    .news-center-container .news-tabs,
    .honor-roll .news-tabs {
        display: none;
    }

    .news-tabs {
        flex-wrap: wrap;
    }

    .news-tabs.mobile,
    .news-tabs.honor {
        display: flex;
        position: static;
        transform: none;
        padding-bottom: 0.2rem;
        font-size: 0.2rem;
    }

    .news-tabs.honor {
        padding-top: 0.3rem;
    }

    .member-swiper .swiper-slide {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .info-block-right {
        width: 100%;
        padding-bottom: 0;
    }

    .submission-container .form-header h4 {
        display: none;
    }

    /* 党建工作轮播图 */
    .party-swiper>.swiper-wrapper img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }

    .party-swiper {
        border-radius: 12px;
    }

    .info-panel {
        position: static;
        z-index: 1;
        background: none;
        width: 100%;
        height: auto;
        padding: 0.2rem 0.24rem;
        background-color: #cf2443;
        color: #fff;
    }

    .info-panel .info-title {
        font-size: 0.28rem;
        padding-bottom: 0.1rem;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 0.1rem;
    }

    .info-panel .info-content {
        color: #fff;
        font-size: 0.24rem;
        -webkit-line-clamp: 1;
    }

    .info-panel .info-swiper {
        width: 100%;
        height: 1rem;
        position: static;
    }

    .party-swiper .party-item {
        width: 100%;
    }

    .party-swiper .party-pagination {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1.4rem;
    }

    .party-swiper .party-pagination .swiper-pagination-bullet {
        width: 0.12rem;
        height: 0.12rem;
        background: rgba(255, 255, 255, 0.6);
        opacity: 1;
        margin: 0 8px !important;
        transition: all 0.3s ease;
    }

    .party-swiper .party-pagination .swiper-pagination-bullet-active {
        background: #dc143c;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
    }

    /* 走进协会 */
    .about-content {
        padding-top: 0.3rem;
        padding-bottom: 0.4rem;
    }

    .about-inner {

        display: block;
    }

    .right-banner {
        margin-top: 0.2rem;
        position: relative;
        width: 100%;
        height: 3.8rem;
    }

    .right-banner-content {
        height: 100%;
    }

    .right-banner-text {
        padding-left: 0.3rem;
        font-size: 0.28rem;
    }

    .about-content-title {
        font-size: 0.42rem;
    }

    .about-content-tag {
        font-size: 0.2rem;
        padding: 0.04rem 0.08rem;
    }

    .about-content-desc {
        font-size: 0.2rem;
    }

    .about-content-left {
        width: 100%;
    }

    .about-content-btn a {
        font-size: 0.24rem;
    }

    .right-banner .right-banner-img {
        position: static;
        width: 100%;
        height: 100%;
    }

    /* 蓝色遮罩数字增加东海 */
    .count-list {
        justify-content: center;
        gap: 0.1rem;
        width: 100%;
    }

    .count-item-title {
        font-size: 0.5rem;
    }

    .count-item-title small {
        font-size: 0.24rem;
    }

    .count-item-desc {
        font-size: 0.2rem;
    }

    .blue-mask {
        padding: 0.3rem 0 0.3rem;
    }


    /* 产品中心 */
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 0.2rem;
    }

    .product-item p {
        font-size: 0.24rem;
    }

    /* 光荣榜 */

    .honor-download {
        flex-direction: column;
    }

    .honor-download>section {
        width: 100%;
    }

    .news-tabs {
        top: 50%;
    }

    .news-tabs .tab-item a {
        font-size: 0.12rem;
    }

    .honor-item {
        height: 5.4rem;
    }

    .honor-item-img {
        height: 2.1rem;
    }

    .honor-content h3 {
        font-size: 0.24rem;
    }

    .honor-content>p {
        font-size: 0.2rem;
    }

    .honor-meta {
        align-items: center;
    }

    .honor-meta-left p {
        font-size: 0.4rem;
        margin-bottom: 0;
    }

    .honor-meta-left span {
        font-size: 0.2rem;
    }

    .honor-meta-right img {
        width: 0.3rem;
    }

    /* 下载榜 */
    .download-list {
        height: auto;
        padding-bottom: 0.1rem;
    }

    .download-item {
        height: 50px;
        padding-left: 0.38rem;
        line-height: 50px;
        flex: 1;
    }
    .download-title::before {
        width: 0.12rem;
        height: 0.12rem;
        left: -0.15rem;
    }
    .download-title {
        font-size: 0.28rem;
    }

    .download-meta {
        font-size: 0.2rem;
    }

    .download-button {
        font-size: 0.2rem;
    }

    .download-button__icon {
        width: 0.2rem;
        height: 0.2rem;
    }

    /* 投稿箱 */
    .form-container {
        padding: 0;
    }

    .form-group {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-label {
        padding-left: 0.08rem;
        font-size: 0.28rem;
        width: -moz-fit-content;
        width: fit-content;
        margin-bottom: 0.1rem;
    }

    .form-input,
    .form-textarea {
        width: 100%;
    }

    .error-message {
        left: 0.08rem;
        font-size: 0.18rem;
    }

    .file-content {
        padding: 0;
        gap: 0.2rem;
    }

    .remove-file {
        font-size: 0.2rem;
        width: 0.24rem;
        height: 0.24rem;
    }

    .upload-text {
        font-size: 0.24rem;
        gap: 0.08rem;
    }

    .upload-text img {
        width: 0.28rem;
    }

    .file-item .file-name {
        font-size: 0.18rem;
    }
}

@media (max-width: 768px) {
    .info-block {
        width: 100%;
        
        flex-direction: column;
        min-width: inherit!important;
    }

    .info-block.regulations {
        width: 100%;
    }
    .info-block-left {
        margin-right: 0;
        margin-bottom: 12px;
        height: 400px;
    }
    .info-block .section-content {
        flex-direction: column;
    }
    .section-title {
        font-size: 0.4rem;
    }

    .section-title::before {
        height: 0.34rem;
    }

    .news-featured-info h3 {
        font-size: 0.2rem;
    }

    .info-block-right {
        flex-direction: column;
    }

    .info-block-left {
        flex: 0 0 auto;
        min-width: 100%;
    }
    
    .info-block-left p {
        font-size: 0.32rem;
    }

    .info-block-left img {
        width: 100%;
    }

    /* 产品中心 */
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-tabs .tab-item a {
        font-size: 0.28rem;
    }

    .news-featured-info {
        padding: 0.2rem;
    }

    .news-featured-info h3 {
        font-size: 0.3rem;
    }

    .news-featured-info .description,
    .news-featured-info .date {
        font-size: 0.24rem;
    }

    .news-featured-link .date {
        font-size: 0.2rem;
        bottom: 2rem;
    }

    .news-featured-link .learn-more {
        font-size: 0.2rem;
        bottom: 1.5rem;
    }
    
    .right-banner-content {
        margin-top: 0;
    }

    .info-list {
        padding-top: 0.2rem;
        padding-left: 0.1rem;
    }

    .info-list li a {
        line-height: 50px;
        height: 50px;
        padding-left: 0.38rem;
        font-size: 0.3rem;
    }
    
    .info-list li::before {
        width: 0.12rem;
        height: 0.12rem;
        left: 0.15rem;
    }

    .info-list li span {
        font-size: 13px;
    }

    .info-block {
        padding: 15px 0;
        margin-right: 0;
        padding-bottom: 10px;
    }

    .info-block-header h3 {
        font-size: 0.28rem;
    }

    .info-block-header a {
        font-size: 0.26rem;
    }

    .info-block-header a img {
        width: 0.2rem;
    }

    .info-block-header {}
}

/* 新闻中心骨架屏样式 */
.news-skeleton {
    display: flex;
    width: 100%;
    gap: 0.26rem;
}

.news-featured-skeleton {
    position: relative;
    width: 5.7rem;
    height: 4.35rem;
}

.skeleton-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-date {
    width: 80px;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: absolute;
    left: 20px;
    bottom: 120px;
    border-radius: 2px;
}

.skeleton-title {
    width: 80%;
    height: 30px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: absolute;
    left: 20px;
    bottom: 80px;
    border-radius: 2px;
}

.skeleton-description {
    width: 90%;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: absolute;
    left: 20px;
    bottom: 50px;
    border-radius: 2px;
}

.news-list-right-skeleton {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.15rem;
}

.news-item-small-skeleton {
    display: flex;
}

.skeleton-image-small {
    width: 1.78rem;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-right: 15px;
    border-radius: 4px;
}

.skeleton-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.skeleton-title-small {
    width: 90%;
    height: 0.2rem;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 2px;
}

.skeleton-description-small {
    width: 100%;
    height: 0.3rem;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 2px;
}

.skeleton-meta {
    display: flex;
    gap: 0.2rem;
}

.skeleton-meta::before {
    content: "";
    width: 80px;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 2px;
}

.skeleton-meta::after {
    content: "";
    width: 80px;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 2px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* 错误和空数据提示样式 */
.news-error,
.news-empty {
    width: 100%;
    padding: 50px 0;
    text-align: center;
    color: #888;
    font-size: 16px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/* 移动端适配 */
@media (max-width: 992px) {

    .form-input {
        padding: 0.18rem 0.2rem;
        font-size: 0.24rem;
    }

    .submit-btn {
        padding: 0.2rem 0.24rem;
        font-size: 0.3rem;
    }

    .news-skeleton {
        flex-direction: column;
    }


    .news-featured-skeleton {
        margin-right: 0;
        width: 100%;
    }

    .skeleton-image-small {
        height: 2rem;
        width: 2.3rem;
    }
}