@-webkit-keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.main {
    overflow-x: hidden;
}

.banner {
    --swiper-navigation-size: 50px;
    --swiper-pagination-bottom: 20px;
    --swiper-navigation-color: #fff;
    --swiper-navigation-sides-offset: 20px;
    height: 100dvh;
    user-select: none;
}

@media (max-width: 640px) {
    .banner {
        --swiper-navigation-size: 20px;
        --swiper-pagination-bottom: 5px;
        --swiper-navigation-color: #fff;
        --swiper-navigation-sides-offset: 10px
    }
}

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

.banner-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center
}

.banner-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-swiper .swiper-slide.swiper-slide-active img {
    -webkit-animation: scaleUpDown 2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: scaleUpDown 2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.banner-swiper .swiper-button-next, .banner-swiper .swiper-button-prev {
    padding: 15px;
    background: rgba(0, 0, 0, .25);
    border-radius: 100%;
    width: var(--swiper-navigation-size)
}

.banner-swiper .swiper-button-next:after, .banner-swiper .swiper-button-prev:after {
    font-size: calc(var(--swiper-navigation-size) / 2)
}

.banner-swiper .swiper-button-next:hover, .banner-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, .5)
}

.banner-swiper .swiper-pagination {
    bottom: var(--swiper-pagination-bottom)
}

.banner-swiper .swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    border-radius: 0;
    background: white
}

@media (max-width: 640px) {
    .banner-swiper .swiper-button-next, .banner-swiper .swiper-button-prev {
        padding: 5px
    }

    .banner-swiper .swiper-pagination-bullet {
        width: 20px;
        height: 2px
    }
}

.news-center {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-grid .article-item {
    display: block;
    padding: 2rem;
    border: 2px solid transparent;
    background: #f7f5ed;
}

.article-grid .article-item:hover {
    border-color: var(--text-secondary);
}

.article-grid .article-item:nth-child(2n+1) {
    background: #f3eade;
}

.article-grid .article-item .date-box .monthday {
    color: #999999;
    font-size: 18px;
}

.article-grid .article-item .date-box .year-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    font-size: 13px;
    color: #666666;
}

.article-grid .article-item .date-box .short-line {
    display: block;
    width: 10px;
    height: 3px;
    background: var(--text-secondary);
}

