:root {
    --main-color: #0078d7;
    --default-font-size: 14px;
    --default-title-font-size: 32px;
}

/* 字体引入 */
@font-face {
    font-family: 'AlibabaPuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AlibabaPuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'AlibabaPuHuiTi';
    src: url('../fonts/AlibabaPuHuiTi-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* 通用样式 */
body {
    margin: 0;
    padding: 0;
    font-family: 'AlibabaPuHuiTi', '微软雅黑', Arial, sans-serif;
    background: #fff;
    color: #222;
}

a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--main-color);
}

.container {
    width: 1280px;
    margin: 0 auto;
}
.mobile-header{
    display: none;
}
/* 顶部导航栏 */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position:fixed;
    top:0;
    width:100vw;
    z-index:20;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
}

.logo img {
    width: 230px;
    height: 75px;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav li {
    margin-left: 50px;
    position: relative;
}

.nav li:first-child {
    margin-left: 0;
}

.nav a {
    display: block;
    height: 120px;
    line-height: 120px;
    font-size: 18px;
    padding: 8px 0;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--main-color);
}

.nav ul .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: -45px;
    top: 100px;
    background-color: #fff;
    min-width: 160px;
    z-index: 10;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav ul li:hover > .submenu {
    display: block;
}

.nav ul .submenu li {
    display: block;
    padding: 10px 20px;
    margin-left:0px !important;
}

.nav ul .submenu li:last-child {
    padding-bottom:10px;
    border-bottom: none;
}

.nav ul .submenu li a {
    display: block;
    color: #222 !important;
    height: 15px !important;
    line-height: 15px !important;
    width: 100%;
    text-align:center;
    font-size: 16px;
}

.nav ul .submenu li a:hover {
    color: var(--main-color) !important;
}

/* 顶部大图和标题 */
.banner {
    position: relative;
    width: 100%;
    height: 750px;
    margin-top:70px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 45%;
    width: 1280px;
    left: calc(50% - 640px);
    color: #fff;
    text-align: left;
}

.banner-text h1 {
    font-size: 40px;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.banner-text p {
    font-size: 18px;
    margin: 0;
    opacity: 0.8;
}

/* 选项卡 */
.tab-bar {
    background: rgba(1, 119, 189, 0.1);
}

.tab-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* 让tab居中 */
}

.tab {
    display:inline-block;
    background: #ffffff;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 16px 32px;
    cursor: pointer;
    color: #222;
    border-bottom: 3px solid transparent;
    transition: border 0.2s, color 0.2s;
}

.tab.active {
    color: #ffffff;
    background-color: var(--main-color);
}

.tab:not(.active):hover {
    color: var(--main-color);
}

/* 联系方式和地图 */
.contact-info {
    background: #fff;
    padding: 115px 0 115px 0;
    position: relative;
}

.contact-info .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 18px;
    color: #555557;
    margin-bottom: 60px;
}

.contact-center {
    display: flex;
    gap: 40px;
}

.contact-center div {
    font-size: 14px;
    color: #333;
    line-height: 2;
}

.contact-map {
    flex: 1;
    width: 700px;
    height: 450px;
}

/* 返回顶部按钮 */
.back-to-top {
    display: none;
    /* 默认隐藏 */
    position: fixed;
    right: 40px;
    bottom: 60px;
    width: 44px;
    height: 44px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    font-size: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: background 0.2s;
}

.back-to-top.show {
    display: block;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
}

.back-to-top:hover {
    color: var(--main-color);
}

/* 页脚 */
.footer {
    background: #ffffff;
    padding: 40px 0 0 0;
    color: #595757;
    font-size: 14px;
    border-top: 1px solid #e5e5e5;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links div {
    min-width: 85px;
    line-height: 2;
}

.footer-links strong {
    color: #555557;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul a {
    color: #555557;
}

.footer-bottom {
    text-align: center;
    color: #aaa;
    font-size: 13px;
    padding: 24px 0 12px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 32px;
}
.footer-bottom a {
    color: #aaa;
}



/* 岗位展示表格和手风琴 */
.jobs-section {
    background: #fff;
    padding: 48px 0 32px 0;
    margin-top: 50px;
}

