/* ========================================
   Case / HR / Contact page styles
   Matching original site design
   ======================================== */

/* ========================================
   Shared: Breadcrumb Navigation
   ======================================== */
.breadcrumb-nav {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #999;
}
.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb-inner a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-inner a:hover {
    color: #E6212A;
}
.breadcrumb-sep {
    color: #999;
    font-size: 12px;
}
.breadcrumb-current {
    color: #333;
}

/* ========================================
   Shared: Pagination
   ======================================== */
.case-pagination {
    text-align: center;
    padding: 30px 0 10px;
}
.case-pagination .page-con {
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.case-pagination .pagination {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.case-pagination .pagination li a,
.case-pagination .pagination li span {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 34px;
    padding: 0 10px;
    text-align: center;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #8a8a8a;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}
.case-pagination .pagination li a:hover {
    color: #E6212A;
    border-color: #E6212A;
}
.case-pagination .pagination li.active span {
    background-color: #E6212A;
    color: #fff;
    border-color: #E6212A;
}
.case-pagination .pagination li.active span:hover {
    background-color: #c91a22;
    color: #fff;
    border-color: #c91a22;
}
.case-pagination .pagination li.disabled span {
    background-color: #f4f4f5;
    color: #c0c4cc;
    border-color: #f4f4f5;
    cursor: not-allowed;
}
.case-pagination .pagination li.disabled span:hover {
    background-color: #f4f4f5;
    color: #c0c4cc;
    border-color: #f4f4f5;
}

/* ========================================
   Case Page - 服务案例
   原站: c_static_001-17204870138830
   ======================================== */
.case-page {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: 300px;
}
.case-content-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}
.case-left {
    flex: 0 0 60%;
    min-width: 0;
}
.case-right {
    flex: 1;
    max-width: 40%;
}
.case-right-imgs {
    position: relative;
    width: 100%;
    padding-top: 20px;
    padding-right: 0;
}
.case-img-small {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    max-width: 240px;
    height: auto;
    display: block;
    object-fit: contain;
    z-index: 1;
}
.case-img-main {
    position: relative;
    width: 80%;
    max-width: 420px;
    height: auto;
    display: block;
    object-fit: contain;
    margin-left: auto;
    margin-right: 30px;
    z-index: 2;
}
.case-header {
    margin-bottom: 0;
    text-align: left;
}
.case-page .case-title {
    font-size: 36px;
    font-weight: bold;
    line-height: normal;
    padding-bottom: 10px;
    margin-bottom: 0;
}
.case-page .case-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: rgba(230, 33, 42, 1);
    margin-bottom: 0;
    line-height: normal;
}
.case-page .case-desc {
    font-size: 16px;
    line-height: 2;
    padding-top: 10px;
    max-width: none;
    color: inherit;
}

/* Logo Grid - 原站: 3列, max-width 625.8px */
.case-logo-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 625.8px;
}
.case-logo-item {
    flex: 0 0 33.3%;
    max-width: 33.3%;
    padding: 0;
    box-sizing: border-box;
}
.case-logo-item img {
    width: 94%;
    height: auto;
    display: block;
    object-fit: contain;
    border: 1px solid rgba(227, 227, 227, 1);
    margin: 6px auto;
    transition: transform 0.3s, box-shadow 0.3s;
}
.case-logo-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HR Page - 人才招聘
   源站: hr_22f68a5c...css
   ======================================== */

/* Section Title */
.hr-section-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hr-section-title.center {
    text-align: center;
}
.hr-section-title.white {
    color: #fff;
}
.hr-red-line {
    border: none;
    width: 40px;
    height: 3px;
    background-color: #E6212A;
    margin-top: 0;
    margin-bottom: 20px;
}
.hr-red-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* 人才理念 */
.hr-concept-section {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 0 50px;
}
.hr-concept-inner {
    max-width: 100%;
}
.hr-concept-content {
    font-size: 15px;
    color: #666;
    line-height: 2;
}
.hr-concept-content p {
    margin-bottom: 10px;
}

