.page {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}
html, body {
    font-size: 14px;
}
/* 顶部图片样式 */
.header-image {
    width: 100%;
    /*height: 300px;*/
    margin-bottom: 100px;
}
.page img{
    width: 100%;
}

.header-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact_box {
    min-height: 1040px;
    background: linear-gradient(110deg, #FFF4E6 0%, #FFF4EE 100%);
}

.container {
    width: 1440px;
    /*background: white;*/
    /*border-radius: 12px;*/
    /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);*/
    overflow: hidden;
    margin: 0 auto;
}


.subtitle {
    font-weight: bold;
    font-size: 32px;
    color: #1A1A1A;
    line-height: 44px;
    height: 44px;
    margin: 48px 0;
    padding-left: 40px;
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-column {
    width: 600px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f9f9f9;
    box-sizing: border-box;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    background: #fff;
    border-color: #ea5b15;
    box-shadow: 0 0 0 2px rgba(234, 91, 21, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.required::after {
    content: "*";
    color: #e74c3c;
    margin-left: 4px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

button {
    padding: 16px 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn {
    background: #EA5B15;
    color: white;
}

.submit-btn:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.reset-btn {
    background: #fff8f2;
    border: 1px solid #999999;
    color: #1A1A1A;
}

.reset-btn:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


@media (max-width: 1440px) {
    .page {
        width: 100%;
        padding: 20px;
    }
    .header-image{
        margin-bottom: 10px !important;
    }
    .crumbs {
        margin-bottom: 30px !important;
    }

    .status {
        margin-bottom: 30px;
    }
    .contact_box{
        padding-bottom: 30px;
    }
}

@media (max-width: 1480px) {
    .container {
        width: 90%;
        max-width: 1440px;
    }

    .form-column {
        width: 48%;
    }
}

@media (max-width: 1024px) {
    .form-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 30px;
    }
}