/* 表单区域样式 */
.contact-form {
    padding: 60px 0;
    background-color: #f9f9f9;
}
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}
.form-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}
.form-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1e50a2;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-control:focus {
    border-color: #1e50a2;
    outline: none;
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
.submit-btn {
    background: #1e50a2;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin: 0 auto;
    width: 200px;
}
.submit-btn:hover {
    background: #153d7a;
}

/*联系我们*/
.contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-content{
    max-width: 800px;
    background: url("https://tygaoke.oss-cn-shenzhen.aliyuncs.com/static/image/contact-body-bg.jpg") no-repeat top right #FFF;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 45px;
}
.contact-body{
    display: flex;
    flex-wrap: wrap;
}
.contact-body dl{
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #DCDCDC;
}
.contact-body dl dt{
    margin-right: 20px;
    width: 55px;
    line-height: 55px;
    text-align: center;
}
.contact-body dl dt i{
    font-size: 28px;
    color: #2181c2;
}
.contact-body dl dd{
    flex: 1;
}
.contact-body dl:hover dt{
}
.contact-body dl:last-child{
    width: 100%;
}
.contact-body dl:last-child,
.contact-body dl:last-child + dl{
    border-bottom: none;
}
.contact-body dl dd p{
    font-size: 16px;
}
.contact-body dl dd p:first-child{
    font-weight: bold;
}
.contact-body dl dd p:last-child{
    color: #7d7d7d;
}
.contact-footer{
    display: flex;
    justify-content: center;
}
.contact-footer a{
    display: block;
    width: 50%;
    line-height: 58px;
    text-align: center;
    background: #2181c2;
    border-radius: 45px;
    font-size: 18px;
    color: #FFF;
}
@media (max-width: 576px) {
    .map-container{
        display: none;
    }
    .contact-container{
        position: relative;
        top: 0;
        left: 0;
        padding-bottom: 20px;
    }
    .contact-content{
        max-width: 100%;
        padding: 25px;
    }
    .contact-body dl{
        width: 100%;
        padding: 10px 0;
    }
    .contact-body dl dt{
        margin-right: 20px;
        width: 40px;
        height: 40px;
        background-size: 20px 20px;
    }
    .contact-body dl dd p{
        font-size: 14px;
    }
    .contact-footer a{
        line-height: 40px;
        font-size: 14px;
    }
}