.jobs-title {
    text-align: center;
    font-size: 32px;
    color: #222;
    margin-bottom: 6px;
    font-weight: bold;
    letter-spacing: 2px;
}

.jobs-subtitle {
    text-align: center;
    color: #888;
    font-size: 24px;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.jobs-table {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    background: #fafbfc;
}

.jobs-table-header,
.accordion-header {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr 40px;
    align-items: center;
    background: #eaf3fa;
    color: #222;
    font-weight: bold;
    font-size: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.accordion-header {
    background: #fff;
    font-weight: normal;
    cursor: pointer;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f0f6fa;
}

.accordion-toggle {
    font-size: 22px;
    color: var(--main-color);
    text-align: center;
    user-select: none;
    font-weight: bold;
}

.accordion-content {
    display: none;
    background: #f7fafd;
    line-height: 2;
    padding: 24px 32px 24px 56px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    animation: fadeIn 0.3s;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-header {
    background: #eaf3fa;
}

.job-detail strong {
    display: block;
    margin: 12px 0 6px 0;
    color: var(--main-color);
    font-weight: bold;
}

.job-detail ol {
    margin: 0 0 0 18px;
    padding: 0;
}

.job-detail p {
    margin: 0 0 8px 0;
    color: #666666;
    font-weight: normal;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 福利待遇 */
.benefits-section {
    background: #fff;
    padding: 48px 0 32px 0;
    margin-bottom: 80px;
}

.benefits-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 100%;
    background: url(../images/job_bg.png) no-repeat;
    background-size: cover;
    color: #fff;
}

.benefits-text {
    flex: 1.2;
    padding: 30px 60px;
}

.benefits-text h3 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 6px;
}

.benefits-text p {
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px;
}

.benefits-text ul {
    color: #333;
    font-size: 14px;
    line-height: 2;
    padding-left: 0;
}

.benefits-text ul li {
    list-style: none;
    color: #fff;
}

.benefits-text ul li p{
    font-size: 14px;
    padding:0;
    margin:0;
}

.benefits-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-img img {
    max-width: 320px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}



/* 合作伙伴内容 */
.cooperation-section {
    background: #fff;
    padding-bottom: 40px;
}

.cooperation-intro {
    text-align: center;
    margin: 100px 0 100px 0;
}

.cooperation-intro h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
    font-weight: bold;
}

.cooperation-intro p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.cooperation-block {
    padding: 115px 0 115px 0;
    background: #fff;
    /* 不要设置height或max-height */
    overflow: visible;
    /* 确保内容不会被裁剪 */
}

.clinical-bg {
    background: url('../images/clinical-bg.png') center center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    color: #fff;
}

.enterprise-bg {
    background: url('../images/enterprise-bg.png') center center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    color: #fff;
}

.cooperation-block h3 {
    text-align: center;
    font-size: 26px;
    color: inherit;
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 2px;
}

.cooperation-block h3 span {
    display: block;
    font-size: 32px;
    color: inherit;
    font-weight: normal;
    margin-top: 2px;
    letter-spacing: 2px;
}

.cooperation-desc {
    text-align: center;
    color: inherit;
    font-size: 14px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cooperation-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* 或 center */
    gap: 20px;
    /* 每个logo间隔20像素 */
}

.cooperation-logo-item {
    width: calc(25% - 15px);
    /* 4个一行，减去gap的影响 */
    min-width: 180px;
    box-sizing: border-box;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.clinical-bg .cooperation-logo-item,
.enterprise-bg .cooperation-logo-item {
    background: rgba(255, 255, 255, 0.95);
}

.cooperation-logo-item img {
    width: 100%;
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
}

.cooperation-logo-item span {
    color: #222;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}


.news-section {
    background: #fff;
    padding: 100px 0 100px 0;
}

.news-gallery {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.news-gallery-main {
    flex: 2;
    width: 525px;
    height: 470px;
    position: relative;
}

.news-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-gallery-caption {
    color: #fff;
    font-size: 16px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.news-gallery-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-img {
    position: relative;
    height: 225px;
    width: 335px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    display: block;
}

.news-gallery-side .img-mask,
.news-gallery-main .img-mask {
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 渐变蒙版：中间亮，四周暗 */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.7) 100%);
}

.news-gallery-side .img-mask:hover,
.news-gallery-main .img-mask:hover {
    background: none;
}

.img-caption {
    color: #fff;
    font-size: 16px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 40px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    align-items: flex-start;
    border-bottom: 1px solid #DEDFE0;
    cursor: pointer;
}
.news-item .img {
    width: 325px;
    height: 185px;
    position: relative;
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info {
    flex: 1;
}

.news-info h3 {
    font-size: 16px;
    color: #000000;
    margin: 0 0 20px 0;
    font-weight: normal;
}

.news-meta {
    color: #888;
    font-size: 14px;
}

.news-meta span {
    margin-right: 18px;
}

.news-info p {
    color: #6A6A6B;
    font-size: 14px;
    margin-bottom: 25px;
}

.news-more {
    display: block;
    color: #B8B9BD;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    width: 120px;
    height: 40px;
    border: 1px solid #B8B9BD;
    text-align: center;
    line-height: 40px;
}

.news-meta i {
    margin-right: 4px;
    color: #888;
}

.news-meta span {
    margin-right: 16px;
}

.news-item .img .img-mask {
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 渐变蒙版：中间亮，四周暗 */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.7) 100%);
    width: 325px;
    height: 185px;
    cursor: pointer;
}

.news-item:hover {
    border-color: var(--main-color);
}

.news-item:hover h3 {
    color: var(--main-color);
}

.news-item:hover .news-more {
    color: #ffffff;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.news-item:hover .img .img-mask {
    display: none;
}

.news-detail-section {
    padding: 100px 0;
    background: #fff;
}

.news-detail-container {
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
}

.news-detail-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

.news-detail-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
}

.news-detail-meta span {
    margin-right: 24px;
}

.news-detail-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 28px;
}

