/* pub_intro容器样式 */
.pub_intro {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 头部样式 */
.pub_intro-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e6ed;
}

.pub_intro-header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.pub_intro-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 400;
}

/* 卡片样式 */
.pub_intro-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.pub_intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pub_intro-card-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #28a3af;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}
.pub_intro-card-title h2{
    font-size: 24px;
}

.pub_intro-card-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #28a3af;
    border-radius: 2px;
}

.pub_intro-card-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 8px;
    color: #28a3af;
    font-weight: bold;
}

/* 引用块样式 */
.pub_intro-citation-block {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.2s ease;
}

.pub_intro-citation-block:hover {
    background-color: #f1f8ff;
}

.pub_intro-citation-type {
    font-size: 0.95rem;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pub_intro-lang-tag {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: #28a3af;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 10px;
}

.pub_intro-citation-content {
    font-size: 1.1rem;
    color: #2c3e50;
    font-family: 'Courier New', monospace;
    padding: 15px;
    background: white;
    border-radius: 5px;
    border-left: 3px solid #28a3af;
    margin: 10px 0;
    line-height: 1.6;
}

/* 复制按钮样式 */
.pub_intro-copy-btn {
    background: #28a3af;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-weight: 500;
    margin-top: 5px;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

.pub_intro-copy-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
}

.pub_intro-copy-btn:active {
    transform: translateY(0);
}

/* 说明样式 */
.pub_intro-note {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.pub_intro-note::before {
    content: "!";
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 193, 7, 0.15);
    opacity: 0.8;
    z-index: 0;
}

.pub_intro-note p {
    margin: 8px 0;
    position: relative;
    z-index: 1;
}

.pub_intro-note strong {
    color: #e67e22;
}

/* Toast通知样式 */
.pub_intro-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 0.95rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pub_intro-toast.pub_intro-show {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .pub_intro {
        padding: 0 10px;
    }

    .pub_intro-header h1 {
        font-size: 1.8rem;
    }

    .pub_intro-card {
        padding: 20px 15px;
    }

    .pub_intro-card-title {
        font-size: 1.3rem;
    }

    .pub_intro-card-icon {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        margin-right: 12px;
    }

    .pub_intro-citation-content {
        font-size: 0.95rem;
        padding: 12px;
    }

    .pub_intro-copy-btn {
        width: 100%;
        padding: 12px;
    }

    .pub_intro-toast {
        width: 90%;
        min-width: unset;
    }
}

/*资料下载css*/
.downlist {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #dceced;
}

/* 头部样式 */
.downlist .header {
    background: #28a3af;
    color: white;
    padding: 35px 30px;
    text-align: center;
    position: relative;
}

.downlist .header h1 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.downlist .header p {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.92;
}

.downlist .header-icon {
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

/* 分类标签样式 */
.category-tabs {
    display: flex;
    justify-content: center;
    padding: 15px 20px 0;
    background-color: white;
    border-bottom: 1px solid #e0ecef;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 22px;
    margin: 0 3px 15px;
    border-radius: 50px;
    background-color: #f0f9fa;
    color: #21858f;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #d4ecee;
    font-size: 1rem;
    text-align: center;
}

.tab-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

.tab-btn:hover {
    background: #28a3af;
    color: white;
}

.tab-btn.active {
    background: #28a3af;
    color: white;
    border-color: #28a3af;
}

/* 内容区样式 */
.downlist .content {
    padding: 25px 30px;
}

.download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(40, 163, 175, 0.07);
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 20px;
    border: 1px solid #e0ecef;
    font-size: 0.95rem;
}

.doc-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #21858f;
}

.update-date {
    color: #7f8c8d;
}

/* 下载列表样式 */
.download-category {
    display: none;
    animation: fadeIn 0.4s ease;
}

.download-category.active {
    display: block;
}

.download_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 18px;
    transition: all 0.3s ease;
    border: 1px solid #e0ecef;
}

.download-item:hover {
    transform: translateY(-2px);
    border-color: #a8dbe2;
    box-shadow: 0 4px 15px rgba(40, 163, 175, 0.1);
}

