 
.contact-header{
    font-size: 32px;
    font-weight: 700;
    color: rgba(56, 56, 56, 1);
}
.map-intr{
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.8);
}
 /* 地图容器样式 */
#map-container {
    height: 288px; /* 地图高度 */
    width: 100%;
    border-radius: 4px;
    margin-top: 1rem;
}

.contact-info {
    padding: 35px 35px 0;
    border: 0.5px solid rgba(209, 209, 209, 1);
}
.contact-info .contact-item{
    display: flex;
    gap: 20px;
    align-items: flex-start;
     border-bottom: 0.2px solid rgba(0, 0, 0, 0.2);
     margin-top: 42px;
}
.contact-info .contact-item:first-child{
    margin-top: 0;
}
.contact-info .contact-item div{
    color: #000;
}
.contact-info .contact-item div h4{
    font-size: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 0;
}
.contact-info .contact-item div p{
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.6);
}
.contact-info .contact-item div a{
    color: rgba(0, 0, 0, 0.6);
}
 .contact-info {
    margin-bottom: 1.2rem;
    padding-bottom: 20px;
   
}
.contact-info div:last-child{
    border-bottom: 0;
}
.contact-info img {
   width: 22px;
   height: 22px;
   margin-top: 4px;
   
}

.contact-message{
    background-image: url('/static/index/images/contactBg1.png');
     padding: 50px 0 150px;
}
.product-title{
    color: rgba(0, 0, 0, 0.9);
   
}

.formBox{
    width: 70%;
    margin: 0 auto;
}
 /* 输入框和文本域的统一样式 */
 
.form-control {
    border: 1px solid #ddd;
    border-radius: 0; /* 取消圆角，模拟原图风格 */
    height: 50px; /* 调整输入框高度 */
    padding-left: 30px;
}
.form-item{
    position: relative;
}
.form-item::before{
    content: "*";
    color: red;
    position: absolute;
    top: 15px;
    left: 30px;
}
/* 文本域单独调整高度 */
textarea.form-control {
    height: 200px;
}
/* 提交按钮样式 */
.btn-submit {
    background-color: rgba(205, 167, 107, 1); /* 金色系，可根据需求调整 */
    border: none;
    border-radius: 0;
    color: #fff;
    height: 50px;
    font-weight: 500;
}
.btn-submit a{
    color: #fff;
}
.btn-submit:hover {
    background-color: rgba(205, 167, 107, 1); /*  hover时加深颜色 */
    color: #fff;
}
/* 星号必填样式 */
.required {
    color: #ff6347; /* 红色星号 */
}
.form-control:focus{
    box-shadow: none;
    border-color: rgba(205, 167, 107, 1);
}

.form-item.form-item-textarea::before{
    top: 10px;
    left: 20px;
}
@media (max-width: 768px){
    .contact-header{
        font-size: 26px;
    }
    .map-intr{
        font-size: 15px;
        line-height: 30px;
    }
    .contact-info{
        padding: 20px 20px 0;
    }
    .contact-info .contact-item{
        margin-top: 20px;
    }
    .contact-info .contact-item div h4{
        font-size: 16px;
    }
    .contact-message{
        padding: 30px 0 60px;
    }
    .formBox{
        width: 100%;
    }
    .formBox .mb-3{
        gap: 12px;
    }
    .contact-message{
        background-image: url('/static/index/images/phoneImg/lybg.png');
    }
}