.news-detail-content {
    font-size: 14px;
    color: #333;
    line-height: 2;
    margin-bottom: 36px;
}

.news-detail-nav {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #000000;
}

.news-detail-nav a {
    color: #000000;
    text-decoration: none;
    line-height: 2;
}

.news-detail-nav a:hover {
    color: var(--main-color);
}

.news-detail-nav .back-list {
    display: block;
    width: 120px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: var(--main-color);
    color: #ffffff;
}

.news-detail-nav .back-list:hover {
    color: #fff;
}

.news-detail-section .line {
    width: 100%;
    height: 1px;
    background: #DEDFE0;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px auto 32px auto;
}

.news-card {
    width: 415px;
    height: 300px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: box-shadow 0.2s;
    cursor: pointer;
}

.hour-grid{
    grid-template-columns: repeat(4, 1fr);
}
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hour-card{
    width: 300px;
    height: 215px;
    margin-bottom: 35px;
    overflow:unset;
}

.news-caption {
    padding: 16px 0;
    font-size: 16px;
    color: #fff;
    position: relative;
    top: -50px;
    margin-bottom: -40px;
}


.about-content {
    max-width: 1280px;
    margin: 40px auto 60px auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-content-img {
    flex: 0 0 510px;
}

.about-content-img img {
    width: 100%;
    display: block;
    margin-top: 35px;
}

.about-content-text {
    flex: 1;
}

.about-content-text h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 18px;
    color: #222;
}

.about-content-text p {
    font-size: 14px;
    color: #444;
    line-height: 2;
    margin-bottom: 12px;
    text-align: justify;
}

.about-content-text .sign {
    display: block;
    text-align: right;
    margin-top: 24px;
    color: #888;
    font-size: 14px;
}

.about-content-text .line {
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    margin-top: 20px;
}

.about-company-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1280px;
    margin: 40px auto 0;
    gap: 40px;
}

.about-company-text {
    flex: 1;
    min-width: 0;
}

.about-company-text h2 {
    color: var(--main-color);
    font-size: 22px;
    margin-bottom: 18px;
}

.about-company-text p {
    font-size: 14px;
    color: #444;
    line-height: 2;
    text-align: justify;
}

.about-company-img {
    flex: 0 0 620px;
    margin-left: 40px;
    margin-top: 20px;
}

