@import "reset.css";
/** 公共样式 **/
.mt2 {
    margin-top: 16px;
}

.mt3 {
    margin-top: 24px;
}

.mx1 {
    margin: 0 8px;
}

.separator {
    margin: 0 8px;
    color: #e3e3e3;
    font-size: 12px;
}


.background-theme {
    background-color: var(--theme-color);
    color: #fff;
}

.background-dark {
    background-color: var(--background-color-dark);
    color: #fff;
}

.section {
    width: var(--content-width);
    padding: 96px 0;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px;
    text-align: center;
    text-transform: uppercase;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 40px;
    font-weight: bold;
    line-height: 72px;
}

.section-summary {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
}
.section-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 4px;
    min-width: 72px;
    height: 40px;
    padding: 0 16px;
    margin: 0 auto;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.section-more:hover {
    color: var(--theme-color);
}
.section-more:hover::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 16px;
    right: 16px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 10'%3E%3Cpath fill='none' stroke='%23135afa' stroke-width='2' d='M0,5 C6.67,0 13.33,10 20,5 C26.67,0 33.33,10 40,5'/%3E%3C/svg%3E") repeat-x;
    background-size: 40px 10px;
    animation: wave 0.8s linear infinite;
}

.pv-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    padding: 24px 0;
}
.pv-title.error {
    color: var(--error-color);
}

.pv-description {
    line-height: 24px;
    font-size: 14px;
}

.banner {
    position: relative;
    width: 100%;
    height: 720px;
    background: #ccc;
}
.banner-item {
    position: relative;
    overflow: hidden;
}
.banner-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.banner-item__wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: var(--content-width);
    margin: 0 auto;
    transform: translate3d(-50%, -50%, 0);
    color: #fff;
}

.banner-item__title {
    width: 30%;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-transform: uppercase;
}

.banner-item__summary {
    width: 30%;
    padding: 16px 0;
    font-size: 16px;
    line-height: 24px;
}

.banner-item__actions {
    margin-top: 16px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 48px;
    padding: 0 32px;
    border: 1px solid var(--theme-color);
    border-radius: 24px;
    color: var(--theme-color);
    background-color: transparent;
    font-size: 16px;
    transition: all 200ms ease-in-out;
    cursor: pointer;
}

.action-button:disabled {
    background-color: #ccc;
    color: #fff;
}

.action-button .icon {
    font-size: 20px;
}

.action-button.icon-large .icon {
    font-size: 24px;
}

.action-button.primary {
    background-color: var(--theme-color);
    color: #fff;
}

.action-button.success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: #fff;
}

.action-button:not(:disabled):hover {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
    color: #fff;
}

.product-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.product-items li {
    width: calc(33.3333% - 16px);
    padding: 32px;
    border-radius: 8px;
    background: #fff;
}

.product-item-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    padding: 24px 0;
}

.product-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    object-fit: cover;
    overflow: hidden;
}

.product-item-description {
    min-height: 72px;
    line-height: 24px;
    font-size: 14px;
}

.module-banner {
    display: flex;
    align-items: flex-end;
    position: relative;
    width: 100%;
    min-height: 128px;
    padding-top: 120px;
    padding-bottom: 48px;
    /*height: 360px;*/
    background-color: #ccc;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    overflow: hidden;
}

.module-banner__cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.module-banner__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.module-banner__container {
    position: relative;
    z-index: 10;
    width: var(--content-width);
    /*margin: 120px auto 48px auto;*/
    margin: 0 auto;
    color: #fff;
}

.module-banner__operation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 48px;
    margin-top: 24px;
}

.module-content {
    width: var(--content-width);
    margin: 32px auto;
}


.module-header {
    display: flex;
    align-items: center;
    height: 48px;
    margin-bottom: 16px;
}

.module-title {
    text-align: center;
    font-size: 24px;
}

.category {
    position: sticky;
    top: 0;
    z-index: 150;
    width: 100%;
    background-color: #fff;
}

.category-items {
    display: flex;
    align-items: center;
    width: var(--content-width);
    height: 72px;
    margin: 0 auto;
}