.article-grid .article-item .title {
    color: var(--text-title);
    margin-bottom: 1rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.article-grid .article-item .article-content {
    display: flex;
}

.article-grid .article-item .cover-box {
    width: 100px;
    height: 65px;
    margin-right: 15px;
}

.article-grid .article-item .article-desc {
    flex: 1;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.article-grid .article-item .more {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

/*简介*/
.group-profile {
    background: url("/front/images/texture_bg.png") repeat;
    /* color: var(--text-secondary); */
}

.group-profile .container .group-profile-content {
    display: flex;
}

.group-profile .container .group-profile-content .cover-wrap {
    flex: 1;
    margin-right: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eeeeee;
}

.group-profile-description {
    flex: 1;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 10;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    padding-left: 1rem;
    padding-right: 1rem;
    text-indent: 2rem;
    font-size: .875rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    text-align: justify;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .group-profile-description {
        padding-left: 0;
        padding-right: 0;
        font-size: 1rem;
        line-height: 1.75rem
    }
}

.group-profile-description p {
    margin-bottom: 5px
}

@media (min-width: 640px) {
    .group-profile-description p {
        margin-bottom: 13px
    }
}

.party-mass-work {
    --tw-bg-opacity: 1;
    /*background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));*/

    background-color: rgb(245 245 246 / var(--tw-bg-opacity, 1));
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

@media (min-width: 640px) {
    .party-mass-work {
        padding-top: 5rem;
        padding-bottom: 5rem
    }
}

.party-mass-work__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem
}

@media (min-width: 640px) {
    .party-mass-work__header {
        padding-left: 0;
        padding-right: 0
    }
}

.party-mass-work__header h2 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

@media (min-width: 640px) {
    .party-mass-work__header h2 {
        font-size: 1.875rem;
        line-height: 2.25rem
    }
}

.party-mass-work__header .sub-nav {
    display: none;
    gap: 1.25rem
}

@media (min-width: 768px) {
    .party-mass-work__header .sub-nav {
        display: flex
    }
}

.party-mass-work__header .sub-nav a {
    display: block;
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    padding: .5rem 1.5rem;
    --tw-text-opacity: 1;
    color: rgb(102 102 102 / var(--tw-text-opacity, 1))
}

.party-mass-work__header .sub-nav a:hover, .party-mass-work__header .sub-nav a.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.party-mass-work__body .article-tab-panel {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem
}

@media (min-width: 640px) {
    .party-mass-work__body .article-tab-panel {
        gap: 2.5rem;
        padding-left: 0;
        padding-right: 0;
        padding-top: 2rem
    }
}

@media (min-width: 1024px) {
    .party-mass-work__body .article-tab-panel {
        min-height: 532px;
        flex-direction: row
    }
}

@media (min-width: 1280px) {
    .party-mass-work__body .article-tab-panel {
        min-height: 596px
    }
}

@media (min-width: 1536px) {
    .party-mass-work__body .article-tab-panel {
        min-height: 692px
    }
}

.party-mass-work__body .article-tab-panel.active {
    display: flex
}

.party-mass-work__body .article-list {
    width: 100%
}

@media (min-width: 1024px) {
    .party-mass-work__body .article-list {
        width: 490px
    }
}

@media (min-width: 1280px) {
    .party-mass-work__body .article-list {
        width: 700px
    }
}

.party-mass-work__body .article-list .pic-article {
    position: relative
}

.party-mass-work__body .article-list .pic-article .cover, .party-mass-work__body .article-list .pic-article img {
    display: block;
    height: 180px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media (min-width: 640px) {
    .party-mass-work__body .article-list .pic-article .cover, .party-mass-work__body .article-list .pic-article img {
        height: 272px
    }
}

@media (min-width: 1280px) {
    .party-mass-work__body .article-list .pic-article .cover, .party-mass-work__body .article-list .pic-article img {
        height: 336px
    }
}

@media (min-width: 1536px) {
    .party-mass-work__body .article-list .pic-article .cover, .party-mass-work__body .article-list .pic-article img {
        height: 360px
    }
}

.party-mass-work__body .article-list .pic-article .cover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

.party-mass-work__body .article-list .pic-article .info {
    background-color: #00000080;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

@media (min-width: 640px) {
    .party-mass-work__body .article-list .pic-article .info {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.party-mass-work__body .article-list li .info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: .875rem;
    line-height: 1.25rem
}

@media (min-width: 640px) {
    .party-mass-work__body .article-list li .info {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

.party-mass-work__body .article-list li .info p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    flex: 1 1 0%;
    overflow: hidden
}

.party-mass-work__body .article-list li .info .date {
    font-family: Courier New, Courier, monospace
}

.party-mass-work__body .article-list li:not(.pic-article) {
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.75rem
}

@media (min-width: 1536px) {
    .party-mass-work__body .article-list li:not(.pic-article) {
        padding-top: 25px;
        padding-bottom: 25px
    }
}

.party-mass-work__body .article-list li:not(.pic-article) .info .date {
    font-weight: 400;
    --tw-text-opacity: 1;
    color: rgb(153 153 153 / var(--tw-text-opacity, 1))
}

.party-mass-work__body .article-list li:not(.pic-article) a:hover {
    font-weight: 700;
    color: var(--primary-color)
}

.party-mass-work__body .article-card-list {
    display: none;
    flex: 1 1 0%
}

@media (min-width: 640px) {
    .party-mass-work__body .article-card-list {
        display: block
    }
}

.party-mass-work__body .article-card-list li + li {
    margin-top: 1.25rem
}

.party-mass-work__body .article-card-list li a {
    display: flex;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    padding: 1rem 1.5rem
}

@media (min-width: 1280px) {
    .party-mass-work__body .article-card-list li a {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }
}

@media (min-width: 1536px) {
    .party-mass-work__body .article-card-list li a {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem
    }
}

.party-mass-work__body .article-card-list li a .date {
    font-family: Courier New, Courier, monospace;
    position: relative;
    display: flex;
    width: 100px;
    flex-direction: column;
    --tw-text-opacity: 1;
    color: rgb(153 153 153 / var(--tw-text-opacity, 1))
}

.party-mass-work__body .article-card-list li a .date:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #d8d8d8;
    position: absolute;
    bottom: 0;
    z-index: 50
}

.party-mass-work__body .article-card-list li a .date span:first-child {
    margin-bottom: .25rem;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: var(--text-primary)
}

.party-mass-work__body .article-card-list li a .content {
    flex: 1 1 0%
}

.party-mass-work__body .article-card-list li a .content .title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem
}

@media (max-width: 1536px) {
    .party-mass-work__body .article-card-list li a .content .title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        overflow: hidden
    }
}

.party-mass-work__body .article-card-list li a .content .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-top: .5rem;
    overflow: hidden;
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(153 153 153 / var(--tw-text-opacity, 1))
}

.party-mass-work__body .article-card-list li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color)
}

.thematics {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.thematics-list {
    display: grid;
    grid-template-columns:repeat(1, minmax(0, 1fr));
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .thematics-list {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1024px) {
    .thematics-list {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }
}

@media (min-width: 1280px) {
    .thematics-list {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }
}

.thematics-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    font-size: 1.5rem;
    line-height: 2rem
}

@media (min-width: 640px) {
    .thematics-list a {
        height: 110px
    }
}

@media (min-width: 768px) {
    .thematics-list a {
        height: 120px
    }
}

@media (min-width: 1024px) {
    .thematics-list a {
        height: 130px
    }
}

@media (min-width: 1280px) {
    .thematics-list a {
        height: 140px
    }
}

.thematics-list a img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s
}

.thematics-list a:hover img {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.friend-links {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

@media (min-width: 640px) {
    .friend-links {
        padding-top: 5rem;
        padding-bottom: 5rem
    }
}

.friend-links-header {
    padding-left: 1rem;
    padding-right: 1rem
}

@media (min-width: 640px) {
    .friend-links-header {
        padding-left: 0;
        padding-right: 0
    }
}

.friend-links-header h2 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700
}

@media (min-width: 640px) {
    .friend-links-header h2 {
        font-size: 1.875rem;
        line-height: 2.25rem
    }
}

.friend-links .friend-links-content {
    display: grid;
    grid-template-columns:repeat(1, minmax(0, 1fr));
    gap: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem
}

@media (min-width: 640px) {
    .friend-links .friend-links-content {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
        padding-left: 0;
        padding-right: 0;
        padding-top: 2rem
    }
}

@media (min-width: 1024px) {
    .friend-links .friend-links-content {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }
}

@media (min-width: 1280px) {
    .friend-links .friend-links-content {
        grid-template-columns:repeat(5, minmax(0, 1fr))
    }
}

.friend-links .friend-links-content a {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(102 102 102 / var(--tw-text-opacity, 1));
    padding: 5px 10px;
    text-align: center;
}

.friend-links .friend-links-content a:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(246 249 255 / var(--tw-bg-opacity, 1));
    color: var(--primary-color)
}

@media (min-width: 640px) {
    .friend-links .friend-links-content a {
        height: 80px
    }
}

.friend-links .friend-links-content a img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%
}

