<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 联系我们和人才招聘页面样式优化 */
.mainbody {
    min-height: auto;
    background: #f8f9fa;
}

/* Banner 样式优化 */
.banner {
    position: relative;
    height: auto;
    overflow: hidden;
}

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

.banner .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.banner .title h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* 联系信息区域样式 */
.contact-us {
    padding: 60px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-us .title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-us .title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.contact-ifo {
    text-align: center;
    margin-bottom: 40px;
}

.contact-ifo p {
    font-size: 18px;
    color: #666;
    margin: 10px 0;
}

.contact-ifo p span {
    color: #333;
    font-weight: bold;
    margin-right: 10px;
}

/* 表单样式优化 */
.contact_form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form_top {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.input {
    flex: 1;
    min-width: 250px;
}

.input input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input input:focus {
    border-color: #2f93c2;
    box-shadow: 0 0 5px rgba(47,147,194,0.2);
    outline: none;
}

.form_msg textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    resize: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form_msg textarea:focus {
    border-color: #2f93c2;
    box-shadow: 0 0 5px rgba(47,147,194,0.2);
    outline: none;
}

.alert-sub {
    display: inline-block;
    padding: 12px 40px;
    background: #2f93c2;
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.alert-sub:hover {
    background: #267aa3;
    transform: translateY(-2px);
}

/* 地图样式优化 */
.map {
    height: 500px;
    margin-top: 60px;
}

/* 响应式优化 */
@media screen and (max-width: 768px) {
    .banner {
        height: 300px;
    }
    
    .banner .title h2 {
        font-size: 36px;
    }
    
    .contact-us {
        padding: 40px 20px;
    }
    
    .form_top {
        flex-direction: column;
    }
    
    .input {
        width: 100%;
    }
    
    .map {
        height: 300px;
    }
}

/* 动画效果 */
.contact-us {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} </pre></body></html>