:root {
    --max-width: 1440px;
    --padding-common: 20px;
    --primary-color: #0088ff;
    --primary-hover: #0077ee;
    --secondary-color: #1890ff;
    --text-main: #333;
    --text-secondary: #666;
    --text-light: #999;
    --shadow-common: 0 2px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

/* 整栏背景区块 */
.section-bg {
    width: 100%;
    padding: 60px 0;
}

.data-recommend {
    background: linear-gradient(180deg,#ffffff80 -19.56%,#e5efff);
}

.core-function {
    background: #ffffff;
}

.function-compare {
    background: linear-gradient(180deg,#ffffff80 -19.56%,#e5efff);
}

.partners-compare {
    background: #ffffff;
}

/* 内容限制宽度 */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-common);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* 导航 */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 66px;
    min-width: 1440px;
    font-size: 14px;
    line-height: 14px;
    transition: all .5s;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    position: relative;
}

.header-menu {
    display: flex;
    align-items: center;
    height: 66px;
    margin-left: 65px;
}

.menu-title {
    padding: 0 15px;
}

.header-search {
    padding-right: 30px;
}

.header-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.search-input {
    width: 160px;
    height: 32px;
    padding-left: 30px;
    padding-right: 18px;
    line-height: 32px;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    border: none;
    transition: all .5s;
    color: #262626;
    background: rgba(187, 187, 187, 0.15);
}

.navbtn {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 134px;
}

.regbtn {
    width: 82px;
    height: 32px;
    margin-left: 24px;
    line-height: 32px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background: #ed510a;
    border-radius: 4px;
}

/* 轮播 */
.carousel {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
}

.banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: calc(100% - 240px);
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.banner-subtitle {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.6;
}

.banner-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.banner-btn {
    display: inline-block;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
    width: 10%;
    text-align: center;
}

.banner-btn:hover {
    background: var(--primary-hover);
}

.banner-graphic {
    position: absolute;
    bottom: 0;
    right: 80px;
    width: 600px;
    height: 400px;
    z-index: 1;
}

.banner-graphic .cube {
    position: absolute;
    background: linear-gradient(135deg, #66b3ff 0%, var(--primary-color) 100%);
    opacity: 0.8;
    box-shadow: 0 8px 24px rgba(0, 136, 255, 0.2);
}

.cube1 {
    width: 120px;
    height: 120px;
    top: 80px;
    right: 160px;
    transform: rotate(15deg);
}

.cube2 {
    width: 180px;
    height: 180px;
    top: 120px;
    right: 80px;
    transform: rotate(-10deg);
}

.cube3 {
    width: 100px;
    height: 100px;
    top: 220px;
    right: 240px;
    transform: rotate(25deg);
}

.cube4 {
    width: 140px;
    height: 140px;
    top: 260px;
    right: 120px;
    transform: rotate(-20deg);
}

.cube5 {
    width: 80px;
    height: 80px;
    top: 320px;
    right: 200px;
    transform: rotate(10deg);
}

.carousel-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.carousel-dot {
    width: 30px;
    height: 3px;
    background: #ccc;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.carousel-arrow:hover {
    background: rgba(0, 136, 255, 0.8);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

/* 数据列表 */
.data-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.data-item-link {
    display: block;
}

.data-item {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-common);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.data-item:hover {
    transform: translateY(-5px);
}

.data-center {
    display: flex;
    gap: 20px;
}

.data-item .icon {
    width: 64px;
    height: 64px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px;
}

.api-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 8px;
    display: inline-block;
    transition: color 0.2s ease;
}

.data-item-link:hover .api-title h3 {
    color: var(--secondary-color);
}

.data-item .tag {
    display: inline-block;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
}

.data-item .tag.pay {
    background: #fff2e8;
    color: #fa8c16;
}

.data-item .tag.auth {
    background: #f6ffed;
    color: #52c41a;
}

.data-item .tag.info {
    background: #1677ff1a;
    color: #1677ff;
}

.data-item .tag.danger {
    background: #ff4d4f1a;
    color: #f5222d;
}

.data-item .tag.vip {
    background: #e6f7ff;
    color: #1890ff;
}

.data-item .tag.free {
    background: #f6ffed;
    color: #52c41a;
}

.data-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 12px 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
    word-break: break-all;
}

.data-item .btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

/* 核心功能 */
.function-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.function-item {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-common);
}

.function-item .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
}

.function-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 12px;
}

.function-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* 功能对比 */
.compare-wrap {
    background: url('/template/index/default/assets/img/index-compare-bg.png') 0 0 no-repeat;
    align-items: center;
    padding: 40px 0;
}

