
        body {
            background-color: #f3f4f6;
            /* 设置字体为 Poppins */
            font-family: 'Poppins', sans-serif;
        }

       .hover-scale {
            transition: transform 0.3s ease;
        }

       .hover-scale:hover {
            transform: scale(1.02);
        }

        @media (min-width: 768px) {
           .hover-scale:hover {
                transform: scale(1.05);
            }
        }

        /* 调整表格投影样式，提高优先级 */
        #comparisonTable {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
        }

        /* 新增媒体查询，设置手机端 h1 标题字号 */
        @media (max-width: 768px) {
            h1 {
                font-size: 24px !important;
            }
        }

        /* 修改蓝色相关颜色为 #1D57A5 */
        h1 {
            color: #1D57A5;
        }

       .bg-blue-600 {
            background-color: #1D57A5;
        }
    