
        /* 页面基础重置 */
        .card-area {
            margin: 0;
            padding: 20px;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
.card-area h2 {
font-size: 3rem;
padding-bottom: 20px;
    padding-left: 180px;
text-align: left;
}

        /* 响应式网格容器 */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 电脑端 3 列 */
            gap: 25px; /* 模块间距 */
            max-width: 80%;
            margin: 0 auto;
        }

        /* 模块基础样式 */
        .price-card {
            background-color: #ffffff;
            padding: 40px 25px;
            border-radius: 16px;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            align-items: center; /* 水平居中 */
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        /* 鼠标移入模块：背景变灰 #606060，文字变白 */
        .price-card:hover {
            background-color: #606060;
            transform: translateY(-8px);
            border-color: #606060;
        }
        .price-card:hover h3, 
        .price-card:hover, 
        .price-card:hover .moq, 
        .price-card:hover .feature-list li {
            color: #ffffff;
        }

        /* 图标与标题 */
      .card-area  .icon { font-size: 45px; margin-bottom: 15px; }
       .card-area h3 { font-size: 22px; color: #333; margin: 10px 0; font-weight: 700; }
        
        /* 价格与 MOQ */
        .moq { 
            font-size: 15px; 
            color: #888; 
            margin-bottom: 30px; 
            width: 100%; 
            text-align: center; /* MOQ 居中 */
        }

        /* 列表：整体居中，内部内容居左 */
        .feature-wrapper {
            width: 100%;
            display: flex;
            justify-content: center; /* 关键：让整个列表块在卡片内居中 */
            margin-bottom: 35px;
        }
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left; /* 关键：列表文字居左 */
            display: inline-block;
        }
        .feature-list li {
            font-size: 16px;
            color: #555;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }


        /* 按钮样式 #FEC519 */
        .btn-action {
            background-color: #FEC519;
            color: #333;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 16px;
            width: 100%;
            max-width: 220px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* 鼠标放在按钮上变成 #606060 */
        .btn-action:hover {
            background-color: #ffffff;
            color: #000;
            box-shadow: 0 0 0 1px #ffffff inset; /* 增加内边框防止在灰色背景下隐身 */
        }

        /* --- 手机端适配 --- */
        @media (max-width: 992px) {
            .pricing-container {
                grid-template-columns: repeat(2, 1fr); /* 平板 2 列 */
            }
.btn-action{
width:60%;
height:auto;
}
        }

        @media (max-width: 650px) {

.card-area h2 {
    font-size: 2rem;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: left;
}
            .pricing-container {
                grid-template-columns: 1fr; /* 手机 1 列 */
                padding: 10px;
            }
            .price-card {
                padding: 30px 20px;
            }

.btn-action{
width:60%;
height:auto;
}
        }
    