/* ===== 全局重置与基础布局 ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
    background: #f8f9fa;
    color: #222222;
}
ul {
    list-style: none;
}
.fl { float: left; }
.fr { float: right; }
a { text-decoration: none; color: inherit; }

body {
    display: flex;
    flex-direction: column;
}

.top-image {
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
}

/* ===== Header 头部 ===== */
header {
    background: #323232;
    height: 50px;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 100;
    overflow: visible;
}
.headerStart {
    width: 195px;
    height: 50px;
    float: left;
}
.imgStart {
    float: right;
    width: 19px;
    height: 16px;
    margin-top: 17px;
    margin-right: 30px;
}
.header-logo-area {
    float: left;
    display: flex;
    align-items: center;
    height: 50px;
}
.header-logo {
    background: url(../img/logo.png) no-repeat center center #FF283C;
    width: 180px;
    height: 50px;
    margin-left: 140px;
    flex-shrink: 0;
}
.header-slogan {
    font-size: 16px;
    color: #fff;
    line-height: 50px;
    margin-left: 40px;
    letter-spacing: 0.5px;
    font-weight: 300;
    white-space: nowrap;
}

/* ===== 右侧区域及客服下拉悬停（纯CSS实现） ===== */
.box {
    float: right;
    margin-right: 60px;
    margin-left: 35px;
    display: flex;
    align-items: center;
    height: 50px;
}
.header-right-icon {
    height: 50px;
    background: #007AFF;
    padding: 11px 5px 0 10px;
    margin-left: 20px;
    flex-shrink: 0;
}
.header-right-icon img {
    width: 151px;
    height: 27px;
    display: block;
}

