.products-img {
    height: 316px;
}

.products-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-list {
    padding: 30px 0px;
}

.products-list>h2 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    padding-bottom: 16px;
    text-align: center;
}

.products-list .pro-cate {
    background-color: #0060ae;
    margin-top: 30px;
    height: 60px;
    /* line-height: 60px; */
    padding-left: 20px;
}

.products-list .pro-cate ul {
    list-style: none;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}

.products-list .pro-cate ul li a {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0px 25px;
    font-size: 14px;
    color: white;
    text-decoration: none;
}

.products-list .pro-cate ul li a:hover {
    background-color: #fde53d;
    color: #333;
}

.products-list .pro-list {
    display: none;
    padding-top: 30px;
}

.products-list .pro-list.active {
    display: block;
}

.pro-list .col {
    padding: 15px;
}

.pro-list .row .map{
    padding: 0px 56px;
}
.pro-list .row .map .map-list{
    list-style: none;
    padding-left: 0px;
}
.pro-list .row .map .map-list .map-item{
    margin-bottom: 24px;
}
.pro-list .row .map .map-list .title{
    color: #333333;
    font-size: 14px;
    line-height: 25.2px;
    font-weight: 700;
    margin-bottom: 0px;
}
.pro-list .row .map .map-list p{
    color: #333333;
    font-size: 14px;
    line-height: 25.2px;
    margin-bottom: 0px;
}

.pro-list .gd-map{
    margin: 96px 0px;
    height: 480px;
    background-color: #0060ae;
}

.pro-list .contact-form {
    margin: 0 auto;
}

     /* 表单容器样式 */
     .contact-form {
        background-color: #fff;
        padding: 30px;
        width: 100%;
        max-width: 740px; /* 限制最大宽度 */
    }

    /* 每一行表单项的布局 */
    .form-group {
        display: flex;
        margin-bottom: 20px;
        align-items: flex-start; /* 文本域时顶部对齐 */
    }

    /* 左侧标签样式 */
    .form-group label {
        width: 80px; /* 固定标签宽度，保持输入框对齐 */
        text-align: right;
        padding-right: 15px;
        padding-top: 8px; /* 垂直微调 */
        box-sizing: border-box;
        color: #666;
        font-size: 14px;
    }

    /* 红色星号样式 */
    .required {
        color: red;
        margin-right: 4px;
    }

    /* 右侧输入框通用样式 */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        flex: 1; /* 占据剩余所有宽度 */
        padding: 10px;
        border: 1px solid #ccc;
        font-size: 14px;
        box-sizing: border-box; /* 确保padding不撑大宽度 */
        outline: none;
        transition: border-color 0.3s;
    }

    /* 输入框获得焦点时的样式 */
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #007bff;
    }

    /* 多行文本框专用高度 */
    .form-group textarea {
        height: 150px;
        resize: vertical; /* 允许垂直拖拽调整大小 */
    }

    /* 容器样式：用于让按钮水平排列并居中 */
    .button-container {
        display: flex;
        gap: 20px; /* 按钮之间的间距 */
        padding: 20px;
        font-family: "Microsoft YaHei", sans-serif;
        margin-left: 56px;
    }

    /* 通用按钮样式 */
    .btn {
        width: 100px;
        height: 32px;
        font-size: 12px !important;
        color: #ffffff !important;
        cursor: pointer;
        transition: opacity 0.3s;
        border-radius: 0px !important;
    }

    /* 提交按钮：深蓝色背景 */
    .btn-submit {
        background-color: #0066b3 !important; /* 对应图中的深蓝色 */
    }

    /* 重置按钮：浅灰色背景 */
    .btn-reset {
        background-color: #b3b3b3 !important; /* 对应图中的灰色 */
    }

    /* 鼠标悬停效果：稍微变暗 */
    .btn:hover {
        opacity: 0.9;
    }