/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

/* 外层容器 */
.car_section {
    padding: 60px 20px;
    background-color: #ffffff;
}

/* 标题区域 */
.car_title_wrap {
    text-align: center;
    margin-bottom: 50px;
}
.car_main_title {
    font-size: 36px;
    color: #222;
    font-weight: bold;
    margin-bottom: 15px;
}
.car_sub_title {
    font-size: 22px;
    color: #555;
}

/* 卡片容器 */
.car_card_container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* 单个卡片 */
.car_job_card {
    width: 280px;
    background-color: #fff;
    border: 1px solid #eee;
    overflow: hidden;
}
.car_card_header {
    padding: 20px 20px 0px 20px;
    border-top: 3px solid #e74c3c;
}
.car_job_title {
    font-size: 18px;
    color: #222;
    font-weight: bold;
    margin-bottom: 15px;
}
.car_work_place {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.car_card_img_wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.car_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.car_card_content {
    padding: 0px 20px 20px 20px;
}
.car_content_title {
    font-size: 15px;
    color: #222;
    font-weight: bold;
    margin-bottom: 12px;
}
.car_content_text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .car_job_card {
        width: 45%;
    }
}
@media (max-width: 768px) {
    .car_job_card {
        width: 100%;
    }
    .car_main_title {
        font-size: 28px;
    }
    .car_sub_title {
        font-size: 18px;
    }
}

/**
联系我们
 */
/* 外层容器 */
.ca_contact_section {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
}

/* 标题区域 */
.ca_title_wrapper {
    text-align: center;
    margin-bottom: 60px;
}
.ca_main_title {
    font-size: 38px;
    color: #222222;
    font-weight: bold;
    margin-bottom: 20px;
}
.ca_sub_title {
    font-size: 24px;
    color: #555555;
}

/* 主体内容容器 */
.ca_content_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap;
}

/* 左侧联系信息 */
.ca_info_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ca_info_item {
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
}

/* 右侧二维码区域 */
.ca_qr_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ca_qr_img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}
.ca_qr_label {
    margin-top: 10px;
    font-size: 16px;
    color: #333333;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .ca_content_wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .ca_main_title {
        font-size: 28px;
    }
    .ca_sub_title {
        font-size: 18px;
    }
    .ca_info_item {
        font-size: 16px;
        text-align: center;
    }
}