.friend-links .friend-links-content a span {
    padding: 1rem .5rem;
    font-size: .875rem;
    line-height: 1.25rem
}

@media (min-width: 640px) {
    .friend-links .friend-links-content a span {
        padding-top: 0;
        padding-bottom: 0;
        font-size: 1rem;
        line-height: 1.5rem;
        font-weight: 700
    }
}

.slogan {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem
}

@media (min-width: 640px) {
    .slogan {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 5rem
    }
}

.slogan-swiper {
    height: 80px;
    width: 100%
}

@media (min-width: 768px) {
    .slogan-swiper {
        height: 90px
    }
}

@media (min-width: 1024px) {
    .slogan-swiper {
        height: 100px
    }
}

@media (min-width: 1280px) {
    .slogan-swiper {
        height: 120px
    }
}

@media (min-width: 1536px) {
    .slogan-swiper {
        height: 150px
    }
}

.slogan-swiper .swiper-slide img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.slogan-swiper .swiper-pagination {
    --swiper-pagination-top: 0;
    --swiper-pagination-color: #fff;
    --swiper-pagination-bullet-vertical-gap: 10px;
    display: none;
    padding-right: .5rem
}

@media (min-width: 1024px) {
    .slogan-swiper .swiper-pagination {
        display: block
    }
}

.slogan-swiper .swiper-pagination-bullet {
    --swiper-pagination-bullet-size: 10px;
    background: #eee;
    opacity: .5
}

.slogan-swiper .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1
}

/*经营业务*/
.main-business {
    background: url("/front/images/texture_bg.png") repeat;
}

