/* 公共按钮样式*/
#dynamic-page .btn-border {
    cursor: pointer;
    background-color: transparent;
    /* 确保背景透明 */
}

#dynamic-page .btn-border:hover {
    border-radius: 2rem;
    background: linear-gradient(45deg, #2d7bff, #9c4dff);
}

#dynamic-page .btn-border:hover svg {
    display: none;
}

#dynamic-page .btn-border .experience-ai {
    position: relative;
    width: 12rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 1rem 2rem;
}

#dynamic-page .btn-border .experience-ai svg {
    position: absolute;
    top: 0;
    left: 0;
}

#dynamic-page .btn-border .experience-ai img {
    width: 1.5rem;
    height: 1.5rem;
}

#dynamic-page .btn-border .experience-ai span {
    height: 1.5rem;
    line-height: 1.5rem;
    padding-left: 0.3rem;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
    font-style: normal;
    color: #FFFFFF;
}

/* 关于我们-module1模块-开始 */
.dynamic-page-module1 {
    padding: 2rem 10rem;
    background: radial-gradient(circle at bottom right, #6859E2 0%, #03031E 8%, #03031E 100%);
    color: #fff;
    animation-duration: 4.5s;
}


/* 动态内容模块样式 */
.dynamic-qrcode {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* 表格样式 */
.dynamic-table {
    width: 70%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    padding: 2rem;
}


.qrcode-publicAccountCode {
    width: 23rem;
    height: 23rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.publicAccountCode-text {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.qrcode-publicAccountCode img {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
}

.dynamic-item {
    width: 100%;
    padding: 1rem 1.5rem;
    height: 20rem;
    display: flex;
    border-bottom: 0.1rem dashed rgba(255, 255, 255, 0.304);
}

.dynamic-time {
    position: absolute;
    bottom: 6rem;
    color: rgba(210, 210, 210, 0.8);
}

.dynamic-img {
    width: 25rem;
    height: 9.5rem;
    overflow: hidden;
}

.dynamic-img img {
    width: 100%;
    object-fit: contain;

}

/* .dynamic-day {
    font-size: 2.5rem;
    font-weight: 800;
} */

.dynamic-content {
    width: 100%;
    position: relative;
    margin-left: 2rem;
}

.dynamic-title {
    margin-bottom: 1rem;
}


/* 了解详情按钮 */
.learnMore-btn {
    position: absolute;
    bottom: 1.5rem;
    width: fit-content;
    margin: 1.5rem 0 0;
    padding: 0.75rem 2.5rem;
    background: linear-gradient(45deg, #2d7bff, #9c4dff);
    color: #fff;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.learnMore-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2d7bff, #ff4dea);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.learnMore-btn:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.625rem 1.25rem rgba(78, 150, 255, 0.4);
}

.learnMore-btn span {
    position: relative;
    z-index: 1;
}

.arrow-icon {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.learnMore-btn:hover .arrow-icon {
    transform: translate(3px, -3px);
}

.dynamic-desc {
    max-height: 8rem;
    width: 100%;
    color: rgba(210, 210, 210, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 限制显示的行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 分页器样式 */
.dynamic-pagination {
    padding: 4rem 0;
    background-color: transparent;
    text-align: center;
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-icon {
    font-size: 1.25rem;
    font-weight: bold;
}

.pagination-text {
    font-size: 0.9rem;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.page-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.page-btn.active {
    background: linear-gradient(90deg, #3EB9FB 0%, #B268FF 55%, #FF3CC5 100%);
    border-color: transparent;
    color: #ffffff;
    font-weight: 600;
}

.ellipsis {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .dynamic-pagination {
        padding: 2rem 0;
    }

    .pagination-container {
        gap: 0.5rem;
    }

    .pagination-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .page-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }

    .pagination-text {
        display: none;
    }
}