.about-company-img img {
    width: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-stats-bar {
    width: 100%;
    background: var(--main-color);
    margin: 50px 0 0 0;
}

.about-stats-bar .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 0;
    color: #fff;
}

.about-stats-bar .stats-item {
    text-align: center;
    flex: 1;
}

.about-stats-bar .stats-item .num {
    font-size: 80px;
    font-weight: bold;
}

.about-stats-bar .stats-item .unit {
    font-size: 22px;
}

.about-stats-bar .stats-item .desc {
    font-size: 16px;
    margin-top: 8px;
}

.tech-section {
    max-width: 1280px;
    margin: 0px auto;
    padding:120px 0px;
}

.tech-section h2 {
    text-align: center;
    font-size: 32px;
    color: #222;
    margin-bottom: 18px;
}

.tech-section p {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
}

.swiper.tech-swiper {
    padding-bottom: 40px;
}

.tech-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-swiper .swiper-slide img {
    width: 90%;
    max-width: 220px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
    margin: 0 auto;
    display: block;
}

.expert-section {
    max-width: 1280px;
    margin: 60px auto 0;
}

.expert-section h2 {
    text-align: center;
    font-size: 32px;
    color: #000;
    margin-bottom: 18px;
}

.expert-section .desc{
    margin-bottom: 50px;
}
.expert-section p {
    text-align: center;
    color: #666666;
    margin: 0;
}

.expert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.expert-card {
    width: 300px;
}

.expert-card img {
    width: 300px;
    height: 240px;
    object-fit: cover;
    margin-bottom: 12px;
}

.expert-card .name {
    font-weight: bold;
    color: #222;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.expert-card .title {
    color: #888;
    font-size: 14px;
}

.expert-card .desc {
    color: #666;
    font-size: 13px;
    margin-top: 8px;
}

/* 发展历程页面样式 */
.history-section {
    max-width: 1280px;
    margin: 60px auto 0 auto;
    padding-bottom: 60px;
}
.history-title {
    text-align: center;
    font-size: 28px;
    color: #222;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 2px;
}
.history-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
}
.history-timeline {
    flex: 2;
    position: relative;
    padding-left: 28px;
    border-left: 2px solid #e5e5e5;
}
.history-node {
    position: relative;
    margin-bottom: 56px;
    padding-left: 30px;
    padding-top: 30px;
}
.history-dot {
    position: absolute;
    left: -70px;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(33,150,243,0.08);
    z-index: 2;
    line-height: 1.2;
    /* 让内容竖排，每行2字 */
    white-space: pre-line;
    text-align: center;
}
.history-year {
    font-size: 16px;
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 8px;
}
.history-desc {
    font-size: 14px;
    color: #444;
    line-height: 2;
    margin-left: 8px;
    padding-top: 50px;
}
.history-desc ul{
    padding-left: 0px;
}
.history-desc ul li{
    padding: 20px 0;
}
.history-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.history-card-title {
    font-size: 24px;
    color: #303030;
    font-weight: bold;
    margin-bottom: 25px;
}
.history-card img {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}
.history-card-desc {
    font-size: 15px;
    color: #444;
    line-height: 2;
}

/* 企业文化页面样式 */
.culture-top-bg{
    background-image: url(../images/culture-bg.png); 
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}
.culture-top {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}
.culture-position, .culture-mission {
    flex: 1;
    padding: 15px 24px;
    margin-bottom: 0;
}
.culture-position:hover, .culture-mission:hover{
    background: linear-gradient(135deg, rgba(2,119,189,0.1) -10%, rgba(255,255,255,0.1) 100%);
}
.culture-position h2, .culture-mission h2 {
    color: var(--main-color);
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 12px;
}

