.head {
    width: 100%;
    height: 60vh;
    box-sizing: border-box;
    background-image: url(../image/-49478.jpg);
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    color: #ffffff;
}

.head-title {
    width: 1200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.head-title1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 80px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 8px;
}

.head-title2 {
    font-size: 28px;
    line-height: 50px;
    font-weight: 500;
}

/* 联系信息 */
.contact-section {
    width: 100%;
    background-color: rgb(250, 250, 250);
    padding: 80px 0;
}

.contact-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    width: 40%;
}

.info-title {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.info-subtitle {
    font-size: 13px;
    color: #999999;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #00ffc0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon img {
    width: 28px;
    height: 28px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 13px;
    color: #999999;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
}

/* 联系表单 */
.contact-form {
    width: 60%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 13px;
    color: #999999;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 30px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.form-group-full {
    width: 100%;
}

.form-group label {
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    background-color: rgb(250, 250, 250);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffc0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 14px 40px;
    background-color: #00ffc0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #00e6ad;
}

/* 地图区域 */
.map-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.map-container {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-title {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.map-subtitle {
    font-size: 14px;
    color: #666666;
    font-family: Arial Black;
    margin-bottom: 40px;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-address-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.map-address-detail {
    font-size: 14px;
    color: #666666;
}
