[v-cloak] {
    display: none;
}

:root {
    --home-primary: #1786f1;
    --home-primary-dark: #077cbb;
    --home-text: #1d2b3a;
    --home-muted: #5d6f83;
    --home-subtle: #8190a2;
    --home-bg: #fbfcfe;
    --home-surface: #ffffff;
    --home-soft: #f7fafd;
    --home-media-bg: #edf3f8;
    --home-border: #e6edf5;
    --home-shadow: 0 8px 20px rgba(31, 47, 69, .04);
}

html,
body {
    background: var(--home-bg);
}

body {
    overflow-x: hidden;
}

main.content {
    background: var(--home-bg);
    overflow-x: hidden;
}

.home-page {
    min-height: 100vh;
    padding: 0 0 48px;
    color: var(--home-text);
    background: var(--home-bg);
}

.home-container {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
}

.home-banner {
    position: relative;
    left: 50%;
    width: 100vw;
    height: clamp(260px, 36vw, 520px);
    margin-left: -50vw;
    overflow: hidden;
    min-height: 260px;
    border-radius: 0;
    background: var(--home-media-bg);
    box-shadow: none;
}

.home-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease;
}

.home-banner-slide.is-active {
    opacity: 1;
}

.home-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-banner-slide:not(.is-active) img {
    visibility: hidden;
}

.home-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
    z-index: 2;
}

.home-banner-dot {
    min-width: 44px;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 20px 0;
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
}

.home-banner-dot::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .55);
    transition: background .2s ease, transform .2s ease;
}

.home-banner-dot.is-active::before,
.home-banner-dot:focus-visible::before {
    background: #fff;
    transform: scaleY(1.25);
}

.home-banner-dot:focus-visible,
.home-news-item:focus-visible,
.home-section-more:focus-visible {
    outline: 2px solid var(--home-primary);
    outline-offset: 2px;
}

.home-section {
    margin-top: 24px;
    padding: 18px 22px 22px;
    border-radius: 12px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.home-page .home-section:first-of-type {
    margin-top: 18px;
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.home-section-title-group {
    min-width: 0;
}

.home-section-title-line {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.home-section-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--home-text);
}

.home-section-subtitle {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.35;
    color: var(--home-subtle);
    text-transform: uppercase;
}

.home-section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 2px;
    border: 0;
    background: transparent;
    color: var(--home-primary);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: none;
    box-shadow: none;
    transition: color .18s ease;
    touch-action: manipulation;
    white-space: nowrap;
}

.home-section-more::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.home-section-more:hover,
.home-section-more:focus-visible {
    color: var(--home-primary-dark);
    text-decoration: none;
}

.home-news {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 22px;
    align-items: center;
    box-sizing: border-box;
    height: 398px;
    padding: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.home-news::after {
    display: none;
}

.home-news-cover {
    position: relative;
    z-index: 1;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--home-media-bg);
}

.home-news-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-news-cover-swap-enter-active,
.home-news-cover-swap-leave-active {
    transition: opacity .28s ease, transform .28s ease;
}

.home-news-cover-swap-enter {
    opacity: 0;
    transform: translateY(16px);
}

.home-news-cover-swap-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

.home-news-aside {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.home-news-list-wrap {
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: hidden;
}

.home-news-list {
    --news-item-height: 68px;
    --news-item-gap: 8px;
    position: relative;
    height: calc(var(--news-item-height) * 5 + var(--news-item-gap) * 4);
    overflow: hidden;
    border-radius: 8px;
}

.home-news-track {
    display: grid;
    gap: var(--news-item-gap);
}

.home-news-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    height: var(--news-item-height);
    padding: 7px 14px;
    border: 0;
    border-bottom: 1px solid var(--home-border);
    border-radius: 6px;
    background: var(--home-soft);
    overflow: hidden;
    cursor: pointer;
    transition: background .18s ease;
    touch-action: manipulation;
}

.home-news-item:hover,
.home-news-item.is-active {
    background: var(--home-surface);
    box-shadow: none;
}

.home-news-item.is-active .home-news-date,
.home-news-item.is-active .home-news-title {
    color: var(--home-primary);
}

.home-news-item:hover {
    background: var(--home-surface);
}

.home-news-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    height: 30px;
    padding: 0 8px;
    border-radius: 4px;
    background: var(--home-media-bg);
    color: var(--home-primary-dark);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.home-item-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--home-primary-dark);
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
    touch-action: manipulation;
}

.home-item-more::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateX(-1px) rotate(45deg);
}

.home-news-item:hover .home-item-more,
.home-news-item.is-active .home-item-more,
.home-card:hover .home-item-more,
.home-item-more:focus-visible {
    color: var(--home-primary);
    background: var(--home-media-bg);
    transform: translateX(2px);
    text-decoration: none;
}

