/* ===== 全局样式 ===== */
body, html {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    background-color: transparent;
    -moz-osx-font-smoothing: grayscale;
}

a, body, center, cite, code, dd, del, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hr, html, img, input, label, legend, li, mark, ol, p, section, span, strong, textarea, time, ul, var {
    margin: 0;
    border: 0;
    padding: 0;
    font-style: normal;
}

:root {
    --col1: #222;
    --col2: #207BC5;
    --col3: #D4AF37;
    --col4: #ffc6a5;
    --col5: #4e2b53;
    --col6: #6F2DA8;
    --col7: #D4AF37;
}

html {
    font-size: 16px;
}

:root {
    --ww: 2rem;
    --bj: var(--ww);
    --top: 0.8rem;
    --gap: 0.8rem;
    --color: #006ab8;
    
    --f-body: clamp(14px, 1.2vw, 16px);
    --f2: clamp(2px, 0.3vw, 4px);
    --f4: clamp(2px, 0.4vw, 6px);
    --f6: clamp(6px, 0.5vw, 6px);
    --f8: clamp(8px, 0.6vw, 9px);
    --f10: clamp(9px, 0.7vw, 10px);
    --f12: clamp(10px, 0.8vw, 12px);
    --f14: clamp(12px, 0.9vw, 14px);
    --f16: clamp(14px, 1.1vw, 16px);
    --f18: clamp(15px, 1.2vw, 18px);
    --f20: clamp(16px, 1.4vw, 20px);
    --f22: clamp(17px, 1.5vw, 22px);
    --f24: clamp(18px, 1.7vw, 24px);
    --f26: clamp(19px, 1.8vw, 26px);
    --f28: clamp(20px, 2.0vw, 28px);
    --f30: clamp(21px, 2.1vw, 30px);
    --f32: clamp(22px, 2.3vw, 32px);
    --f34: clamp(23px, 2.4vw, 34px);
    --f36: clamp(24px, 2.6vw, 36px);
    --f40: clamp(26px, 2.9vw, 40px);
    --f44: clamp(28px, 3.2vw, 44px);
    --f46: clamp(30px, 3.3vw, 46px);
    --f48: clamp(31px, 3.5vw, 48px);
    --f50: clamp(32px, 3.6vw, 50px);
    --f54: clamp(34px, 3.9vw, 54px);
    --f56: clamp(35px, 4.0vw, 56px);
    --f58: clamp(36px, 4.2vw, 58px);
    --f60: clamp(32px, 3.6vw, 68px);
    --f70: clamp(38px, 4.2vw, 78px);
    --f80: clamp(42px, 4.8vw, 88px);
    --f90: clamp(46px, 5.4vw, 98px);
    --f100: clamp(50px, 6.0vw, 108px);
    --f110: clamp(54px, 6.6vw, 118px);
    --f120: clamp(58px, 7.2vw, 128px);
    --f130: clamp(62px, 7.8vw, 138px);
    --f140: clamp(66px, 8.4vw, 148px);
    --f150: clamp(70px, 9.0vw, 158px);
}

body {
    font-size: var(--f-body);
    line-height: 1.5;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', sans-serif;
    line-height: 2em;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
    color: var(--col6);
}

ul, ol, li {
    list-style-type: none;
    vertical-align: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0,0,0,0.6);
}

.bg-w{
    background: #fff;
    position: relative;
}
/* ===== 页面头部样式 ===== */
.pc-top-top {
    width: 100%;
    height: 40px;
    background: var(--col5);
}

.top-text {
    text-align: right;
    line-height: 40px;
    color: #fff;
    font-size: var(--f16);
    padding-right: 30px;
}

.top-text .tel {
    font-weight: 800;
    font-size: var(--f20);
}

.top-text a {
    text-align: right;
    line-height: 40px;
    color: #fff;
    margin-left: 30px;
    font-size: var(--f16);
}

.top-text a span {
    margin-right: 10px;
}

.top-text a:hover {
    color: var(--col4);
}

.pc-top {
    width: 100%;
    height: 140px;
    background: rgba(255,255,255,0.5);
    position: fixed;
    transition: all ease 0.35s;
    top: 0;
    left: 0;
    z-index: 999;
}

.pc-top-w {
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.pc-top .logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
}

.pc-top .logo .img {
    height: 80px;
    display: flex;
    align-items: center;
}

.pc-top .logo .img img {
    max-width: 100%;
    max-height: 100%;
}

.pc-nav {
    width: 100%;
    height: 100px;
}

.pc-nav2 .pc-nav-ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
}

.pc-nav2 .pc-nav-ul .first-li {
    position: relative;
    padding: 0;
    height: 100%;
    margin: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--col1);
}

.pc-nav2 .pc-nav-ul .now:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--col6);
    bottom: 25px;
}

.pc-nav2 .pc-nav-ul .first-li .first-a:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--col6);
    bottom: 15px;
    transition: all 0.3s ease 0s;
    opacity: 0;
}

.pc-nav2 .pc-nav-ul .first-li:hover .first-a:after {
    bottom: 25px;
    opacity: 1;
}

.pc-nav2 .pc-nav-ul .now .first-a:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    bottom: 25px;
    transition: all 0.3s ease 0s;
    opacity: 1;
}

.pc-nav2 .pc-nav-ul .first-li .first-a {
    color: var(--col1);
    display: block;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease 0s;
    font-size: var(--f18);
}

