/**
 * 123ChaChe.com 统一样式表
 * 东莞市万诚搬运有限公司 - 叉车出租 吊车出租
 */

/* ===== 基础重置 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003366;
    --accent-color: #e74c3c;
    --secondary-color: #3498db;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

section {
    padding: 5rem 0;
}

/* ===== 顶部公告栏 ===== */
.company-notice {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    font-weight: 500;
}

.company-notice span {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== 头部 ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo h1 a:hover {
    color: var(--secondary-color);
}

.phone-cta {
    text-align: right;
}

.phone-cta h2 {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.phone-cta .ph-numb {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.phone-cta .ph-numb:hover {
    transform: scale(1.05);
}

/* ===== 导航栏 ===== */
.nav-bar {
    background: var(--primary-color);
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 80%;
}

.nav-menu li a.active {
    background: rgba(255,255,255,0.1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== 页面标题栏 ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.breadcrumb {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* ===== 回到顶部 ===== */
.to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.to-top.visible {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* ===== 页脚 ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer a {
    color: var(--secondary-color);
}

.footer a:hover {
    color: var(--white);
}

.footer-keywords {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.8;
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Lightbox 图片放大 ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.4);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
}

/* ===== 首页特定样式 ===== */

/* Banner 轮播 */
.banner {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.banner-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.banner-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.banner-btn:hover {
    background: var(--white);
}

.banner-btn.prev { left: 1rem; }
.banner-btn.next { right: 1rem; }

.banner-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* 关于我们 */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-card h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.about-card h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.about-card .read-more {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-card .read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-content .bt {
    color: var(--secondary-color);
    font-weight: 600;
}

/* 服务项目 */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.service-item {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

/* 服务现场 (Gallery) */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,51,102,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay span {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}

/* 最新行情 (News) */
.news {
    background: var(--bg-light);
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.news-item a {
    color: var(--text-dark);
    font-weight: 500;
}

.news-item a:hover {
    color: var(--secondary-color);
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 联系我们 */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-qr {
    text-align: center;
}

.contact-qr img {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.contact-phone .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-phone .number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== 关于我们页面特定样式 ===== */

.about-content-section {
    background: var(--white);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-intro-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-intro-text .highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.about-intro-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
}

.about-intro-image .icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.about-intro-image h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-intro-image p {
    opacity: 0.9;
}

/* 优势特点 */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 服务承诺 */
.commitment {
    background: var(--white);
}

.commitment-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.commitment-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.commitment-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* 服务区域 */
.service-areas {
    background: var(--bg-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.area-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.area-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.area-item h5 {
    color: var(--primary-color);
    font-size: 1rem;
}

/* CTA 行动号召 */
.cta {
    background: var(--white);
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-phones {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-phone .icon {
    font-size: 1.5rem;
}

/* ===== 服务项目页面特定样式 ===== */

.services-section {
    background: var(--white);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.service-card-header .icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.service-card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-card-body ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card-body li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-body li:last-child {
    border-bottom: none;
}

.service-card-body li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
}

/* 服务详情 */
.service-details {
    background: var(--bg-light);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.detail-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-card h4 .icon {
    font-size: 1.5rem;
}

.detail-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 服务流程 */
.process-section {
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--secondary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.contact-section {
    background: var(--white);
}

.contact-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-card p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
}

.contact-card .action-btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card .action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 详细地址 */
.address-section {
    background: var(--bg-light);
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.address-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.address-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.address-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.address-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.address-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.address-item .content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.address-item .content p {
    color: var(--text-light);
    line-height: 1.6;
}

.map-container {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* 营业时间 */
.hours-section {
    background: var(--white);
}

.hours-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hours-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hours-box .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hours-box p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
}

.hours-box .highlight {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

/* 服务区域标签 */
.areas-section {
    background: var(--bg-light);
}

.areas-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.area-tag {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.area-tag:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.area-tag:hover h5 {
    color: var(--white);
}

.area-tag h5 {
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* 在线咨询 */
.consult-section {
    background: var(--white);
}

.consult-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.consult-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.consult-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.wechat-qr {
    display: inline-block;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.wechat-qr img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.wechat-qr p {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.quick-phones {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.quick-phone .icon {
    font-size: 1.3rem;
}

/* ===== 最新行情页面特定样式 ===== */

.news-section {
    background: var(--white);
}

/* ===== 页码翻页样式 ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 普通页码 */
.pagination a {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
    box-shadow: var(--shadow);
}

.pagination a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* 当前页码 */
.pagination .current {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: 1px solid transparent;
    font-weight: 600;
    cursor: default;
}

/* 上一页/下一页 */
.pagination .prev,
.pagination .next {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
    box-shadow: var(--shadow);
}

.pagination .prev:hover,
.pagination .next:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* 禁用状态 */
.pagination .disabled {
    background: var(--bg-light);
    color: var(--text-light);
    border: 1px solid #e0e0e0;
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination .disabled:hover {
    background: var(--bg-light);
    color: var(--text-light);
    transform: none;
    box-shadow: var(--shadow);
}

/* 省略号 */
.pagination .ellipsis {
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: default;
    color: var(--text-light);
}

.pagination .ellipsis:hover {
    background: transparent;
    color: var(--text-light);
    transform: none;
    box-shadow: none;
}

/* 页码信息 */
.pagination-info {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* 移动端优化 */
@media (max-width: 480px) {
    .pagination {
        gap: 0.3rem;
    }

    .pagination a,
    .pagination span {
        min-width: 35px;
        height: 35px;
        padding: 0 0.5rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .pagination .prev-text,
    .pagination .next-text {
        display: none;
    }
}

.news-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.news-articles {
    max-width: 900px;
    margin: 0 auto;
}

.news-article {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.news-article:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.news-article h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.news-article h3 a:hover {
    color: var(--secondary-color);
}

.news-article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.news-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-article-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-article-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.news-article-more:hover {
    gap: 0.6rem;
}

/* 行情分类 */
.news-categories {
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.category-card:hover .category-icon,
.category-card:hover h4,
.category-card:hover p {
    color: var(--white);
}

.category-card .category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 价格趋势 */
.price-trend {
    background: var(--white);
}

.trend-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.trend-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.trend-table th,
.trend-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.trend-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.trend-table tr:hover {
    background: rgba(52, 152, 219, 0.1);
}

.trend-table .price {
    color: var(--accent-color);
    font-weight: 600;
}

/* 常见问题 */
.faq-section {
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== 响应式设计 ===== */

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .page-hero {
        padding: 3rem 0;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .header {
        position: relative;
    }

    .header-main {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 0;
    }

    .phone-cta {
        text-align: center;
    }

    .nav-bar {
        position: relative;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        background: rgba(1,1,1,0.1);
        border: none;
        padding: 0.5rem 0.8rem;
        border-radius: 5px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--primary-color);
        padding: 0.5rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        padding: 0.8rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu li a::after {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        padding: 2rem;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-qr img {
        max-width: 250px;
    }

    .banner-container {
        aspect-ratio: 4/3;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-image {
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .cta-phones {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -1.5rem;
        transform: translateX(50%);
    }

    .contact-grid-3 {
        grid-template-columns: 1fr;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }

    .hours-box {
        padding: 2rem 1.5rem;
    }

    .hours-box h3 {
        font-size: 1.4rem;
    }

    .quick-phones {
        flex-direction: column;
        align-items: center;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        padding: 0.8rem 1rem;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: auto;
        bottom: -40px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .phone-cta .ph-numb {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .banner-container {
        aspect-ratio: 16/10;
    }

    .banner-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }

    .banner-btn.prev { left: 0.5rem; }
    .banner-btn.next { right: 0.5rem; }

    .service-card-header {
        padding: 1.5rem;
    }

    .service-card-header .icon {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.4rem;
    }

    .commitment-box,
    .cta-box {
        padding: 2rem 1.5rem;
    }

    .commitment-box h3,
    .cta-box h3 {
        font-size: 1.4rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .address-info {
        padding: 1.5rem;
    }

    .trend-table th,
    .trend-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}
