@charset "utf-8";
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

@font-face {
  font-family: 'Microsoft YaHei';
  src: url('https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/fonts/MicrosoftYaHei.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Microsoft YaHei';
  src: url('https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/fonts/MicrosoftYaHeiBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body,html,div,p,span,a,h1,h2,h3,h4,h5,h6,li,ul,ol{
  font-family: "Microsoft YaHei", sans-serif;
}
       body {
            font-family: 'Microsoft YaHei', sans-serif;
            background-color: #FCF9F5;
            color: #1E1A17;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        :root {
            --gold: #B68B40;
            --gold-light: #D9B48B;
            --gold-dark: #8E6A3C;
            --dark-bg: #1A1715;
            --dark-soft: #2A2623;
            --cream: #FCF9F5;
            --gray-light: #F1EFEC;
            --shadow-sm: 0 10px 30px -12px rgba(0,0,0,0.08);
            --shadow-md: 0 20px 35px -15px rgba(0,0,0,0.12);
            --transition: all 0.3s ease;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* 导航栏 */
        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            background: rgba(255, 253, 250, 0.96);
            backdrop-filter: blur(12px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.02);
            border-bottom: 1px solid rgba(182, 139, 64, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* LOGO 区域 + 精美图标 */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            font-size: 2rem;
            color: var(--gold);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }
        .logo h1 {
            font-family: 'Microsoft YaHei', serif;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--dark-bg);
            margin: 0;
        }
        .logo span {
            color: var(--gold);
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2C2825;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            color: var(--gold);
        }
        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(182, 139, 64, 0.12);
            padding: 6px 16px;
            border-radius: 40px;
            margin-left: 12px;
        }
        .nav-phone i {
            color: var(--gold);
            font-size: 0.9rem;
        }
        .nav-phone a {
            font-weight: 600;
            color: #1E1A17;
            letter-spacing: 0;
        }
        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: #1E1A17;
        }

        /* 按钮 */
        .btn-gold {
            background: var(--gold);
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            color: white;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border-radius: 40px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(182,139,64,0.2);
            display: inline-block;
            text-decoration: none;
        }
        .btn-gold:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--gold);
            color: var(--gold);
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            text-decoration: none;
        }
        .btn-outline:hover {
            background: var(--gold);
            color: white;
        }
        .btn-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid var(--gold-light);
            padding-bottom: 4px;
            transition: 0.2s;
        }
        .btn-more i {
            font-size: 0.8rem;
        }
        .btn-more:hover {
            color: var(--gold-dark);
            gap: 12px;
        }

        /* Hero 主视觉 */
        .hero {
            background: linear-gradient(105deg, #F5EFE7 0%, #EDE6DD 100%);
            padding: 70px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .hero-content {
            flex: 1.2;
            padding-right: 40px;
        }
        .hero-content .tag {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--gold);
            font-weight: 500;
        }
        .hero-content h1 {
            font-size: 2.6rem;
            font-family: "Microsoft YaHei", sans-serif;
            font-weight: 600;
            margin: 20px 0 20px;
            line-height: 1.2;
            color: #1E1A17;
        }
        .hero-content p {
            font-size: 1.05rem;
            color: #4F4A45;
            margin-bottom: 32px;
            max-width: 90%;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }
        .stat h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold-dark);
        }
        .hero-image {
            flex: 0.9;
            text-align: center;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        .hero-image:hover img {
            transform: scale(1.02);
        }

        /* 通用section样式 */
        section {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-title h2 {
            font-size: 2.3rem;
            font-family: 'Microsoft YaHei', serif;
            font-weight: 600;
            letter-spacing: -0.5px;
            color: #1E1A17;
            position: relative;
            display: inline-block;
        }
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 2px;
            background: var(--gold);
        }
        .title-desc {
            text-align: center;
            color: #6A625C;
            margin-top: 20px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 服务范围卡片 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 30px;
        }
        .service-card {
            background: white;
            padding: 32px 20px;
            text-align: center;
            border-radius: 28px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid #F1E8DF;
        }
        .service-card i {
            font-size: 2.6rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .service-card h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--gold-light);
        }

        /* 回收特色 */
        .feature-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }
        .feature-item {
            flex: 1;
            min-width: 220px;
            text-align: center;
            background: white;
            border-radius: 40px;
            padding: 30px 20px;
            transition: 0.2s;
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: #F6EFE7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .feature-icon i {
            font-size: 2.4rem;
            color: var(--gold);
        }

        /* 回收案例 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .case-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .case-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .case-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }
        .case-card:hover img {
            transform: scale(1.04);
        }
        .case-info {
            padding: 22px;
        }
        .case-info h4 {
            font-size: 1.25rem;
            font-weight: 600;
        }
        .case-info p {
            color: #6F6A66;
            margin-top: 8px;
        }

        /* 双列动态 */
        .news-events-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        .news-list, .industry-list {
            background: white;
            border-radius: 32px;
            padding: 28px 30px;
            box-shadow: var(--shadow-sm);
            transition: 0.2s;
        }
        .section-header-link {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .section-header-link h3 {
            font-size: 1.6rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .news-item, .industry-item {
            border-bottom: 1px solid #EFE5DC;
            padding: 18px 0;
        }
        .news-date, .industry-date {
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 1px;
        }
        .news-title a, .industry-title a {
            font-weight: 700;
            font-size: 1.05rem;
            margin: 8px 0 6px;
            text-decoration: none;
            color: #1E1A17;
            transition: color 0.2s;
            display: inline-block;
        }
        .news-title a:hover, .industry-title a:hover {
            color: var(--gold);
        }
        .news-desc {
            color: #5F5A56;
            font-size: 0.9rem;
        }

        /* 用户评价 */
        .testimonial-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
        }
        .testimonial-card {
            background: white;
            padding: 32px 28px;
            border-radius: 32px;
            flex: 1;
            min-width: 280px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #F3EAE2;
        }
        .quote-icon {
            color: var(--gold-light);
            font-size: 2rem;
            margin-bottom: 16px;
        }
        .testimonial-text {
            font-style: italic;
            line-height: 1.5;
            color: #2C2825;
            margin-bottom: 20px;
        }
        .client-name {
            font-weight: 700;
            margin-top: 12px;
        }
        .client-rate {
            color: var(--gold);
            letter-spacing: 2px;
        }

        /* 关于我们 - 宽度调整与其他模块一致，内容呈现更大气 */
        .about-wrapper {
         
            background: #FFF;
            border-radius: 48px;
            padding: 48px 56px;
            box-shadow: var(--shadow-sm);
            text-align: center;
        }
        .about-wrapper p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 32px;
        }
        .about-features {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-top: 20px;
        }
        .about-features div {
            text-align: center;
        }
        .about-features i {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 10px;
            display: inline-block;
        }

        /* 联系我们 */
        .contact-wrapper {
            background: #2A2623;
            border-radius: 48px;
            padding: 56px 48px;
            color: white;
            display: flex;
            flex-wrap: wrap;
            gap: 56px;
            justify-content: space-between;
        }
        .contact-left {
            flex: 1;
        }
        .contact-left h3 {
            font-size: 1.9rem;
            font-family: 'Microsoft YaHei', serif;
            margin-bottom: 20px;
        }
        .contact-details {
            margin-top: 28px;
        }
        .contact-details p {
            margin: 16px 0;
            display: flex;
            gap: 14px;
            align-items: center;
        }
        .contact-right {
            flex: 1;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border-radius: 60px;
            border: none;
            background: #3C3733;
            color: white;
            font-family: inherit;
        }
        .form-group textarea {
            border-radius: 28px;
            resize: vertical;
        }
        ::placeholder {
            color: #B7ADA6;
        }
		
		
		/* Hero 区 */
        .page-hero {
            background: linear-gradient(125deg, #EAE2D8 0%, #DDD2C5 100%);
            padding: 70px 0 60px;
            text-align: center;
            position: relative;
            isolation: isolate;
        }
        .page-hero:before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="%238E6A3C" d="M20,30 L40,10 L60,30 L40,50 Z M60,30 L80,10 L100,30 L80,50 Z"/></svg>');
            background-repeat: repeat;
            pointer-events: none;
        }
        .page-hero h1 {
            font-size: 3.2rem;
            font-family: 'Microsoft YaHei', serif;
            font-weight: 600;
            color: #1F1B17;
            letter-spacing: -0.02em;
        }
        .page-hero p {
            color: #5A4F46;
            margin-top: 16px;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
		
		
		
		 /* 文章列表 - 新专业布局 (杂志风格) */
        .articles-grid {
            display: flex;
            flex-direction: column;
            gap: 48px;
            margin: 70px 0 80px;
        }
        /* 横排大卡片样式，更具奢华感 */
        .article-card {
            display: flex;
            align-items: stretch;
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid #F1EAE3;
        }
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--gold-light);
        }
        .article-img {
            flex: 0 0 280px;
            overflow: hidden;
            position: relative;
        }
        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .article-card:hover .article-img img {
            transform: scale(1.05);
        }
        .article-content {
            flex: 1;
            padding: 32px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .article-meta {
            display: flex;
            gap: 24px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #8B7A6B;
            margin-bottom: 18px;
            letter-spacing: 0.3px;
        }
        .article-meta i {
            color: var(--gold);
            margin-right: 6px;
            font-size: 0.8rem;
        }
        .article-title {
            font-size: 1.65rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 18px;
            font-family: 'Microsoft YaHei', serif;
        }
        .article-title a {
            text-decoration: none;
            color: #1E1A17;
            transition: color 0.2s;
        }
        .article-title a:hover {
            color: var(--gold);
        }
        .article-excerpt {
            color: #5F5852;
            line-height: 1.6;
            margin-bottom: 28px;
            font-size: 0.96rem;
        }
        .read-more {
            font-weight: 600;
            color: var(--gold);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.25s;
            letter-spacing: 0.3px;
            font-size: 0.9rem;
            border-bottom: 1px solid transparent;
            width: fit-content;
        }
        .read-more i {
            transition: transform 0.2s;
        }
        .read-more:hover {
            gap: 14px;
            border-bottom-color: var(--gold);
        }
        .read-more:hover i {
            transform: translateX(5px);
        }

        /* 分页区域 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0 90px;
        }
        .page-link {
            background: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #2C2825;
            text-decoration: none;
            transition: 0.2s;
            box-shadow: var(--shadow-sm);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #EFE5DD;
        }
        .page-link.active, .page-link:hover {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
        }
		
		
		 /* 导航下的背景区 - 奢华图片区 (已修复) */
        .hero-under-nav {
            background: linear-gradient(115deg, rgba(30,26,23,0.75) 0%, rgba(41,36,31,0.68) 100%), url('https://images.pexels.com/photos/132132/pexels-photo-132132.jpeg?auto=compress&cs=tinysrgb&w=1600');
            background-size: cover;
            background-position: center 30%;
            padding: 42px 0 35px;
            text-align: center;
            position: relative;
            border-bottom: 1px solid rgba(182, 139, 64, 0.4);
        }
        .hero-under-nav:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #FFF8F0;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .breadcrumb a {
            color: #F5E5D1;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: var(--gold-light);
        }
        .breadcrumb span {
            color: var(--gold-light);
            font-weight: 500;
        }
        .hero-title {
            font-size: 2.2rem;
            font-family: 'Cormorant Garamond', serif;
            color: white;
            margin-top: 18px;
            letter-spacing: -0.5px;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .hero-sub {
            color: rgba(255,245,230,0.85);
            font-size: 0.9rem;
            margin-top: 10px;
        }
		
	
		
		

        /* 底部浮动模块 */
        .mobile-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 23, 21, 0.96);
            backdrop-filter: blur(16px);
            box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(182, 139, 64, 0.5);
            z-index: 1100;
            padding: 10px 20px;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .mobile-bottom-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #2A2623;
            border-radius: 60px;
            padding: 12px 0;
            font-weight: 600;
            font-size: 1rem;
            color: #FCF9F5;
            text-decoration: none;
            transition: all 0.25s ease;
            border: 1px solid rgba(182, 139, 64, 0.3);
            animation: softGlow 2.2s infinite ease-out;
        }
        .mobile-bottom-btn i {
            font-size: 1.25rem;
            color: var(--gold);
        }
        @keyframes softGlow {
            0% { box-shadow: 0 0 0 0 rgba(182, 139, 64, 0.2); border-color: rgba(182, 139, 64, 0.4); }
            50% { box-shadow: 0 0 0 6px rgba(182, 139, 64, 0.12), 0 0 12px 2px rgba(217, 180, 139, 0.25); border-color: rgba(182, 139, 64, 0.9); }
            100% { box-shadow: 0 0 0 0 rgba(182, 139, 64, 0); border-color: rgba(182, 139, 64, 0.4); }
        }
        .mobile-bottom-btn:active { transform: scale(0.96); }

        footer {
            background: #13100E;
            color: #CBC3BB;
            padding: 48px 0 28px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #CBC3BB;
            text-decoration: none;
        }
		
		
		.linkss {
            justify-content: center;
            margin-bottom: 30px;
        }
        .linkss a {
            color: #CBC3BB;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .mobile-bottom-bar { display: flex; }
            body { padding-bottom: 75px; }
            .menu-toggle { display: block; }
            .nav-links {
                position: fixed;
                top: 72px;
                left: -100%;
                flex-direction: column;
                background: rgba(255, 252, 248, 0.98);
                backdrop-filter: blur(12px);
                width: 70%;
                height: 100vh;
                padding: 40px 32px;
                gap: 28px;
                transition: 0.3s;
                box-shadow: 5px 0 30px rgba(0,0,0,0.05);
                z-index: 999;
            }
            .nav-links.active { left: 0; }
            .container { padding: 0 20px; }
            .hero .container { flex-direction: column; text-align: center; }
            .hero-content { padding-right: 0; margin-bottom: 40px; }
            .hero-stats { justify-content: center; }
            .hero-content p { max-width: 100%; }
            .section-title h2 { font-size: 1.9rem; }
            .news-events-grid { grid-template-columns: 1fr; }
            .contact-wrapper { padding: 32px 24px; }
            .about-wrapper { padding: 32px 24px; }
            .about-features { flex-wrap: wrap; gap: 24px; }
        }
        @media (max-width: 1024px) {
            .hero-content h1 { font-size: 2.7rem; }
            .container { padding: 0 24px; }
        }
		
		
/*分页*/
.pagebar {padding:20px 0;text-align:center;margin:20px 0;}
.pagebar span,.pagebar a {display:inline-block;width:45px;height:35px;line-height:35px;text-align:center;margin:2px;font-size: 14px;background: #fff;box-shadow: 0 4px 8px rgba(85, 85, 85, 0.1);}
.pagebar a {color:#343a40; text-decoration:none;}
.pagebar span,.pagebar a:hover {background-color:#b68b40;color:#fff;box-shadow: 0 4px 8px rgba(85, 85, 85, 0.3);}
		
/*-------------------------
电脑端模块隐藏，手机端显示
-------------------------*/
.wppc{
    display: none;
}
@media (max-width: 767px) {
  .wppc{
    display: block !important;
  }
}
/*-------------------------------
电脑端模块隐藏，手机端显示 结束
-------------------------------*/


/*-------------------------------
电脑端模块显示，手机端隐藏 开始
-------------------------------*/
@media screen and (max-width: 767px) { /*当屏幕尺寸小于600px时，应用下面的CSS样式*/
  .ying {
  display:none;
  }
}
/*-------------------------------
电脑端模块显示，手机端隐藏 结束
-------------------------------*/