       /* 全局样式重置与基础设置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #dac8ac;
            background-image: url('https://cthzs.cn/wp-content/uploads/2025/10/1761846803-2fefa472-2a3d-479b-8350-7ffcfbc2a0c4.jpg');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            background-blend-mode: overlay;
            min-height: 100vh;
            padding: 20px 10px;
            font-family: 'Garamond', 'Times New Roman', serif;
            position: relative;
            overflow-x: hidden; /* 防止图片过大导致水平滚动 */
        }

        /* 中间图片样式（调整大小和位置） */
        .middle-image {
            position: absolute;
    
            left: 50%; /* 水平居中 */
            transform: translate(-50%, 4%); /* 居中调整 */
            width: auto;
            height: auto;
            z-index: 1;
            opacity: 0.8;
            object-fit: contain; /* 保持图片比例 */
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 5;
        }

        /* 回响标题样式 */
        .echo-title {
            text-align: center;
            color: #3a2e21;
            font-size: 1.8rem;
            margin: 20px 0 40px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        /* 标题样式 */
        .section-header {
            text-align: center;
            margin: 40px 0 30px;
        }

        .section-title {
            color: #3a2e21;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: #8b5a2b;
            border-radius: 3px;
        }

        /* 卡牌容器样式 */
        .cards-arc {
            display: flex;
            justify-content: center;
            position: relative;
            margin: 0 auto 60px;
            padding: 20px 0;
            overflow: visible
        }

        .cards-list {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            justify-content: center;
            flex-wrap: wrap;
        }

        .card-item {
            top: 10%;
            margin: 0 8px 30px;
            transition: all 0.3s ease;
            position: relative;
            flex: 0 0 auto;
        }

        .card-image {
            width: 130px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0);
            border: 4px solid rgba(255, 255, 255, 0);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .card-item:hover .card-image {
            transform: scale(1.1) translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0);
            border-color: rgba(255, 255, 255, 0);
            z-index: 10;
        }

        /* 新增内容容器样式：独立布局，与原有内容隔离 */
        .new-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 15px;
            position: relative;
            z-index: 5;
            background-color: rgba(250, 245, 235, 0.8); /* 半透明背景，区分区域 */
            border-radius: 15px;
            margin-bottom: 50px;
        }

        /* 卡牌名样式：默认隐藏， hover 时淡入 */
        .card-name {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            white-space: nowrap;
            z-index: 5;
        }

        .card-item:hover .card-name {
            opacity: 1;
        }

        /* 响应式设计 - 不同屏幕尺寸的布局调整 */
        
        /* 大屏幕 (> 1200px) */
        @media (min-width: 1200px) {
            .spells-cards .card-item:nth-child(1) { transform: rotate(-28deg) translateY(25px); }
            .spells-cards .card-item:nth-child(2) { transform: rotate(-18deg) translateY(15px); }
            .spells-cards .card-item:nth-child(3) { transform: rotate(-9deg) translateY(8px); }
            .spells-cards .card-item:nth-child(4) { transform: rotate(0deg); }
            .spells-cards .card-item:nth-child(5) { transform: rotate(9deg) translateY(8px); }
            .spells-cards .card-item:nth-child(6) { transform: rotate(18deg) translateY(15px); }
            .spells-cards .card-item:nth-child(7) { transform: rotate(28deg) translateY(25px); }
            .spells-cards .card-item:nth-child(8) { transform: rotate(38deg) translateY(35px); }

            .partners-cards .card-item:nth-child(1) { transform: rotate(-12deg) translateY(12px); }
            .partners-cards .card-item:nth-child(2) { transform: rotate(0deg); }
            .partners-cards .card-item:nth-child(3) { transform: rotate(12deg) translateY(12px); }
        }
        
        /* 中等屏幕 (768px - 1199px) */
        @media (min-width: 768px) and (max-width: 1199px) {
            .card-image {
                width: 110px;
            }
            
            .spells-cards .card-item:nth-child(1) { transform: rotate(-20deg) translateY(15px); }
            .spells-cards .card-item:nth-child(2) { transform: rotate(-12deg) translateY(10px); }
            .spells-cards .card-item:nth-child(3) { transform: rotate(-6deg) translateY(5px); }
            .spells-cards .card-item:nth-child(4) { transform: rotate(0deg); }
            .spells-cards .card-item:nth-child(5) { transform: rotate(6deg) translateY(5px); }
            .spells-cards .card-item:nth-child(6) { transform: rotate(12deg) translateY(10px); }
            .spells-cards .card-item:nth-child(7) { transform: rotate(20deg) translateY(15px); }
            .spells-cards .card-item:nth-child(8) { transform: rotate(28deg) translateY(25px); }

            .partners-cards .card-item:nth-child(1) { transform: rotate(-10deg) translateY(10px); }
            .partners-cards .card-item:nth-child(2) { transform: rotate(0deg); }
            .partners-cards .card-item:nth-child(3) { transform: rotate(10deg) translateY(10px); }
        }
        
        /* 小屏幕 (576px - 767px) */
        @media (min-width: 576px) and (max-width: 767px) {
            .card-image {
                width: 90px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .spells-cards {
                max-width: 550px;
                margin: 0 auto;
            }
            
            .spells-cards .card-item {
                transform: none !important;
                margin: 10px;
            }
            
            .partners-cards .card-item {
                transform: none !important;
                margin: 0 15px;
            }
        }
        
        /* 超小屏幕 (< 576px) */
        @media (max-width: 575px) {
            .card-image {
                width: 75px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .echo-title {
                font-size: 1.5rem;
            }
            
            .cards-arc {
                margin: 0 auto 40px;
            }
            
            .spells-cards, .partners-cards {
                justify-content: center;
            }
            
            .card-item {
                transform: none !important;
                margin: 8px 5px 25px;
            }
            
            .card-name {
                font-size: 0.8rem;
                bottom: -25px;
                padding: 3px 8px;
            }
        }

        /* 优缺点容器样式 */
.pros-cons {
    display: flex;
    gap: 30px;
}

/* 优点和缺点卡片通用样式 */
.pros, .cons {
    flex: 1;
    background: #f9f6f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 标题样式 */
.pros h3, .cons h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* 标题颜色区分 */
.pros h3 {
    color: #2e7d32; /* 优点绿色 */
}
.cons h3 {
    color: #c62828; /* 缺点红色 */
}

/* 标题前的圆形标记 */
.pros h3::before, .cons h3::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 50%;
}
.pros h3::before {
    background: #2e7d32; /* 优点圆形绿色 */
}
.cons h3::before {
    background: #c62828; /* 缺点圆形红色 */
}

/* 列表样式 */
.point-list {
    list-style: none;
}

/* 列表项样式 */
.point-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #333;
    line-height: 1.5;
}

/* 列表项前的圆点标记 */
.point-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* 圆点颜色区分 */
.pros .point-list li::before {
    color: #2e7d32; /* 优点圆点绿色 */
}
.cons .point-list li::before {
    color: #c62828; /* 缺点圆点红色 */
}

/* 响应式调整 - 移动端布局 */
@media (max-width: 768px) {
    .pros-cons {
        flex-direction: column;
        gap: 20px;
    }
}