.category-items li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    margin-right: 48px;
    font-size: 16px;
    cursor: pointer;
}

.category-items li > a {
    display: flex;
    align-items: center;
    height: 100%;
}

.category-items li.active {
    color: var(--theme-color);
}

.category-items li.active:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--theme-color);
}

.sidebar {
    width: 320px;
    flex-shrink: 0;
}


/** header **/
.header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background: transparent;
    color: #fff;
    transition: background-color 300ms ease-out;
}
.header.sticky, .header.header__white {
    background: #fff;
    color: var(--text-color);
}

.header-container {
    display: flex;
    align-items: center;
    width: var(--content-width);
    height: 72px;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    width: 135px;
    height: 48px;
    background-image: url("/assets/images/logo_w.png");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.header.sticky .logo, .header.header__white .logo {
    background-image: url("/assets/images/logo.png");
}

.nav-overlay {
    display: none;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.4);
}

.nav {
    display: flex;
    flex: 1;
    margin-left: 32px;
}

.nav-header {
    display: none;
}

.nav-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 40px;
    padding: 0 16px;
    font-size: 16px;
    cursor: pointer;
}

.nav-menu.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 24px;
    height: 2px;
    margin-left: -12px;
    background: #fff;
}
.header.header__white .nav-menu.active, .header.sticky .nav-menu.active {
    color: var(--theme-color);
}
.header.header__white .nav-menu.active::after, .header.sticky .nav-menu.active::after {
    color: var(--theme-color);
    background: var(--theme-color);
}
.header.header__white .nav-trigger, .header.sticky .nav-trigger {
    color: var(--text-color);
}

.nav-menu > .icon {
    margin-left: 4px;
}
.nav-trigger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    color: #fff;
}
.nav-trigger .icon {
    font-size: 28px;
}
.nav-special {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.special-menu {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 16px;
    border-radius: 4px;
    background-color: var(--theme-color);
    color: #fff;
    cursor: pointer;
}
.special-menu:hover {
    color: #fff;
}

/** 移动端菜单 **/
.mnav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    background: #000;
}
.mnav{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    z-index: 999;
    transform: translate3d(100%, 0, 0);
    background: #fff;
}
.mnav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 72px;
    border-bottom: 1px solid #f2f2f2;
    color: var(--text-color);
}
.mnav-title {
    font-size: 20px;
    font-weight: bold;
    padding: 0 24px;
}
.mnav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-right: 8px;
}
.mnav-close .icon {
    font-size: 28px;
}
.mnav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
    min-height: 48px;
    padding: 8px 24px;
    font-weight: 600;
    color: var(--text-color);
}
.mnav-menu.active {
    color: #fff;
    background: var(--theme-color);
}


/** footer **/
.footer {
    display: flex;
    flex-wrap: wrap;
    width: var(--content-width);
    padding: 48px 0;
    margin: 0 auto;
}

.footer-info {
    width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 64px;
    font-size: 24px;
    font-weight: 600;
}
.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-contact {
    padding-right: 48px;
    line-height: 24px;
}

.footer-contact li {
    padding: 4px 0;
}

.footer-contact__label {
    color: rgba(255, 255, 255, 0.5);
}

.footer-navigation {
    flex: 1;
}

.footer-navigation-title {
    display: flex;
    align-items: center;
    height: 48px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.footer-navigation-item {
    display: flex;
    align-items: center;
    height: 36px;
}
.footer-navigation-item:hover {
    color: #fff;
    text-decoration: underline;
}

.copyright {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.copyright-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: var(--content-width);
    min-height: 32px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 24px;
}

.copyright-content a {
    margin-left: 8px;
}

/*浮动栏*/
.floater {
    display: block;
    position: fixed;
    right: 24px;
    bottom: 10vh;
    z-index: 1000;
}

.floater-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 4px;
    border-radius: 4px;
    text-align: center;
    background: #fff;
    cursor: pointer;
}

.floater-item > .icon {
    font-size: 24px;
}