.pc-nav2 .pc-nav-ul .first-li:hover .first-a {
    color: var(--col6);
}

.pc-nav2 .pc-nav-ul .first-li .second {
    position: absolute;
    top: 100%;
    background: #fff;
    color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease 0.1s;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

.pc-nav2 .pc-nav-ul .first-li .second:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    background: #fff;
    left: 50%;
    transform: translate(-8px, -8px) rotate(45deg);
}

.pc-nav2 .pc-nav-ul .first-li:hover .second {
    visibility: visible;
    opacity: 1;
}

.pc-nav2 .pc-nav-ul .first-li .second a {
    display: block;
    color: #333;
    white-space: nowrap;
    line-height: 3em;
    transition: all 0.3s ease 0s;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.pc-nav2 .pc-nav-ul .first-li .second a:after {
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--col6);
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    transition: all 0.3s ease 0s;
}

.pc-nav2 .pc-nav-ul .first-li .second a:hover {
    color: var(--col6);
    padding-right: 6px;
}

.pc-nav2 .pc-nav-ul .first-li .second a:hover:after {
    width: 100%;
}

.pc-nav2 .pc-nav-ul .first-li .second a span {
    display: inline-block;
    width: 30px;
    margin-right: 10px;
    transition: all 0.3s ease 0s;
}

.pc-nav2 .pc-nav-ul .first-li .second a:hover span {
    margin-right: 4px;
    color: var(--col3);
}

.pc-nav2 .pc-nav-ul .first-li .second a i {
    margin-left: 10px;
    color: #aaa;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease 0s;
}

.pc-nav2 .pc-nav-ul .first-li .second a:hover i {
    color: var(--col6);
}

/* 移动端导航 */
.m-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 5px 0px 10px #ddd;
    width: 100%;
    height: 80px;
}

.m-top-bottom {
    width: 100%;
    height: 80px;
}

.m-logo {
    width: 80%;
    height: 80px;
    padding: 10px;
}

.m-logo img {
    max-width: 100%;
    max-height: 100%;
}

.m-top-right {
    width: 100px;
    position: relative;
}

.m-top-right-nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== 首页样式 ===== */
.home-title {
    position: relative;
}

.home-title .title {
    font-size: var(--f26);
    color: var(--col6);
    font-weight: 800;
    margin-bottom: 0.8em;
}

.home-title .desc {
    font-size: var(--f36);
    line-height: 1.2em;
    font-weight: 800;
    color: var(--col1);
}

.home-title-white .title, .home-title-white .title span, .home-title-white .desc {
    color: #fff;
}