.file-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
    color: #28a3af;
}

.file-details {
    flex-grow: 1;
    min-width: 0;
}

.file-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: #28a3af;
    font-size: 0.85rem;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #28a3af;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 110px;
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.download-btn:hover {
    background: #21858f;
}

.download-btn i {
    margin-right: 6px;
}

/* 底部样式 */
.footer {
    text-align: center;
    padding: 20px 30px;
    background: #f8fafc;
    color: #7f8c8d;
    border-top: 1px solid #e9ecef;
    font-size: 0.85rem;
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .downlist {
        margin: 20px auto;
    }

    .header {
        padding: 25px 20px;
    }

    .header h1 {
        font-size: 1.9rem;
    }

    .header p {
        font-size: 0.95rem;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        margin: 0 2px 10px;
        flex: 1;
        min-width: 0;
    }
    .tab-btn i {
        display: none;
    }
    .content {
        padding: 20px;
    }

    .download-item {
        padding: 15px;
        flex-wrap: wrap;
    }

    .download-btn {
        margin-top: 12px;
        width: 100%;
    }

    .file-details {
        flex: 1 0 100%;
    }

    .download-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px 10px;
    }

    .downlist {
        border-radius: 8px;
    }

    .header {
        padding: 22px 15px;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .header-icon {
        font-size: 1.8rem;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
        margin-bottom: 8px;
    }

    .content {
        padding: 15px;
    }

    .download-info {
        font-size: 0.85rem;
    }

    .file-title {
        font-size: 1rem;
    }

    .file-meta {
        gap: 12px;
        font-size: 0.82rem;
    }

    .download-btn {
        font-size: 0.9rem;
    }

    .footer {
        padding: 15px;
        font-size: 0.8rem;
    }
}
/*fq-css*/
.zh-fq {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.zh-fq-header {
    text-align: center;
    margin-bottom: 50px;
}

.zh-fq h1 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.zh-fq h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #28a3af;
    border-radius: 2px;
}

.zh-fq-subtitle {
    color: #7f8c8d;
    font-size: 18px;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.8;
}

.zh-fq-section {
    margin-bottom: 40px;
}

.zh-fq-section h2 {
    color: #28a3af;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
    font-weight: 500;
}

.zh-fq-item {
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e3edf7;
    background: #fff;
}

.zh-fq-item:hover {
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.1);
    border-color: #d5e8f7;
}

.zh-fq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}

.zh-fq-question:after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid #28a3af;
    border-bottom: 2px solid #28a3af;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.zh-fq-item.active .zh-fq-question:after {
    transform: rotate(225deg);
}

.zh-fq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    background: #f9fbfd;
}

.zh-fq-item.active .zh-fq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
}

.zh-fq-answer p {
    margin-bottom: 15px;
}

.zh-fq-answer p:last-child {
    margin-bottom: 0;
}

.zh-fq-contact {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.zh-fq-contact h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 22px;
}