.culture-position p, .culture-mission p {
    color: #303030;
    font-size: 16px;
    line-height: 2;
}
.culture-circle {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 18px;
}
.culture-tabs-section-bg{
    width: 100%;
    background: linear-gradient(rgba(2,119,189,0.1) -30%, rgba(255,255,255,0.1) 100%);
}
.culture-tabs-section{
    display: flex;
    flex-direction: column;
    width: 1280px;
    margin: 0 auto;
    padding: 100px 0;
}
.culture-tabs-section .ctab{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.culture-tabs-section .ctab .item{
    width:calc(32% - 40px);
    border: 1px solid #CCCCCC;
    padding: 30px 20px;
    position: relative;
    cursor: pointer;
    background-color: #ffffff;
}
.culture-tabs-section .ctab .item .name{
    font-size: 18px;
    margin-bottom: 20px;
}
.culture-tabs-section .ctab .item .bline{
    width: 30px;
    height: 2px;
    background: #666;
    margin-bottom: 20px;
}
.culture-tabs-section .ctab .item .desc{
    font-size: 14px;
    color: #666666;
}
.culture-tabs-section .ctab .item .icon{
    position: absolute;
    top: 30px;
    right: 30px;
}
.culture-tabs-section .ctab .active ,.culture-tabs-section .ctab .item:hover{
    background: var(--main-color);
    border-color:var(--main-color);
}
.culture-tabs-section .ctab .active .name , .culture-tabs-section .ctab .item:hover .name{
    color: #fff;
}
.culture-tabs-section .ctab .active .bline , .culture-tabs-section .ctab .item:hover .bline{
    background: #fff;
}
.culture-tabs-section .ctab .active .desc , .culture-tabs-section .ctab .item:hover .desc{
    color: #fff;
}
.culture-tabs-section .ctab .active .icon , .culture-tabs-section .ctab .item:hover .icon{
    filter: brightness(0) invert(1);
}
.culture-tab-panel{
    width: 100%;
    margin-bottom: 20px;
    display: none;
    cursor: pointer;
}
.culture-tab-panel.active{
    display: block;
}

.zhnone {
    display: none !important
}

.wxbox {
    position: absolute;
    left: -61px;
    top: -160px;
    width: 140px;
    height: 140px;
    display: none
}

.wxbox img {
    width: 100%;
    height: 100%;
    z-index:999;
}

share {
    display: flex;
    justify-content: center;
}
.sharelist {
    display: inline-block;
    width: 38px;
    height: 38px;
    border: 1px solid #acacac;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
}
.share a { display: inline-block; width: 38px; height: 38px; border: 1px solid #acacac; border-radius: 50%; position: relative; margin-right: 10px; }
.share i { display: inline-block; width: 25px; height: 24px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);background-repeat: no-repeat; }
.share .icon-wx { background-position: 0 0; }
.share .icon-wb { background-position: -54px 0; }
.share .icon-zh { background-position: -110px 0; width: 20px; }
.share .icon-tm { background-position: -164px 0; width: 20px; }
.share .icon-jd { background-position: -215px 0; }
.share a:hover .icon-wx { background-position: 0 -47px; }
.share a:hover .icon-wb { background-position: -54px -47px; }
.share a:hover .icon-zh { background-position: -110px -47px; }
.share a:hover .icon-tm { background-position: -164px -47px; }
.share a:hover .icon-jd { background-position: -215px -47px; }

.product-grid{
    grid-template-columns: repeat(3, 1fr);
}
.product-card{
    width: 100%;
    height: auto;
}
.product-grid .news-caption{
    margin-bottom:0;
}
.product-grid .news-card img{
    height: auto;
}
.product_detail_bg{
    width: 100%;
    height: auto;
    background: url(../images/product_detail_top_bg.png) no-repeat;
    background-size: 100% 100%;
}
.product_detail_top{
    width: 1280px;
    margin: 0 auto;
    display: flex;
    padding: 100px 0;
    gap: 100px;
}
.product_detail_top .left{
    width: 400px;
    height:auto;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
}
.product_detail_top .left img{
    width: 380px;
    height: auto;
}
.product_detail_top .right{ 
    display: flex;
    align-items:flex-start;
    flex-direction: column;
    justify-content: center;
}
.product_detail_top .right .title{
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 20px;
}
.product_detail_title{
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    margin-top:0 !important;
}
.product_detail{
    width: 1280px;
    margin: 0 auto;
}
.product_detail img{
    max-width: 100%;
    height: auto;
}
.other-name{
    width: 1280px;
    margin: 30px auto 0 auto;
    font-size: 24px;
    color: var(--main-color);
}

.pager{
    width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    clear: both;
    margin-bottom:50px;
}
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none
}
.pagination li{
    list-style: none;
}
.pagination li a,.pagination li span{
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #eee;
    color: #666;
    margin: 0 5px;
}
.pagination li.active span{
    background:  var(--main-color);
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .header{
        display: none;
    }
    .mobile-header{
        display: block;
        background-color: #fff !important;
        position: fixed !important;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 999;
    }
    .mobile-header .wrap {
        height: 70px;
        margin: 0 20px;
    }
    .logo img{
        width: 160px;
        height: auto;
        padding-top: 10px;
    }
    .mobile-header { background-color: #fff; position: fixed!important; }
    .mobile-header .hd-rt a { color: #444;display: block; }
    .mobile-header .wrap { height: 70px; margin: 0 20px; }
    .mobile-header nav { position: absolute; left: -20px; width: calc(100% + 40px); background-color: #fff; height: calc(100vh - 70px); overflow-y: auto; top: 100%; }
    .mobile-header .btn-menu { display: block; }
    .mobile-header nav ul{
        list-style: none;
        padding: 0;
    }
    .mobile-header nav ul li { 
        padding: 0 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        list-style: none;
     }
    .mobile-header nav a {
        color: #000 !important;
    }
    .mobile-header nav { padding: 20px 0; display: none; }
    .mobile-header nav li { border-bottom: 1px solid rgba(0, 0, 0, 0.1); -webkit-animation-duration: 0.5s; animation-duration: 0.5s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-name: returnToNormal; animation-name: returnToNormal; }
    .mobile-header nav li:first-child dt:after { display: none; }
    .mobile-header nav dt { 
        line-height: 56px; 
        font-size: 18px; 
        position: relative;
        padding: 0 10px;
     }
    .mobile-header nav dt:after { 
        content: ''; 
        display: block; 
        width: 7px; 
        height: 13px; 
        background: url(../images/nav-right.png) -8px 0 no-repeat; 
        position: absolute; 
        top: 50%; 
        transform: translateY(-50%); 
        right: 20px; 
        transition: all .6s; }
    .mobile-header nav dd { display: none; border-top: 1px solid rgba(0, 0, 0, 0.1); }
    .mobile-header nav dd a { display: block; padding: 10px 20px; font-size: 16px; }
    .mobile-header nav .active dt:after { transform: translateY(-50%) rotate(-90deg); }
    .mobile-header .hd-rt {
        position: absolute;
        right: 10px;
        top: 50%;
        background: #fff;
        transform: translateY(-50%);
    }
    .mobile-header .btn-menu { display: none; width: 30px; position: relative; margin-left: 20px; }
    .mobile-header .btn-menu span { display: block; width: 100%; height: 2px; transition: all .5s; background-color: #444; }
    .mobile-header .btn-menu span:nth-child(1) { position: absolute; top: 5px; left: 0; }
    .mobile-header .btn-menu span:nth-child(2) { position: absolute; top: 50%; left: 0; transform: translateY(-50%); transition-duration: .1s; }
    .mobile-header .btn-menu span:nth-child(3) { position: absolute; bottom: 5px; left: 0; }
    .mobile-header .btn-menu.active span:nth-child(2) { width: 0; }
    .mobile-header .btn-menu.active span:nth-child(1) { transform: translateY(-50%) rotate(45deg); top: 50%; }
    .mobile-header .btn-menu.active span:nth-child(3) { transform: translateY(-50%) rotate(-45deg); top: 50%; }
    .mySwiper{
        height: auto !important;
        overflow-y: auto;
    }
    .swiper-wrapper {
        display: block;
        height: auto;
    }
    .container{
        width: 100% !important;
    }
    .section3, .section4, .section5{
        width: 100% !important;
        height: auto;
    }
    .news-section5{
        padding:50px 10px 0 10px !important;
    }
    .footer-section footer{
        padding: 20px 0 20px;
    }
    .footer .container{
        padding: 0 10px;
    }
    .footer-logo{
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }
    .footer-links{
        display: none;
    }
    .footer-bottom{
        padding: 0 10px;
    }
    .footer-bottom a{
        display: block;
    }

    .banner {
        height: 450px;
    }
    .banner-img{
        height: 100%;
    }
    .banner-text{
        width: 100%;
        top: 70%;
        left: 65%;
        transform: translate(-50%, -50%);
    }
    .banner-text h1{
        font-size: 24px;
    }
    .tab-bar .container{
        display: inline-block;
        white-space: nowrap;
        overflow: auto;
    }
    .about-content{
        width: calc(100% - 20px);
        flex-direction: column;
        gap:0;
        margin:20px auto;
    }
    .about-content-img img{
        width: 100%;
        margin-top:0px;
    }
    .about-company-section{
        width: 100%;
        flex-direction: column;
        gap:0;
    }
    .about-company-text{
        padding: 0px 10px;
    }
    .about-company-img{
        margin-left:0;
        flex:0 0 20px
    }
    .about-stats-bar .stats-inner{
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
    .about-stats-bar .stats-item{
        flex: 0 0 calc(50% - 10px);
    }
    .about-stats-bar .stats-item .num{
        font-size: 42px;
    }
    .tech-section{
        margin:0 auto;
        padding: 30px 0;
    }
    .tech-swiper .swiper-wrapper{
        display: flex;
    }
    .expert-section{
        width: calc(100% - 20px);
        margin-top:0px !important;
    }
    .expert-section h2{
        font-size: 24px;
    }
    .expert-section .desc{
        font-size: 14px;
    }   
    .expert-card{
        width: calc(50% - 10px);
    }
    .expert-card img{
        width: 100%;
        height: auto;
    }
    .culture-top{
        width: calc(100% - 20px);
        flex-direction: column;
    }
    .culture-tabs-section{
        width: 100%;
        padding: 20px 0;
    }
    .culture-tabs-section .ctab .item .icon{
        width: 20px;
        height: 20px;
        top:30px;
        right:5px;
    }
    .history-main{
        flex-direction: column;
    }
    .history-desc ul li{
        padding: 20px 10px 20px 0px;
    }
    .history-timeline{
        padding-left: 90px;
        border-left:none;
    }
    .history-side{
        width: calc(100% - 20px);
        padding-left: 10px;
    }
    .hour-grid{
        width: calc(100% - 20px) !important;
        grid-template-columns: repeat(2, 1fr);
    }
    .hour-card{
        width: 100%;
        height:auto;
    }
    .contact-info{
        padding: 30px 0;
    }
    .contact-info .container{
        flex-direction: column;
    }
    .contact-map{
        flex:unset;
        width: calc(100% - 20px);
        margin:0 atuo;
    }
    .jobs-section{
        margin-top:0px;
        padding:30px 0;
        
    }
    .benefits-section{
        margin-bottom:0;
    }
    .cooperation-logos{
        justify-content: space-around;
    }
    .news-section{
        padding: 30px 0;
    }
    .news-gallery-main{
        flex:unset;
        width: calc(100% - 20px);
        height: auto;
        padding-left:10px;
    }
    .news-gallery-main .img-mask{
        left:10px;
    }
    .news-gallery{
        flex-direction: column;
    }
    .news-gallery-side{
        padding: 0 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-img{
        width: 100%;
        height: auto;
    }
    .news-item{
        flex-direction: column;
        padding: 10px 10px 20px 10px;
        margin-bottom: 20px;
    }
    .news-item .img{
        width: 100%;
    }
    .news-item .img .img-mask{
        width: 100%;
    }
    .news-detail-section{
        padding: 30px 10px;
    }
    .news-grid{
        padding: 0 10px;
        gap:10px;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .news-card{
        width: 100%;
        height: auto;
    }

    .product-grid{
        grid-template-columns: repeat(2, 1fr);
        width: calc(100% - 20px) !important;
    }
    .product-card{
        width: 100%;
        height: auto;
    }
    .product-grid .news-caption{
        margin-bottom:0;
    }
    .product-grid .news-card img{
        height: auto;
    }
    .product_detail_top{
        flex-direction: column;
        width: calc(100% - 20px);
    }
    .product_detail_top .left{
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
    .other-name{
        width: calc(100% - 20px);
    }
    .product_detail{
        width: calc(100% - 20px);
    }
    .pager{
        width: calc(100% - 20px);
    }
}