.common_content {
    background: #ffffffc6;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(1, 91, 254, 0.16);
    display: flex;
    height: 588px;
}

.common_content_left {
    padding: 150px 0 0 76px;
    width: 230px;
}

.common_content_left li {
    color: #292929;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 50px;
    padding-left: 30px;
}

.common_content_middle {
    color: var(--text-secondary);
    font-size: 16px;
    padding: 0 50px;
    width: 440px;
}

.common_content h3 {
    color: #171d26;
    font-size: 24px;
    font-weight: 500;
    line-height: 150px;
    text-align: center;
}

.common_content_middle_list li {
    background: url(../img/cuo.png) 0 0 no-repeat;
    line-height: 24px;
    margin-bottom: 30px;
    padding-left: 36px;
    font-size: 16px;
}

.common_content_right {
    color: #5e5e5e;
    padding: 0 50px;
    width: 440px;
}

.common_content_right_list li {
    background: url(../img/dui.png) 0 0 no-repeat;
    line-height: 24px;
    margin-bottom: 30px;
    padding-left: 36px;
    font-size: 16px;
}

/* 合作伙伴 */
.cooperation_box {
    overflow: hidden;
    min-width: 800px;
    position: relative;
}

.cooperate_left {
    left: 0;
    top: 0;
    transform: rotateZ(0deg);
}

