
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        .container {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .header {
            color: limegreen; /* 标题颜色 */
            font-size: 40px; /* 标题字体大小 */
            font-weight: bold; /* 字体加粗 */
            margin: 0;
            text-align: center;
        }

        .filter-background {
            width: 100%;
            height: 368px; /* 背景图片的高度 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: url('//ueeshop.ly200-cdn.com/u_file/UPBB/UPBB383/2404/03/photo/selt-1.jpg') no-repeat center center scroll; 
            background-size: cover;
        }

        .selectors {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px; /* 选择器之间的间距 */
            margin-top: 28px; /* 与标题的间距 */
        }

        label {
            font-size: 23px;
            margin-right: 6px; /* 标签右侧间距 */
        }

        #batteryBrandLabel {
            color: gold; /* “电池品牌”标签颜色 */
        }

        #toolToAdaptLabel {
            color: blue; /* “适配工具”标签颜色 */
        }

        select {
            padding: 12px;
            font-size: 12px;
        }

        button {
            background-color: orange; /* 按钮背景色 */
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px; /* 按钮字体大小 */
        }

        button:hover {
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .selectors {
                flex-direction: column; /* 移动端改为垂直布局 */
                width: 90%; /* 移动端宽度调整 */
            }

            label {
                align-self: flex-start; /* 移动端标签对齐调整 */
            }

            select, button {
                width: 100%; /* 移动端选择框和按钮宽度调整 */
                margin: 5px 0; /* 移动端间距调整 */
            }
        }
    