.floater-item:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/*分页*/
.pagination {
    display: flex;
    align-items: center;
    min-height: 48px;
    margin: 0 -4px;
}
.pagination > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    margin: 4px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}
.pagination > a.active {
    color: #fff;
    background-color: var(--theme-color);
}

/*文章内容页*/
.article-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    width: var(--content-width);
    margin: 96px auto 48px;
}
.article-main {
    width: calc(100% - 344px);
}
.article {
    position: relative;
    width: 100%;
    padding: 24px 32px;
    border-radius: 8px;
    background-color: #fff;
}
.article-header {
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #f0f0f0;
}
.article-title {
    display: flex;
    flex-wrap: wrap;
    min-height: 64px;
    padding: 16px 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}
.article-info {
    display: flex;
    align-items: center;
    min-height: 20px;
}
.article-info__item {
    color: #888;
    font-size: 12px;
}
.article-content {
    font-size: 14px;
    line-height: 22px;
    word-break: break-all;
    padding-bottom: 48px;
}
.article-content img {
    max-width: 100% !important;
    height: auto;
}
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 0;
}
.article-tags a {
    color: var(--theme-color);
    margin-right: 16px;
}
.article-tags a:hover {
    text-decoration: underline;
}
.article-actions {
    display: flex;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px dashed #f0f0f0;
}
.article-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 36px;
    padding: 0 16px;
    margin-right: 12px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    transition: all 200ms ease-in;
    cursor: pointer;
}
.article-actions a:hover {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.article-recommend{
    position: relative;
    width: 100%;
    padding: 16px 32px;
    margin-top: 16px;
    border-radius: 8px;
    background-color: #fff;
}
.article-recommend-header {
    display: flex;
    align-items: center;
    height: 40px;
    line-height: 24px;
    font-size: 16px;
    font-weight: 600;
}
.links li {
    line-height: 24px;
    padding: 4px 0;
}
.links a:hover {
    text-decoration: underline;
}

/*widget:卡片容器*/
.widget-card {
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    padding: 0 24px 24px;
}
.widget-card.widget-adv {
    padding: 0;
}
.widget-card + .widget-card {
    margin-top: 16px;
}
.widget-card-header {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 0;
    min-height: 56px;
}
.widget-card-title {
    position: relative;
    font-size: 16px;
    font-weight: 600;
}
.widget-card-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* widget:关注我们 */
.follow-text {
    flex: 1;
    margin-left: 24px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}
.follow-qrcode {
    flex-shrink: 0;
    width: 104px;
    height: 104px;
    border: 4px solid rgba(0,0,0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}
.follow-qrcode img{
    width: 100%;
    height: 100%;
}

/*widget:官方媒体*/
.official-medias {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}
.official-medias li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 4px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0, 0.1);
    cursor: pointer;
}
.official-medias li .icon {
    font-size: 28px;
}