.cooperate_right {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.cooperate_shadow {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: calc(64px + 120px);
    z-index: 2;
}

.partner_box {
    display: flex;
    align-items: center;
    width: calc(100% + 220px);
    margin: 20px 0;
}

.moveLeftSlideshow {
    animation: moveLeftSlideshow 20s linear infinite;
}

.moveRightSlideshow {
    animation: moveRightSlideshow 20s linear infinite;
}

@keyframes moveLeftSlideshow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes moveRightSlideshow {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.product-item img {
    width: 100%;
}

.product-item {
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .6);
    border: 1px solid #f0f0f0;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
}

/* 底部注册 */
.footer-banner {
    height: 160px;
    background: #0180ff url(/template/index/default/assets/img/reg-bg.png) center no-repeat;
    overflow: hidden;
    min-width: 1440px;
}

.footer-banner .footer-title {
    font-size: 24px;
    font-weight: 400;
    margin-top: 30px;
    text-align: center;
    color: #fff;
}

.footer-banner .footer-reg {
    display: block;
    margin: 30px auto 0;
    width: 120px;
    height: 36px;
    line-height: 36px;
    background-color: #fff;
    border-radius: 2px;
    border: solid 1px #fff;
    font-size: 20px;
    color: #188ae0;
    text-align: center;
}
/* style_api_new.css */
.api-market-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.page-header {
    background: url('/template/index/default/assets/img/price-bg.png') 0 0 no-repeat;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    height: 350px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.header-tags {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.tag-item i {
    font-size: 12px;
}

.search-bar {
    max-width: 600px;
    margin: 0 auto 20px;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
}

.search-btn {
    background: #165dff;
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
}

.hot-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hot-tag {
    color: #fff;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.2);
    transition: background 0.2s;
}

.hot-tag:hover {
    background: rgba(255,255,255,0.3);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 15px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-label {
    font-size: 14px;
    color: #666;
}

.filter-tags {
    display: flex;
    gap: 8px;
}

.filter-tag {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    background: #f5f5f5;
    transition: all 0.2s;
}

.filter-tag.active {
    background: #165dff;
    color: #fff;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.api-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.api-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.api-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #ccc;
    padding: 8px;
}

.card-title {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.card-arrow {
    color: #165dff;
    font-size: 16px;
}

.card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
}

.price-free {
    color: #ff6b6b;
    background: #ffe6e6;
}

.price-single {
    color: #ff9f43;
    background: #fff3e6;
}

.doc-btn {
    font-size: 13px;
    color: #165dff;
    padding: 6px 16px;
    border: 1px solid #165dff;
    border-radius: 6px;
    transition: all 0.2s;
}

.doc-btn:hover {
    background: #165dff;
    color: #fff;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    background: #fff;
    transition: all 0.2s;
}

.page-item.active {
    background: #165dff;
    color: #fff;
}

.page-item:hover:not(.active) {
    background: #f5f5f5;
}
    .api-docs-box {
        padding-bottom: 60px;
        background: #f3f7fa;
    }
    
    .api-details-box {
        display: flex;
        gap: 24px;
    }
    
    /* 左侧菜单区域 */
    .page-left {
        width: 280px;
        flex-shrink: 0;
    }
    
    .card-header {
        font-size: 16px;
        font-weight: 600;
        color: #1D2129;
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 2px solid #E5E6EB;
    }
    
    .menu-list {
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        padding: 16px;
        overflow: hidden;
    }
    
    .menu-item {
        margin-bottom: 8px;
    }
    
    .menu-parent {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        color: #1D2129;
        font-weight: 500;
    }
    
    .menu-parent:hover {
        background: #F2F3F5;
    }
    
    .menu-parent.active {
        background: #E8F3FF;
        color: #165DFF;
    }
    
    .menu-type-img {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        object-fit: contain;
        background: #F2F3F5;
        padding: 2px;
    }
    
    .menu-icon {
        margin-left: auto;
        transition: transform 0.2s ease;
    }
    
    .menu-parent.active .menu-icon {
        transform: rotate(90deg);
    }
    
    .menu-children {
        display: none;
        padding: 4px 0;
    }
    
    .menu-children.show {
        display: block;
    }
    
    .menu-child {
        padding: 8px 12px 8px 44px !important;
        border-radius: 6px;
        cursor: pointer;
        color: #4E5969;
        font-size: 14px;
        transition: all 0.2s ease;
    }
    
    .menu-child:hover {
        background: #F2F3F5;
        color: #165DFF;
    }
    
    .menu-child.active {
        background: #F2F3F5;
        color: #165DFF;
        font-weight: 500;
    }
    
    /* 右侧内容区域 */
    .page-right {
        flex: 1;
    }
    
    .api-details-top {
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        padding: 24px;
        margin-bottom: 24px;
        display: flex;
        align-items: flex-start;
        gap: 24px;
    }
    
    .api-details-top img {
        width: 200px;
        height: 200px;
        object-fit: contain;
        border-radius: 8px;
        border: 1px solid #f1f1f1;
        padding: 8px;
        flex-shrink: 0;
    }
    
    .project-info {
        flex: 1;
    }
    
    .tag {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 500;
        margin-right: 8px;
        margin-bottom: 8px;
    }
    
    .tag-normal {
        background: #80ff70;
        color: #15c377;
        background-color: #15c3771a;
    }
    
    .tag-count {
        background: #E8F3FF;
        color: #165DFF;
    }
    
    .project-details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
        margin-top: 16px;
    }
    
    .project-details-item {
        display: flex;
        flex-direction: column;
    }
    
    .project-title {
        font-size: 14px;
        color: #86909C;
        margin-bottom: 4px;
    }
    
    .project-text {
        font-size: 14px;
        color: #1D2129;
        font-weight: 500;
    }
    
    .btn-open {
        background: #165DFF;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 10px 20px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        margin-top: 16px;
        transition: background 0.2s ease;
    }
    
    .btn-open:hover {
        background: #0E42D2;
    }
    
    /* 标签页样式 */
    .api-tabs {
        background: #fff;
        border-radius: 6px 6px 0 0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }
    
    .api-tabs ul {
        display: flex;
        list-style: none;
        border-bottom: 1px solid #E5E6EB;
    }
    
    .api-tabs li {
        padding: 16px 24px;
        font-size: 14px;
        font-weight: 500;
        color: #4E5969;
        cursor: pointer;
        transition: all 0.2s ease;
        border-bottom: 2px solid transparent;
    }
    
    .api-tabs li:hover {
        color: #165DFF;
    }
    
    .api-tabs li.active {
        color: #165DFF;
        border-bottom: 2px solid #165DFF;
    }
    
    /* 内容区域 */
    .api-content {
        background: #fff;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        padding: 24px;
        margin-bottom: 24px;
    }
    
    .api-content-item {
        display: none;
    }
    
    .api-content-item.active {
        display: block;
    }
    
    .api-content-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: #1D2129;
        margin: 24px 0 12px 0;
    }
    
    .api-content-item h4:first-child {
        margin-top: 0;
    }
    
    .api-content-item p {
        font-size: 16px;
        color: #4E5969;
        margin-bottom: 12px;
    }
    
    /* 表格样式 */
    .api-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 16px;
        font-size: 14px;
    }
    
    .api-table th {
        background: #F7F8FA;
        color: #1D2129;
        font-weight: 600;
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid #E5E6EB;
    }
    
    .api-table td {
        padding: 12px 16px;
        border-bottom: 1px solid #F2F3F5;
        color: #4E5969;
    }
    
    .api-table tbody tr:hover {
        background: #F7F8FA;
    }
    
    /* 代码样式 */
    pre {
        background: #1D2129;
        color: #fff;
        padding: 16px;
        border-radius: 8px;
        overflow-x: auto;
        margin: 16px 0;
        position: relative;
    }
    
    code {
        font-family: "Consolas", "Monaco", monospace;
        font-size: 14px;
    }
    
    pre.hljs {
        padding-left: 4.5em !important;
    }
    
    pre.hljs .line-numbers {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4em;
        text-align: right;
        padding: 0.5em;
        box-sizing: border-box;
        font-family: monospace;
        color: #86909C;
        line-height: inherit;
        border-right: 1px solid #333;
    }
    
    pre.hljs .line-numbers span {
        display: block;
        padding-right: 0.5em;
    }
    
    /* 示例代码标签页 */
    .code-tabs {
        margin: 16px 0;
    }
    
    .code-tabs .hapi {
        display: flex;
        list-style: none;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 16px;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .code-tabs .hapi li {
        padding: 8px 16px;
        font-size: 16px;
        color: #4E5969;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .code-tabs .hapi li.active {
        border-bottom: 2px solid #165DFF;
    }
    
    .code-tab-content {
        background: #272822;
        border-radius: 8px;
        padding: 2px;
        WIDTH: 800px;
    }
    
    .code-tab-item {
        display: none;
    }
    
    .code-tab-item.active {
        display: block;
    }
    
    /* 在线调试区域 */
    .request-area {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }
    
    .layui-input {
        height: 40px;
        padding: 0 12px;
        border: 1px solid #E5E6EB;
        border-radius: 8px;
        font-size: 16px;
        width: 100%;
    }
    
    .layui-input:disabled {
        background: #F7F8FA;
        color: #86909C;
    }
    
    .pear-btn {
        height: 40px;
        padding: 0 20px;
        background: #165DFF;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.2s ease;
    }
    
    .pear-btn:hover {
        background: #0E42D2;
    }
    
    /* 接口未开通提示 */
    .api-notice-area {
        background: #FFFBE6;
        border: 1px solid #FFE58F;
        border-radius: 8px;
        padding: 30px 20px;
        text-align: center;
        margin: 20px 0;
    }
    
    .api-notice-area .lock-icon {
        font-size: 32px;
        color: #FAAD14;
        margin-bottom: 16px;
    }
    
    .api-notice-area .notice-title {
        font-size: 16px;
        color: #8C6C29;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .api-notice-area .notice-desc {
        font-size: 14px;
        color: #B58A3A;
        margin-bottom: 20px;
    }
    
    .api-notice-area .open-btn {
        background: #FAAD14;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 10px 24px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        transition: background 0.2s ease;
    }
    
    .api-notice-area .open-btn:hover {
        background: #F7BA1E;
    }
    .membership-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* 卡片间距 */
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 会员卡片样式 */
.membership-card {
    flex: 1 1 calc(33.333% - 20px); /* 基础3列布局 */
    min-width: 280px; /* 最小宽度，保证移动端显示 */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 卡片悬浮效果 */
.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 卡片头部 */
.membership-header {
    background: linear-gradient(135deg, #70f981 0%, #01ab16 100%);
    padding: 20px;
    text-align: center;
    color: #fff;
}

.membership-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* 价格区域 */
.membership-price {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
}

.membership-price strong {
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

.membership-price-type {
    font-size: 14px;
    color: #999;
    margin-left: 8px;
}

/* 购买按钮 */
.membership-btn {
    padding: 20px;
    text-align: center;
}

.membership-btn .theme-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #01ab16;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.membership-btn .theme-btn:hover {
    background: #5a67d8;
}

.membership-btn .theme-btn i {
    margin-left: 8px;
    font-size: 14px;
}

/* 权益列表 */
.membership-features {
    padding: 20px;
}

.membership-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.membership-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.membership-features li i {
    color: #01ab16;
    margin-right: 8px;
    font-size: 16px;
}
.introduction-content {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
.introduction-left {
    min-width: 400px;
    max-width: 400px;
}
.introduction-top {
    font-size: 32px;
    font-weight: 700;
}
.introduction-left ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 20px;
    margin: 48px 0 20px;
}
.introduction-left ul li span {
    display: block;
    font-size: 36px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 600;
}
.introduction_bottom img {
    width: 100%;
    height: 213px;
}
.introduction-right {
    flex: 1;
    margin-left: 40px;
    padding: 40px;
    border-radius: 0;
    border: 1px solid #E6E9EC;
    box-shadow: 0px 2px 7px 0px #F2F5F7;
}
.introduction-right-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.introduction-right-title::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #06f;
    margin-top: 18px;
}
.introduction-right-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: justify;
}
.sitelogo{
    height: 60px;
    align-items: center;
    display: flex;
    width: 200px;
    justify-content: center;
}
.sitelogo .logo{
    max-width: 100%;
    max-height: 100%;
}