/* 人才战略 */
.hr-strategy-section {
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 70px;
    position: relative;
}
.hr-strategy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}
.hr-strategy-inner {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hr-strategy-header {
    text-align: center;
    margin-bottom: 50px;
}
.hr-strategy-desc {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
    letter-spacing: 2px;
}
.hr-strategy-desc.white {
    color: rgba(255, 255, 255, 0.85);
}
.hr-strategy-cards {
    display: flex;
    gap: 0;
    margin-top: 50px;
    margin-bottom: 50px;
}
.hr-strategy-card {
    flex: 1;
    background: transparent;
    padding: 30px 30px;
    text-align: center;
    transition: all 0.2s cubic-bezier(0,0,1,1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hr-strategy-card:last-child {
    border-right: none;
}
.hr-strategy-card:hover {
    background-color: #CC0A0A;
}
.hr-strategy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hr-strategy-icon svg {
    width: 60px;
    height: 60px;
    fill: #fff;
}
.hr-strategy-icon svg path {
    fill: #fff;
}
.hr-strategy-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hr-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    margin-left: 30px;
    margin-right: 30px;
}
.hr-card-desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
    text-align: left;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
}

/* 招聘岗位 */
.hr-jobs-section {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 0 80px;
}
.hr-jobs-inner {
    max-width: 100%;
}

/* Job Table */
.hr-job-table {
    width: 100%;
    margin-top: 10px;
}
.hr-job-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: bold;
}
.hr-job-header span {
    text-align: center;
}
.hr-job-header span:first-child {
    text-align: left;
}
.hr-job-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.8fr;
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.3s;
    align-items: center;
}
.hr-job-row:hover {
    background-color: #f9f9f9;
}
.hr-job-row span {
    text-align: center;
}
.hr-job-row span:first-child {
    text-align: left;
    font-weight: 500;
}
.hr-job-toggle {
    color: #E6212A;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}
.hr-job-detail {
    display: none;
    padding: 25px 30px;
    background-color: #f8f8f8;
    font-size: 14px;
    color: #666;
    line-height: 2;
    border-bottom: 1px solid #eee;
}
.hr-job-detail.open {
    display: block;
}
.hr-job-detail-block {
    margin-bottom: 15px;
}
.hr-job-detail-block strong {
    color: #333;
    font-size: 15px;
}
.hr-job-detail-block p {
    margin: 3px 0;
}

/* ========================================
   Contact Page - 联系我们
   源站: contact_aabbe06550a59537...css
   ======================================== */

/* 联系方式 Section */
.contact-section {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}
.contact-section-inner {
    margin-bottom: 55px;
}
.contact-title-wrap {
    margin-bottom: 0;
}
.contact-main-title {
    font-size: 30px;
    font-weight: bold;
    color: rgba(51, 51, 51, 1);
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1;
    margin-bottom: 0;
}
.contact-red-bar {
    width: 122px;
    height: 0;
    border-top: 7px solid rgba(230, 33, 42, 1);
    margin-top: 15px;
    margin-bottom: 30px;
}
.contact-body {
    display: flex;
    flex-direction: row;
    padding: 3%;
}
.contact-left {
    flex: 0 0 45%;
}
.contact-company-name {
    font-size: 28px;
    font-weight: bold;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 0;
}
.contact-company-slogan {
    font-size: 16px;
    font-weight: bold;
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
}
.contact-right-info {
    flex: 1;
}
.contact-info-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.contact-info-item {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
    padding-bottom: 15px;
    box-sizing: border-box;
}
.contact-info-icon {
    flex: 0 0 50px;
    padding-right: 18px;
    color: #E6212A;
}
.contact-info-icon svg {
    fill: currentColor;
}
.contact-info-text {
    flex: 1;
}
.contact-info-label {
    font-size: 18px;
    font-weight: bold;
    color: rgba(76, 76, 76, 1);
    margin-top: 8px;
    margin-bottom: 0;
}
.contact-info-value {
    font-size: 18px;
    color: rgba(102, 102, 102, 1);
    margin-top: 5px;
    margin-bottom: 0;
}
.contact-info-value a {
    color: rgba(102, 102, 102, 1);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info-value a:hover {
    color: #E6212A;
}

/* 在线留言 Section — 源站: c_static_693_P_001-16798975963400 */
.contact-form-section {
    min-height: 300px;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 10px 100px 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    box-sizing: border-box;
}
.contact-form-title {
    font-size: 28px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: normal;
    margin-bottom: 0;
}
.contact-form-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 15px;
}
.contact-form-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}
.contact-form {
    margin-top: 30px;
    max-width: none;
}
.contact-form-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 1rem;
}
.contact-form-row > .contact-input:first-child {
    margin-right: 10px;
}
.contact-form-row > .contact-input:last-child {
    margin-left: 10px;
}
.contact-input {
    flex: 1;
    width: 100%;
    padding: 30px;
    font-size: 14px;
    color: #666;
    border: 1px solid #e1e1e1;
    border-radius: 2px !important;
    background: #fff;
    outline: none;
    transition: all ease 0.15s;
    box-sizing: border-box;
    line-height: 1;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #999;
}
.contact-input:focus,
.contact-textarea:focus {
    box-shadow: 0 0 8px rgba(134, 183, 254, 0.3);
    border-color: #66b1ff;
}
.contact-textarea {
    width: 100%;
    height: 150px;
    padding: 10px 15px;
    font-size: 14px;
    color: #666;
    border: 1px solid #e1e1e1;
    border-radius: 2px !important;
    background: #fff;
    outline: none;
    transition: all ease 0.15s;
    box-sizing: border-box;
    resize: vertical;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.contact-submit-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    width: 237px;
    padding: 8px;
    margin: 0;
    background-color: rgba(230, 33, 42, 1);
    border: 1px solid rgba(230, 33, 42, 1);
    border-radius: 2px;
    font-size: 14px;
    line-height: 2;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-submit-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    z-index: 0;
    opacity: 0;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
}
.contact-submit-btn:hover::after {
    opacity: 1;
}
.contact-submit-btn:hover {
    background-color: rgba(230, 33, 42, 1);
    border-color: rgba(230, 33, 42, 1);
}

