/* 应用市场前端样式 */

/* 应用列表样式 */
.app-market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.app-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.app-card-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 比例 */
    background: #f5f5f5;
}

.app-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-card-content {
    padding: 15px;
}

.app-card-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.app-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.app-card-price {
    font-size: 16px;
    color: #f5222d;
    font-weight: 500;
}

.app-card-vip-price {
    color: #faad14;
    font-size: 14px;
    margin-left: 5px;
}

/* 应用详情页样式 */
.app-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.app-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.app-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.app-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.app-info {
    flex-grow: 1;
}

.app-info h1 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #333;
}

.app-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
}

.app-price-info {
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.vip-price {
    color: #f5222d;
    font-size: 20px;
    font-weight: 500;
}

.app-actions {
    display: flex;
    gap: 15px;
}

.download-btn, .trial-btn {
    padding: 10px 25px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

.download-btn {
    background: #1890ff;
    color: #fff;
}

.download-btn:hover {
    background: #40a9ff;
}

.trial-btn {
    background: #f0f0f0;
    color: #333;
}

.trial-btn:hover {
    background: #e0e0e0;
}

/* 应用截图轮播 */
.app-screenshots {
    margin: 30px 0;
    position: relative;
}

.screenshot-item img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 4px;
}

/* 详情选项卡 */
.app-tabs {
    margin-top: 30px;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.tab-item {
    padding: 12px 20px;
    cursor: pointer;
    color: #666;
    position: relative;
}

.tab-item.active {
    color: #1890ff;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1890ff;
}

.tab-content {
    min-height: 200px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
    }
    
    .app-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .app-info {
        text-align: center;
    }
    
    .app-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .app-actions {
        justify-content: center;
    }
    
    .tab-header {
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* 应用中心详情页专属样式，全部以.zss-app-detail-root为前缀，确保样式隔离 */
.zss-app-detail-root {
    --zss-main-red: #ff4d4f;
    --zss-main-bg: #f6f7f9;
    --zss-card-bg: #fff;
    --zss-border: #e5e6eb;
    --zss-tag-bg: #f3f6fa;
    --zss-title: #222;
    --zss-text: #333;
    --zss-text-light: #888;
    --zss-link: #1890ff;
    --zss-tab-active: #1890ff;
    --zss-radius: 0;
    --zss-radius-sm: 0;
    --zss-shadow: none;
    --zss-shadow-hover: none;
    --zss-font-main: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    --zss-price-bg: rgb(255, 236, 232);
    --zss-vip-text: #fffdd9;
    --zss-vip-btn-gradient: linear-gradient(283deg,#fa8849 -3%,#f87750 18%,#f34856 59%,#f03255 94%);
}
.zss-app-detail-root * {
    box-sizing: border-box;
    font-family: var(--zss-font-main);
}
body .zss-app-detail-root {
    background: var(--zss-main-bg);
    min-height: 100vh;
    padding-bottom: 40px;
}

/* 主布局：左右两栏 */
.zss-app-main {
    display: flex;
    max-width: 1200px;
    margin: 24px auto 0 auto;
    gap: 20px;
    align-items: flex-start;
}

/* 左侧主栏 */
.zss-app-main-left-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 上部分：应用信息区域 */
.zss-app-info-section {
    background: var(--zss-card-bg);
    border-radius: var(--zss-radius);
    box-shadow: var(--zss-shadow);
    padding: 24px;
    width: 100%;
}

.zss-app-info-flex {
    display: flex;
    /*gap: 24px;*/
    align-items: flex-start;
}

/* 左侧封面和截图 */
.zss-app-cover-box {
    flex: 0 1 240px;
    width: 0;
    flex-shrink: 0;
    background: var(--zss-card-bg);
    border-radius: var(--zss-radius);
    padding: 0;
    margin-bottom: 0;
    text-align: center;
    border: none;
}

.zss-app-main-img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    background: #f2f2f2;
    border: 1px solid var(--zss-border);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.zss-app-screenshot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 16px;
    justify-content: center;
    max-width: 240px;
}

.zss-app-screenshot-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.zss-app-screenshot-thumb:hover {
    transform: translateY(-2px);
}

.zss-app-screenshot-thumb.active {
    border-color: #f03255;
    box-shadow: 0 2px 8px rgba(240, 50, 85, 0.3);
}

.zss-app-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.zss-app-tag-label {
    color: #666;
    font-size: 14px;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.zss-tag-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M10.9,2.1c-0.5-0.2-1-0.1-1.4,0.3L3.8,8.1c-0.4,0.4-0.4,1,0,1.4l6.9,6.9c0.4,0.4,1,0.4,1.4,0l5.7-5.7c0.4-0.4,0.5-0.9,0.3-1.4L15.1,2.1C14.9,1.6,14.4,1.4,13.9,1.4L10.9,2.1z M11.5,10c-0.8,0-1.5-0.7-1.5-1.5S10.7,7,11.5,7S13,7.7,13,8.5S12.3,10,11.5,10z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.zss-app-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 12px;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.zss-app-tag:hover {
    background-color: #e6f7ff;
    color: #1890ff;
}

.zss-app-tag:hover .zss-tag-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231890ff'%3E%3Cpath d='M10.9,2.1c-0.5-0.2-1-0.1-1.4,0.3L3.8,8.1c-0.4,0.4-0.4,1,0,1.4l6.9,6.9c0.4,0.4,1,0.4,1.4,0l5.7-5.7c0.4-0.4,0.5-0.9,0.3-1.4L15.1,2.1C14.9,1.6,14.4,1.4,13.9,1.4L10.9,2.1z M11.5,10c-0.8,0-1.5-0.7-1.5-1.5S10.7,7,11.5,7S13,7.7,13,8.5S12.3,10,11.5,10z'/%3E%3C/svg%3E");
}

/* 右侧应用信息 */
.zss-app-info-content {
    flex: 1;
    min-width: 0;
    width: 0;
    margin-left: 35px;
}

/* 应用头部信息 */
.zss-app-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.zss-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e6eb;
    object-fit: cover;
    margin-right: 8px;
}

.zss-app-title-block {
    flex: 1;
    min-width: 0;
}

.zss-app-title-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.zss-app-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-right: 8px;
}

.zss-app-desc-row {
    margin-bottom: 5px;
}

.zss-app-desc {
    font-size: 14px;
    color: #888;
}

.zss-app-header-actions {
    display: flex;
    gap: 10px;
}

.zss-app-copy-btn, .zss-app-fav-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    padding: 0 8px;
    border-radius: 3px;
    transition: background 0.2s;
}

