.fscms-topic-qm {
    margin-top: 10px;
}

.fscms-topic-qm-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(0, 137, 123, 0.92), rgba(0, 105, 92, 0.92));
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    color: #fff;
}
.fscms-topic-qm-topbar-title {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.fscms-topic-qm-topbar-title-en {
    font-size: 12px;
    opacity: 0.85;
}
.fscms-topic-qm-topbar-title-cn {
    font-size: 18px;
}
.fscms-topic-qm-marquee {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}
.fscms-topic-qm-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    will-change: transform;
    animation: fscms-qm-marquee 52s linear infinite;
}
.fscms-topic-qm-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.96);
    text-decoration: none;
    font-size: 13px;
}
.fscms-topic-qm-marquee-item:hover {
    color: #4db6ac;
}
.fscms-topic-qm-marquee-date {
    opacity: 0.9;
}
.fscms-topic-qm-marquee-text {
    max-width: 520px;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes fscms-qm-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.fscms-topic-qm-panel {
    margin-top: 14px;
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    overflow: hidden;
    padding: 14px;
}
.fscms-topic-qm-main {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 14px;
    align-items: stretch;
}

.fscms-topic-qm-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(0,105,92,0.10);
    overflow: hidden;
}
.fscms-topic-qm-news-item {
    border-bottom: 1px dashed rgba(0,105,92,0.14);
}
.fscms-topic-qm-news-item:last-child {
    border-bottom: none;
}
.fscms-topic-qm-news-link {
    display: block;
    padding: 12px 12px 10px 12px;
    text-decoration: none;
    color: inherit;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.fscms-topic-qm-news-link:hover {
    background: rgba(231, 250, 255, 0.75);
    border-left-color: rgba(0, 105, 92, 0.45);
}
.fscms-topic-qm-news-title {
    color: #00695c;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.fscms-topic-qm-news-link:hover .fscms-topic-qm-news-title {
    color: #00897b;
}
.fscms-topic-qm-news-desc {
    margin-top: 6px;
    font-size: 13px;
    color: #444;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.fscms-topic-qm-news-meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.fscms-topic-qm-news-date {
    font-size: 12px;
    color: rgba(0,105,92,0.75);
    white-space: nowrap;
}
.fscms-topic-qm-news-more {
    font-size: 12px;
    color: #00897b;
    font-weight: 700;
    white-space: nowrap;
}
.fscms-topic-qm-news-link:hover .fscms-topic-qm-news-more {
    color: #00695c;
}

.fscms-topic-qm-focus {
    min-width: 0;
    display: flex;
}
.fscms-topic-qm-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    height: auto;
    background: #e9eef3;
    flex: 1;
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}
.fscms-topic-qm-slides {
    position: absolute;
    inset: 0;
}
.fscms-topic-qm-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
    text-decoration: none;
    color: inherit;
}
.fscms-topic-qm-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.fscms-topic-qm-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fscms-topic-qm-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 150px 12px 14px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0, 137, 123, 0) 0%, rgba(0, 137, 123, 0.55) 42%, rgba(0, 105, 92, 0.78) 100%);
    color: rgba(255,255,255,0.96);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.45;
    box-shadow: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.fscms-topic-qm-dots {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
}
.fscms-topic-qm-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.65);
    background: rgba(0,0,0,0.30);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    cursor: pointer;
    padding: 0;
}
.fscms-topic-qm-dot.active {
    width: 18px;
    background: linear-gradient(90deg, #26a69a, #4db6ac);
    border-color: rgba(255,255,255,0.22);
}

.fscms-topic-qm-pagination {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.fscms-topic-qm-pagination a {
    min-width: 32px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #dde2eb;
    text-align: center;
    font-size: 13px;
    color: #00695c;
    text-decoration: none;
}
.fscms-topic-qm-pagination a.active {
    background: linear-gradient(135deg, #00695c, #00897b);
    border-color: transparent;
    color: #fff;
}

.fscms-topic-qm-heated {
    margin-top: 0;
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    overflow: hidden;
    padding: 0 14px 14px 14px;
}
.fscms-topic-qm-heated-header {
    height: 60px;
    max-width: 1400px;
    margin: 0 auto 12px auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 137, 123, 0.92), rgba(0, 105, 92, 0.92));
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1400px 60px;
}
.fscms-topic-qm-heated-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 105, 92, 0.65), rgba(0, 137, 123, 0.35));
}
.fscms-topic-qm-heated-header-title {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 22px;
    color: rgba(255,255,255,0.98);
    letter-spacing: 6px;
    text-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.fscms-topic-qm-heated-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fscms-topic-qm-heated-row {
    display: grid;
    grid-template-rows: 190px;
    gap: 12px;
    align-items: stretch;
}
.fscms-topic-qm-heated-row.is-row-1 {
    grid-template-columns: 1.25fr 1.55fr 0.9fr;
}
.fscms-topic-qm-heated-row.is-row-2 {
    grid-template-columns: 0.9fr 1.55fr 1.25fr;
}
.fscms-topic-qm-heated-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.fscms-topic-qm-heated-card.is-img {
    background: #e9eef3;
}
.fscms-topic-qm-heated-card.is-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fscms-topic-qm-heated-img-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 12px 12px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, rgba(0, 137, 123, 0) 0%, rgba(0, 137, 123, 0.65) 45%, rgba(0, 105, 92, 0.88) 100%);
    color: rgba(255,255,255,0.96);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.35;
    box-shadow: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.fscms-topic-qm-heated-card.is-text {
    display: flex;
    align-items: stretch;
    gap: 12px;
    background: rgba(231, 250, 255, 0.88);
    border: 1px solid rgba(0,105,92,0.10);
    padding: 14px 14px 12px 14px;
}
.fscms-topic-qm-heated-card.is-text:hover {
    border-color: rgba(0,105,92,0.18);
}
.fscms-topic-qm-heated-card-title {
    font-size: 18px;
    font-weight: 900;
    color: #005b5f;
    line-height: 1.35;
    letter-spacing: 0.2px;
}
.fscms-topic-qm-heated-card-desc {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.75;
    color: #2d3d46;
    opacity: 0.95;
    max-height: 4.8em;
    overflow: hidden;
}
.fscms-topic-qm-heated-card-more {
    margin-top: 10px;
    font-size: 12px;
    color: #26a69a;
}
.fscms-topic-qm-heated-text-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.fscms-topic-qm-heated-text-body .fscms-topic-qm-heated-card-more {
    margin-top: auto;
    padding-top: 10px;
}
.fscms-topic-qm-heated-text-thumb {
    flex: 0 0 178px;
    width: 178px;
    border-radius: 10px;
    overflow: hidden;
    background: #e9eef3;
}
.fscms-topic-qm-heated-text-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fscms-topic-qm-heated-card.is-accent {
    background: transparent;
    color: #fff;
    padding: 0;
    isolation: isolate;
}
.fscms-topic-qm-heated-card.is-accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}
.fscms-topic-qm-heated-accent-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    filter: none;
}
.fscms-topic-qm-heated-card.is-accent > :not(.fscms-topic-qm-heated-accent-img) {
    position: relative;
    z-index: 2;
}
.fscms-topic-qm-heated-card.is-accent .fscms-topic-qm-heated-card-title {
    color: #fff;
    font-size: 18px;
}
.fscms-topic-qm-heated-card.is-accent:hover {
    filter: brightness(1.03);
}

