/* ==========================================
   关于我们页面样式 (about.css)
   命名空间: .about-container
   ========================================== */

/* 主容器 */
.about-container {
    padding: 0 0;
    background-color: #fff;
}

/* 通用区块样式 */
.company-intro{
      background-color: #f7fafd;
      margin: 0 auto;
 }
.about-section {
    margin-bottom: 0;
    padding: 60px 0px;
    border-radius: 0px;
}
.company-history{ position: relative;
    background: linear-gradient(180deg, #eaf4ff 0%, #f7fbff 100%);}
.company-history::after{
    position: absolute;
    right: 0;
    top: 30px;
    width: 300px;
    height: 300px;
    opacity: 0.55;
    background-image:
        radial-gradient(circle, rgba(75, 147, 233, 0.2) 2px, transparent 3px);
    background-size: 18px 18px;
    content: "";}

.about-section h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 25px;
}

.about-section:last-child {
    margin-bottom: 0;
}
.company-view{background:url(../img/about-bj.jpg) no-repeat center;
    background-size: cover;}
/* 区块标题 */
.about-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-section .section-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.about-section .section-title::after {
    display: none;
}

.about-section .title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #00a8ff);
    margin: 0 auto;
    border-radius: 2px;
    display: none;
}

/* ==========================================
   公司简介区块
   ========================================== */

.company-intro .intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
    box-shadow: 0 4px 16px rgba(20, 88, 174, 0.13);
}

.company-intro .intro-text {
    padding-left: 20px;
}

.company-intro .intro-text p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.company-intro .intro-text p:last-child {
    margin-bottom: 0;
}

.company-intro .intro-image {
    text-align: center;
}

.company-intro .intro-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   企业文化区块
   ========================================== */

.company-culture .culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.company-culture .culture-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.company-culture .culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    background-color: #fff;
}

.company-culture .culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    border-radius: 50%;
    color: #fff;
}

.company-culture .culture-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.company-culture .culture-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ==========================================
   发展历程区块
   ========================================== */
.advantage-grid {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(6, 1fr);
}

.advantage-card {
    text-align: center;
    padding: 24px;
    background: linear-gradient(42.7deg, #FFFFFF 53.17%, #F0F4F7 104.01%);
    box-shadow: 0 4px 16px rgba(20, 88, 174, 0.13);
    border-radius: 5px;
    transition: all 0.2s;
    border: 1px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.advantage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0474ff, #0054dd);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-icon i {
    font-size: 22px;
    color: #fff;
}

.advantage-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.company-history .timeline {
    padding: 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: center;
}

.company-history .timeline-item {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    align-items: center;
}


.company-history .timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    position: relative;
}



.company-history .timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.company-history .timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* ==========================================
   企业风采
   ========================================== */
.fenc-grid {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.fenc-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #FFFFFF;
}

.fenc-card img {
    width: 100%;
    height: auto;
}

/* ==========================================
   资质荣誉区块
   ========================================== */
.company-honors .honors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.company-honors .honor-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
}

.company-honors .honor-item:hover {
    cursor: pointer;
    border: 1px solid #eaf3ff;
    box-shadow: 0 2px 5px rgba(24, 144, 255, 0.1);
}

/* 图标大小、颜色 */
.company-honors .honor-icon {
    width: 60px;
    height: 60px;
    background: #eaf3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-honors .honor-icon i {
    font-size: 26px;
    background:linear-gradient(135deg, #086cf5, #0046c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 文字垂直居中 */
.company-honors .honor-text {
    flex: 1;
    text-align: left;
}

.company-honors .honor-text h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #333;
}

.company-honors .honor-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ==========================================
   联系我们区块
   ========================================== */
/* 联系我们 */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 40px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(20, 88, 174, 0.13);
}

