/* 公共按钮样式 */
#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;
}

.dynamic-page-module1 {
    position: relative;
    /* 频道横幅用 width:100vw 通栏，100vw 含竖向滚动条宽度，会比内容区宽出几像素，
       导致页面底部出现横向滚动条。在本模块（整页内容宽度）裁掉横向溢出即可消除。
       用 overflow-x: clip 而非 hidden：clip 不建立滚动容器，内部 position: sticky
       侧栏仍正常吸顶。竖向保持 visible 不影响吸顶。 */
    overflow-x: clip;
    overflow-y: visible;
    min-height: calc(100vh - var(--header-height));
    padding: 0 8vw 3rem;
    background: radial-gradient(circle at right, #6859E2 0%, #03031E 8%, #03031E 100%);
    color: #fff;
    animation-duration: 4.5s;
}

.dynamic-page-module1::before {
    content: none;
}

.dynamic-page-module1 .module1-container {
    position: relative;
    z-index: 1;
    width: min(100%, 88rem);
    margin: 0 auto;
}

.dynamic-channel-header {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    width: 100vw;
    min-height: clamp(24rem, 32vw, 34rem);
    margin: 0 0 2.5rem calc(50% - 50vw);
    overflow: hidden;
    border-bottom: 1px solid rgba(99, 216, 255, 0.16);
    border-radius: 0;
    background: #03031e;
    box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.28);
}

.dynamic-channel-header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(3, 3, 30, 0.92) 0%, rgba(3, 3, 30, 0.72) 36%, rgba(3, 3, 30, 0.16) 72%, rgba(3, 3, 30, 0.28) 100%);
}

.dynamic-channel-banner {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.dynamic-channel-copy {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 16vw), 88rem);
    margin: 0 auto;
}

.dynamic-channel-copy h1 {
    margin-bottom: 0.9rem;
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
}

.dynamic-channel-copy p {
    max-width: 38rem;
    color: rgba(232, 239, 255, 0.74);
    font-size: 1.05rem;
    line-height: 1.8;
}

.dynamic-content-layout {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.dynamic-table {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.dynamic-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.07);
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.dynamic-item:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(99, 216, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
}

.dynamic-item-featured {
    grid-column: 1 / -1;
    flex-direction: row;
    min-height: 21rem;
}

.dynamic-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.dynamic-item-featured .dynamic-img {
    width: 46%;
    min-height: 100%;
    aspect-ratio: auto;
}

.dynamic-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.dynamic-item:hover .dynamic-img img {
    transform: scale(1.035);
}

.dynamic-content {
    position: relative;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

.dynamic-item-featured .dynamic-content {
    padding: 2rem;
}

.dynamic-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.dynamic-label {
    flex: 0 0 auto;
    padding: 0.32rem 0.62rem;
    border: 1px solid rgba(99, 216, 255, 0.26);
    border-radius: 999px;
    color: #8be4ff;
    background: rgba(62, 185, 251, 0.08);
    font-size: 0.78rem;
    line-height: 1;
}

.dynamic-time {
    color: rgba(232, 239, 255, 0.58);
    font-size: 0.86rem;
    white-space: nowrap;
}

.dynamic-title {
    margin-bottom: 0.85rem;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dynamic-item-featured .dynamic-title {
    font-size: 1.8rem;
    line-height: 1.32;
}

.dynamic-desc {
    width: 100%;
    color: rgba(232, 239, 255, 0.68);
    font-size: 0.96rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dynamic-item-featured .dynamic-desc {
    -webkit-line-clamp: 5;
    font-size: 1rem;
}

#dynamic-page .learnMore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    margin-top: auto;
    margin-bottom: 0;
    padding: 1.65rem 0.15rem 0.12rem 0;
    border-radius: 0;
    background: transparent;
    color: #63d8ff;
    box-shadow: none;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.24s ease, transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: visible;
}

#dynamic-page .learnMore-btn::before {
    content: none;
}

#dynamic-page .learnMore-btn::after {
    content: "";
    position: absolute;
    right: 1.65rem;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, #63d8ff 0%, rgba(99, 216, 255, 0) 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#dynamic-page .learnMore-btn span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#dynamic-page .learnMore-btn:hover {
    color: #ffffff;
    transform: translateY(-0.08rem);
}

#dynamic-page .learnMore-btn:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

#dynamic-page .learnMore-btn:hover span {
    transform: translate(0.22rem, -0.18rem);
}

#dynamic-page .learnMore-btn:focus-visible {
    outline: 2px solid rgba(99, 216, 255, 0.75);
    outline-offset: 0.35rem;
}

.dynamic-qrcode {
    position: sticky;
    top: 6.5rem;
    flex: 0 0 17rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.07);
}

.dynamic-aside-title {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dynamic-aside-title span,
.dynamic-aside-title strong {
    display: block;
}

.dynamic-aside-title span {
    margin-bottom: 0.25rem;
    color: rgba(232, 239, 255, 0.58);
    font-size: 0.8rem;
}

.dynamic-aside-title strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.qrcode-publicAccountCode {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 7rem;
    padding: 0.85rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.07);
}

.qrcode-publicAccountCode img {
    width: 5.5rem;
    height: 5.5rem;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 0.4rem;
    background: #ffffff;
}

.publicAccountCode-text {
    color: rgba(232, 239, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.45;
}

#dynamic-page .dynamic-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 0 1rem;
    background-color: transparent;
    text-align: center;
}

#dynamic-page .article-pagination-summary {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    height: 3.25rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap;
}

#dynamic-page .article-pagination-summary span {
    margin: 0 0.15rem;
    color: #ffffff;
    font-weight: 600;
}

#dynamic-page .pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    align-self: center;
    gap: 1rem;
    margin-top: 0;
    flex-wrap: nowrap;
}

#dynamic-page .pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3.25rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.22s ease;
}

#dynamic-page .pagination-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

#dynamic-page .pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

#dynamic-page .pagination-icon {
    font-size: 1.25rem;
    font-weight: bold;
}

#dynamic-page .pagination-text {
    font-size: 0.9rem;
}

#dynamic-page .page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#dynamic-page .page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.22s ease;
}

#dynamic-page .page-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

#dynamic-page .page-btn.active {
    background: #63d8ff;
    border-color: transparent;
    color: #05101f;
    font-weight: 700;
}

#dynamic-page .ellipsis {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
}




@media (prefers-reduced-motion: reduce) {

    .dynamic-item,
    .dynamic-img img,
    #dynamic-page .learnMore-btn,
    #dynamic-page .learnMore-btn span,
    #dynamic-page .pagination-btn,
    #dynamic-page .page-btn {
        transition: none;
    }

    .dynamic-item:hover,
    #dynamic-page .pagination-btn:hover:not(:disabled),
    #dynamic-page .page-btn:hover:not(.active) {
        transform: none;
    }
}