.home-more {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.home-more a {
    display: block;
    border: 1px solid var(--col6);
    color: var(--col6);
    padding: 5px 50px 5px 15px;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
    position: relative;
}

.home-more a span {
    position: absolute;
    right: 15px;
    transition: all 0.3s ease 0s;
    color: var(--col6);
}

.home-more a:hover {
    background: var(--col6);
    color: #fff;
}

.home-more a:hover span {
    right: 5px;
    color: #fff;
}

.home-about-bg {
    padding-top: var(--f100);
    padding-bottom: var(--f100);
    background: #fff;
}

.home-about-text {
    font-size: var(--f18);
    line-height: 1.8em;
    text-indent: 2em;
    margin-top: var(--f48);
    margin-bottom: var(--f48);
}

.home-about-img {
    margin-top: 30px;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
   /* transform: skewX(-10deg) translateX(10%);
    -webkit-transform: skewX(-10deg) translateX(10%);*/
    padding: 60px;
    padding-left:63%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.home-about-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0%;
    height: 100%;
    background-image: url(../images/about.webp);
    background-size: cover;
    background-position: left center;
   /* transform: skewX(10deg) translateX(-10%);
    -webkit-transform: skewX(10deg) translateX(-10%);*/
}

.home-about-img:after {
    content: '';
    position: absolute;
    left: 60%;
    top: 0;
    right: -1px;
    height: 100%;
    /*transform: skewX(10deg) translateX(-10%);*/
    /*-webkit-transform: skewX(10deg) translateX(-10%);*/
    /*background: linear-gradient(to right, rgba(210, 175, 65, 1), rgba(210, 175, 65, 0.8), rgba(210, 175, 65, 0.5), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 1));*/
    /*background: rgba(0,0,0,0.5);*/
    z-index: 2;
}
.home-about-img2{
    margin-bottom:var(--f50);
}
.home-about-img2 .text {
    position: relative;
    z-index: 3;
    color: var(--col1);
    display: flex;
    align-items: center;
    width: 100%;
}

.home-about-img2 .text .ico {
     color: var(--col6);
    font-size: var(--f30);
    margin-right: 1em;
}

.home-about-img2 .text .right-text .num {
    font-size: var(--f40);
    line-height: 1em;
    font-weight: 800;
}

.home-entext {
    width: 100%;
    line-height: 1em;
    margin-top: var(--f100);
}

.dongxing-watermark {
    display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-size: 7vw;
    font-weight: 700;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    letter-spacing: 0.2em;
    text-shadow: 3px 3px 4px rgba(32, 123, 197, 0.4);
    line-height: 1em;
}

.home-product-bg {
    background-image: url(../images/home-product.webp);
    background-attachment: fixed;
    padding-top: var(--f100);
    padding-bottom: var(--f100);
}

.home-product-list {
    margin-top: 50px;
}

.home-product-box {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
}

.home-product-box:hover {
    background: linear-gradient(var(--col5), #ca1eff);
}

.home-product-box a {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    padding-bottom: 30px;
    transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
    .home-product-box {
        padding-top: 0%;
    }
    .home-product-box a {
        position: relative;
    }
}

.home-product-box:hover a {
    padding-bottom: 60px;
    color: #fff;
}

.home-product-box a .ico {
    font-size: var(--f32);
    color: var(--col6);
}

.home-product-box a .title {
    font-size: var(--f26);
    line-height: 1.2em;
    margin-bottom: 1em;
    text-align: center;
}

.home-product-box a .desc {
    text-align: center;
    font-size: 14px;
}

.home-product-box:hover .ico {
    color: #fff;
}

.home-news-bg {
    padding-top: var(--f100);
    padding-bottom: var(--f100);
    background: #F2F5F9;
}

.home-news-all {
    padding-top: var(--f50);
}

.nome-news-box {
    margin-bottom: 20px;
}

.news-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(0,0,0,0.12);
}

.card-content {
    display: block;
    padding: 20px;
    position: relative;
    padding-bottom: 60px;
    height: 100%;
}

.gradient-date {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.grad-big-day {
    font-size: var(--f28);
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72, #2b6cb0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1em;
}

.grad-ymd {
    font-size: var(--f14);
    font-weight: 500;
    color: #2c5282;
    background: #eef2ff;
    padding: 2px 14px;
    border-radius: 40px;
}

.news-title {
    font-size: var(--f18);
    font-weight: 600;
    line-height: 1.4;
    margin: var(--f16) 0 var(--f16) 0;
    color: #0a2540;
}

.news-excerpt {
    font-size: var(--f14);
    color: #5b6e8c;
    line-height: 1.45;
    margin-top: var(--f16);
    border-top: 1px solid #edf2f7;
    padding-top: var(--f16);
}

.news-meta {
    position: absolute;
    bottom: 20px;
}

.tag {
    font-size: var(--f12);
    background: #eef2ff;
    padding: 5px 10px;
    border-radius: 20px;
    color: #2563eb;
}

.news-card1 {
    background-image: url(../images/newsbg.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 35%;
    position: relative;
}

.news-card1:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(34, 123, 195, 1), rgba(34, 123, 195, 0.8), rgba(255, 255, 255, 0.8));
    z-index: 1;
}

.news-card1 a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.news-card1 .grad-big-day {
    color: #fff;
}

.news-card1 .news-title, .news-card1 .news-excerpt {
    color: #fff;
}

@media (max-width: 767px) {
    .news-card1 {
        padding-top: 0%;
    }
    .news-card1 a {
        position: relative;
        z-index: 2;
    }
}

/* ===== 底部样式 ===== */
.footer-dark {
    background-color: #1e1f22;
    color: #e0e0e0;
    width: 100%;
    padding-top: var(--f48);
    padding-bottom: 0;
    border-top: 0.01rem solid rgba(255,255,255,0.08);
    position: relative;
}

.footer-container {
    margin: 0 auto;
    padding-left: var(--f24);
    padding-right: var(--f24);
}

.contact-section {
    padding-bottom: var(--f40);
    border-bottom: 0.01rem solid rgba(255,255,255,0.15);
}

.contact-info-block {
    display: flex;
    flex-wrap: wrap;
    gap: var(--f32);
    justify-content: space-between;
}

.contact-item {
    flex: 1;
    min-width: 180px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--f20);
    padding: var(--f20) var(--f18);
    transition: all 0.2s ease;
    backdrop-filter: blur(2px);
    border: 0.01rem solid rgba(255,255,255,0.08);
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-0.02rem);
}

.contact-icon {
    font-size: var(--f36);
    color: #fff;
    margin-bottom: var(--f12);
    display: inline-block;
}

.contact-title {
    font-size: var(--f18);
    font-weight: 600;
    letter-spacing: 0.01rem;
    color: #ffffff;
    margin-bottom: var(--f12);
}

.contact-detail {
    font-size: var(--f14);
    line-height: 1.5;
    color: #cfd4da;
    word-break: break-word;
}

.contact-detail a {
    color: #cfd4da;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: white;
    text-decoration: underline;
}

.address-block {
    display: flex;
    flex-direction: column;
}

.bottom-tags {
    margin-top: var(--f32);
    background: rgba(0,0,0,0.2);
    border-radius: var(--f20);
    padding: var(--f20);
    display: flex;
    gap: var(--f40);
    flex-wrap: wrap;
}

.hot-search-line, .hot-region-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--f12);
    font-size: var(--f14);
}

.hot-search-line span, .hot-region-line span {
    font-weight: 500;
    color: #b0b8c5;
    margin-right: var(--f4);
}

.hot-search-line a, .hot-region-line a {
    color: #d4dce6;
    text-decoration: none;
    font-size: var(--f14);
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 0.01rem dotted transparent;
}

.hot-search-line a:hover, .hot-region-line a:hover {
    color: white;
    border-bottom-color: var(--col6);
}

.bottom-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--f24);
    font-size: var(--f13);
    margin-top: var(--f14);
    padding-bottom: var(--f14);
}

.bottom-links-row a {
    color: #b0b8c5;
    text-decoration: none;
    transition: color 0.2s;
    font-size: var(--f13);
}