/* ========================================
   Responsive - Case / HR / Contact
   ======================================== */
@media (max-width: 1200px) {
    .case-logo-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .case-right {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .case-content-wrap {
        flex-direction: column;
    }
    .case-right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .case-right-imgs {
        padding-top: 0;
        text-align: center;
    }
    .case-img-small {
        display: none;
    }
    .case-img-main {
        margin: 0 auto;
    }
    .case-logo-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .case-page .case-title,
    .hr-section-title,
    .contact-main-title,
    .contact-form-title {
        font-size: 28px;
    }
    .hr-strategy-cards {
        flex-direction: column;
    }
    .contact-body {
        flex-direction: column;
    }
    .contact-left {
        flex: none;
        width: 100%;
        margin-bottom: 30px;
    }
    .contact-info-item {
        flex: 0 0 50%;
    }
    .hr-job-header,
    .hr-job-row {
        grid-template-columns: 2fr 0.8fr 0.8fr 0.8fr 1fr 0.6fr;
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .case-page {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .case-page .case-title {
        font-size: 24px;
    }
    .case-page .case-subtitle {
        font-size: 16px;
    }
    .case-page .case-desc {
        font-size: 14px;
    }
    .case-logo-grid {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .case-logo-item {
        flex: 0 0 33.3%;
        max-width: 33.3%;
    }
    .hr-concept-section {
        padding: 40px 0 30px;
    }
    .hr-strategy-section {
        padding: 40px 0 50px;
    }
    .hr-strategy-header {
        margin-bottom: 30px;
    }
    .hr-jobs-section {
        padding: 40px 0 50px;
    }
    .hr-job-header {
        display: none;
    }
    .hr-job-row {
        grid-template-columns: 1fr auto;
        gap: 5px;
    }
    .hr-job-row span:nth-child(2),
    .hr-job-row span:nth-child(3),
    .hr-job-row span:nth-child(4),
    .hr-job-row span:nth-child(5) {
        display: none;
    }
    .hr-job-detail {
        padding: 15px 20px;
    }
    .contact-info-item {
        flex: 0 0 100%;
    }
    .contact-form-section {
        padding: 40px 10px 60px;
        background-attachment: scroll;
    }
    .contact-form-row {
        flex-direction: column;
        gap: 15px;
    }
    .contact-form-row > input:first-child {
        margin-right: 0;
    }
    .contact-form-row > input:last-child {
        margin-left: 0;
    }
    .contact-submit-btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .case-logo-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .hr-section-title {
        font-size: 24px;
    }
    .hr-card-title {
        font-size: 18px;
    }
}