.home-news-body {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.home-news-body:hover,
.home-news-body:focus-visible {
    color: inherit;
    text-decoration: none;
}

.home-news-title,
.home-card-title {
    display: block;
    max-width: 100%;
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--home-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-news-brief {
    display: block;
    max-width: 100%;
    margin: 3px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--home-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-card-desc {
    display: -webkit-box;
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--home-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-news-title {
    font-size: 16px;
    line-height: 1.25;
}

.home-news-brief {
    margin-top: 1px;
    font-size: 13px;
    line-height: 1.3;
}

.home-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-top: 2px;
}

.home-card {
    overflow: hidden;
    border: 1px solid var(--home-border);
    border-radius: 6px;
    background: var(--home-surface);
    box-shadow: 0 6px 14px rgba(31, 47, 69, .035);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.home-card:hover {
    border-color: #c9d8e8;
    box-shadow: 0 8px 18px rgba(35, 50, 83, .06);
}

.home-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.home-card-link:hover,
.home-card-link:focus-visible {
    color: inherit;
    text-decoration: none;
}

.home-card-link:focus-visible {
    outline: 2px solid var(--home-primary);
    outline-offset: 2px;
}

.home-card-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--home-media-bg);
}

.home-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-card-body {
    display: flex;
    flex-direction: column;
    min-height: 104px;
    padding: 12px 14px;
}

.home-card-desc-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: auto;
    padding-top: 6px;
}

.home-card-desc-row .home-card-desc {
    flex: 1 1 auto;
    min-width: 0;
}

.home-card-desc-row .home-item-more {
    flex: 0 0 auto;
    margin-bottom: 1px;
}

.home-empty {
    padding: 36px 16px;
    border: 1px dashed #d8e2ef;
    border-radius: 8px;
    text-align: center;
    color: #8da0b8;
    background: var(--home-surface);
}

.news-page {
    min-height: 100vh;
    padding: 20px 0 48px;
    color: var(--home-text);
    background: var(--home-bg);
}

.news-container {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
}

.news-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.news-page-head>div {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
    overflow: hidden;
}

.news-page-kicker {
    order: 2;
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: var(--home-subtle);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-page-title {
    order: 1;
    margin: 0;
    font-size: 26px;
    line-height: 1.32;
    font-weight: 700;
    color: var(--home-text);
    white-space: nowrap;
}

.news-back-link,
.news-list-more {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--home-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.news-list-more::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.news-back-link::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-left: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}

.news-back-link:hover,
.news-list-more:hover {
    color: var(--home-primary-dark);
    text-decoration: none;
}

.news-back-link:focus-visible,
.news-list-more:focus-visible,
.news-category-tab:focus-visible,
.news-list-title a:focus-visible,
.news-side-item:focus-visible,
.news-detail-neighbor a:focus-visible {
    outline: 2px solid var(--home-primary);
    outline-offset: 2px;
}

.news-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 10px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.news-category-tab {
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 99px;
    background: var(--home-soft);
    color: var(--home-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.news-category-tab.is-active,
.news-category-tab:hover {
    background: #e7f2fb;
    color: var(--home-primary-dark);
}

.news-layout,
.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 288px;
    gap: 16px;
    align-items: start;
}

.news-list-main,
.news-detail-main {
    min-width: 0;
}

.news-list-card {
    display: grid;
    grid-template-columns: 244px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 10px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
    transition: box-shadow .18s ease, transform .18s ease;
}

.news-list-cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px;
    background: var(--home-media-bg);
}

.news-list-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease;
}

.news-list-card:hover .news-list-cover img {
    transform: scale(1.03);
}

.news-list-card:hover {
    box-shadow: 0 10px 24px rgba(31, 47, 69, .06);
    transform: translateY(-1px);
}

.news-list-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.news-list-date {
    margin-bottom: 6px;
    color: var(--home-primary);
    font-size: 13px;
    font-weight: 700;
}

.news-list-title {
    margin: 0;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
}

.news-list-title a {
    display: -webkit-box;
    color: var(--home-text);
    text-decoration: none;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-list-title a:hover {
    color: var(--home-primary);
    text-decoration: none;
}

.news-list-brief {
    display: -webkit-box;
    margin: 7px 0 12px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.65;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-side {
    position: sticky;
    top: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.news-detail-side {
    display: grid;
    gap: 16px;
}

.news-share-qr {
    display: grid;
    justify-items: center;
    padding: 14px 12px 16px;
    border-radius: 10px;
    background: var(--home-soft);
    text-align: center;
}

.news-share-qr-box {
    width: 140px;
    height: 140px;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
}

.news-share-qr-box img,
.news-share-qr-box canvas {
    display: block;
    width: 124px;
    height: 124px;
}

.news-share-qr p {
    margin: 10px 0 3px;
    color: var(--home-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.news-share-qr span {
    color: var(--home-muted);
    font-size: 12px;
    line-height: 1.4;
}

.news-side-title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--home-text);
}

.news-side-item {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--home-border);
    color: var(--home-text);
    text-decoration: none;
}

.news-side-item:last-child {
    border-bottom: 0;
}

.news-side-item time {
    display: block;
    margin-bottom: 4px;
    color: var(--home-primary);
    font-size: 12px;
    font-weight: 700;
}

.news-side-item span {
    display: -webkit-box;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-side-item:hover {
    color: var(--home-primary);
    text-decoration: none;
}

.news-pagination {
    display: flex;
    justify-content: center;
    padding: 18px 0 0;
}

.news-empty {
    padding: 42px 16px;
    border-radius: 10px;
    background: var(--home-surface);
    color: var(--home-subtle);
    text-align: center;
    box-shadow: var(--home-shadow);
}

.news-detail-card {
    padding: 28px 30px;
    border-radius: 10px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.news-detail-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.45;
    color: var(--home-text);
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    margin: 12px 0 20px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.5;
}

.news-detail-meta span {
    display: inline-flex;
    align-items: center;
}

.news-detail-cover {
    display: block;
    width: 100%;
    max-height: 520px;
    margin-bottom: 22px;
    border-radius: 8px;
    object-fit: cover;
}

.news-detail-content {
    color: var(--home-text);
    font-size: 16px;
    line-height: 1.9;
    word-break: break-word;
    max-width: 760px;
}

.activity-video-summary {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 10px;
    background: var(--home-soft);
}

.activity-video-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: var(--home-media-bg);
}

.activity-video-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-video-desc {
    display: block;
    margin: 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.65;
    white-space: normal;
    overflow: visible;
}

.activity-video-player {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 4px;
    border-radius: 10px;
    background: #0f172a;
}

.activity-video-player video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-detail-neighbor {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.news-detail-neighbor a,
.news-detail-neighbor span {
    display: block;
    min-width: 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-detail-neighbor a:hover {
    color: var(--home-primary);
}

.software-page {
    padding-top: 0px;
}

.software-page-head {
    margin-bottom: 12px;
    padding: 14px 18px;
    border: 1px solid var(--home-border);
    box-shadow: 0 8px 18px rgba(31, 47, 69, .035);
}

.software-page .news-page-title {
    font-size: 25px;
    letter-spacing: 0;
}

.software-page-note {
    flex: 0 0 auto;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.software-banner-box {
    position: relative;
    left: 50%;
    width: 100vw;
    height: clamp(160px, 22vw, 300px);
    margin-left: -50vw;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    background: #eaf5ff;
    box-shadow: none;
}

.software-banner-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.software-download-section {
    margin-bottom: 16px;
}

.software-wechat-section {
    margin-bottom: 14px;
    padding: 18px 20px 20px;
    border-radius: 10px;
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
}

.software-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding: 0 2px;
}

.software-section-head h2 {
    margin: 0;
    color: var(--home-text);
    font-size: 21px;
    line-height: 1.35;
}

.software-section-head>span {
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.software-card {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e2ebf4;
    border-radius: 8px;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.software-card:hover {
    border-color: #bfd7ec;
    box-shadow: 0 12px 24px rgba(29, 43, 58, .08);
    transform: translateY(-2px);
}

.software-card-image {
    display: block;
    /* aspect-ratio: 16 / 8.4; */
    height: 240px;
    min-height: 0;
    overflow: hidden;
    border-top: 1px solid #eef3f8;
    border-bottom: 1px solid #eef3f8;
    background: #f3f8fd;
}

.software-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.software-card-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 13px 15px 10px;
}

.software-card-actions {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 12px 15px 15px;
}

.software-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 7px;
}

.software-card-type {
    color: var(--home-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.software-card-top em {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 7px;
    border-radius: 4px;
    background: #eaf5ee;
    color: #24724a;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
}

.software-card-top em.is-disabled {
    background: #f1f5f9;
    color: #64748b;
}

.software-card h3 {
    margin: 0;
    color: var(--home-text);
    font-size: 18px;
    line-height: 1.4;
}

.software-card h3 span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.software-card-summary {
    /* display: -webkit-box; */
    margin: 7px 0 6px;
    color: var(--home-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.software-card-desc {
    display: -webkit-box;
    margin: 0 0 10px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    /* -webkit-line-clamp: 4; */
    -webkit-box-orient: vertical;
}

.software-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.software-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 4px;
    background: var(--home-soft);
    color: var(--home-muted);
    font-size: 12px;
}

.software-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    margin-top: auto;
    border: 0;
    border-radius: 6px;
    background: var(--home-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s ease, box-shadow .18s ease;
}

.software-download-btn:hover:not(:disabled),
.software-download-btn:focus-visible:not(:disabled) {
    background: var(--home-primary-dark);
    box-shadow: 0 8px 16px rgba(11, 111, 174, .18);
    outline: none;
}

.software-download-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

.software-wechat-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: var(--home-soft);
}

.software-wechat-section h2 {
    margin: 0 0 8px;
    color: var(--home-text);
    font-size: 22px;
    line-height: 1.35;
}

.software-wechat-section p {
    margin: 0;
    color: var(--home-muted);
    font-size: 15px;
}

.software-wechat-section img {
    width: 136px;
    max-width: 34vw;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(29, 43, 58, .07);
}

@media (max-width: 1024px) {
    .home-container {
        width: min(100% - 24px, 960px);
    }

    .news-container {
        width: min(100% - 24px, 960px);
    }

    .news-layout,
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-side {
        position: static;
    }

    .software-grid {
        grid-template-columns: 1fr;
    }

    .home-news {
        grid-template-columns: minmax(0, 1fr);
        height: auto;
    }

    .home-news-cover,
    .home-news-cover img {
        height: 280px;
    }

    .home-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-page {
        padding-bottom: 36px;
    }

    .home-container {
        width: calc(100% - 20px);
    }

    .news-page {
        padding: 12px 0 36px;
    }

    .news-container {
        width: calc(100% - 20px);
    }

    .news-page-head {
        align-items: center;
        gap: 10px;
        padding: 11px 12px;
    }

    .news-page-title {
        font-size: 22px;
    }

    .news-page-kicker {
        font-size: 11px;
    }

    .news-category-tabs {
        gap: 8px;
        padding: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .news-category-tab {
        flex: 0 0 auto;
    }

    .software-wechat-section {
        padding: 16px;
    }

    .software-page-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 13px 14px;
    }

    .software-page-note {
        text-align: left;
    }

    .software-banner-box {
        height: 120px;
        margin-bottom: 12px;
    }

    .software-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .software-section-head>span {
        text-align: left;
    }

    .software-grid {
        grid-template-columns: 1fr;
    }

    .software-card {
        grid-template-columns: 1fr;
    }

    .software-card-image {
        min-height: 0;
        aspect-ratio: 16 / 8.8;
    }

    .software-wechat-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-list-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }

    .news-list-cover {
        aspect-ratio: 16 / 9;
    }

    .news-list-title {
        font-size: 17px;
    }

    .news-list-brief {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .news-detail-card {
        padding: 16px;
    }

    .news-detail-title {
        font-size: 22px;
    }

    .news-detail-meta {
        margin: 10px 0 16px;
    }

    .news-side {
        padding: 12px 14px;
    }

    .activity-video-summary {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: start;
        padding: 10px;
    }

    .activity-video-thumb {
        display: none;
    }

    .activity-video-desc {
        font-size: 13px;
        line-height: 1.55;
    }

    .home-banner {
        height: 48vw;
        min-height: 180px;
        margin-bottom: 22px;
    }

    .home-section {
        margin-top: 22px;
        padding: 14px;
    }

    .home-section-head {
        align-items: flex-end;
        margin-bottom: 12px;
    }

    .home-news {
        padding: 0;
        gap: 12px;
    }

    .home-news-cover,
    .home-news-cover img {
        height: 190px;
    }

    .home-news-list {
        --news-item-height: 68px;
        height: calc(var(--news-item-height) * 5 + var(--news-item-gap) * 4);
    }

    .home-news-item {
        gap: 8px;
        padding: 7px 10px;
    }

    .home-news-date {
        min-width: 74px;
        padding: 0 6px;
        font-size: 11px;
    }

    .home-card-grid {
        grid-template-columns: 1fr;
    }

    .home-section-title {
        font-size: 22px;
    }

    .home-section-title-line {
        min-width: 0;
    }

    .home-section-more {
        min-height: 36px;
        padding: 0;
        font-size: 13px;
    }

    .home-news-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .home-card-body {
        min-height: 96px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .home-banner {
        height: 52vw;
        min-height: 168px;
    }

    .home-section-title {
        font-size: 21px;
    }

    .home-section-subtitle {
        font-size: 11px;
    }

    .home-card-title {
        font-size: 16px;
    }

    .home-card-desc {
        font-size: 13px;
    }

    .activity-video-summary {
        grid-template-columns: 1fr;
    }

}

@media (prefers-reduced-motion: reduce) {

    .home-banner-slide,
    .home-news-cover-swap-enter-active,
    .home-news-cover-swap-leave-active,
    .home-news-item,
    .home-section-more,
    .home-card,
    .software-card,
    .software-download-btn,
    .news-list-card,
    .news-list-cover img {
        transition: none !important;
    }

    .software-card:hover {
        transform: none;
    }
}