/* 联系我们页面手机端样式 - 只针对768px以下设备 */
@media (max-width: 768px) {
    /* 联系页面主容器 */
    .contact-page .contact_main .container {
        flex-direction: column;
        padding: 0 1.5rem;
    }

    /* 联系信息区域 */
    .contact-page .contact_info_section {
        background: white;
        border-radius: 1rem;
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.08);
    }

    .contact-page .section_title {
        font-size: 2.2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 2rem;
        text-align: center;
        padding-bottom: 1rem;
        border-bottom: 0.2rem solid #f0f0f0;
    }

    /* 联系方式卡片 */
    .contact-page .contact_cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .contact-page .contact_card {
        background: #f8f9fa;
        border-radius: 1rem;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }

    .contact-page .contact_card:hover {
        background: #036FBE;
        color: white;
        transform: translateY(-0.2rem);
    }

    .contact-page .card_icon {
        width: 6rem;
        height: 6rem;
        background: #fff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto 1.5rem auto;
        transition: all 0.3s ease;
    }

    .contact-page .contact_card:hover .card_icon {
        background: white;
        color: #036FBE;
    }

    .contact-page .card_title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

    .contact-page .contact_card:hover .card_title {
        color: white;
    }

    .contact-page .card_content {
        font-size: 1.4rem;
        color: #666;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .contact-page .contact_card:hover .card_content {
        color: rgba(255, 255, 255, 0.9);
    }

    .contact-page .card_content a {
        color: inherit;
        text-decoration: none;
        font-weight: 500;
    }

    .contact-page .card_content a:hover {
        text-decoration: underline;
    }

    /* 联系表单 */
    .contact-page .contact_form_section {
        background: white;
        border-radius: 1rem;
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.08);
    }

    .contact-page .form_title {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1.5rem;
        text-align: center;
        padding-bottom: 1rem;
        border-bottom: 0.2rem solid #f0f0f0;
    }

    .contact-page .contact_form {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-page .form_group {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        flex-wrap: nowrap;
        align-items: flex-start;
        box-shadow: none;
        border: 0;
        background: transparent;
        border-bottom: 1px dashed #ddd;
        padding: 0;
        padding-bottom: 20px;
        margin-bottom: 0px;
        border-radius: 0;
    }

    .contact-page .form_label {
        font-size: 1.4rem;
        font-weight: 500;
        color: #333;
    }

    .contact-page .form_label .required {
        color: #e74c3c;
        margin-left: 0.3rem;
    }

    .contact-page .form_input,
    .contact-page .form_select,
    .contact-page .form_textarea {
        padding: 1.4rem;
        border: 0.1rem solid #e0e0e0;
        border-radius: 0.8rem;
        font-size: 1.5rem;
        outline: none;
        transition: all 0.3s ease;
        background: white;
        min-width: 100%;
        border:  1px solid #ddd !important;
    }

    .contact-page .form_input:focus,
    .contact-page .form_select:focus,
    .contact-page .form_textarea:focus {
        border-color: #036FBE;
        box-shadow: 0 0 0 0.3rem rgba(3, 111, 190, 0.1);
    }

    .contact-page .form_textarea {
        min-height: 12rem;
        resize: vertical;
        font-family: inherit;
    }

    .contact-page .form_row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* 提交按钮 */
    .contact-page .submit_btn {
        background: #036FBE;
        color: white;
        padding: 1.6rem 3rem;
        border: none;
        border-radius: 0.8rem;
        font-size: 1.6rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

    .contact-page .submit_btn:hover {
        background: #025a9e;
        transform: translateY(-0.2rem);
    }

    .contact-page .submit_btn:active {
        transform: translateY(0);
    }

    /* 地图区域 */
    .contact-page .map_section {
        background: white;
        border-radius: 0;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: none;
        margin: 0 auto !important;
        padding: 0;
    }

    .contact-page .map_title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1.5rem;
        text-align: center;
        padding-bottom: 1rem;
        border-bottom: 0.2rem solid #f0f0f0;
    }

    .contact-page .map_container {
        width: 100%;
        height: 25rem;
        border-radius: 0.8rem;
        overflow: hidden;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
        font-size: 1.4rem;
    }

    .contact-page .map_container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* 办公时间 */
    .contact-page .office_hours {
        background: white;
        border-radius: 1rem;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.08);
    }

    .contact-page .hours_title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1.5rem;
        text-align: center;
        padding-bottom: 1rem;
        border-bottom: 0.2rem solid #f0f0f0;
    }

    .contact-page .hours_list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-page .hours_item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem;
        background: #f8f9fa;
        border-radius: 0.8rem;
        font-size: 1.4rem;
    }

    .contact-page .hours_day {
        font-weight: 500;
        color: #333;
    }

    .contact-page .hours_time {
        color: #666;
    }

    .contact-page .hours_item.today {
        background: #e3f2fd;
        border: 0.1rem solid #036FBE;
    }

    .contact-page .hours_item.today .hours_day {
        color: #036FBE;
        font-weight: 600;
    }

    .contact-page .hours_item.today .hours_time {
        color: #036FBE;
    }

    /* 社交媒体链接 */
    .contact-page .social_section {
        background: white;
        border-radius: 1rem;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .contact-page .social_title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 0.2rem solid #f0f0f0;
    }

    .contact-page .social_links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .contact-page .social_link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 5rem;
        height: 5rem;
        border-radius: 50%;
        text-decoration: none;
        font-size: 2rem;
        transition: all 0.3s ease;
    }

    .contact-page .social_link.wechat {
        background: #07c160;
        color: white;
    }

    .contact-page .social_link.qq {
        background: #12b7f5;
        color: white;
    }

    .contact-page .social_link.weibo {
        background: #e6162d;
        color: white;
    }

    .contact-page .social_link.linkedin {
        background: #0077b5;
        color: white;
    }

    .contact-page .social_link.email {
        background: #666;
        color: white;
    }

    .contact-page .social_link:hover {
        transform: scale(1.1);
    }

    /* 面包屑导航 */
    .contact-page .site_breadcrumb {
        padding: 1.5rem 0;
        background: #f8f9fa;
    }

    .contact-page .breadcrumb_nav {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 1.3rem;
        flex-wrap: wrap;
    }

    .contact-page .breadcrumb_nav a {
        color: #666;
        text-decoration: none;
    }

    .contact-page .breadcrumb_nav a:hover {
        color: #036FBE;
    }

    .contact-page .breadcrumb_nav span {
        color: #999;
    }

    /* Banner区域 */
    .contact-page .site_banner_1 {
        /* padding: 4rem 0; */
    }

    .contact-page .site_banner_1 .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .contact-page .banner-img {
        order: 1;
        max-width: 20rem;
        margin: 0 auto;
    }

    .contact-page .text-content {
        order: 2;
    }

    .contact-page .yyx-hero-title {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }

    .contact-page .yyx-hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .contact-page .yyx-text-medium {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .contact-page .read-more {
        padding: 1.2rem 2.4rem;
        font-size: 1.4rem;
    }

    /* 表单验证提示 */
    .contact-page .form_error {
        color: #e74c3c;
        font-size: 1.3rem;
        margin-top: 0.5rem;
        display: none;
    }

    .contact-page .form_group.error .form_input,
    .contact-page .form_group.error .form_select,
    .contact-page .form_group.error .form_textarea {
        border-color: #e74c3c;
    }

    .contact-page .form_group.error .form_error {
        display: block;
    }

    /* 成功提示 */
    .contact-page .success_message {
        background: #d4edda;
        color: #155724;
        padding: 1.5rem;
        border-radius: 0.8rem;
        margin-bottom: 2rem;
        text-align: center;
        font-size: 1.4rem;
        display: none;
    }

    .contact-page .success_message.show {
        display: block;
    }
}