.bottom-links-row a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .contact-info-block {
        flex-direction: column;
        gap: var(--f20);
    }
    .footer-container {
        padding-left: var(--f20);
        padding-right: var(--f20);
    }
    .contact-item {
        width: 100%;
    }
    .bottom-links-row {
        gap: var(--f16);
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== in-top-header 样式 ===== */
.in-top-spacer {
    height: 140px;
}

@media (max-width: 991px) {
    .in-top-spacer {
        height: 80px;
    }
}

.in-top-header {
    position: relative;
    background-image: url('../images/ny-banner.webp');
    background-size: cover;
    background-position: center;
     
    min-height: 380px;
    display: flex;
    align-items: center;
    color: #fff;
}

.in-top-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.in-top-header .hero-content {
    position: relative;
    z-index: 2;
    padding: var(--f60) 0 var(--f50);
    text-align: center;
    width: 100%;
}

.in-top-header .category-title {
    margin-bottom: var(--f30);
}

.in-top-header .category-title-main {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: var(--f12);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
    color: #fff;
}

.in-top-header .category-title-main:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

.in-top-header .category-title-sub {
    font-size: var(--f16);
    color: rgba(255,255,255,0.85);
    letter-spacing: 4px;
    margin-top: var(--f24);
    text-transform: uppercase;
}

.in-top-header .sub-nav-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--f12);
    margin: var(--f40) 0 var(--f30);
}

.in-top-header .pill-item {
    display: inline-block;
    padding: var(--f8) var(--f28);
    border-radius: 50px;
    font-size: var(--f14);
    font-weight: 500;
    color: #fff;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.in-top-header .pill-item:hover {
    background: var(--col6);
    border-color: var(--col6);
    color: #fff;
    transform: translateY(-2px);
}

.in-top-header .pill-item.active {
    background: var(--col6);
    border-color: var(--col6);
    color: #fff;
    box-shadow: 0 4px 15px var(--col6);
}

.in-top-header .current-position {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: var(--f8) var(--f20);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}

.in-top-header .current-position:hover {
    background: rgba(0,0,0,0.8);
    border-color: rgba(255,255,255,0.4);
}

.in-top-header .position-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--f8);
    font-size: var(--f13);
    color: rgba(255,255,255,0.9);
}

.in-top-header .position-inner i {
    font-size: var(--f14);
    color: var(--col3);
}

.in-top-header .position-label {
    color: rgba(255,255,255,0.7);
}

.in-top-header .position-inner a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s;
}

.in-top-header .position-inner a:hover {
    color: var(--col6) !important;
}

.in-top-header .separator {
    margin: 0 var(--f4);
    color: rgba(255,255,255,0.5);
}

.in-top-header .position-active {
    color: var(--col3);
    font-weight: 500;
}