/*widget:广告牌*/
.widget-adv-container {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.widget-adv-container img {
    width: 100%;
    height: auto;
    line-height: 1;
}

.recommend-news {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 10;
    width: var(--content-width);
    margin: -148px auto 0;
}

.recommend-news-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 72px;
    text-transform: uppercase;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.recommend-news-more {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    font-size: 18px;
    cursor: pointer;
}

.recommend-news-more .icon {
    margin-left: 4px;
}

.recommend-news-item {
    display: flex;
    flex-direction: column;
    width: calc(33.3333% - 16px);
    height: 160px;
    padding: 32px;
    border-radius: 8px;
    background: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.recommend-news-item span {
    margin-top: auto;
    line-height: 24px;
    font-size: 14px;
}

.ecosystem {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.ecosystem li {
    width: calc(25% - 18px);
    min-height: 320px;
    padding: 32px;
    border-radius: 8px;
    background: var(--linear-to-top-opacity-white);
}

.ecosystem-link {
    display: flex;
    align-items: center;
    height: 32px;
    margin-bottom: 2px;
    cursor: pointer;
}
.ecosystem-link:hover {
    color: #fff;
    text-decoration: underline;
}

.ecosystem-icon {
    display: flex;
    align-items: center;
    height: 40px;
}

.ecosystem-icon .icon {
    font-size: 36px;
}

.padding-bottom-subscribe {
    position: relative;
    padding-bottom: 160px;
}

/**邮件订阅**/
.subscribe-us {
    display: flex;
    align-items: center;
    position: relative;
    width: var(--content-width);
    min-height: 320px;
    margin: -160px auto 0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}

.subscribe-us img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

/**入驻平台**/
.entry-platform {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: var(--content-width);
    min-height: 280px;
    padding: 32px 64px;
    margin: -160px auto 0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}
.entry-platform-description {
    max-width: 450px;
}

.subscribe-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
    height: 100%;
}

.subscribe-content {
    flex: 1;
    padding: 32px 64px;
}

.subscribe-input {
    display: flex;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.subscribe-input:focus {
    border-color: var(--theme-color);
}

.advantage {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.advantage li {
    width: 25%;
    text-align: center;
    border-right: 1px solid #e3e3e3;
}

.advantage li:last-of-type {
    border-right: 0;
}

.advantage strong {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 12px;
    font-size: 28px;
    font-weight: 600;
}

.advantage strong span {
    margin-left: 4px;
    font-size: 24px;
}

.advantage p {
    line-height: 24px;
}


.partners {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.partners li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(20% - 4px);
    height: 96px;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.partners li img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.about-banner {
    height: 400px;
}

.culture-content {
    width: var(--content-width);
    padding: 48px 0;
    margin: 0 auto;
}
.culture {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.culture li {
    position: relative;
    width: calc(33.3333% - 16px);
    min-height: 120px;
    padding: 32px 32px 32px 108px;
    border-radius: 8px;
    background: var(--linear-to-right-opacity-white);
}
.culture-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
}
.culture-description {
    line-height: 24px;
}
.culture-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 108px;
    height: 120px;
}
.culture-icon > .icon {
    font-size: 48px;
}

.history-item {
    width: calc(25% - 16px);
    height: 360px;
    padding: 32px;
    border-radius: 8px;
    background-color: #fff;
}
.history-year {
    display: flex;
    align-items: center;
    height: 64px;
    font-size: 24px;
    font-weight: 600;
}

.honors {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.honors li {
    flex-shrink: 0;
    padding: 8px;
    border-radius: 4px;
    background-color: #fff;
}

.honors li img {
    width: auto;
    height: 180px;
    max-width: 100%;
    object-fit: contain;
}

.news-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    width: var(--content-width);
    margin: 32px auto;
}

.news-content {
    width: calc(100% - 344px);
}

.news-item {
    display: flex;
    min-height: 208px;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    background-color: #fff;
    cursor: pointer;
}
.news-item:hover .news-title {
    color: var(--theme-color);
}
.news-item:hover .news-cover img {
    transform: scale(1.05);
}
.news-cover {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 160px;
    margin-right: 24px;
    border-radius: 8px;
    background-color: #f0f0f0;
    overflow: hidden;
}
.news-cover img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transition: transform 200ms ease-in;
}

.news-info {
    display: flex;
    flex-direction: column;
}
.news-category {
    display: inline-flex;
    align-items: center;
    height: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color);
}
.news-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 40px;
    padding: 8px 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}
.news-summary {
    font-size: 14px;
    line-height: 24px;
    max-height: 48px;
    overflow: hidden;
    color: #777;
}
.news-datetime {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    height: 24px;
    font-weight: 600;
}

/* 服务与支持 */
.support {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.support li {
    width: calc(50% - 12px);
    padding: 24px 32px;
    border-radius: 8px;
    background: #fff;
}
.support li .support-item__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
}
.support li > p {
    font-size: 14px;
    color: #777;
    line-height: 22px;
}
.support li > p > a{
    color: var(--theme-color);
}
.support li .support-item__operation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.support li .support-item__operation > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 32px;
    padding: 0 16px;
    border: 1px solid var(--theme-color);
    border-radius: 16px;
    color: var(--theme-color);
    cursor: pointer;
}
.support li .support-item__operation > a:hover {
    background: var(--theme-color);
    color: #fff;
}