.zh-fq-contact p {
    color: #555;
    margin-bottom: 20px;
    font-size: 17px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.zh-fq-btn {
    display: inline-block;
    background: #28a3af;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 10px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.25);
}

.zh-fq-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.35);
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .zh-fq {
        padding: 30px 20px;
        margin: 20px auto;
    }

    .zh-fq h1 {
        font-size: 28px;
    }

    .zh-fq-question {
        padding: 15px 20px;
        font-size: 16px;
        padding-right: 45px;
    }

    .zh-fq-question:after {
        right: 20px;
    }

    .zh-fq-contact {
        padding: 25px 20px;
    }
}
/*定制产品css*/
.zh-cus {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.zh-cus h1, .zh-cus h2, .zh-cus h3 {
    color: #1a5276;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 0.5em;
}

.zh-cus h1 {
    font-size: 2.2rem;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #28a3af;
}

.zh-cus h2 {
    font-size: 1.8rem;
    color: #2874a6;
}

.zh-cus h3 {
    font-size: 1.4rem;
    color: #2e86c1;
}

.zh-cus p {
    line-height: 1.7;
    margin-bottom: 1.5em;
    color: #444;
    text-align: justify;
}

.zh-cus table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.zh-cus th {
    background-color: #e8f4fc;
    color: #1a5276;
    font-weight: 600;
    padding: 16px 15px;
    text-align: left;
    border-bottom: 2px solid #d6eaf8;
}

.zh-cus td {
    padding: 14px 15px;
    border-bottom: 1px solid #edf2f7;
    vertical-align: top;
}

.zh-cus tr:nth-child(even) {
    background-color: #f9fbfd;
}

.zh-cus tr:hover {
    background-color: #f0f7ff;
}

.zh-cus .highlight {
    background-color: #e8f4fc;
    padding: 3px 6px;
    border-radius: 3px;
    font-weight: 500;
}

.zh-cus .key-points {
    background-color: #f0f7ff;
    border-left: 4px solid #28a3af;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.zh-cus .key-points h3 {
    border-bottom: none;
    margin-top: 0;
    padding-bottom: 0;
}

.zh-cus .step-num {
    display: inline-block;
    background-color: #28a3af;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-size: 0.9rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .zh-cus {
        padding: 20px 15px;
    }

    .zh-cus table {
        display: block;
        overflow-x: auto;
    }

    .zh-cus h1 {
        font-size: 1.8rem;
    }

    .zh-cus h2 {
        font-size: 1.5rem;
    }
}
/*offer css*/
.zh-offer {
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* 头部样式 */
.zh-offer .zh-header {
    background: linear-gradient(135deg, #28a3af 0%, #1c7e8a 100%);
    color: white;
    text-align: center;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}

.zh-offer .zh-header:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.zh-offer .zh-header:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.zh-offer .zh-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.zh-offer .zh-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.zh-offer .zh-tagline {
    font-size: 1.1rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.7;
    opacity: 0.9;
}

/* 内容区域 */
.zh-offer .zh-content {
    padding: 50px 40px;
}

.zh-offer .zh-section {
    margin-bottom: 60px;
}

.zh-offer .zh-section-title {
    font-size: 1.8rem;
    color: #1c7e8a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d1eeeb;
    position: relative;
    font-weight: 600;
}

.zh-offer .zh-section-title:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #28a3af;
}

.zh-offer .zh-section-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a6572;
    margin-bottom: 25px;
}

/* 统计信息 */
.zh-offer .zh-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 35px 0;
    gap: 20px;
}

.zh-offer .zh-stat {
    text-align: center;
    padding: 30px 20px;
    min-width: 230px;
    background-color: #f8fdfd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e1f7f5;
    transition: all 0.3s ease;
}

.zh-offer .zh-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(40, 163, 175, 0.15);
}

.zh-offer .zh-stat-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #28a3af;
    margin-bottom: 10px;
}

.zh-offer .zh-stat-label {
    color: #5c8693;
    font-size: 1.05rem;
}

/* 特色优势 */
.zh-offer .zh-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.zh-offer .zh-feature {
    background: #f8fdfd;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e1f7f5;
    transition: all 0.3s ease;
}

.zh-offer .zh-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(40, 163, 175, 0.15);
    border-color: #b1e4e1;
}

.zh-offer .zh-feature-title {
    font-size: 1.3rem;
    color: #1c7e8a;
    margin-bottom: 20px;
    font-weight: 600;
}

.zh-offer .zh-feature-desc {
    color: #5c8693;
    font-size: 1rem;
    line-height: 1.6;
}

/* 招聘职位 */
.zh-offer .zh-jobs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.zh-offer .zh-job {
    background: #f8fdfd;
    border-radius: 12px;
    padding: 35px 30px;
    border: 1px solid #e1f7f5;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.zh-offer .zh-job:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(40, 163, 175, 0.15);
    border-color: #b1e4e1;
}

.zh-offer .zh-job-title {
    font-size: 1.5rem;
    color: #1c7e8a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.zh-offer .zh-job-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #28a3af;
}

.zh-offer .zh-job-req {
    list-style-type: none;
    color: #5c8693;
}