.hero-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: transparent;
    margin-top: -2px;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.hero-wave .wave-fill {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .in-top-header {
        min-height: 320px;
    }
    .in-top-header .hero-content {
        padding: var(--f40) 0 var(--f30);
    }
    .in-top-header .category-title-main {
        font-size: clamp(24px, 6vw, 36px);
    }
    .in-top-header .category-title-main:after {
        width: 40px;
        bottom: -10px;
    }
    .in-top-header .category-title-sub {
        font-size: var(--f12);
        letter-spacing: 2px;
        margin-top: var(--f16);
    }
    .in-top-header .sub-nav-pills {
        gap: var(--f8);
        margin: var(--f24) 0 var(--f20);
    }
    .in-top-header .pill-item {
        padding: var(--f6) var(--f18);
        font-size: var(--f12);
    }
    .in-top-header .current-position {
        bottom: 12px;
        right: 12px;
        padding: var(--f6) var(--f16);
    }
    .in-top-header .position-inner {
        font-size: var(--f11);
        gap: var(--f6);
    }
    .hero-wave svg {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .in-top-header {
        min-height: 280px;
    }
    .in-top-header .category-title-main {
        font-size: clamp(20px, 5vw, 28px);
    }
    .in-top-header .sub-nav-pills {
        gap: var(--f6);
    }
    .in-top-header .pill-item {
        padding: var(--f4) var(--f14);
        font-size: var(--f11);
    }
    .in-top-header .current-position {
        bottom: 8px;
        right: 8px;
        padding: var(--f4) var(--f12);
    }
    .in-top-header .position-inner {
        font-size: var(--f10);
        gap: var(--f4);
    }
    .hero-wave svg {
        height: 30px;
    }
}

/* ===== 产品分类页面样式 ===== */
.product-main-wrapper {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

.product-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.product-card-inner {
    background: #fff;
    border-radius: var(--f16);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover .product-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.product-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.product-img-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f2f5;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(111, 45, 168, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: var(--f48);
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .overlay-icon {
    transform: translateY(0);
}

.product-info {
    padding: var(--f20) var(--f18) var(--f24);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: var(--f18);
    font-weight: 600;
    color: var(--col1);
    margin-bottom: var(--f10);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.product-card:hover .product-title {
    color: var(--col6);
}

.product-desc {
    font-size: var(--f14);
    color: #8e9aaf;
    line-height: 1.5;
    margin-bottom: var(--f16);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-more {
    display: inline-flex;
    align-items: center;
    gap: var(--f8);
    font-size: var(--f14);
    color: var(--col6);
    font-weight: 500;
    padding-top: var(--f12);
    border-top: 1px solid #edf2f7;
    transition: gap 0.3s;
}

.product-more i {
    font-size: var(--f16);
    transition: transform 0.3s;
}

.product-card:hover .product-more {
    gap: var(--f12);
}

.product-card:hover .product-more i {
    transform: translateX(4px);
}

.custom-pagination {
    gap: var(--f8);
}

.custom-pagination .page-item .page-link {
    border-radius: var(--f8);
    border: 1px solid #e2e8f0;
    color: var(--col1);
    padding: var(--f8) var(--f16);
    font-size: var(--f14);
    background: #fff;
    transition: all 0.3s;
}

.custom-pagination .page-item.active .page-link {
    background: var(--col6);
    border-color: var(--col6);
    color: #fff;
}

.custom-pagination .page-item .page-link:hover {
    background: var(--col6);
    border-color: var(--col6);
    color: #fff;
}

@media (max-width: 768px) {
    .product-main-wrapper {
        padding: var(--f24) 0 var(--f48);
    }
    .product-info {
        padding: var(--f16) var(--f12) var(--f20);
    }
    .product-title {
        font-size: var(--f16);
    }
    .custom-pagination .page-item .page-link {
        padding: var(--f6) var(--f12);
        font-size: var(--f12);
    }
}

/* ===== 产品详情页面样式 ===== */
.product-detail-wrapper {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

.product-detail-card {
    background: #fff;
    border-radius: var(--f24);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    padding: var(--f40);
}

.detail-header {
    margin-bottom: var(--f32);
    padding-bottom: var(--f24);
    border-bottom: 1px solid #edf2f7;
}

.detail-title {
    font-size: var(--f32);
    font-weight: 700;
    color: var(--col1);
    margin-bottom: var(--f12);
    line-height: 1.2;
}

.detail-subtitle {
    font-size: var(--f16);
    color: #8e9aaf;
    letter-spacing: 1px;
}

.detail-gallery {
    margin-bottom: var(--f40);
}

.main-image-wrapper {
    border-radius: var(--f16);
    overflow: hidden;
    background: #f8fafc;
    text-align: center;
    border: 1px solid #edf2f7;
    padding: var(--f20);
}

.main-product-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.detail-content-wrapper {
    margin: var(--f32) 0;
}

.detail-content {
    font-size: var(--f16);
    color: #4a5568;
    line-height: 1.8;
}

.detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--f12);
}

.detail-content table {
    width: 100%;
    border-collapse: collapse;
}

.detail-content th,
.detail-content td {
    border: 1px solid #e2e8f0;
    padding: var(--f10);
    text-align: center;
    vertical-align: middle;
}

.detail-pagination {
    display: flex;
    justify-content: space-between;
    padding: var(--f24) 0;
    margin: var(--f24) 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.prev-product, .next-product {
    display: flex;
    align-items: center;
    gap: var(--f12);
}

.nav-label {
    font-size: var(--f14);
    color: #64748b;
    font-weight: 500;
}

.nav-link {
    font-size: var(--f14);
    color: var(--col1);
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--col6);
}

.detail-back {
    text-align: center;
    margin-top: var(--f24);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: var(--f8);
    padding: var(--f10) var(--f28);
    background: #f1f5f9;
    border-radius: var(--f40);
    color: var(--col1);
    text-decoration: none;
    font-size: var(--f14);
    transition: all 0.3s;
}

.btn-back:hover {
    background: var(--col6);
    color: #fff;
}

@media (max-width: 768px) {
    .product-detail-card {
        padding: var(--f20);
    }
    .detail-title {
        font-size: var(--f24);
    }
    .detail-pagination {
        flex-direction: column;
        gap: var(--f16);
    }
    .prev-product, .next-product {
        justify-content: space-between;
    }
    .nav-link {
        max-width: 200px;
    }
}

/* ===== 企业环境页面样式 ===== */
.environment-page {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

.environment-section {
    margin-bottom: var(--f80);
}

.environment-section:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--f48);
}

.section-label{
  font-size: var(--f24);
    font-weight: 700;
    color:var(--col6);
}
.section-title {
    font-size: var(--f32);
    font-weight: 700;
    color: var(--col1);
    margin-bottom: var(--f12);
    position: relative;
    display: inline-block;
}

.title-decoration {
    width: 60px;
    height: 3px;
    background: var(--col6);
    margin: 0 auto;
    border-radius: 3px;
}

.section-subtitle {
    font-size: var(--f14);
    color: #8e9aaf;
    letter-spacing: 2px;
    margin-top: var(--f12);
    text-transform: uppercase;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--f24);
}

.env-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.env-item:hover {
    transform: translateY(-5px);
}

.env-img-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    border-radius: var(--f16);
    background: #f0f2f5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.env-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.env-item:hover .env-img {
    transform: scale(1.05);
}

.env-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(111, 45, 168, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--f8);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.env-overlay i {
    font-size: var(--f32);
}

.env-item:hover .env-overlay {
    opacity: 1;
}

@media (max-width: 1200px) {
    .environment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .environment-page {
        padding: var(--f20) 0 var(--f48);
    }
    .environment-section {
        margin-bottom: var(--f48);
    }
    .section-title {
        font-size: var(--f24);
    }
    .section-header {
        margin-bottom: var(--f32);
    }
    .environment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--f16);
    }
    .env-overlay i {
        font-size: var(--f24);
    }
}

@media (max-width: 480px) {
    .environment-grid {
        grid-template-columns: 1fr;
        gap: var(--f20);
    }
}

/* ===== 图片放大模态框 ===== */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.image-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
}

.modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.modal-image-wrapper {
    max-width: 90vw;
    max-height: 80vh;
    overflow: hidden;
    border-radius: var(--f12);
    background: #1a1a1a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: var(--f24);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: var(--f28);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover, .modal-next:hover {
    background: var(--col6);
    transform: translateY(-50%) scale(1.05);
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: var(--f16);
    padding: var(--f12) var(--f24);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    width: fit-content;
    margin: 0 auto;
    border-radius: 40px;
    max-width: 80%;
}

.modal-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    padding: var(--f6) var(--f14);
    border-radius: 30px;
    color: #fff;
    font-size: var(--f12);
    font-weight: 500;
}

@media (max-width: 768px) {
    .modal-prev, .modal-next {
        width: 40px;
        height: 40px;
        font-size: var(--f20);
    }
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: var(--f20);
        top: 10px;
        right: 10px;
    }
    .modal-caption {
        font-size: var(--f12);
        bottom: 10px;
        padding: var(--f8) var(--f16);
        white-space: normal;
        max-width: 90%;
    }
    .modal-counter {
        top: 10px;
        left: 10px;
        font-size: var(--f10);
    }
}

/* ===== 公司简介页面样式 ===== */
.about-page {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

.about-intro {
    background: #fff;
    border-radius: var(--f24);
    padding: var(--f48);
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.intro-content {
    padding-right: var(--f30);
}

.intro-text {
    font-size: var(--f16);
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: var(--f24);
}

 
.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--f24);
    margin-top: var(--f24);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--f10);
    font-size: var(--f14);
    color: var(--col1);
    font-weight: 500;
}

.feature-item i {
    font-size: var(--f20);
    color: var(--col6);
}

.intro-image {
    position: relative;
    border-radius: var(--f20);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.intro-image:hover img {
    transform: scale(1.02);
}

.image-experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    border-radius: var(--f16);
    padding: var(--f16) var(--f24);
    text-align: center;
    color: #fff;
}

.exp-num {
    font-size: var(--f32);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-num span {
    font-size: var(--f20);
}

.exp-text {
    font-size: var(--f12);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .about-page {
        padding: var(--f20) 0 var(--f48);
    }
    .about-intro {
        padding: var(--f24);
    }
    .intro-content {
        padding-right: 0;
        margin-top: var(--f24);
    }
    .section-title {
        font-size: var(--f24);
    }
    .intro-features {
        flex-direction: column;
        gap: var(--f12);
    }
    .image-experience {
        bottom: 10px;
        right: 10px;
        padding: var(--f10) var(--f16);
    }
    .exp-num {
        font-size: var(--f24);
    }
}

/* ===== 企业文化页面样式 ===== */
.culture-page {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

.culture-section {
    background: #fff;
    border-radius: var(--f24);
    padding: var(--f48);
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.culture-text {
    background: #f8fafc;
    border-radius: var(--f16);
    padding: var(--f24) var(--f32);
    margin-bottom: var(--f48);
    border-left: 4px solid var(--col6);
}

.culture-text p {
    font-size: var(--f16);
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--f24);
}

.culture-item {
    background: #f8fafc;
    border-radius: var(--f20);
    padding: var(--f32) var(--f20);
    text-align: center;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.culture-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--col6) 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--f20);
}

.culture-icon i {
    font-size: var(--f32);
    color: #fff;
}

.culture-item h3 {
    font-size: var(--f18);
    font-weight: 600;
    color: var(--col1);
    margin-bottom: var(--f12);
}

.culture-item p {
    font-size: var(--f14);
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .culture-page {
        padding: var(--f20) 0 var(--f48);
    }
    .culture-section {
        padding: var(--f24);
    }
    .section-title {
        font-size: var(--f24);
    }
    .culture-text {
        padding: var(--f16) var(--f20);
        margin-bottom: var(--f32);
    }
    .culture-text p {
        font-size: var(--f14);
    }
    .culture-grid {
        grid-template-columns: 1fr;
        gap: var(--f16);
    }
    .culture-icon {
        width: 55px;
        height: 55px;
    }
    .culture-icon i {
        font-size: var(--f24);
    }
    .culture-item h3 {
        font-size: var(--f16);
    }
}

