.banner {
    height: 50vh;
}
.fontColorTitle{
    color: #000 !important;
}

.contact {
    background-color: #fff;
    /* margin-bottom: 20px; */
    display: flex;

}

.contact .contactBox {
    /* width: 600px; */
    margin: 0 auto;
    /* padding: 20px 0; */
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* padding-bottom: 40px; */
}

.contact .contactMap {
	height: 600px;
}
.form_content{
    display: flex;
    align-items: unset !important;
}

.contactBox .form-group .form-group-input > input{
    border: 1px solid #d3d9e0;
    background: #fff;
    width: 435px;
    height: 40px;
    line-height: 26px;
    font-size: 14px;
    padding-left: 5px;
    box-sizing: border-box;
    outline: 0;
    border-radius: 2px;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}
.form-group .form-group-input > label{
    margin-right: 20px;
    font-size: 14px;
}

.contactBox .form-group .form-group-input > textarea {
    border: 1px solid #d3d9e0;
    background: #fff;
    width: 435px;
    height: 120px;
    font-size: 14px;
    padding: 3px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    resize: none;
    outline: 0;
    word-break: break-all;
    word-wrap: break-word;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}
.button {
    display: block;
    /* margin-top: 20px; */
    background-color: rgb(30, 137, 230);
    border-radius: 2px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18;
    cursor: pointer;
    border: none;
    width: 535px;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    margin-left: 108px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group-input{
    display: flex;
    align-items: center;
}
.form-group .form-group-input label {
    display: block;
    margin-bottom: 5px;
    color: #7c7c7c;
    width: 82px;
}
.form-group .form-group-input input, .form-group .form-group-input textarea {
    width: 100%;
    box-sizing: border-box;
}
.form-group .form-group-input .form_content textarea {
    height: 100px; /* 设置一个默认高度 */
}
.contactForm{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bannerTitle{
    color: #333;
}
.banner .font2C h2{
    font-size: 30px;
    font-weight: bold;
    color: #000000;
}
.banner .font2C h3 {
    font-size: 18px !important;
    font-weight: 600;
}
.font2C{
    display: flex;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    flex-direction: column;
}
h2, h3 {
    margin-top: 0;
    margin-bottom: 0;
}
.font2C h3{
    font-size: 15px;;
    text-transform: uppercase;
    color: #333333;
    letter-spacing: 3px;
    font-weight: 400;
}
.font2C h2{
    font-size: 24px;
    font-weight: 500;
    color: #000000;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    margin: 6% auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
    text-align: center;
    animation: slideIn 0.3s ease-in-out;
}

.modal-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #999;
    float: right;
    font-size: 24px;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.close:hover,
.close:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.modal p {
    font-size: 16px;
    color: #666;
}

.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
.leaveBg {
    width: 120px;
    height: 120px;
    background: url(../images/ly_suc.png) no-repeat center center;
    background-size: cover;
    display: none;
}
.footerBox{
    padding-top: 6px;
}