.zss-app-copy-btn:hover, .zss-app-fav-btn:hover {
    background: #f5f5f5;
    color: #ff4d4f;
}

/* 价格卡片 */
.zss-app-price-card {
    background: var(--zss-price-bg);
    border: 1.5px solid #ffbdbd;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px 16px 16px;
    margin-bottom: 18px;
    min-height: 90px;
}

.zss-app-price-left {
    display: flex;
    flex-direction: column;
    /*gap: 20px;*/
}

.zss-app-price-row {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 32px;
}

.zss-app-price-row2 {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 32px;
    margin-top: 4px;
}

.zss-app-price-label {
    color: #666;
    font-size: 14px;
    margin-right: 4px;
}

.zss-app-price-main {
    font-size: 24px;
    color: rgb(254, 14, 14);
    font-weight: 500;
    line-height: 1;
}

.zss-app-price-sub {
    font-size: 14px;
    color: #000;
    margin-top: 2px;
}

.zss-app-vip-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 4px;
    height: 32px;
}

.zss-app-vip-badge {
    background: #222;
    color: var(--zss-vip-text);
    font-size: 13px;
    border-radius: 3px;
    padding: 2px 10px;
    font-weight: 500;
}

.zss-app-vip-desc {
    font-size: 13px;
    color: #000;
}

.zss-app-vip-btn {
    color: #ff4d4f;
    font-size: 13px;
    margin-left: 8px;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
}

.zss-app-price-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 120px;
    gap: 20px;
}

.zss-app-users {
    color: rgba(0,0,0,.9);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}

.zss-app-stars {
    color: rgb(255, 125, 0);
    font-size: 18px;
    letter-spacing: 2px;
}

/* 应用信息行 */
.zss-app-info-rows {
    margin: 18px 10px 10px 16px;
}

.zss-app-info-row {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 12px;
}

.zss-app-info-label {
    width: 90px;
    color: #888;
    flex-shrink: 0;
}

.zss-app-info-value {
    flex: 1;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.zss-app-type-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-radius: 4px;
    cursor: help;
    transition: transform 0.2s ease;
}

.zss-app-type-icon:hover {
    transform: scale(1.2);
}

/* 购买类型选项 - 新样式 */
.zss-app-buy-type-options {
    display: flex;
    gap: 15px;
}

.zss-app-buy-type-option {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
    cursor: pointer;
}

.hidden-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.zss-app-buy-type-text {
    padding: 4px 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 13px;
    transition: all 0.2s;
}

.zss-app-buy-type-option:hover .zss-app-buy-type-text {
    background-color: #e8e8e8;
}

.zss-app-buy-type-option input[type="radio"]:checked + .zss-app-buy-type-text {
    background-color: #f03255;
    color: #fff;
}