/* ===== 领导致辞页面样式 ===== */
.speech-page {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

.speech-section {
    background: #fff;
    border-radius: var(--f24);
    padding: var(--f48);
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.speech-wrapper {
    position: relative;
    margin-top: var(--f20);
}

.speech-quote {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: var(--f80);
    color: rgba(111, 45, 168, 0.1);
    z-index: 0;
}

.speech-content {
    position: relative;
    z-index: 1;
}

.speech-content p {
    font-size: var(--f16);
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: var(--f20);
    text-indent: 2em;
}

.speech-content p:first-child {
    text-indent: 0;
}

.speech-signature {
    margin-top: var(--f40);
    text-align: right;
}

.signature-line {
    width: 100px;
    height: 1px;
    background: #e2e8f0;
    margin: var(--f20) 0 var(--f8) auto;
}

.signature-name {
    font-size: var(--f16);
    font-weight: 500;
    color: var(--col1);
}

@media (max-width: 768px) {
    .speech-page {
        padding: var(--f20) 0 var(--f48);
    }
    .speech-section {
        padding: var(--f24);
    }
    .section-title {
        font-size: var(--f24);
    }
    .speech-quote {
        font-size: var(--f48);
        top: -5px;
        left: -5px;
    }
    .speech-content p {
        font-size: var(--f14);
        text-indent: 1.5em;
        margin-bottom: var(--f16);
    }
    .signature-name {
        font-size: var(--f14);
    }
}

/* ===== 新闻列表页面样式 ===== */
.in-news-list-page {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

.in-news-list-wrapper {
    margin: 0 auto;
}

.in-news-item {
    display: flex;
    gap: var(--f28);
    background: #fff;
    border-radius: var(--f20);
    padding: var(--f24);
    margin-bottom: var(--f28);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
}

.in-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: transparent;
}

.in-news-img-wrapper {
    flex-shrink: 0;
    width: 260px;
    height: 180px;
    overflow: hidden;
    border-radius: var(--f12);
    position: relative;
    background: #f0f2f5;
}

.in-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.in-news-item:hover .in-news-img {
    transform: scale(1.05);
}

.in-news-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(111, 45, 168, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.in-news-img-overlay i {
    font-size: var(--f32);
    color: #fff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.in-news-item:hover .in-news-img-overlay {
    opacity: 1;
}

.in-news-item:hover .in-news-img-overlay i {
    transform: scale(1);
}

.in-news-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.in-news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--f20);
    margin-bottom: var(--f12);
    font-size: var(--f13);
    color: #8e9aaf;
    line-height: 1.5;
}

.in-news-meta span {
    display: inline-flex;
    align-items: center;
    height: 20px;
    white-space: nowrap;
}

.in-news-meta i {
    margin-right: var(--f6);
    font-size: var(--f12);
    vertical-align: middle;
    line-height: 1;
}

.in-news-meta a {
    color: #8e9aaf;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.in-news-meta a:hover {
    color: var(--col6);
}

.in-news-title {
    font-size: var(--f20);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--f12);
    word-break: break-word;
}

.in-news-title a {
    color: var(--col1);
    text-decoration: none;
    transition: color 0.3s;
}

.in-news-title a:hover {
    color: var(--col6);
}

.in-news-desc {
    font-size: var(--f14);
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: var(--f16);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.in-news-more {
    margin-top: auto;
    padding-top: var(--f12);
}

.in-news-more a {
    display: inline-flex;
    align-items: center;
    gap: var(--f6);
    font-size: var(--f14);
    color: var(--col6);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.in-news-more a i {
    font-size: var(--f16);
    transition: transform 0.3s;
}

.in-news-more a:hover {
    gap: var(--f10);
}

.in-news-more a:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .in-news-list-page {
        padding: var(--f20) 0 var(--f48);
    }
    .in-news-item {
        flex-direction: column;
        padding: var(--f16);
        gap: var(--f16);
    }
    .in-news-img-wrapper {
        width: 100%;
        height: 200px;
    }
    .in-news-meta {
        gap: var(--f12);
        font-size: var(--f11);
    }
    .in-news-meta span {
        height: auto;
    }
    .in-news-title {
        font-size: var(--f18);
    }
    .in-news-desc {
        font-size: var(--f13);
        -webkit-line-clamp: 2;
        flex: none;
    }
    .in-news-more {
        margin-top: var(--f8);
    }
}

@media (max-width: 576px) {
    .in-news-img-wrapper {
        height: 180px;
    }
    .in-news-title {
        font-size: var(--f16);
    }
}

/* ===== 新闻详情页面样式 ===== */
.news-detail-page {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

.news-detail-card {
    background: #fff;
    border-radius: var(--f24);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    padding: var(--f48);
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--f28);
    font-size: var(--f13);
    color: #8e9aaf;
}

.detail-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: var(--f6);
}

.detail-meta i {
    font-size: var(--f14);
}

.detail-meta a {
    color: #8e9aaf;
    text-decoration: none;
    transition: color 0.3s;
}

.detail-meta a:hover {
    color: var(--col6);
}

.detail-content blockquote {
    border-left: 3px solid var(--col6);
    padding: var(--f12) var(--f24);
    margin: var(--f20) 0;
    background: #f8fafc;
    color: #64748b;
    font-style: italic;
}

.related-news {
    background: #fff;
    border-radius: var(--f24);
    padding: var(--f32);
    margin-top: var(--f32);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.related-line {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--col6);
    margin: 0 auto;
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--f24);
}

.related-item:hover .related-news-title {
    color: var(--col6);
}

@media (max-width: 768px) {
    .news-detail-page {
        padding: var(--f20) 0 var(--f48);
    }
    .news-detail-card {
        padding: var(--f24);
    }
    .detail-title {
        font-size: var(--f24);
    }
    .related-grid {
        grid-template-columns: 1fr;
        gap: var(--f16);
    }
}


/* ===== 联系我们页面样式 ===== */

/* 页面容器 */
.inpage-content-box {
    padding: var(--f40) 0 var(--f80);
    background: #f8f9fc;
}

/* 页面标题区域 */
.inpage-title {
    text-align: center;
    margin-bottom: var(--f48);
    position: relative;
}

.inpage-title .title {
    font-size: var(--f36);
    font-weight: 700;
    color: var(--col6);
    margin-bottom: var(--f12);
    letter-spacing: 2px;
}

.inpage-title .sub {
    font-size: var(--f16);
    color: #8e9aaf;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--f20);
}

.inpage-title .accent-line {
    width: 60px;
    height: 3px;
    background: var(--col6);
    margin: 0 auto;
    border-radius: 3px;
}

