* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Microsoft JhengHei', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    overflow-x: hidden;
    
}

/* ========== 通用样式 ========== */
/* 字体渲染优化 */
.right-text,
.animated-text,
.typing-text {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    line-height:2;
}

/* 页面容器 */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* 确保内容不被固定导航遮挡 */
.content {
    margin-top: 160px !important;
    transition: margin-top 0.3s ease;
}

/* ========== 顶部导航栏 ========== */
/* 第一行 - 蓝色条 */
.top-blue-bar {
    background-color: #123E6C;
    color: white;
    width: 100%;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 40px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-blue-bar .page-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 左侧部分 */
.left-section {
    flex: 1;
    min-width: 300px;
}

/* 右侧部分 */
.right-section {
    flex: 1;
    text-align: right;
    min-width: 350px;
}

/* 分隔符 */
.separator {
    display: inline-block;
    margin: 0 8px;
    transition: transform 0.3s ease;
}

.middle-text span:hover ~ .separator,
.separator:hover {
    transform: scale(1.2);
    color: #FFD700;
}

/* ========== 第二行 - Logo和文字 ========== */
.second-row {
    width: 100%;
    height: 80px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.second-row .page-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: all 0.3s ease;
}

/* Logo样式 */
.logo-container {
    height: 80px;
    display: flex;
    align-items: center;
    flex: 1;
    transition: all 0.3s ease;
}

.logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* 右侧文字动画 */
.right-text {
    color: #123E6C;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}

.right-text .animated-text {
    display: inline-block;
    white-space: nowrap;
    animation: breathing 4s ease-in-out infinite;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
}

.right-text .animated-text:hover {
    transform: scale(1.05) translateZ(0);
    color: #1a5a9e;
    text-shadow: 0 2px 8px rgba(26, 90, 158, 0.2);
}

/* 打字机效果 */
.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid transparent;
    white-space: nowrap;
    animation: typing 3.5s steps(30, end) forwards,
               blink-caret 0.75s step-end 4;
    will-change: width;
}

/* ========== 第三行 - 桌面导航 ========== */
.third-row {
    width: 100%;
    background-color: white;
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 998;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.main-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.main-nav li {
    flex: 1;
    text-align: center;
    position: relative;
}

.main-nav a {
    display: block;
    padding: 15px 5px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* 导航链接底部指示条 */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #123E6C;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: #123E6C;
    transform: translateY(-2px);
}

.main-nav a:hover::after {
    width: 80%;
}

.main-nav a.active {
    color: #123E6C;
}

.main-nav a.active:hover::after {
    width: 80%;
    background-color: #123E6C;
}

/* ========== 移动端导航 ========== */
/* 手机菜单按钮 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #123E6C;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    height: 100%;
    align-items: center;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* 手机导航菜单 */
.mobile-nav {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 997;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-nav.active {
    max-height: 500px;
    overflow-y: auto;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #eee;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-nav.active li {
    transform: translateY(0);
    opacity: 1;
}

/* 列表项动画延迟 */
.mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav li:nth-child(6) { transition-delay: 0.6s; }
.mobile-nav li:nth-child(7) { transition-delay: 0.7s; }

.mobile-nav a {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(18, 62, 108, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
    left: 100%;
}

.mobile-nav a:hover {
    background-color: #f5f5f5;
    color: #123E6C;
    padding-left: 40px;
}

/* ========== Banner区域 ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景图片 */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* 背景遮罩 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* 文字内容容器 */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* 第一行文字 */
.hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* 第二行文字框 */
.hero-subtitle-box {
    background-color: white;
    border: 3px solid #123E6C;
    padding: 20px 40px;
    border-radius: 12px;
    display: inline-block;
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.subtitle-normal {
    color: #123E6C;
}

.subtitle-highlight {
    color: #EA5557;
}

/* 第三行特征图标 */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    gap: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ========== Banner动画效果 ========== */
/* 背景图片淡入动画 */
.hero-bg {
    animation: bgFadeIn 2s ease-out forwards;
    opacity: 0;
}

@keyframes bgFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 遮罩层动画 */
.hero-overlay {
    animation: overlayFadeIn 1.5s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 标题打字机效果 */
.hero-title {
    animation: titleFadeIn 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 副标题框动画 */
.hero-subtitle-box {
    animation: subtitleBoxAppear 1s ease-out 1.5s forwards,
               boxShadowPulse 4s ease-in-out infinite 2.5s;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

@keyframes subtitleBoxAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes boxShadowPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 15px 40px rgba(18, 62, 108, 0.3);
    }
}

/* 副标题文字动画 */
.subtitle-normal, .subtitle-highlight {
    display: inline-block;
    position: relative;
}

.subtitle-normal:nth-child(1) {
    animation: wordSlideIn 0.8s ease-out 2s forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.subtitle-highlight {
    animation: wordSlideIn 0.8s ease-out 2.2s forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.subtitle-normal:nth-child(3) {
    animation: wordSlideIn 0.8s ease-out 2.4s forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes wordSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes highlightColor {
    0%, 100% { 
        color: #EA5557;
        text-shadow: 0 0 10px rgba(234, 85, 87, 0.3);
    }
    50% { 
        color: #FF6B6B;
        text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
    }
}

/* 特征图标动画 */
.feature-item {
    animation: featureAppear 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.feature-item:nth-child(1) { animation-delay: 2.8s; }
.feature-item:nth-child(2) { animation-delay: 3s; }
.feature-item:nth-child(3) { animation-delay: 3.2s; }

@keyframes featureAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 图标悬停动画 */
.feature-icon {
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite 4s;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 图标内部图标动画 */
.feature-icon i {
    transition: all 0.3s ease;
}

.feature-icon:hover i {
    transform: scale(1.2);
}

/* 特征文字动画 */
.feature-item span {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover span {
    color: #FFD700;
    transform: translateY(-2px);
}

.feature-item:hover span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: underlineExpand 0.5s ease-out;
}

@keyframes underlineExpand {
    from { width: 0; left: 50%; }
    to { width: 100%; left: 0; }
}

/* 整体内容容器动画 */
.hero-content {
    animation: contentFadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes contentFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== 三大信任区块 ========== */
.trust-section {
    padding: 60px 20px;
    position: relative;
    background-color: #fff;
    padding-bottom: 50px;
}

/* 标题样式 */
.section-title {
    text-align: center;
    color: #123E6C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0px;
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    animation: titleSlideDown 1s ease-out 0.5s forwards;
}

@keyframes titleSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper 容器 */
.trust-swiper-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0 0px;
}

/* Swiper 自定义样式 */
.trust-swiper {
    overflow: hidden;
    padding: 10px 0 20px;
}

/* 单个信任卡片 */
.trust-card {
    background-color: white;
    box-shadow: 0px 0px 8px #ccc;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.8s ease-out forwards;
    overflow: hidden;
}

/* 卡片动画延迟 */
.trust-card.swiper-slide-active { animation-delay: 0.7s; }
.trust-card.swiper-slide-next { animation-delay: 0.9s; }
.trust-card.swiper-slide-next + .swiper-slide { animation-delay: 1.1s; }
.trust-card.swiper-slide-next + .swiper-slide + .swiper-slide { animation-delay: 1.3s; }

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 卡片悬停效果 */
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* 圆形图片容器 */
.card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3eeff 100%);
    border: 3px solid #e8f1ff;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.card-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.trust-card:hover .card-image {
    transform: scale(1.05);
    border-color: #123E6C;
    background: linear-gradient(135deg, #e8f1ff 0%, #d4e4ff 100%);
}

.trust-card:hover .card-image img {
    transform: scale(1.1);
}

/* 卡片标题 */
.card-title {
    color: #123E6C;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease;
    margin-top: auto;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card:hover .card-title {
    color: #1a5a9e;
}

/* 自定义导航箭头 */
.trust-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 22px;
    color: #123E6C;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.trust-swiper-button:hover {
    background-color: #123E6C;
    color: white;
    box-shadow: 0 6px 20px rgba(18, 62, 108, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.trust-swiper-button-prev {
    left: -10px;
}

.trust-swiper-button-next {
    right: -10px;
}

/* Swiper分页点 */
.swiper-pagination-bullet-active {
    background-color: #123E6C !important;
}

/* ========== 流程区块 ========== */
.process-section {
    padding: 60px 20px;
    position: relative;
    background-color: #123E6C;
    background-image: url(/web/images/liucheng_bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 80px;
}

/* 流程标题 */
.process-section-title {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    animation: titleSlideDown 1s ease-out 0.5s forwards;
    margin-bottom: 50px;
}

/* 流程容器 */
.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    align-items: stretch;
}

/* 步骤通用样式 */
.step {
    display: flex;
    flex-direction: column;
    flex: 1;
    animation: stepFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

/* 步骤出现动画延迟 */
.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }
.step:nth-child(4) { animation-delay: 0.8s; }

.step a{text-decoration: none;}

@keyframes stepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 步骤头部 - 白色箭头 */
.step-header-white {
    height: 60px;
    background-color: #FFFFFF;
    color: #123E6C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    position: relative;
    z-index: 1;
}

/* 步骤头部 - 红色箭头 */
.step-header-red {
    height: 60px;
    background-color: #E6212A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    clip-path: polygon(
        0px 0%,
        calc(100% - 30px) 0%,
        100% 50%,
        calc(100% - 30px) 100%,
        0px 100%,
        10% 50%
    );
    position: relative;
    z-index: 2;
    padding: 0 30px 0 40px;
}

.baisebg {
    background-color: #fff;
    color: #123E6C;
}

/* 步骤内容区 */
.step-content {
    background-color: #FFFFFF;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 200px;
    margin-top: 20px;
    color: #123E6C;
    font-size: 18px;
    font-weight: bold;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    position: relative;
}

.step-middle {
    clip-path: polygon(
        0px 0%,
        calc(100% - 30px) 0%,
        100% 50%,
        calc(100% - 30px) 100%,
        0px 100%,
        10% 50%
    );
}

.step-last {
    clip-path: polygon(
        0px 0%,
        calc(100% - 0px) 0%,
        100% 50%,
        calc(100% - 0px) 100%,
        0px 100%,
        10% 50%
    );
}

/* 图标样式 */
.step-icon {
    width: 70px;
    height: 70px;
    margin:0 auto;
    margin-bottom: 20px;
      
        display: block;
}

.step-icon img {
    width: 70px;
    height: 70px;
}

.icon-blue {
    fill: #00468B;
}

.icon-red {
    fill: #E6212A;
}

/* 文字样式 */
.step-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.text-blue {
    color: #00468B;
}

.text-red {
    color: #E6212A;
}

/* ========== 滚动内容 ========== */
.scroll-content {
    margin-top: 40px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.scroll-item {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.scroll-item:last-child {
    border-bottom: none;
}

.scroll-item h3 {
    color: #123E6C;
    margin-bottom: 10px;
}

/* ========== 滚动到顶部按钮 ========== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #003380;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(18, 62, 108, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #1a5a9e;
    transform: translateY(-5px);
}

/* ========== 动画关键帧 ========== */
/* 呼吸动画 */
@keyframes breathing {
    0%, 100% { 
        transform: scale(1) translateZ(0);
    }
    50% { 
        transform: scale(1.01) translateZ(0);
    }
}

/* 打字机动画 */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #123E6C; }
}

/* ========== 价格表 ========== */
.prices-section {
    padding: 60px 20px;
    position: relative;
}

/* 价格标题 */
.prices-section-title {
    text-align: center;
    color: #123E6C;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    animation: titleSlideDown 1s ease-out 0.5s forwards;
}

.prices-container {
            flex-wrap: wrap;
            justify-content: center;
                display: grid;
    grid-template-columns: repeat(4, 1fr);
   column-gap: 20px; /* 只设置列间距 */
    row-gap: 0; /* 行间距设为0 */
        }

 .prices-card {
            background-color: #fff;
            border: 2px solid #123E6C;
            overflow: hidden; padding: 10px 20px 10px 20px; margin-top:50px;
              /* 保持现有样式 */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
        }

        .prices-card-img {
            width: 100%;height: 220px;object-fit: cover;
        }
.prices-card-info { 
    background-color: #D9232E;
    margin-top: 10px;
    height: 40px;
    color: #fff;
    font-size: 1rem; 
    font-weight: bolder;
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中 */
    padding-right:10px;
    position: relative;
    text-align: right;
        justify-content: flex-end; /* 内容靠右 */
}

.prices-chsa {
    height: 36px;
    background-color: #123E6C;
    display: inline-flex; /* 改为inline-flex */
    align-items: center; /* 垂直居中 */
    padding-left: 15px;
    padding-right: 15px;
    clip-path: polygon(
        0px 0%,
        calc(100% - 0px) 0%,
        100% 0%,
        calc(100% - 10px) 100%,
        0px 100%,
        0% 50%
    );
    position: absolute;
    top:0px;
    left:0px;
}
/* 为每个卡片设置延迟，实现逐个出现效果 */
.prices-card:nth-child(1) { animation-delay: 0.1s; }
.prices-card:nth-child(2) { animation-delay: 0.2s; }
.prices-card:nth-child(3) { animation-delay: 0.3s; }
.prices-card:nth-child(4) { animation-delay: 0.4s; }

/* 查看更多按钮基础样式 */
.prices-more{margin-top:50px;text-align: center;}
        .see-more-btn {
            display: inline-block;
            background-color: #123E6C;
            color: #fff;
            border: none;
            padding: 18px 42px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            letter-spacing: 1px;
            text-decoration: none;
   
        }
        
        /* 按钮悬停效果 */
        .see-more-btn:hover {
            background-color: #0e3057;
            transform: translateY(-5px);
        }
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.prices-card:hover {
    transform: translateY(-5px);
  box-shadow:0px 0px 8px #000;
}


/* ========== 底部联系栏容器 ========== */
/* 底部联系栏容器 */
        .contact-bar {
            background-color: #123E6C; /* 深蓝色背景匹配原图 */
            width: 100%;
            min-height: 120px; /* 最小高度，内容溢出时自动增高 */
            display: flex;
            flex-wrap: wrap; /* 小屏自动换行 */
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%; /* 用百分比内边距适配不同屏幕 */
            color: #ffffff;
            font-family: "Microsoft JhengHei", "SimHei", sans-serif;
            font-size: 16px;
            line-height: 2.2;
            padding-left:0px;
            padding-right:0px;
        }

        /* 左侧文字信息区 */
        .contact-text {
            flex: 1; /* 占剩余空间 */
            min-width: 280px; /* 小屏时最小宽度，避免文字挤压 */
            margin-bottom: 15px; /* 换行后增加底部间距 */
        }

         .contact-text a {
          color:#fff;text-decoration: none;
        }

        /* 右侧二维码区 */
        .qrcode-group {
            display: flex;
            gap: 20px;
            flex-shrink: 0; /* 二维码区不收缩 */
            margin-bottom: 15px;
        }

        .qrcode-img {
            width: 80px;
            height: 80px;
            background-color: #ffffff;
            object-fit: cover;
        }

        .bgfooter{background-color: #123E6C; /* 深蓝色背景匹配原图 */}

        .endbanner{width:100%;}
        .endbanner img{width:100%;display: block;}

        /* 手机端适配：二维码和文字居中，调整字号和二维码尺寸 */
        @media (max-width: 768px) {
            .contact-bar {
                flex-direction: column; /* 垂直排列 */
                text-align: center;
                font-size: 14px;
            }

            .contact-text {
                margin-bottom: 20px;
            }

            .qrcode-img {
                width: 60px;
                height: 60px;
            }
        }

        /* 超小屏（如手机竖屏）进一步缩小二维码 */
        @media (max-width: 480px) {
            .qrcode-img {
                width: 50px;
                height: 50px;
            }

            .contact-text {
                line-height: 2;
            }
        }
/* ========== 响应式设计 ========== */
@media (max-width: 1201px) {
    .page-container {  
        margin: 0 auto;
        width: 96%;
    }
    .nav-container {
        padding: 0;
        width: 100%;
    }
    .main-nav a {
        padding: 15px 2px;
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .main-nav a {
        padding: 15px 2px;
        font-size: 14px;
    }

    .prices-container {
       
    grid-template-columns: repeat(2, 1fr);}

     .prices-card {
       margin-top:30px;
          
        }
}

@media (max-width: 768px) {
    .right-section { 
        display: none; 
    }
    .right-text {   
        display: none;
    }
    .left-section {
        text-align: center;
    }
    
    /* 手机版调整第二行 */
    .second-row {
        top: 0;
        height: 80px;
        z-index: 1001;
    }
    
    .top-blue-bar {
        display: none;
    }
    
    .third-row {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .content {
        margin-top: 80px !important;
    }
    
    body.nav-open .content {
        margin-top: 80px !important;
    }
    
    .logo-container {
        flex: none;
    }
    
    /* 流程响应式 */
    .process-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-content {
        margin-top: 1px;
        clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 50%, calc(100% - 0px) 100%, 0 100%);
    }
    
    .step-header-white {
        clip-path: polygon(0 0, calc(100% - 0px) 0, 100% 50%, calc(100% - 0px) 100%, 0 100%);
    }
    
    .step-header-red {
        clip-path: polygon(0px 0%, calc(100% - 0px) 0%, 100% 50%, calc(100% - 0px) 100%, 0px 100%, 0% 50%);
    }
    
    /* 信任区块响应式 */
    .trust-section {
        padding: 40px 15px;
        padding-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-section-title {
        font-size: 2rem;margin-bottom:30px;
    }
    
    .trust-swiper-container {
        padding: 20px 40px 10px;
    }
    
    .trust-card {
        padding: 30px 20px;
    }
    
    .card-image {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .card-image img {
        width: 120px;
        height: 120px;
    }
    
    .card-title {
        font-size: 1.0rem;
        min-height: 3rem;
    }
    
    .trust-swiper-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* 流程区域响应式 */
    .process-section { padding: 40px 15px;padding-bottom: 50px; }   

    
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 680px) {
    /* Banner响应式调整 */
    .hero-section {
        height: 65vh;
        min-height: 500px;
        padding: 10px 0;
    }
    
    .hero-content {
        padding: 0 15px;
        gap: 25px;
        justify-content: center;
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle-box {
        padding: 10px 15px;
        width: auto;
        margin: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
        display: inline-block;
        white-space: nowrap;
    }
    
    .subtitle-normal, .subtitle-highlight {
        display: inline;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
        justify-content: center;
    }
    
    .feature-item {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        font-size: 0.9rem;
        width: auto;
        text-align: center;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* 横向手机响应式 */
    @media (orientation: landscape) {
        .hero-section {
            height: 85vh;
            min-height: 400px;
        }
        
        .hero-content {
            gap: 15px;
            padding-top: 10px;
        }
        
        .hero-title {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        
        .hero-features {
            flex-direction: row;
            gap: 15px;
            margin-top: 10px;
        }
        
        .feature-item {
            font-size: 0.9rem;
        }
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .process-section-title {
        font-size: 1.8rem;
    }
    
    .trust-swiper-container {
        padding: 20px 30px 10px;
    }
    
    .trust-swiper-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .prices-container { grid-template-columns: repeat(1, 1fr); padding-bottom:20px;}
          .prices-card-img {
            width: 100%;height: auto;object-fit: cover;
        }

        .prices-more{margin-top:15px;}
        
}

@media (max-width: 480px) {
    /* Banner响应式 */
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle-box {
        padding: 8px 12px;
        width: 95%;
        max-width: 400px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-item {
        font-size: 0.85rem;
        gap: 5px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    /* 流程步骤响应式 */
    .step-header-white, .step-header-red {
        height: 45px;
        font-size: 14px;
    }
    
    .step-content {
        padding: 20px 10px;
        min-height: 160px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin:0 auto;

        margin-bottom: 20px;
        display: block;
    }
    
    .step-text {
        font-size: 14px;
    }
    
    /* 信任区块响应式 */
    .trust-swiper-container {
        padding: 20px 20px 10px;
    }
    
    .card-image {
        width: 120px;
        height: 120px;
    }
    
    .card-image img {
        width: 120px;
        height: 120px;
    }
    
    .card-title {
        font-size: 1.0rem;
        min-height: 3rem;
    }
}

@media (max-width: 380px) {
    .hero-subtitle {
        font-size: 1rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    /* 流程容器响应式 */
    .process-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 360px) {
    .hero-subtitle-box {
        padding: 6px 10px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-subtitle span {
        display: inline;
        white-space: nowrap;
    }
    
    /* 信任区块响应式 */
    .trust-swiper-container {
        padding: 20px 15px 10px;
    }
    
    .trust-swiper-button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Banner响应式调整动画延迟 */
@media (max-width: 1024px) {
    .hero-title {
        animation: titleFadeIn 1s ease-out 0.8s forwards;
    }
    
    .hero-subtitle-box {
        animation: subtitleBoxAppear 1s ease-out 1.2s forwards,
                   boxShadowPulse 4s ease-in-out infinite 2.2s;
    }
    
    .subtitle-normal:nth-child(1) {
        animation-delay: 1.6s;
    }
    
    .subtitle-highlight {
        animation-delay: 1.8s;
    }
    
    .subtitle-normal:nth-child(3) {
        animation-delay: 2s;
    }
    
    .feature-item:nth-child(1) {
        animation-delay: 2.5s;
    }
    
    .feature-item:nth-child(2) {
        animation-delay: 2.7s;
    }
    
    .feature-item:nth-child(3) {
        animation-delay: 2.9s;
    }
}

/* 安全区域支持 */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .hero-content {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
        }
        
        .hero-section {
            padding-top: env(safe-area-inset-top);
        }
    }
}


.base-pages-banner img {
  width: 100%;
  vertical-align: middle;
}

.base-pages-bread {
  padding-top: 4rem;
}
@media (max-width: 992px) {
  .base-pages-bread {
    padding-top: 2rem;
  }
}
.base-pages-bread .base-pages-bread-main {
  width: 66.25%;
  margin: auto;
  display: flex;
}
.base-pages-bread .base-pages-bread-main ul {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .base-pages-bread .base-pages-bread-main ul {
    justify-content: center;
  }
}
.base-pages-bread .base-pages-bread-main ul li:last-child a {
  color: #425ea3;
}
.base-pages-bread .base-pages-bread-main ul li a {
  text-decoration: none;
  color: #000000;
}

.section-service {
  padding: 96px 0 136px;
}
@media (max-width: 992px) {
  .section-service {
    padding: 30px 0 60px;
  }
}

.section-service-main {
  width: 66.25%;
  margin: auto;
}
@media (max-width: 1400px) {
  .section-service-main {
    width: 83%;
  }
}
.section-service-main > h1 {
  font-size: 48px;
  font-weight: 600;
  font-family: "Noto Serif TC", sans-serif;
  text-align: center;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 992px) {
  .section-service-main > h1 {
    font-size: 28px;
  }
}
.section-service-main > h1::after {
  content: "";
  display: flex;
  width: 100px;
  border-top: 8px solid #516fb5;
  margin-top: 2rem;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .section-service-main > h1::after {
    width: 60px;
    border-top: 8px solid #516fb5;
    margin-top: 1rem;
    margin-bottom: 30px;
  }
}

.section-service-item {
  display: block;
  text-decoration: none;
  position: relative;
  padding-bottom: 31.44654088%;
  min-height: 400px;
  overflow: hidden;
  background-position: center;
}
.section-service-item:hover .section-service-item-content {
  transform: translateY(-20px);
}
.section-service-item:hover .section-service-btn {
  transform: translateY(-20px);
  background-color: #fff;
  color: #000000;
}
.section-service-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}
.section-service-item::after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  inset: 0;
}
.section-service-item + .section-service-item {
  margin-top: 20px;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-service-item:first-child {
  background-image: url(../../src/web/service/service-item-img-01.jpg);
}
.section-service-item:nth-child(2) {
  background-image: url(../../src/web/service/service-item-img-02.jpg);
}
.section-service-item:nth-child(3) {
  background-image: url(../../src/web/service/service-item-img-03.jpg);
}
.section-service-item:nth-child(4) {
  background-image: url(../../src/web/service/service-item-img-04.jpg);
}
.section-service-item:nth-child(5) {
  background-image: url(../../src/web/service/service-item-img-05.jpg);
}
.section-service-item .section-service-item-content {
  position: absolute;
  bottom: 56px;
  left: 3.33333333vw;
  z-index: 2;
  transition: 0.2s ease-in-out;
}
@media (max-width: 992px) {
  .section-service-item .section-service-item-content {
    bottom: unset;
    top: 20%;
  }
}
.section-service-item .section-service-item-content h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 9px 12px;
  background-color: #516fb5;
  margin-bottom: 20px;
  font-family: "Noto Sans TC", sans-serif;
}
.section-service-item .section-service-item-content p {
  font-size: 19px;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.6;
}

.section-service-btn {
  z-index: 2;
  display: block;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 11px 27px;
  position: absolute;
  bottom: 56px;
  right: 5vw;
  transition: 0.2s ease-in-out;
}
.section-service-btn:focus-visible {
  outline: none;
}
.section-service-btn i {
  font-size: 13px;
  margin-left: 12px;
}


.project-album-title {
  padding-bottom: 2rem;
}
/* 网格间隙优化 */
.project-album-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px;
}
.project-album-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1 / 1; /* 保持正方形比例 */
  background-color: #f5f5f5;
  border:solid 5px #fff;
}

.project-album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: all 0.4s ease;
}

/* 悬停效果 */
.project-album-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

/* 添加半透明遮罩层效果 */
.project-album-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.project-album-item:hover::before {
  opacity: 1;
}

/* 添加放大图标 */
.project-album-item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.project-album-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* 响应式调整 */
@media (max-width: 992px) {
  .project-album-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .project-album-item {
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  .project-album-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .project-album-item {
    border-radius: 8px;
  }
  
  .project-album-item:hover {
    transform: translateY(-3px);
  }
}



/* 图片加载时的占位效果 */
.project-album-item img {
  filter: brightness(0.98);
}

.project-album-item:hover img {
  filter: brightness(1);
}


  .padding80{padding-top:60px;padding-bottom:60px;}
  .paddingtop80{padding-top:60px;}

  .price_header {
    text-align: center;
    margin-bottom: 40px;
  }

  .price_header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color:#123E6C
  }
  
  .price_header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height:1.5;
  }

  .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        
        .spec-card {
            background-color: white;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .spec-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
        }
.spec-header {
    background: linear-gradient(135deg, #123E6C, #123E6C, #1a4d8c);
    color: white;
    padding: 20px;
    text-align: center;
}
        
        .spec-code {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }
        
        .spec-image {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            padding: 20px;
        }
        
        .spec-image img {
            max-width: 100%;
            max-height: 160px;
            object-fit: contain;
        }
        
        .spec-details {
            padding: 20px;
            flex-grow: 1;
        }
        
        .dimensions {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .dimension {
            text-align: center;
            flex: 1;
        }
        
        .dimension-label {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 5px;
        }
        
        .dimension-value {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .pricing {
            margin-top: 15px;
        }
        
        .price-option {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .price-option:last-child {
            border-bottom: none;
        }
        
        .price-label {
            font-weight: 500;
            color: #555;
        }

        .price-label i{color: #ffd700;}
        
        .price-value {
            font-weight: 700;
            color: #2c3e50;
        
        }

        .mb-10{margin-bottom:10px;}
        .prvwidth{width:58px; display: inline-block;text-align: right;}
        
        .highlight {
            color: #e74c3c;
            font-size: 1.1rem;
        }
        
        .monthly-price {
            background-color: #f8f9fa;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 15px;
            text-align: center;
            border-left: 4px solid #3498db;
        }
        
        .monthly-price .price-value {
            font-size: 1.5rem;
        }
        
        .unit {
            font-size: 0.9rem;
            color: #777;
        }

                .discount-badge {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-left: 5px;
            width:75px;
            text-align: center;
        }
        
        
        @media (max-width: 768px) {
            .spec-grid {
                grid-template-columns: 1fr;
            }
            
            .price_header h1 {
                font-size: 2rem;
            }
            
            .spec-code {
                font-size: 1.6rem;
            }
             .price_header .subtitle {
    font-size: 1rem;
    opacity: 0.9;
    line-height:1.5;
  }
        }
        
        @media (max-width: 480px) {
           
      
            
            .dimensions {
                flex-direction: column;
                gap: 10px;
            }
            
            .dimension {
                display: flex;
                justify-content: space-between;
            }
        }


        
  
  /* 仓库列表样式 */
  .warehouse-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

    @media (max-width: 560px) {
           
      
          .warehouse-list {
    width:90%;margin:0 auto;
  }
        }

     
  
  .warehouse-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .warehouse-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
  
  .warehouse-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 320px;
  }
  
  /* 左侧图片区域 */
  .warehouse-image {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  
  .warehouse-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .region-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #E71D1F;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  /* 右侧信息区域 */
  .warehouse-info {
    padding: 30px;
  }
  
  /* 基本信息区域 */
  .basic-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .warehouse-name {
    font-size: 1.6rem;
    color: #123E6C;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .info-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .info-line:last-child {
    margin-bottom: 0;
  }
  
  .info-icon {
    color: #123E6C;
    width: 20px;
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 3px;
  }
  
  .info-text {
    flex: 1;
    color: #333;
  }
  
  /* 服务特色区域 */
  .features-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .section-title2 {
    font-size: 1.2rem;
    color: #123E6C;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  
  .section-title2 i {
    margin-right: 8px;
  }
  
  .features-text {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
  }
  
  /* 服务说明区域 */
  .description-section {
    margin-bottom: 20px;
  }
  
  .description-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
  }
  
  /* 联系按钮 */
  .contact-action {
    text-align: right;
    margin-top: 20px;
  }
  
  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #123E6C;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .contact-btn:hover {
    background: #0f3560;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(18, 62, 108, 0.2);
  }
  
  /* 响应式设计 */
  @media (max-width: 992px) {
    .warehouse-content {
      grid-template-columns: 250px 1fr;
    }
    
    .warehouse-info {
      padding: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .warehouse-content {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    
    .warehouse-image {
      height: 250px;
    }
    
    .warehouse-name {
      font-size: 1.4rem;
    }
  }
  
  @media (max-width: 480px) {
   
    
    .warehouse-item {
      margin: 0 -15px;
      border-radius: 0;
    }
    
    .warehouse-info {
      padding: 20px 15px;
    }
  }



/* ========== 社交悬浮按钮 ========== */
   /* 基础样式 */
   
        /* 悬浮按钮容器 */
        .floating-buttons-container {
            position: fixed;
            right: 30px;
            bottom: 95px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }
        
        /* 悬浮按钮基础样式 */
        .social-fab {
            position: relative;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        /* 按钮悬停效果 */
        .social-fab:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* 按钮激活效果 */
        .social-fab:active {
            transform: translateY(-1px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }
        
        /* Facebook 按钮样式 */
        #facebookBtn {
            background: linear-gradient(135deg, #1877F2, #0D5DB9);
            color: white;
        }
        
        #facebookBtn:hover {
            background: linear-gradient(135deg, #0D5DB9, #1877F2);
        }
        
        /* Line 按钮样式 */
        #lineBtn {
            background: linear-gradient(135deg, #00B900, #00A000);
            color: white;
        }
        
        #lineBtn:hover {
            background: linear-gradient(135deg, #00A000, #00B900);
        }


        /* Facebook 按钮样式 */
        #orderingbtn {
            background: linear-gradient(135deg, #D9232E, #EA5557);
            color: white;    font-size: 18px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    cursor: pointer;
        }
        
        #orderingbtn:hover {
            background: linear-gradient(135deg, #FF6B6B, #E6212A);
        }
        
        
        /* 图标样式 */
        .social-icon {
            width: 28px;
            height: 28px;
            transition: transform 0.3s ease;
        }
        
        .social-fab:hover .social-icon {
            transform: scale(1.1);
        }
        
        /* 按钮标签（可选的文字标签） */
        .social-fab::after {
            content: attr(aria-label);
            position: absolute;
            right: 70px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .social-fab:hover::after {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .floating-buttons-container {
                right: 30px;
                bottom: 90px;
                gap: 10px;
            }
            
            .social-fab {
                width: 50px;
                height: 50px;
            }
            
            .social-icon {
                width: 24px;
                height: 24px;
            }
            
            /* 在移动设备上隐藏文字标签 */
            .social-fab::after {
                display: none;
            }
        }
        
        /* 小屏幕设备 */
        @media (max-width: 480px) {
            
        }
        
        /* 动画效果 - 入场动画 */
        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        /* 应用入场动画 */
        .social-fab {
            animation: floatIn 0.5s ease forwards;
            opacity: 0;
        }
        
        /* 为每个按钮设置不同的动画延迟 */
        #facebookBtn {
            animation-delay: 0.2s;
        }
        
        #lineBtn {
            animation-delay: 0.4s;
        }
        
        /* 可选的：添加更多按钮时的样式 */
        .social-fab.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }
        
        .social-fab.instagram {
            background: linear-gradient(135deg, #E4405F, #833AB4);
        }
        
        .social-fab.twitter {
            background: linear-gradient(135deg, #1DA1F2, #0D8BD9);
        }
        /* 立即预约按钮文字样式 */
.appointment-text {

}

/* 在小屏幕上调整字体大小 */
@media (max-width: 768px) {
    .appointment-text {
        font-size: 16px;
    }
}

.carpic{width:100%;}


.page-contact-map {
  width: 100%;
  padding-bottom: 29.62962963%;
  position: relative;
}
@media (max-width: 992px) {
  .page-contact-map {
    padding-bottom: 50%;
  }
}
.page-contact-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

 /* 方案1：基礎標籤連結 */
    .tags-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap:25px;
            margin-top: 30px;
            margin-bottom:50px;
        }
        
        .location-tag {
            display: inline-flex;
            align-items: center;
            background: #fff;
            border-radius: 50px;
            padding: 14px 28px;
            text-decoration: none;
            color: #2d3748;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .location-tag:hover {
            background: #edf2f7;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            border-color: #cbd5e0;
        }
        
        .location-tag i {
            margin-right: 10px;
            font-size: 18px;
        }