@charset "utf-8";

/* ZhuYun.html 独立样式 */

/* 宁波助孕页面特定样式 */
.contact {
    padding: 80px 0;
}

.contact_form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact_title {
    font-size: 28px;
    font-weight: 700;
    color: #1e5799;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ffcc00;
}

.contact_form_container {
    margin-top: 30px;
}

.contact_form_container .input_field {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact_form_container .input_field:focus {
    outline: none;
    border-color: #1e5799;
}

.contact_form_container select.input_field {
    background: #ffffff;
    cursor: pointer;
}

.contact_form_container textarea {
    min-height: 150px;
    resize: vertical;
}

.contact_send_btn {
    display: inline-block;
    padding: 15px 40px;
    background: #1e5799;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact_send_btn:hover {
    background: #ffcc00;
}

.about {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.about_title {
    font-size: 24px;
    font-weight: 700;
    color: #1e5799;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
}

.about_text {
    color: #a5a5a5;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact_info {
    margin-top: 30px;
}

.contact_info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact_info_item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.contact_info_item:hover {
    transform: translateX(5px);
}

.contact_info_icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e5799;
    border-radius: 50%;
    padding: 8px;
}

.contact_info_icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact_info_item span {
    color: #1e5799;
    font-weight: 600;
}

.services {
    padding: 80px 0;
}

.services_row {
    margin-top: 50px;
}

.service_item {
    margin-bottom: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service_item .icon_container {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service_item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e5799;
    margin-bottom: 15px;
}

.service_item p {
    color: #a5a5a5;
    line-height: 1.8;
}

#google_map {
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map_container {
    height: 400px;
}

#map {
    width: 100%;
    height: 100%;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .contact_form {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .contact_form {
        padding: 25px;
    }
    
    .contact_title {
        font-size: 24px;
    }
    
    .about_title {
        font-size: 20px;
    }
    
    .map_container {
        height: 300px;
    }
}