/* 购买按钮行 */
.zss-app-buy-row {
    display: flex;
    gap: 14px;
    margin: 24px 0 10px 106px;
}

.zss-app-buy-btn {
    padding: 0 22px;
    height: 38px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    background: #fff;
    color: #ff4d4f;
    border: 1.5px solid #ff4d4f;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.zss-app-buy-btn:hover {
    background: #ff4d4f;
    color: #fff;
}

.zss-app-vip-buy-btn {
    padding: 0 22px;
    height: 38px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    background: var(--zss-vip-btn-gradient);
    color: #fff;
    font-weight: 500;
    transition: opacity 0.2s;
}

.zss-app-vip-buy-btn:hover {
    opacity: 0.9;
}

/* 购物车按钮 - 新样式 */
.zss-app-cart-btn {
    padding: 0 22px;
    height: 38px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    background: #f8f8f8;
    color: #666;
    font-weight: 500;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.zss-app-cart-btn:hover {
    background: #f0f0f0;
}

.zss-app-cart-icon {
    font-style: normal;
    font-size: 18px;
}

/* 协议行 */
.zss-app-agreement-row {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    gap: 6px;
    margin-left: 106px;
}
.xieyi-x {
    color: #000;
}

.zss-app-agreement-row input[type="checkbox"] {
    accent-color: #ff4d4f;
    margin-right: 4px;
}

.zss-app-agreement-row a {
    color: #ff4d4f;
    text-decoration: underline;
    margin-left: 2px;
}

/* 中间部分：广告横幅 */
.zss-app-banner-section {
    width: 100%;
}

.zss-app-main-tabs-banner {
    width: 100%;
    height: 82px;
    overflow: hidden;
    border-radius: var(--zss-radius);
    background: #f5f5f5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zss-app-main-tabs-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 下部分：选项卡区域 */
.zss-app-tabs-section {
    width: 100%;
}

.zss-app-tabs {
    width: 100%;
    background: var(--zss-card-bg);
    border-radius: var(--zss-radius);
    box-shadow: var(--zss-shadow);
    padding: 0 20px 20px;
}

.zss-app-tab-header {
    display: flex;
    gap: 40px;
    border-bottom: 2px solid var(--zss-border);
    padding-top: 24px;
    margin-bottom: 24px;
    height: 46px;
    align-items: flex-end;
}

.zss-app-tab-item {
    font-size: 14px;
    color: #000;
    padding: 0 18px 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    font-weight: 500;
    position: relative;
    margin-bottom: -2px;
}

.zss-app-tab-item.active {
    color: #000;
    border-bottom: 2px solid var(--zss-tab-active);
    font-weight: bold;
}

.zss-app-tab-content {
    display: none;
    padding-top: 18px;
}

.zss-app-tab-content.active {
    display: block;
}

/* 描述块 */
.zss-app-desc-block {
    margin-bottom: 24px;
}

.zss-app-desc-title {
    font-size: 14px;
    color: var(--zss-title);
    font-weight: bold;
    margin-bottom: 16px;
}

.zss-app-desc-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

/* 参数表格 */
.zss-app-param-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--zss-card-bg);
    margin-bottom: 24px;
}

.zss-app-param-table th {
    background: #f8f9fa;
    color: #666;
    font-weight: normal;
    width: 120px;
    padding: 12px 16px;
    border: 1px solid var(--zss-border);
    text-align: right;
    font-size: 14px;
}

.zss-app-param-table td {
    color: var(--zss-title);
    padding: 12px 16px;
    border: 1px solid var(--zss-border);
    font-size: 14px;
}

/* 服务块 */
.zss-app-service-block {
    background: #fff6f6;
    border: 1px solid #ffe0e0;
    border-radius: var(--zss-radius-sm);
    padding: 18px 24px;
}

.zss-app-service-title {
    font-size: 16px;
    color: var(--zss-main-red);
    font-weight: bold;
    margin-bottom: 8px;
}

.zss-app-service-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* 右侧边栏 */
.zss-app-main-right {
    width: 230px;
    flex-shrink: 0;
}