/* 公司信息卡片 */
.inpage-contact-box {
    background: #fff;
    border-radius: var(--f24);
    padding: var(--f40);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inpage-contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
 

.inpage-contact-box .text p {
    
}

/* ===== 留言表单样式 ===== */
.message-box {
    background: #fff;
    border-radius: var(--f24);
    padding: var(--f40);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.message-box .input-text {
    width: 100%;
    background: #f8fafc;
    padding: var(--f16) var(--f20);
    border-radius: var(--f12);
    margin-bottom: var(--f20);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: var(--f14);
    color: var(--col1);
    outline: none;
}

.message-box .input-text:focus {
    background: #fff;
    border-color: var(--col6);
    box-shadow: 0 0 0 3px rgba(111, 45, 168, 0.1);
}

.message-box .input-text:hover {
    background: #fff;
    border-color: var(--col6);
}

.message-box .input-text::placeholder {
    font-size: var(--f13);
    color: #a0aec0;
}

.message-box .input-text::-moz-placeholder {
    font-size: var(--f13);
    color: #a0aec0;
    opacity: 1;
}

/* 提交按钮 */
.message-box .click {
    background: var(--col6);
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: var(--f12);
    padding: var(--f16) var(--f24);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: var(--f8);
    font-size: var(--f16);
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    outline: none;
}

.message-box .click span {
    margin-left: var(--f12);
    transition: all 0.3s ease;
}

.message-box .click:hover {
    background: #5a2390;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(111, 45, 168, 0.3);
}

.message-box .click:active {
    transform: translateY(0);
}

/* 地图容器 */
.ny-content {
    margin-top: var(--f48);
    border-radius: var(--f24);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ny-content > div {
    border-radius: var(--f24) !important;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    border: none !important;
}

/* 高德地图信息窗口样式美化 */
.amap-info-content {
    border-radius: var(--f12);
}

.amap-info-window {
    border-radius: var(--f12);
    overflow: hidden;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .inpage-content-box {
        padding: var(--f24) 0 var(--f48);
    }
    
    .inpage-title .title {
        font-size: var(--f28);
    }
    
    .inpage-title .sub {
        font-size: var(--f14);
    }
    
    .inpage-contact-box,
    .message-box {
        padding: var(--f28);
        margin-bottom: var(--f24);
    }
    
    .inpage-contact-box {
        margin-bottom: var(--f24);
    }
}

@media (max-width: 768px) {
    .inpage-title {
        margin-bottom: var(--f32);
    }
    
    .inpage-title .title {
        font-size: var(--f24);
    }
    
    .inpage-contact-box > div:first-child {
        font-size: var(--f14);
        line-height: 1.8;
    }
    
    .inpage-contact-box .text {
        font-size: var(--f13);
    }
    
    .message-box .input-text {
        padding: var(--f12) var(--f16);
        font-size: var(--f13);
        margin-bottom: var(--f16);
    }
    
    .message-box .click {
        padding: var(--f12) var(--f20);
        font-size: var(--f14);
    }
    
    .ny-content {
        margin-top: var(--f32);
        height: 280px !important;
    }
}

@media (max-width: 576px) {
    .inpage-contact-box,
    .message-box {
        padding: var(--f20);
    }
    
    .inpage-contact-box > div:first-child {
        font-size: var(--f13);
    }
    
    .ny-content {
        height: 240px !important;
    }
}

/* 表单验证错误提示样式 */
.error-tips {
    color: #e53e3e;
    font-size: var(--f12);
    margin-top: -12px;
    margin-bottom: var(--f12);
    padding-left: var(--f12);
}

/* 成功提交后的反馈动画 */
.submit-success {
    background: #38a169;
    color: #fff;
}

.submit-error {
    background: #e53e3e;
    color: #fff;
}



/* ===== 页码样式 ===== */
#qd-pages {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3%;
    margin-bottom: 3%;
    gap: 8px;
}

#qd-pages li {
    display: inline-block;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

#qd-pages li:hover {
    background: #333;
    border-color: #333;
}

#qd-pages li:hover a {
    color: #fff;
}

#qd-pages li a {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    font-size: 14px;
    line-height: 1;
    color: #555;
    text-decoration: none;
}

#qd-pages .pages-text {
    display: inline-block;
}

#qd-pages span {
    font-size: 12px;
}

#qd-pages .now {
    background: #333;
    border-color: #333;
}

#qd-pages .now a {
    color: #fff;
}

#qd-pages .dian {
    border: none;
    background: none;
}

#qd-pages .dian a {
    color: #aaa;
    cursor: default;
}

#qd-pages .dian:hover {
    background: none;
}

#qd-pages .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#qd-pages .disabled:hover {
    background: #fff;
}

#qd-pages .disabled:hover a {
    color: #555;
}

#qd-pages .jiantou {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    #qd-pages li a {
        padding: 0 10px;
        font-size: 12px;
    }
    #qd-pages .pages-text {
        display: none;
    }
    #qd-pages li a {
        gap: 0;
    }
}

@media screen and (max-width: 576px) {
    #qd-pages {
        gap: 5px;
        flex-wrap: nowrap;
        padding: 0 10px;
        -webkit-overflow-scrolling: touch;
    }
    #qd-pages li a {
        padding: 0 8px;
        font-size: 11px;
    }
}

@media screen and (max-width: 375px) {
    #qd-pages li a {
        padding: 0 6px;
        font-size: 10px;
    }
}

/* ===== 懒加载图片 ===== */
.lazy-img {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-img.loaded {
    opacity: 1;
}