.fscms-topic-qm-heated-fallback {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.fscms-topic-qm-heated-fallback-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(0,105,92,0.10);
    text-decoration: none;
}
.fscms-topic-qm-heated-fallback-thumb {
    width: 104px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
    background: #e9eef3;
}
.fscms-topic-qm-heated-fallback-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fscms-topic-qm-heated-fallback-title {
    font-size: 14px;
    font-weight: 800;
    color: #00695c;
    line-height: 1.4;
    max-height: 2.8em;
    overflow: hidden;
}
.fscms-topic-qm-heated-fallback-desc {
    margin-top: 6px;
    font-size: 12px;
    color: #444;
    line-height: 1.6;
    max-height: 3.2em;
    overflow: hidden;
    opacity: 0.95;
}

.fscms-topic-qm-video {
    margin-top: 0;
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
    padding: 0 14px 14px 14px;
}
.fscms-topic-qm-video-header {
    height: 60px;
    max-width: 1400px;
    margin: 0 auto 12px auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 137, 123, 0.92), rgba(0, 105, 92, 0.92));
}
.fscms-topic-qm-video-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 105, 92, 0.60), rgba(0, 137, 123, 0.30));
}
.fscms-topic-qm-video-header-title {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 22px;
    color: rgba(255,255,255,0.98);
    letter-spacing: 6px;
    text-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.fscms-topic-qm-video-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 12px;
    align-items: start;
}
.fscms-topic-qm-video-large {
    grid-column: 1 / 2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #e9eef3;
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
    aspect-ratio: 16 / 9;
}
.fscms-topic-qm-video-large img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fscms-topic-qm-video-large-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px 14px 12px 14px;
    background: linear-gradient(180deg, rgba(0, 137, 123, 0) 0%, rgba(0, 137, 123, 0.12) 70%, rgba(0, 105, 92, 0.60) 100%);
    gap: 8px;
}
.fscms-topic-qm-video-play {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #26a69a, #4db6ac);
    color: #00695c;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
    align-self: flex-end;
}
.fscms-topic-qm-video-large-title {
    color: rgba(255,255,255,0.96);
    font-weight: 900;
    font-size: 18px;
    line-height: 1.45;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.fscms-topic-qm-video-large-desc {
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    line-height: 1.65;
    opacity: 0.95;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.fscms-topic-qm-video-side {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}
.fscms-topic-qm-video-nav {
    height: auto;
    padding: 8px 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: rgba(0,105,92,0.88);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}
.fscms-topic-qm-video-nav:hover {
    color: #00897b;
}
.fscms-topic-qm-video-list {
    flex: 1;
    min-height: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    overflow: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 300px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fscms-topic-qm-video-list::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.fscms-topic-qm-video-item {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-radius: 14px;
    padding: 10px 12px;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,105,92,0.12);
    min-height: 108px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}
.fscms-topic-qm-video-item:hover {
    border-color: rgba(0,105,92,0.18);
}
.fscms-topic-qm-video-item.active {
    background: rgba(224, 247, 250, 0.70);
    border-color: rgba(0, 137, 123, 0.90);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}
.fscms-topic-qm-video-thumb {
    width: 148px;
    height: 92px;
    border-radius: 14px;
    overflow: hidden;
    background: #e9eef3;
}
.fscms-topic-qm-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fscms-topic-qm-video-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fscms-topic-qm-video-item-title {
    font-size: 14px;
    font-weight: 900;
    color: #005b5f;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.fscms-topic-qm-video-item-col {
    font-size: 12px;
    color: rgba(0,105,92,0.78);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: none;
}

.fscms-topic-qm-gallery {
    margin-top: 0;
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
    padding: 0 14px 14px 14px;
}
.fscms-topic-qm-gallery-header {
    height: 60px;
    max-width: 1400px;
    margin: 0 auto 12px auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 137, 123, 0.92), rgba(0, 105, 92, 0.92));
}
.fscms-topic-qm-gallery-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 105, 92, 0.60), rgba(0, 137, 123, 0.30));
}
.fscms-topic-qm-gallery-header-title {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 22px;
    color: rgba(255,255,255,0.98);
    letter-spacing: 6px;
    text-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.fscms-topic-qm-gallery-body {
    max-width: 1400px;
    margin: 0 auto;
}
.fscms-topic-qm-gallery-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #e9eef3;
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}
.fscms-topic-qm-gallery-slides {
    position: absolute;
    inset: 0;
}
.fscms-topic-qm-gallery-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
    text-decoration: none;
    color: inherit;
}
.fscms-topic-qm-gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.fscms-topic-qm-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fscms-topic-qm-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 150px 12px 14px;
    background: linear-gradient(0deg, rgba(0, 137, 123, 0.80) 0%, rgba(0, 137, 123, 0.62) 55%, rgba(0, 137, 123, 0.00) 100%);
    color: rgba(255,255,255,0.98);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fscms-topic-qm-gallery-dots {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
}
.fscms-topic-qm-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.65);
    background: rgba(0,0,0,0.22);
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    cursor: pointer;
    padding: 0;
}
.fscms-topic-qm-gallery-dot.active {
    width: 18px;
    background: linear-gradient(90deg, #26a69a, #4db6ac);
    border-color: rgba(255,255,255,0.22);
}

.fscms-topic-qm-news-stand {
    margin-top: 0;
    padding: 0 14px 14px 14px;
}

.fscms-topic-qm-news-stand-header {
    height: 60px;
    max-width: 1400px;
    margin: 0 auto 12px auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 137, 123, 0.92), rgba(0, 105, 92, 0.92));
}
.fscms-topic-qm-news-stand-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 105, 92, 0.60), rgba(0, 137, 123, 0.30));
}
.fscms-topic-qm-news-stand-header-title {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 22px;
    color: rgba(255,255,255,0.98);
    letter-spacing: 6px;
    text-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.fscms-topic-qm-news-stand-header-tools {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.fscms-topic-qm-news-stand-body {
    max-width: 1400px;
    margin: 0 auto;
}
.fscms-topic-qm-news-stand .fscms-content-home-brief-toolbar {
    border-color: rgba(0,105,92,0.18);
    background: rgba(255,255,255,0.92);
}
.fscms-topic-qm-news-stand .fscms-view-chip.active {
    background: linear-gradient(90deg, rgba(0, 137, 123, 0.92), rgba(0, 105, 92, 0.92));
}
.fscms-topic-qm-news-stand .fscms-v-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.fscms-topic-qm-news-stand .fscms-list-rows {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.fscms-topic-qm-news-stand .fscms-list-rows .fscms-list-item + .fscms-list-item {
    margin-top: 0;
}
.fscms-topic-qm-news-stand .fscms-content-home-brief-more .fscms-btn {
    color: #00695c;
}
.fscms-topic-qm-news-stand .fscms-content-home-brief-more .fscms-btn:hover {
    color: #00897b;
}
@media (max-width: 960px) {
    .fscms-topic-qm-main {
        grid-template-columns: minmax(0, 1fr);
    }
    .fscms-topic-qm-slider {
        height: 260px;
    }
    .fscms-topic-qm-slide-caption {
        font-size: 15px;
        padding: 10px 110px 10px 12px;
    }
    .fscms-topic-qm-gallery-caption {
        padding: 10px 110px 10px 12px;
    }
    .fscms-topic-qm-marquee-track {
        animation-duration: 30s;
    }
    .fscms-topic-qm-news-title {
        font-size: 18px;
    }
    .fscms-topic-qm-heated-header {
        height: 52px;
        background-size: cover;
    }
    .fscms-topic-qm-heated-header-title {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .fscms-topic-qm-heated-row {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: none;
    }
    .fscms-topic-qm-heated-card.is-img {
        height: 210px;
    }
    .fscms-topic-qm-heated-card.is-accent {
        height: 210px;
    }
    .fscms-topic-qm-heated-text-thumb {
        flex-basis: 150px;
        width: 150px;
    }
    .fscms-topic-qm-heated-fallback {
        grid-template-columns: minmax(0, 1fr);
    }

    .fscms-topic-qm-video-header {
        height: 52px;
    }
    .fscms-topic-qm-video-header-title {
        font-size: 20px;
        letter-spacing: 4px;
    }
    .fscms-topic-qm-video-body {
        grid-template-columns: minmax(0, 1fr);
    }
    .fscms-topic-qm-video-large {
        aspect-ratio: 16 / 9;
    }

    .fscms-topic-qm-gallery-header {
        height: 52px;
    }
    .fscms-topic-qm-gallery-header-title {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .fscms-topic-qm-news-stand {
        padding: 0 12px 12px 12px;
    }
    .fscms-topic-qm-news-stand-header {
        height: 52px;
    }
    .fscms-topic-qm-news-stand-header-title {
        font-size: 20px;
        letter-spacing: 4px;
    }
    .fscms-topic-qm-news-stand .fscms-v-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .fscms-topic-qm-news-stand .fscms-list-rows {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .fscms-topic-qm-heated-card.is-text {
        flex-direction: column;
    }
    .fscms-topic-qm-heated-text-thumb {
        width: 100%;
        flex-basis: auto;
        height: 160px;
    }

    .fscms-topic-qm-video-thumb {
        width: 96px;
        height: 60px;
    }
    .fscms-topic-qm-video-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }
    .fscms-topic-qm-video-list {
        height: 266px;
    }
    .fscms-topic-qm-video-item {
        min-height: 78px;
    }
    .fscms-topic-qm-slide-caption {
        padding: 10px 96px 10px 12px;
    }
    .fscms-topic-qm-gallery-caption {
        padding: 10px 96px 10px 12px;
    }

    .fscms-topic-qm-news-stand .fscms-v-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .fscms-topic-qm-news-stand .fscms-list-rows {
        grid-template-columns: minmax(0, 1fr);
    }
}