.zh-offer .zh-job-req li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.zh-offer .zh-job-req li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a3af;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background-color: rgba(40, 163, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 联系方式 */
.zh-offer .zh-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fdfd 0%, #e6f7fa 100%);
    padding: 60px 30px;
    border-top: 1px solid #e1f7f5;
}

.zh-offer .zh-cta-title {
    font-size: 1.9rem;
    color: #1c7e8a;
    margin-bottom: 25px;
}

.zh-offer .zh-email {
    display: inline-block;
    background: linear-gradient(to right, #28a3af 0%, #1c7e8a 100%);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 163, 175, 0.3);
    /* 添加换行支持 */
    white-space: normal;
    text-align: center;
    /* 确保最小宽度 */
    min-width: 280px;
}

.zh-offer .zh-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 163, 175, 0.4);
}

.zh-offer .zh-cta-desc {
    margin-top: 20px;
    color: #5c8693;
    font-size: 1.05rem;
}

/* 页脚 */
.zh-offer .zh-footer {
    text-align: center;
    padding: 25px;
    color: #88afb9;
    font-size: 0.95rem;
    background-color: #f0f9fb;
    border-top: 1px solid #e1f7f5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zh-offer .zh-header {
        padding: 40px 20px;
    }

    .zh-offer .zh-title {
        font-size: 1.9rem;
    }

    .zh-offer .zh-subtitle {
        font-size: 1.1rem;
    }

    .zh-offer .zh-content {
        padding: 30px 20px;
    }

    .zh-offer .zh-stats {
        flex-direction: column;
        align-items: center;
    }

    .zh-offer .zh-stat {
        width: 100%;
        max-width: 350px;
    }

    /* 修复网格布局问题 */
    .zh-offer .zh-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .zh-offer .zh-jobs {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .zh-offer .zh-feature,
    .zh-offer .zh-job {
        width: 100%;
        max-width: 350px;
    }

    /* 修复按钮问题 */
    .zh-offer .zh-email {
        display: block;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 15px;
        font-size: 1.1rem;
        /* 添加内边距和自动换行 */
        line-height: 1.4;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .zh-offer .zh-title {
        font-size: 1.6rem;
    }

    .zh-offer .zh-section-title {
        font-size: 1.5rem;
    }

    .zh-offer .zh-job {
        padding: 25px 20px;
    }

    .zh-offer .zh-stat {
        padding: 20px 15px;
    }

    .zh-offer .zh-stat-value {
        font-size: 2rem;
    }

    .zh-offer .zh-email {
        font-size: 1rem;
        padding: 12px 10px;
        /* 更小的字体和调整后的内边距 */
        line-height: 1.5;
        min-width: auto;
    }
}
/*签约*/
.zh-sign {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    color: #333;
    min-height: calc(100vh - 80px); /* 视口高度减去上下边距 */
    box-sizing: border-box;
}

.zh-sign h1 {
    font-size: 26px;
    background: linear-gradient(to right, #28a3af, #3bc0c6);
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.zh-sign h1:hover {
    transform: scale(1.02);
    box-shadow: inset 0 -2px 8px rgba(0,0,0,0.08);
}

.zh-sign p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.zh-sign p:hover {
    color: #1b7b84;
    opacity: 0.9;
}

.zh-sign .contact {
    background-color: #f0fbfc;
    border: 1px solid #cdeef1;
    border-left: 6px solid #28a3af;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.zh-sign .contact:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.zh-sign .contact h2 {
    font-size: 20px;
    margin-top: 0;
    color: #28a3af;
    margin-bottom: 15px;
}

.zh-sign .contact p {
    margin: 8px 0;
    font-size: 15px;
}

.zh-sign .contact p strong {
    display: inline-block;
    width: 90px;
    color: #1b7b84;
}

@media (max-width: 600px) {
    .zh-sign {
        padding: 20px;
    }

    .zh-sign h1 {
        font-size: 22px;
        padding: 12px 16px;
    }

    .zh-sign .contact h2 {
        font-size: 18px;
    }
}