.headerUl {
    font-size: 17px;
    color: #fff;
    height: 50px;
    user-select: none;
    float: left;
}
.headerUlLi {
    float: left;
    width: 80px;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.headerUlLi span {
    display: block;
    width: 80px;
    height: 50px;
    line-height: 50px;
    transition: background 0.3s;
    font-weight: 400;
}

/* 纯CSS替换原来的JS悬停逻辑 */
.headerUlLi:hover > span {
    background: #FF283C;
}
.headerUlLi:hover .headerUlSub {
    display: block;
    animation: myfirst 0.3s forwards;
}

.headerUlSub {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    overflow: hidden;
    background: #323232;
    z-index: 999;
    font-size: 13px;
    color: #fff;
    padding-bottom: 20px;
    border-radius: 0 0 6px 6px;
    min-width: 80px;
}
.headerUlSub img {
    width: 80px;
    height: 77px;
    margin-bottom: 20px;
}
.headerUlSub li {
    line-height: 1.5;
    padding: 5px 0;
    transition: color 0.2s;
    cursor: pointer;
}
.headerUlSub li:hover {
    color: #FF283C;
}
.headerUlSub li i {
    font-size: 8px;
    display: block;
    font-style: normal;
    transform: scale(0.8);
}

/* ===== Main 区域与轮播图 ===== */
.main {
    flex: 1;
    position: relative;
    min-height: 0;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #115599; 
}
.swiper-slide {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.imgBanner {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.02) saturate(1.02);
}

.banner-caption {
    position: absolute;
    top: 50%;
    right: 8%;
    left: auto;
    transform: translateY(-50%);
    z-index: 5;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #ffffff;
    pointer-events: none;
    width: auto;
    max-width: 700px;
}
.banner-caption .banner-title {
    font-size: 58px;
    font-weight: 600; 
    letter-spacing: 3px;
    line-height: 1.15;
    text-shadow: 0 4px 16px rgba(0,0,0,0.4);
    text-align: right;
    width: 100%;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 1.1s ease 0.2s, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.banner-caption .banner-sub {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    text-align: right;
    width: 100%;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 1.1s ease 0.5s, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.swiper-slide-active .banner-caption .banner-title,
.swiper-slide-active .banner-caption .banner-sub {
    opacity: 1;
    transform: translateY(0);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}
.swiper-pagination-bullet-active {
    background: #FF283C;
    opacity: 1;
}

/* ===== 左侧导航 ===== */
.navLeft {
    position: absolute;
    top: 0;
    left: 0;
    width: 195px;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px 0 10px 0;
    box-sizing: border-box;
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}
.navLeft::-webkit-scrollbar {
    display: none;
}
.navLeft li {
    width: 100%;
    padding: 11px 30px 11px 10px; 
    margin: 0;
    text-align: right;
    cursor: pointer;
    transition: background 0.2s;
    list-style: none;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    word-break: break-all;
}
.navLeft li:hover,
.navLeft li.active {
    background: #FF283C;
}
.navLeft li .nav-label {
    font-size: 16px; 
    font-weight: 500; 
    display: block;
    letter-spacing: 0.5px;
}
.navLeft li .nav-en {
    font-size: 9px; 
    font-style: normal;
    display: block;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 3px;
    letter-spacing: 0.5px;
    font-weight: 400; 
}
.navLeft li.active .nav-en {
    color: #fff;
}
.imgNavLeft {
    width: 58px;
    height: 139px;
    margin: 60px 30px 0 0;
    flex-shrink: 0;
    align-self: flex-end;
}

/* ===== 内容展示区与动画 ===== */
.content-display {
    position: absolute;
    top: 0;
    left: 195px;
    width: calc(100% - 195px);
    height: 100%;
    z-index: 2;
    display: none;
    background: #ffffff;
    padding: 32px 40px;
    box-sizing: border-box;
    overflow: auto; 
}
.content-display.active {
    display: block;
}

.fade-in-smooth {
    animation: cubicFadeInUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
    height: 100%; 
    display: flex;
    flex-direction: column;
}
@keyframes cubicFadeInUp {
    0% { 
        opacity: 0; 
        transform: translateY(24px);
        filter: blur(5px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0);
        filter: blur(0);
    }
}

.news-fade-active {
    animation: newsFadeIn 0.4s ease-out forwards;
}
@keyframes newsFadeIn {
    0% { opacity: 0; transform: translateX(10px); }
    100% { opacity: 1; transform: translateX(0); }
}

.content-display::-webkit-scrollbar {
    width: 5px;
    height: 6px;
}
.content-display::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}
.content-display::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 4px;
}
.content-display::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.content-display .cd-title {
    font-size: 24px;
    font-weight: 700;
    color: #FF283C;
    margin-bottom: 2px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FF283C;
    display: inline-block;
    letter-spacing: 1px;
}
.content-display .cd-sub {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 400;
}
.content-display .cd-body {
    font-size: 14px;
    line-height: 1.9;
    color: #333;
    flex: 1; 
    display: flex;
    flex-direction: column;
}

/* ===== 产品网格卡片 ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px 20px; 
    margin-top: 10px;
    min-width: 1140px; 
    width: 100%;       
}
.product-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(162, 172, 185, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; 
    flex-direction: row; 
    height: 220px; 
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(255, 40, 60, 0.08); 
}
.product-card .img-wrap {
    width: 35%; 
    height: 100%;
    overflow: hidden;
    background: #fcfdfe;
    flex-shrink: 0;
}
.product-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .img-wrap img {
    transform: scale(1.04);
}

.product-card .info {
    width: 65%; 
    padding: 14px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    justify-content: flex-start;
}
.product-card .info .meta-item {
    display: flex;
    font-size: 13px;
    line-height: 1.4;
    color: #4e5564;
    margin-bottom: 6px;
}
.product-card .info .meta-item .label {
    color: #888888;
    min-width: 65px; 
    flex-shrink: 0;
    font-weight: 400;
}
.product-card .info .meta-item .val {
    font-weight: 500;
    color: #111111;
    white-space: nowrap; 
}
.product-card .info .meta-item .val.name {
    font-size: 15px;
    font-weight: 700;
}
.product-card .info .meta-item .val.price {
    font-size: 15px;
    font-weight: 700;
    color: #FF283C;
}

.product-card .info .meta-row {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    width: 100%;
    margin-bottom: 6px;
}
.product-card .info .meta-row .meta-item {
    margin-bottom: 0;
}
.product-card .info .meta-row .meta-item:first-child {
    width: 58%;
    flex-shrink: 0;
    padding-right: 2px;
}
.product-card .info .meta-row .meta-item:last-child {
    width: 42%;
    flex-shrink: 0;
}

.product-card .info .desc-block {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    margin-top: auto; 
    border-top: 1px dashed #edf0f2;
    padding-top: 6px;
}
.product-card .info .desc-block .desc-label {
    color: #FF283C;
    font-weight: 700;
    margin-bottom: 1px;
}
.product-card .info .desc-block .desc-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

/* ===== 助农扶贫板块 ===== */
.fupin-container {
    display: flex;
    gap: 24px;
    align-items: stretch;
    width: 100%;
    min-width: 1140px;
    height: 480px;
    background: #ffffff;
    margin-top: 10px;
}
.news-left {
    width: 300px;
    border-right: 1px dashed #edf0f2;
    padding-right: 16px;
    flex-shrink: 0;
    overflow-y: auto; 
    height: 100%;
}
.news-detail-body {
    flex: 1;
    overflow-y: auto;
    height: 100%;
    padding-right: 16px;
    padding-left: 6px;
}
.news-detail-img {
    width: 360px; 
    height: 100%;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f4f5f7;
    border: 1px solid #edf0f2;
}
.news-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-left::-webkit-scrollbar,
.news-detail-body::-webkit-scrollbar {
    width: 4px;
}
.news-left::-webkit-scrollbar-thumb,
.news-detail-body::-webkit-scrollbar-thumb {
    background: #e4e6ed;
    border-radius: 4px;
}

.news-title-item {
    padding: 13px 16px;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #4e5564;
    background: #f8f9fa;
    border-left: 4px solid transparent;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-title-item:hover {
    background: #ededef;
    color: #FF283C;
}
.news-title-item.active {
    background: #fff0f2;
    color: #FF283C;
    border-left-color: #FF283C;
    font-weight: 600;
}

.news-title-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf0f2;
}
.news-title-area h3 {
    font-size: 18px;
    color: #111111;
    font-weight: 700;
    line-height: 1.4;
}
.news-date {
    font-size: 12px;
    color: #888888;
    white-space: nowrap;
    margin-left: 20px;
}

/* ===== 公司荣誉跑马灯 ===== */
.honor-marquee-container {
    width: 100%;
    min-width: 1140px;
    flex: 1; 
    min-height: 480px; 
    overflow: hidden;
    margin-top: 10px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly; 
    gap: 20px;
    background: #ffffff;
}
.honor-marquee-row {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}
.honor-marquee-row:hover {
    animation-play-state: paused; 
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}
.honor-scroll-card {
    width: 340px; 
    height: 235px; 
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #ebedef;
    box-shadow: 0 4px 16px rgba(162, 172, 185, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.honor-scroll-card:hover {
    border-color: #FF283C;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(255, 40, 60, 0.14);
}
.honor-scroll-card .img-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    padding: 12px;
    overflow: hidden;
}
.honor-scroll-card .img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    transition: transform 0.3s ease;
}
.honor-scroll-card:hover .img-box img {
    transform: scale(1.05); 
}
.honor-scroll-card .title-box {
    padding: 10px 14px;
    text-align: center;
    border-top: 1px solid #edf0f2;
    font-size: 14px;
    font-weight: 700;
    color: #1a1e29;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #ffffff;
}

/* ===== 商业规划 ===== */
.plan-wrap {
    width: 100%;
    min-width: 1140px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}
.plan-top-row {
    display: flex;
    gap: 20px;
    width: 100%;
    min-width: 1140px;
    align-items: stretch;
}
.plan-intro-card-left {
    flex: 1.1;
    background: #ffffff;
    border: 1px solid #ebedef;
    border-radius: 6px;
    padding: 22px 24px;
    box-shadow: 0 4px 12px rgba(162, 172, 185, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.plan-intro-card-left .intro-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1e29;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.plan-intro-card-left .intro-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #FF283C;
    border-radius: 2px;
}
.plan-intro-card-left .intro-p {
    font-size: 13px;
    color: #555555;
    line-height: 1.85;
    text-align: justify;
}

.plan-two-pillars {
    flex: 1;
    display: flex;
    gap: 16px;
}
.plan-pillar-card-two {
    flex: 1;
    position: relative;
    background: #ffffff;
    border: 1px solid #ebedef;
    border-radius: 6px;
    padding: 20px 18px;
    box-shadow: 0 4px 12px rgba(162, 172, 185, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.plan-pillar-card-two:hover {
    transform: translateY(-3px);
    border-color: #FF283C;
    box-shadow: 0 8px 20px rgba(255, 40, 60, 0.08);
}
.plan-pillar-card-two .watermark-num {
    position: absolute;
    right: 6px;
    bottom: -10px;
    font-size: 68px;
    font-weight: 900;
    color: rgba(255, 40, 60, 0.09);
    font-family: Arial, sans-serif;
    pointer-events: none;
    user-select: none;
}
.plan-pillar-card-two .pillar-tag {
    display: inline-block;
    background: #fff0f2;
    color: #FF283C;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}
.plan-pillar-card-two .pillar-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1e29;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}
.plan-pillar-card-two .pillar-desc {
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.plan-curve-box {
    width: 100%;
    min-width: 1140px;
    background: #ffffff;
    border: 1px solid #ebedef;
    border-radius: 6px;
    padding: 22px 26px;
    box-shadow: 0 4px 12px rgba(162, 172, 185, 0.04);
}
.plan-curve-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1e29;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #edf0f2;
}
.curve-roadmap-container {
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 10px;
}
.curve-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.animated-curve-line {
    animation: curveDash 22s linear infinite;
}
@keyframes curveDash {
    to { stroke-dashoffset: -280; }
}
.curve-node {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.curve-node .node-dot {
    width: 16px;
    height: 16px;
    background: #FF283C;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 40, 60, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.curve-node:hover .node-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(255, 40, 60, 0.3);
}
.curve-node .node-card {
    position: absolute;
    width: 220px;
    background: #ffffff;
    border: 1px solid #edf0f2;
    border-radius: 6px;
    padding: 10px 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.curve-node:hover .node-card {
    border-color: #FF283C;
    transform: translateY(-2px);
}
.curve-node .node-card.pos-top { bottom: 22px; }
.curve-node .node-card.pos-bottom { top: 22px; }

.node-card .node-year {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: #FF283C;
    margin-bottom: 2px;
}
.node-card .node-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1e29;
    margin-bottom: 3px;
}
.node-card .node-desc {
    font-size: 11px;
    color: #666666;
    line-height: 1.4;
}

/* ===== 商业合作 ===== */
.coop-wrap {
    width: 100%;
    min-width: 1140px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 10px;
}
.coop-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    min-width: 1140px;
}
.coop-card-clean {
    background: #ffffff;
    border: 1px solid #ebedef;
    border-radius: 6px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.coop-card-clean:hover {
    border-color: #FF283C;
    box-shadow: 0 8px 24px rgba(255, 40, 60, 0.08);
    transform: translateY(-3px);
}
.coop-card-clean .icon-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1e29;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.coop-card-clean .icon-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #FF283C;
    border-radius: 2px;
}
.coop-card-clean .desc {
    font-size: 13px;
    color: #555555;
    line-height: 1.8;
}
.coop-banner-clean {
    width: 100%;
    min-width: 1140px;
    background: #fdfdfe;
    border: 1px solid #edf0f2;
    border-left: 4px solid #FF283C;
    border-radius: 6px;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.coop-banner-clean span {
    font-size: 15px;
    color: #333333;
}
.coop-banner-clean strong {
    font-size: 20px;
    color: #FF283C;
    margin-left: 10px;
    font-family: Arial, sans-serif;
    font-weight: 800;
}

/* ===== 联系我们 ===== */
.contact-wrap-pro {
    display: flex;
    gap: 24px;
    width: 100%;
    min-width: 1140px;
    margin-top: 10px;
    align-items: stretch;
}
.contact-pro-left {
    flex: 1;
    background: #ffffff;
    border: 1px solid #ebedef;
    border-radius: 8px;
    padding: 26px 30px;
    box-shadow: 0 4px 16px rgba(162, 172, 185, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-pro-left .main-greeting {
    font-size: 22px;
    font-weight: 700; 
    color: #1a1e29;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.contact-pro-left .main-subtag {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}
.contact-pro-left .direct-call-box {
    margin-bottom: 18px;
    padding: 16px 20px;
    background: #fafbfc;
    border-radius: 6px;
    border: 1px solid #edf0f2;
}
.contact-pro-left .call-title {
    font-size: 13px;
    color: #666666;
    margin-bottom: 4px;
}
.contact-pro-left .call-phone {
    font-size: 26px;
    font-weight: 800;
    color: #FF283C;
    font-family: Arial, sans-serif;
    line-height: 1.1;
}
.contact-pro-left .call-time {
    font-size: 12px;
    color: #888888;
    margin-top: 2px;
    margin-bottom: 6px;
}
.contact-pro-left .call-sub {
    font-size: 13px;
    color: #333333;
    font-weight: 500;
}
.contact-pro-left .contact-meta-simple {
    font-size: 13px;
    color: #333333;
    line-height: 2;
    padding-top: 14px;
    border-top: 1px dashed #edf0f2;
}
.contact-pro-left .contact-meta-simple .meta-lbl {
    color: #888888;
    min-width: 68px;
    display: inline-block;
}

.contact-pro-right {
    flex: 1.15;
    background: linear-gradient(135deg, #181b24 0%, #0d0f15 100%);
    border: 1px solid #2d3240;
    border-radius: 8px;
    padding: 24px 26px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-pro-right .dark-card-header {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}
.contact-pro-right .dark-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
}
.contact-pro-right .dark-card-badge {
    background: #FF283C;
    color: #ffffff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.contact-pro-right .dark-card-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.contact-pro-right .qr-tri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    flex: 1;
    align-items: center;
    margin: 10px 0;
}
.contact-pro-right .qr-item-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 14px 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.contact-pro-right .qr-item-card:hover {
    border-color: #FF283C;
    background: rgba(255, 40, 60, 0.08);
    transform: translateY(-3px);
}
.contact-pro-right .qr-img-box {
    width: 95px;
    height: 95px;
    margin: 0 auto 10px;
    background: #ffffff;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.contact-pro-right .qr-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.contact-pro-right .qr-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
    white-space: nowrap;
}
.contact-pro-right .qr-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}
.contact-pro-right .dark-card-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-pro-right .footer-tip {
    font-size: 12px;
    color: #FF283C;
    font-weight: 500;
}

/* ===== 品牌故事 ===== */
.brand-story {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 6px;
}
.brand-story .text {
    flex: 2;
    min-width: 240px;
}
.brand-story .text p {
    font-size: 15px;
    line-height: 2.2;
    color: #444;
}
.brand-story .text p strong {
    color: #FF283C;
    font-weight: 700;
}
.brand-story .stats {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.brand-story .stats .stat-item {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 14px 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
}
.brand-story .stats .stat-item .num {
    font-size: 24px;
    font-weight: 700;
    color: #FF283C;
}
.brand-story .stats .stat-item .label {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
}

/* ===== 通用按钮 ===== */
.btn-primary {
    background: #FF283C;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: 0.25s;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-secondary {
    background: #007AFF;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: 0.25s;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary:hover { background: #e02034; transform: translateY(-1px); }
.btn-secondary:hover { background: #0066dd; transform: translateY(-1px); }

/* ===== 响应式适配 ===== */
@media (max-width: 1200px) {
    .navLeft { width: 160px; }
    .navLeft li { padding-right: 20px; padding-top: 10px; padding-bottom: 10px; }
    .navLeft li .nav-label { font-size: 14px; }
    .navLeft li .nav-en { font-size: 8px; }
    .content-display { left: 160px; width: calc(100% - 160px); padding: 20px 24px; }
    .header-logo { margin-left: 60px; }
    .box { margin-right: 30px; }
}
@media (max-width: 768px) {
    .navLeft {
        position: relative;
        width: 100% !important;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        background: rgba(0,0,0,0.9);
    }
    .navLeft li {
        flex-direction: row;
        align-items: center;
        padding: 6px 14px !important;
        margin: 3px 5px;
        width: auto;
        text-align: center;
        border-radius: 30px;
        background: rgba(255,255,255,0.08);
    }
    .navLeft li .nav-en {
        display: inline;
        margin-left: 6px;
        font-size: 8px;
        margin-top: 0;
    }
    .navLeft li .nav-label { font-size: 14px; }
    .navLeft li.active { background: #FF283C !important; }
    .imgNavLeft { display: none; }
    
    .content-display {
        left: 0;
        width: 100%;
        padding: 16px 18px;
        top: auto;
        bottom: 0;
    }
    .brand-story, .contact-wrap-pro, .plan-top-row { flex-direction: column; }
    .banner-caption { right: 5%; width: 85%; }
    .header-logo { margin-left: 20px; }
    .header-slogan { display: none; }
    .box { margin-right: 15px; }
}
@media (max-width: 480px) {
    .content-display { padding: 12px; }
    .navLeft li { padding: 4px 10px !important; margin: 2px 3px; }
    .navLeft li .nav-label { font-size: 12px; }
    .box { margin-right: 10px; }
    .banner-caption .banner-title { font-size: 32px; }
    .banner-caption .banner-sub { font-size: 14px; }
}

/* Keyframes */
@keyframes myfirst {
    from { opacity: 0; }
    to { opacity: 1; }
}