.contact-map {
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-items {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #eaf3ff;
}

.contact-item.wechat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-item.wechat-item .contact-icon {
    margin-bottom: 10px;
}

.wechat-qrcode {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid #eaf3ff;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(24, 144, 255, 0.1);
}

.wechat-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
    box-shadow: 0 10px 25px rgba(0, 98, 255, .12);

}
.contact-icon i{
     background:linear-gradient(135deg, #086cf5, #0046c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 14px;
    color:var(--text-primary);
    margin-bottom: 5px;
}

.contact-text {
    font-size: 16px;
    color: #062f91;
    font-weight: 500;
    line-height: 1.6;
}

/*表单*/
.jks {
    width: 1400px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 40px;
    padding: 0 40px;

}

.jks_a font {
    width: 100%;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
}

.cont {
    width: 100%;
    padding-bottom: 20px;
}

.jks_a span {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    font-size: 24px;
    line-height: 50px;
    text-align: left;
    color: #fff;
}

.jks_a span p {
    font-size: 14px;
}

.jks_a span b {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #fff;
}

.inp {
    width: 45%;
    margin-right: 5%;
    height: 50px;
    float: left;
    background-color: #ffffff;
    font-size: 16px;
    color: #888888 !important;
    padding: 0 25px;
    border: solid 1px #f9f9f9;
    font-size: 15px;
    color: #f9f9f9;
}

.cont .form-list textarea {
    width: 95%;
    height: 80px;
    background-color: #ffffff;
    font-size: 16px;
    color: #888888 !important;
    padding: 12px 25px;
    margin-top: 20px;
    border: solid 1px #f9f9f9;
    font-size: 15px;
}

.cont .form-list .sub {
    width: 200px;
    height: 50px;
    background: linear-gradient(135deg, #0066CC 0%, #0052a3 100%);
    color: #fff;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    border: solid 1px #f9f9f9;
    font-size: 15px;
    color: #f9f9f9;
}

/* ==========================================
   响应式设计 - 平板设备
   ========================================== */
@media (max-width: 1024px) {
    .about-section {
        padding: 20px 30px;
    }

    .about-section .section-title {
        font-size: 32px;
    }

    /* 公司简介 */
    .company-intro .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* 企业文化 */
    .company-culture .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* 资质荣誉 */
    .company-honors .honors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* 联系我们 */
    .company-contact .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ==========================================
   响应式设计 - 手机设备
   ========================================== */
@media (max-width: 768px) {
    .about-container {
        padding:0 0;
    }

    .about-section {
        margin-bottom: 0px;
        padding: 40px 20px;
    }

    .about-section .section-header {
        margin-bottom: 30px;
    }

    .about-section .section-title {
        font-size: 28px;
    }

    /* 公司简介 */
    .company-intro .intro-text p {
        font-size: 15px;
    }

    /* 企业文化 */
    .company-culture .culture-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-culture .culture-item {
        padding: 30px 20px;
    }

    /* 发展历程 */
    .company-history .timeline {
        padding: 20px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fenc-grid {
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
    }


    .company-history .timeline::before {
        left: 30px;
    }

    .company-history .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 70px;
        margin-bottom: 40px;
    }

    .company-history .timeline-item:nth-child(odd) .timeline-year,
    .company-history .timeline-item:nth-child(even) .timeline-year {
        order: 1;
        text-align: left;
        margin-bottom: 10px;
    }

    .company-history .timeline-item:nth-child(odd) .timeline-content,
    .company-history .timeline-item:nth-child(even) .timeline-content {
        order: 2;
        text-align: left;
    }

    .company-history .timeline-year {
        font-size: 24px;
    }

    .company-history .timeline-year::after {
        left: -54px !important;
        right: auto !important;
    }

    .company-history .timeline-content h3 {
        font-size: 18px;
    }

    .company-history .timeline-content p {
        font-size: 14px;
    }

    /* 资质荣誉 */
    .company-honors .honors-grid {
       grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .company-honors .honor-item {
        padding: 30px 20px;
    }

    /* 联系我们 */
    .company-contact .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-contact .contact-info-item {
        padding: 30px 20px;
    }
    .company-intro .intro-text {
    padding:0 20px !important;
}
.about-section h2{
    margin-top: 25px;
}
}

/* ==========================================
   响应式设计 - 小屏手机
   ========================================== */
@media (max-width: 480px) {
    .about-section {
        padding: 20px 15px;
    }

    .about-section .section-title {
        font-size: 24px;
    }
 .company-intro .intro-text {
    padding:0 20px !important;
}
    .company-intro .intro-text p {
        font-size: 14px;
    }
   
.about-section h2{
    margin-top: 25px;
}
    .company-culture .culture-icon,
    .company-honors .honor-icon {
        width: 60px;
        height: 60px;
    }

    .company-culture .culture-icon svg,
    .company-honors .honor-icon svg {
        width: 32px;
        height: 32px;
    }

    .company-contact .contact-info-icon {
        width: 48px;
        height: 48px;
    }

    .company-contact .contact-info-icon svg {
        width: 24px;
        height: 24px;
    }

    .company-contact .qrcode-image {
        max-width: 120px;
    }
}

/* ==========================================
   在线留言表单样式
   ========================================== */
.contact-form-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 15px;
}

.form-group .required {
    color: #ff4d4f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    padding: 14px 48px;
    background: linear-gradient(135deg, #0066cc, #00a8ff);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.form-note {
    margin-top: 15px;
    color: #999;
    font-size: 14px;
}

/* ==========================================
   地图区块样式
   ========================================== */
.map-section {
    padding: 60px 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   响应式设计
   ========================================== */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 24px;
    }
}

/* ==========================================
   常见问题样式
   ========================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f9f9f9;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f0f7ff;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   响应式设计
   ========================================== */
@media (max-width: 768px) {
    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* ==========================================
   服务与支持页面样式
   ========================================== */

/* 更多快捷服务区块 */
.quick-service-section {
    background: transparent;
    padding: 40px 0;
    margin: 0 -40px 40px -40px;
}

.quick-service-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.quick-service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.quick-service-item {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.quick-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-service-item .service-icon {
    margin-bottom: 15px;
    color: #0066cc;
}

.quick-service-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.quick-service-item p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* 医疗器械服务区块 */
.medical-service-section {
    padding: 40px 0;
    background: #fff;
}

.medical-service-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.medical-service-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-category-item:hover {
    transform: translateY(-5px);
}

.service-category-item .category-icon {
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.service-category-item:hover .category-icon {
    color: #0066cc;
}

.service-category-item p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* 服务项目区块 */
.service-items-section {
    padding: 40px 0;
    background: transparent;
    margin: 0 -40px;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-item-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-item-card .service-item-icon {
    margin-bottom: 20px;
    color: #0066cc;
}

.service-item-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}


/* 响应式设计 */
@media (max-width: 1200px) {
    .quick-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .medical-service-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {

    .quick-service-section,
    .service-items-section {
        margin: 0 -20px 40px -20px;
    }

    .quick-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
    }

    .quick-service-item {
        padding: 20px 15px;
    }

    .medical-service-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .service-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
    }

    .service-item-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .quick-service-grid {
        grid-template-columns: 1fr;
    }

    .medical-service-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-items-grid {
        grid-template-columns: 1fr;
    }
}

/* 获取帮助横幅 */
.help-banner-section {
    background: transparent;
    padding: 0;
    margin: 40px 0;
    border: none;
    box-shadow: none;
}

.help-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
    padding: 40px 60px;
}

.help-banner-text {
    z-index: 2;
    position: relative;
}

.help-banner-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.help-banner-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.help-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.help-banner-image {
    text-align: right;
    position: relative;
    z-index: 1;
}

.help-banner-image img {
    max-width: 120%;
    height: auto;
    transform: scale(1.2) translateX(-70px);
}

@media (max-width: 768px) {
    .help-banner-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .help-banner-text h2 {
        font-size: 28px;
    }

    .help-banner-text p {
        font-size: 14px;
    }

    .help-banner-image {
        text-align: center;
    }

    .help-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   企业文化新样式
   ========================================== */
.company-culture .section-header {
    position: relative;
}

.company-culture .section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.company-culture .section-title::after {
    display: none;
}

.company-culture .title-underline {
    display: none;
}

.culture-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.culture-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.culture-dots .dot.active {
    background: #ff4d6d;
    width: 12px;
    height: 12px;
}

.culture-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;

}

.culture-card {
    text-align: left;
    padding: 0;
    background: linear-gradient(180deg, #fff 50%, #eaf3ff 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eaf3ff;
    position: relative;
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color:#eaf3ff;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 30px;



}

.card-title {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.card-underline {
    width: 40px;
    height: 3px;
    background: #333;
    margin-bottom: 20px;
    display: none;
}

.culture-card h1 i {
  background:linear-gradient(135deg, #086cf5, #0046c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 30px;
}

.card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.card-desc:last-child {
    margin-bottom: 0;
}

.culture-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-culture {
    padding: 14px 50px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-culture:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* 响应式 */
@media (max-width: 1200px) {
    .culture-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .culture-cards-grid {
         grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .company-culture .section-title {
        font-size: 24px;
    }

    .card-number {
        font-size: 36px;
    }

    .card-title {
        font-size: 20px;
    }
    .company-history::after{
        display: none;
    }
}


/* ==========================================
   联系页面优化样式
   ========================================== */

/* 联系方式网格 - 一行4个，无边框 */
.company-contact .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.company-contact .contact-info-item {
    background: transparent;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.company-contact .contact-info-item:hover {
    background: transparent;
    transform: translateY(-2px);
}

.company-contact .contact-info-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #0066cc;
}

.company-contact .contact-info-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.company-contact .contact-info-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 微信二维码卡片特殊样式 */
.company-contact .contact-info-wechat {
    justify-content: flex-start;
}

.company-contact .contact-info-wechat h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.company-contact .qrcode-wrapper {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-contact .qrcode-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none;
    padding: 0;
}

.company-contact .qrcode-text {
    margin: 12px 0 0;
    font-size: 13px;
    color: #666;
}

/* 表单样式优化 */
.contact-form-section .section-subtitle {
    font-size: 15px;
    color: #666;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

/* 简洁表单布局 */
.contact-form-simple {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.contact-form-simple .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-simple input,
.contact-form-simple textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form-simple input:focus,
.contact-form-simple textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form-simple textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 20px;
}

.contact-form-simple .btn-submit {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-simple .btn-submit:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.contact-form-simple .btn-submit:active {
    transform: translateY(0);
}

/* 横向表单布局 */
.contact-form-horizontal {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: none;
}

.contact-form-horizontal .form-group {
    margin-bottom: 0;
    flex: 1;
}

.contact-form-horizontal .form-group:nth-child(1),
.contact-form-horizontal .form-group:nth-child(2) {
    flex: 0 0 180px;
}

.contact-form-horizontal .form-group:nth-child(3) {
    flex: 1;
}

.contact-form-horizontal .form-group:nth-child(4) {
    flex: 0 0 auto;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-horizontal input,
.contact-form-horizontal textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    height: 40px;
}

.contact-form-horizontal textarea {
    resize: none;
    height: 40px;
    line-height: 1.5;
}

.contact-form-horizontal input:focus,
.contact-form-horizontal textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
    outline: none;
}

.btn-submit {
    padding: 10px 32px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    height: 40px;
    white-space: nowrap;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* 响应式 */
@media (max-width: 1024px) {
    .company-contact .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .company-contact .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-contact .contact-info-wechat h3 {
        margin-top: 0;
    }

    /* 移动端表单改为垂直布局 */
    .contact-form-horizontal {
        flex-direction: column;
        gap: 16px;
    }

    .contact-form-horizontal .form-group:nth-child(1),
    .contact-form-horizontal .form-group:nth-child(2),
    .contact-form-horizontal .form-group:nth-child(3),
    .contact-form-horizontal .form-group:nth-child(4) {
        flex: 1;
    }

    .contact-form-horizontal textarea {
        height: 80px;
    }
    .jks{
       width: auto;
       grid-template-columns: 1fr;
       padding: 0 20px;
    }
    .cont{
        width:350px;
    }
    .cont .form-list textarea{  
        width:90%;}
    
    .inp{
        width:90%;
        margin: 10px 0;
    }
    /* 简洁表单移动端样式 */
    .contact-form-simple {
        padding: 20px;
    }

    .contact-form-simple .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-form-simple textarea {
        min-height: 120px;
    }

    .btn-submit {
        width: 100%;
    }
}