/* VIP卡片 */
.zss-app-vip-card {
    background: #fff;
    border-radius: var(--zss-radius);
    box-shadow: var(--zss-shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.zss-app-vip-card-section {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.zss-app-vip-card-section-bottom {
    padding: 16px 20px;
    background: #f8f9fa;
}

.zss-app-vip-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 6px;
}

.zss-app-vip-card .zss-app-vip-buy-btn {
    font-size: 13px;
    padding: 2px 10px;
    height: auto;
    background: var(--zss-vip-btn-gradient);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.zss-app-vip-card .zss-app-vip-buy-btn:hover {
    opacity: 0.9;
}

.zss-app-vip-desc {
    font-size: 13px;
    color: #000;
}

.zss-app-vip-shop-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 6px;
}

.zss-app-vip-shop-status {
    font-size: 13px;
    color: #888;
    font-weight: normal;
}

.zss-app-vip-shop-desc {
    font-size: 13px;
    color: #888;
}

/* 店铺信息 */
.zss-app-store-info {
    background: #fff;
    border-radius: var(--zss-radius);
    box-shadow: var(--zss-shadow);
    padding: 15px;
    margin-bottom: 20px;
}

.zss-app-store-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 16px;
}

.zss-app-store-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.zss-app-store-badge {
    display: inline-block;
    background: #3370ff;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    padding: 1px 8px;
    font-weight: 500;
}

.zss-app-store-badge-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #3370ff;
    color: #fff;
    font-size: 14px;
    width: 20px;
    height: 20px;
    text-align: center;
    margin-right: 6px;
}

.zss-app-store-badge-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #3370ff;
    font-size: 12px;
    border: 1px solid #3370ff;
    border-radius: 3px;
    padding: 0 6px;
    height: 20px;
}

.zss-app-store-cert {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.zss-app-store-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
}

.zss-app-store-divider {
    border: none;
    border-top: 1px solid #e5e6eb;
    margin: 16px 0;
}

.zss-app-store-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.zss-app-store-score-label {
    color: #666;
}

.zss-app-store-score-value {
    color: #222;
    font-weight: 500;
}

.zss-app-store-score-arrow {
    display: inline-block;
    color: #52c41a;
    margin-left: 4px;
}

.zss-app-store-btn {
    display: block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    background: #3370ff;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    margin: 16px 0;
    text-decoration: none;
    transition: background 0.2s;
}

.zss-app-store-btn:hover {
    background: #5084ff;
    text-decoration: none;
    color: #fff;
}

.zss-app-store-service-time {
    font-size: 16px;
    color: #f57900;
    font-weight: bold;
    margin-top: 4px;
    text-align: center;
}

/* 侧边广告 */
.zss-app-side-banner {
    background: #fff;
    border-radius: var(--zss-radius);
    box-shadow: var(--zss-shadow);
    overflow: hidden;
    margin-bottom: 20px;
    text-align: center;
}

.zss-app-side-banner img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* 相关应用 */
.zss-app-related {
    background: #fff;
    border-radius: var(--zss-radius);
    box-shadow: var(--zss-shadow);
    padding: 15px;
}

.zss-app-related-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 16px;
    position: relative;
    padding-left: 10px;
}

.zss-app-related-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #3370ff;
}

.zss-app-related-link {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zss-app-related-link:hover {
    color: #3370ff;
    text-decoration: none;
}

.zss-app-related-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.zss-app-related-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.zss-app-related-item-img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    border-radius: 4px;
}

/* 演示后台样式 */
.zss-app-demo-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.zss-app-demo-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.zss-app-demo-table tr:last-child {
    border-bottom: none;
}

.zss-app-demo-table th {
    color: #666;
    font-weight: normal;
    width: 100px;
    padding: 12px 0;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}

.zss-app-demo-table td {
    color: #333;
    padding: 12px 0;
    font-size: 14px;
}

.zss-app-demo-qrcode {
    width: 150px;
    height: 150px;
    margin-top: 10px;
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .zss-app-main {
        flex-direction: column;
        max-width: 98vw;
    }
    
    .zss-app-main-left-column, .zss-app-main-right {
        width: 100%;
    }
    
    .zss-app-main-right {
        margin-top: 20px;
    }
    
    .zss-app-info-flex {
        flex-direction: column;
    }
    
    .zss-app-cover-box {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    
    .zss-app-tabs {
        padding: 0 16px 24px;
    }
}

@media (max-width: 600px) {
    .zss-app-main {
        gap: 12px;
        margin-top: 12px;
    }
    
    .zss-app-info-section, .zss-app-tabs-section {
        padding: 16px;
    }
    
    .zss-app-tab-header {
        gap: 20px;
    }
    
    .zss-app-tab-item {
        font-size: 16px;
        padding: 0 10px 10px;
    }
    
    .zss-app-price-card {
        flex-direction: column;
        gap: 16px;
    }
    
    .zss-app-price-right {
        align-items: flex-start;
    }
    
    .zss-app-buy-row {
        flex-wrap: wrap;
    }
    
    .zss-app-buy-btn, .zss-app-vip-buy-btn, .zss-app-cart-btn {
        flex: 1;
        min-width: 100px;
    }
}
