body {
            background: var(--bg-gray);
            /* 添加padding-top为50px以适配固定header */
            padding-top: 50px;
        }

        /* 公告横幅 */
        .banner {
            max-width: 600px;
            margin: var(--spacing-md) auto;
            padding: 0 var(--spacing-md);
        }

        .banner-content {
            background: linear-gradient(90deg, var(--bg-pink-light), var(--bg-pink-lighter));
            border-radius: var(--radius-lg);
            padding: var(--spacing-md) var(--spacing-md);
            display: flex;
            align-items: center;
            margin: var(--spacing-md);
        }

        .banner-tag {
            background: var(--bg-activity);
            color: var(--color-activity);
            padding: var(--spacing-xs) var(--spacing-sm);
            border-radius: var(--radius-sm);
            font-size: var(--font-xs);
            font-weight: var(--font-medium);
            white-space: nowrap;
            margin-right: var(--spacing-md);
        }

        .banner-text {
            flex: 1;
            font-size: var(--font-sm);
            color: var(--text-secondary);
        }

        /* 主内容区域 */
        .main-content {
            max-width: 600px;
            margin: 10px auto;
            margin-bottom: 0px;
            padding: 0 var(--spacing-md) var(--spacing-md);
        }

        /* 详情卡片 */
        .detail-card {
            background: var(--bg-white);
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        /* 图片区域 */
        .detail-image {
            width: 100%;
            position: relative;
            height: 220px;
            overflow: hidden;
            border-radius: 0;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            display: none;
            width: 100%;
            height: 100%;
        }

        .carousel-slide.active {
            display: block;
        }

        .carousel-slide img,
        .carousel-slide video {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            z-index: 10;
        }

        .carousel-btn:active {
            transform: translateY(-50%) scale(0.95);
            background: rgba(255, 255, 255, 1);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
        }

        .carousel-indicator {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 12px;
            border-radius: 25px;
            font-size: var(--font-xs);
            z-index: 10;
        }

        .detail-image img {
            /* display: none; */
        }
        .verified-badge{
            background: linear-gradient(to right, rgb(248 164 10 / 50%), #ff8fb3);
            color: var(--white);
            font-size: 12px;
            border-radius: var(--radius-lg);
            padding: 3px 8px;
        }

        /* 内容区域 */
        .detail-content {
            padding: 0 var(--spacing-md) var(--spacing-md);
        }

        .detail-title {
            font-size: 16px;
            font-weight: var(--font-bold);
            color: var(--text-primary);
            margin: var(--spacing-md) 0 0 0;
        }

        /* 统计信息 */
        .detail-stats {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            padding: var(--spacing-md) 0;
            border-bottom:1px solid #f0efef;
            margin-bottom: var(--spacing-md);
            color: var(--text-secondary);
            font-size: var(--font-sm);
        }

        .stat-item {
            display: flex;
            align-items: center;
            margin-right: var(--spacing-md);
        }

        .stat-item svg {
            width: 16px;
            height: 16px;
            margin-right: var(--spacing-xs);
        }

        .badge {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            padding: 2px var(--spacing-sm);
            border-radius: var(--radius-sm);
            font-size: var(--font-xs);
            display: inline-flex;
            align-items: center;
            margin-right: var(--spacing-xs);
        }

        .badge svg {
            margin-right: var(--spacing-xs);
        }

        /* 详细信息 */
        .detail-info {
            display: flex;
            flex-direction: column;
            margin-bottom: var(--spacing-md);
        }

        .info-row {
            display: flex;
            font-size: var(--font-base);
            margin-bottom: var(--spacing-md);
        }

        .info-row:last-child {
            margin-bottom: 0;
        }

        .info-label {
            color: var(--text-secondary);
            width: 50px;
            flex-shrink: 0;
        }

        .info-value {
            color: var(--text-primary);
            flex: 1;
        }

        /* 详情介绍 */
        .detail-description {
            margin-top: var(--spacing-md);
            padding-top: var(--spacing-md);
            border-top: 1px solid #f0efef;
        }

        .description-title {
            font-size: var(--font-lg);
            font-weight: var(--font-semibold);
            color: var(--text-primary);
            margin-bottom: var(--spacing-md);
            text-align: left;
        }

        .description-content {
            color: var(--text-secondary);
            font-size: var(--font-base);
            line-height: 1.6;
        }

        .description-content p {
            margin-bottom: var(--spacing-md);
        }

        .description-content p:last-child {
            margin-bottom: 0;
        }

        /* 操作按钮 */
        /* 查看方式按钮样式 */
        .view-method-section {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            margin-bottom: 10px;
        }

        .view-method-card {
            background: var(--bg-white);
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            padding: var(--spacing-md);
            margin-bottom: 10px;
        }

        .view-method-title {
            font-size: var(--font-lg);
            font-weight: var(--font-semibold);
            color: var(--text-primary);
            margin-bottom: var(--spacing-md);
            text-align: left;
        }

        /* 添加联系方式说明样式 */
        .contact-notice {
            background: linear-gradient(90deg, var(--bg-pink-light), #ffefe6);
            border-left: 0px solid var(--primary-color);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            margin-bottom: 0px;
        }

        .contact-notice-content {
            display: flex;
            margin: var(--spacing-md);
        }

        .contact-notice-icon {
            flex-shrink: 0;
            color: var(--primary-color);
            margin-right: var(--spacing-md);
        }

        .contact-notice-icon svg {
            width: 20px;
            height: 20px;
            margin-top: 10px;
        }

        .contact-notice-text {
            flex: 1;
            color: var(--text-secondary);
            font-size: var(--font-sm);
            line-height: 1.6;
        }

        .contact-notice-text p {
            margin-bottom: var(--spacing-sm);
        }

        .contact-notice-text p:last-child {
            margin-bottom: 0;
        }

        .contact-notice-list {
            margin-top: var(--spacing-sm);
            padding-left: var(--spacing-md);
        }

        .contact-notice-list li {
            margin-bottom: var(--spacing-xs);
            color: var(--text-primary);
        }

        .view-method-buttons {
            display: flex;
            flex-direction: column;
            margin-bottom: var(--spacing-md);
        }

        .view-method-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
            padding: 12px;
            background: linear-gradient(to right, rgb(248 164 10 / 57%), #ff7da7);
            background: linear-gradient(to right, rgb(10 149 248 / 57%), #9cff7de0);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: all var(--transition-base);
        }

        .view-method-btn:last-child {
            margin-bottom: 0;
        }

        .view-method-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .view-method-btn svg {
            width: 20px;
            height: 20px;
            margin-right: var(--spacing-sm);
        }

        .view-method-btn.secondary {
            background:linear-gradient(to right, rgb(248 98 10 / 53%), #c35cf1);
            background:linear-gradient(to right, rgba(248 164 10 / 57%), #ff7da7);
            color: #fff;
        }


        /* 响应式 */
        @media (max-width: 480px) {
            .detail-stats {
                font-size: var(--font-xs);
            }

            .stat-item {
                margin-right: 30px;
            }

            .detail-title {
               font-size: 16px;
               display: flex;
               align-items: center;
               justify-content: center;
               justify-content: flex-start;
            }
        }