.main-business-list .business-card {
    display: block;
    height: 150px;
    flex: 1;
    background: white;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.main-business-list .business-card.active {
    flex: 3;
    background: var(--primary-color);
}

.main-business-list .business-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-business-list .business-card .title {
    font-size: 1.25rem;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10% 30px 30px;
    color: white;
    background: linear-gradient(to bottom, transparent, #000000);
}

@media (min-width: 640px) {
    .main-business-list .business-card {
        height: 200px
    }
}

@media (min-width: 768px) {
    .main-business-list .business-card {
        height: 300px
    }
}

@media (min-width: 1024px) {
    .main-business-list {
        display: flex;
    }

    .main-business-list .business-card {
        height: 400px;
    }
}

@media (min-width: 1280px) {
    .main-business-list .business-card {
        height: 500px;
    }
}

/*视频中心*/
.video-article-list .video-list {
    display: grid;
    grid-template-columns:repeat(1, minmax(0, 1fr));
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .video-article-list .video-list {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 3rem;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1024px) {
    .video-article-list .video-list {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }
}

.video-article-list .video-list .cover-wrap {
    width: 100%;
    aspect-ratio: 16 /9;
    overflow: hidden;
    position: relative;
}

.video-article-list .video-list .cover-wrap .cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-article-list .video-list .cover-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.video-article-list .video-list h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 10px;
    text-align: center;
}

.video-article-list .video-list a {
    display: block;
}

.video-article-list .video-list a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    z-index: 9;
}

.video-article-list .video-list a:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    background: white;
}

.video-article-list .video-list a:hover h4 {
    color: var(--primary-color);
}

/*背景分割*/
.thematics {
    background: #f5f5f6;
}

/*公共部分*/
.section {
    padding: 1.5rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem
}

.section-header h2 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700
}

.section-body {
    padding-top: 1.5rem;
}

.section .section-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    height: 36px;
    font-size: 14px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
    transition: padding 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.section .section-more:hover {
    padding: 0 1.3rem;
    background: var(--text-secondary);
    color: white;
}

@media (min-width: 640px) {
    .section {
        padding: 5rem 0
    }

    .section-header {
        padding-left: 0;
        padding-right: 0
    }

    .section-header h2 {
        font-size: 1.875rem;
        line-height: 2.25rem
    }

    .section-body {
        padding-top: 3rem;
    }
}

.animate-box .section-header h2 {
    opacity: 0;
    transform: translateY(-2rem);
    transition: all 0.8s ease-out;
}

.animate-box .group-profile-content .cover-wrap {
    opacity: 0;
    transform: translateX(-2rem) scale(0.9);
    transition: all 0.8s ease-out;
}

.animate-box .group-profile-content .group-profile-description {
    opacity: 0;
    transform: translateX(2rem) scale(0.9);
    transition: all 0.8s ease-out;
}

.animate-box.active .section-header h2 {
    opacity: 1;
    transform: translateY(0);
}

.animate-box.active .group-profile-content .cover-wrap,
.animate-box.active .group-profile-content .group-profile-description {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* 基础默认样式：全部隐藏 + 统一过渡 */
.animate-box .article-grid .article-item {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 1、4 从左侧进入 */
.animate-box .article-item:nth-child(1),
.animate-box .article-item:nth-child(4) {
    transform: translateX(-3rem);
}

/* 2、5 从上下进入 */
.animate-box .article-item:nth-child(2) {
    transform: translateY(-3rem); /* 上 */
}

.animate-box .article-item:nth-child(5) {
    transform: translateY(3rem); /* 下 */
}

/* 3、6 从右侧进入 */
.animate-box .article-item:nth-child(3),
.animate-box .article-item:nth-child(6) {
    transform: translateX(3rem);
}

/* 激活后全部恢复原位 + 错开动画延迟 */
.animate-box.active .article-grid .article-item {
    opacity: 1;
    transform: translate(0, 0);
}

/* 动画延迟：让元素依次出现，更有层次感 */
.animate-box.active .article-item:nth-child(1) {
    transition-delay: 0.1s;
}

.animate-box.active .article-item:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-box.active .article-item:nth-child(3) {
    transition-delay: 0.3s;
}

.animate-box.active .article-item:nth-child(4) {
    transition-delay: 0.4s;
}

.animate-box.active .article-item:nth-child(5) {
    transition-delay: 0.5s;
}

.animate-box.active .article-item:nth-child(6) {
    transition-delay: 0.6s;
}

/* 更多按钮 - 默认隐藏在下方 */
.animate-box .section-more {
    opacity: 0;
    transform: translateY(2rem); /* 从下方上来 */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, padding 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* 激活后显示 + 比所有文章卡片晚一点出现，更自然 */
.animate-box.active .section-more {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s, padding 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.animate-box .video-list {
    opacity: 0;
    transform: translateY(-2rem);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.animate-box.active .video-list {
    opacity: 1;
    transform: translateY(0);
}
