
        .grid-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
            max-width: 1100px;
            margin: 5px auto;
        }
        .grid-item {
            padding: 5px;
            text-align: center;
            background-color: #eef2f5;
            transition: background-color 0.3s ease;
            border-radius: 4px;
            
        }
        /* 第一行和第二行使用相同的背景色 */
        .grid-item:nth-child(-n+10) {
            background-color: #eef2f5;
        }
        /* 第一行内的型号名称样式 */
        .model {
            display: block;
            font-size: 20px;
            margin-bottom: 4px;
            font-weight: bold;
        }
        /* 第一行内的参数信息样式 */
        .info {
            display: block;
            font-size: 14px;
            color: #333;
            line-height: 1.2;
        }

        /* 所有单元格悬停效果统一 */
        .grid-item:hover {
            background-color: #aecce6;
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
    