/*
Theme Name: WebBuild Pro
Theme URI: https://webbuild.cn
Author: WebBuild Team
Author URI: https://webbuild.cn
Description: Website building company theme with product sales, Alipay & WeChat payment support. Elementor ready.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webbuild-pro
Tags: elementor, business, e-commerce, portfolio, custom-post-type, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
    --wb-bg: #faf8f5;
    --wb-bg-alt: #f0ebe4;
    --wb-text: #1a1a1a;
    --wb-text-light: #666;
    --wb-text-muted: #999;
    --wb-primary: #1a2d4d;
    --wb-accent: #d4a574;
    --wb-accent-light: #e8c9a0;
    --wb-white: #fff;
    --wb-border: #e8e4dd;
    --wb-radius: 20px;
    --wb-radius-sm: 12px;
    --wb-shadow: 0 4px 20px rgba(0,0,0,0.06);
    --wb-shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --wb-font: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
    --wb-transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    --wb-container: 1280px;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    top: 32px;
    left: 8px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    margin: 0;
    clip: auto;
    white-space: normal;
    background-color: var(--wb-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    z-index: 999999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--wb-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--wb-text);
    background-color: var(--wb-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--wb-primary);
    text-decoration: none;
    transition: var(--wb-transition);
}

a:hover {
    color: var(--wb-accent);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--wb-text);
}

.wb-container {
    max-width: var(--wb-container);
    margin: 0 auto;
    padding: 0 24px;
}

.wb-section {
    padding: 100px 0;
}

.wb-section-alt {
    background-color: var(--wb-bg-alt);
}

.wb-text-center {
    text-align: center;
}

.wb-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.wb-section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.wb-section-subtitle {
    font-size: 18px;
    color: var(--wb-text-light);
    max-width: 640px;
    margin: 0 auto;
}

.wb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--wb-transition);
    text-decoration: none;
    line-height: 1.5;
    font-family: var(--wb-font);
}

.wb-btn-primary {
    background-color: var(--wb-primary);
    color: var(--wb-white);
    border-color: var(--wb-primary);
}

.wb-btn-primary:hover {
    background-color: #24395f;
    border-color: #24395f;
    color: var(--wb-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26,45,77,0.3);
}

.wb-btn-outline {
    background-color: transparent;
    color: var(--wb-primary);
    border-color: var(--wb-primary);
}

.wb-btn-outline:hover {
    background-color: var(--wb-primary);
    color: var(--wb-white);
    transform: translateY(-2px);
}

.wb-btn-white {
    background-color: var(--wb-white);
    color: var(--wb-primary);
    border-color: var(--wb-white);
}

.wb-btn-white:hover {
    background-color: var(--wb-accent);
    border-color: var(--wb-accent);
    color: var(--wb-white);
    transform: translateY(-2px);
}

.wb-btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.wb-btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.wb-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--wb-transition);
}

.wb-site-header.scrolled {
    background-color: rgba(250,248,245,0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.wb-site-header .wb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wb-site-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--wb-white);
    font-family: 'Ma Shan Zheng', 'STKaiti', 'KaiTi', serif;
    letter-spacing: 2px;
    transition: var(--wb-transition);
    display: flex;
    align-items: center;
}

.wb-site-logo a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.wb-site-logo img {
    max-height: 44px;
    width: auto;
    display: block;
}

.wb-site-header.scrolled .wb-site-logo {
    color: var(--wb-primary);
}

.wb-main-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.wb-main-nav a {
    color: var(--wb-white);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: var(--wb-transition);
}

.wb-site-header.scrolled .wb-main-nav a {
    color: var(--wb-text);
}

.wb-main-nav a:hover {
    color: var(--wb-accent);
}

.wb-main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--wb-accent);
    transition: var(--wb-transition);
}

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

.wb-header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wb-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3px;
    transition: var(--wb-transition);
}

.wb-site-header.scrolled .wb-lang-switcher {
    background: var(--wb-bg-alt);
}

.wb-lang-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: var(--wb-white);
    opacity: 0.8;
    transition: var(--wb-transition);
}

.wb-site-header.scrolled .wb-lang-item {
    color: var(--wb-text);
}

.wb-lang-item:hover {
    opacity: 1;
}

.wb-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wb-white);
    font-size: 15px;
    font-weight: 500;
}

.wb-site-header.scrolled .wb-header-phone {
    color: var(--wb-text);
}

.wb-header-phone i {
    color: var(--wb-accent);
}

.wb-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.wb-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.wb-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.wb-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.wb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* 幻灯片1 - 深蓝科技商务风 */
.wb-hero-bg-1 {
    background:
        radial-gradient(circle at 20% 50%, rgba(212,165,116,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(36,57,95,0.4) 0%, transparent 50%),
        linear-gradient(135deg, #0a1628 0%, #13284a 40%, #1a2d4d 100%);
}

.wb-hero-bg-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.wb-hero-bg-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10,22,40,0.95), transparent);
}

/* 幻灯片2 - 全球出海深青风 */
.wb-hero-bg-2 {
    background:
        radial-gradient(circle at 70% 30%, rgba(56,189,248,0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(212,165,116,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #042f2e 0%, #0c4a6e 40%, #0a1628 100%);
}

.wb-hero-bg-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(56,189,248,0.08) 2px, transparent 3px),
        radial-gradient(circle at 60% 20%, rgba(212,165,116,0.06) 2px, transparent 3px),
        radial-gradient(circle at 80% 60%, rgba(255,255,255,0.05) 1px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(56,189,248,0.06) 2px, transparent 3px);
    background-size: 300px 300px, 250px 250px, 200px 200px, 280px 280px;
}

.wb-hero-bg-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(4,47,46,0.95), transparent);
}

/* 幻灯片3 - 金紫专业定制风 */
.wb-hero-bg-3 {
    background:
        radial-gradient(circle at 30% 40%, rgba(212,165,116,0.18) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(124,58,237,0.12) 0%, transparent 50%),
        linear-gradient(135deg, #1a1033 0%, #2d1b69 40%, #1a2d4d 100%);
}

.wb-hero-bg-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%);
    background-size: 40px 40px;
}

.wb-hero-bg-3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(26,16,51,0.95), transparent);
}

.wb-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.wb-hero-content {
    max-width: 720px;
    padding-top: 80px;
}

.wb-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(212,165,116,0.2);
    border: 1px solid rgba(212,165,116,0.4);
    border-radius: 50px;
    color: var(--wb-accent-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.wb-hero-badge i {
    margin-right: 6px;
}

.wb-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--wb-white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.wb-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.wb-hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wb-hero-buttons .wb-btn-outline {
    color: var(--wb-white);
    border-color: rgba(255,255,255,0.4);
}

.wb-hero-buttons .wb-btn-outline:hover {
    background-color: var(--wb-white);
    color: var(--wb-primary);
    border-color: var(--wb-white);
}

.wb-hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.wb-hero-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--wb-transition);
    padding: 0;
}

.wb-hero-slider-dots button.active {
    width: 32px;
    border-radius: 5px;
    background-color: var(--wb-accent);
}

.wb-hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    writing-mode: vertical-rl;
    letter-spacing: 2px;
}

.wb-hero-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

.wb-business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.wb-business-card {
    background-color: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 48px 40px;
    box-shadow: var(--wb-shadow);
    transition: var(--wb-transition);
    position: relative;
    overflow: hidden;
}

.wb-business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--wb-primary), var(--wb-accent));
    transition: var(--wb-transition);
    border-radius: 2px;
}

.wb-business-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wb-shadow-lg);
}

.wb-business-card:hover::before {
    height: 100%;
}

.wb-business-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.wb-business-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--wb-white);
    flex-shrink: 0;
}

.wb-business-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 4px;
}

.wb-business-card > p {
    color: var(--wb-text-light);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.wb-business-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wb-business-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--wb-text-light);
}

.wb-business-list i {
    color: var(--wb-accent);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.wb-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wb-product-card {
    background-color: var(--wb-white);
    border-radius: var(--wb-radius);
    overflow: hidden;
    box-shadow: var(--wb-shadow);
    transition: var(--wb-transition);
}

.wb-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wb-shadow-lg);
}

.wb-product-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--wb-bg-alt);
}

.wb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--wb-transition);
}

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

.wb-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--wb-accent), var(--wb-accent-light));
    color: var(--wb-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

.wb-product-body {
    padding: 28px 24px;
}

.wb-product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wb-product-title a {
    color: var(--wb-text);
}

.wb-product-title a:hover {
    color: var(--wb-primary);
}

.wb-product-desc {
    font-size: 14px;
    color: var(--wb-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wb-product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.wb-product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--wb-text-light);
}

.wb-product-features i {
    color: var(--wb-accent);
    font-size: 14px;
}

.wb-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.wb-product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.wb-product-price-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--wb-primary);
}

.wb-product-price-current::before {
    content: '¥';
    font-size: 18px;
    font-weight: 500;
    margin-right: 2px;
}

.wb-product-actions {
    display: flex;
    gap: 10px;
}

.wb-product-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid var(--wb-primary);
    background-color: var(--wb-primary);
    color: var(--wb-white);
    cursor: pointer;
    transition: var(--wb-transition);
    font-family: var(--wb-font);
}

.wb-product-buy:hover {
    background-color: #24395f;
    border-color: #24395f;
    transform: translateY(-2px);
}

.wb-cases-section {
    padding: 100px 0;
}

.wb-cases-header {
    text-align: center;
    margin-bottom: 80px;
}

.wb-cases-header .wb-section-title {
    font-size: 48px;
}

.wb-cases-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.wb-case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wb-case-item:nth-child(even) {
    direction: rtl;
}

.wb-case-item:nth-child(even) > * {
    direction: ltr;
}

.wb-case-image {
    position: relative;
    border-radius: var(--wb-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--wb-shadow-lg);
}

.wb-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--wb-transition);
}

.wb-case-item:hover .wb-case-image img {
    transform: scale(1.05);
}

.wb-case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px 32px;
    background: linear-gradient(to top, rgba(26,45,77,0.95) 0%, rgba(26,45,77,0.6) 50%, transparent 100%);
    color: var(--wb-white);
}

.wb-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.wb-case-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-size: 12px;
    color: var(--wb-white);
    backdrop-filter: blur(10px);
}

.wb-case-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--wb-white);
    margin-bottom: 8px;
}

.wb-case-title a {
    color: var(--wb-white);
}

.wb-case-title a:hover {
    color: var(--wb-accent-light);
}

.wb-case-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.wb-case-info {
    padding: 40px 0;
}

.wb-case-info-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--wb-bg-alt);
    color: var(--wb-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.wb-case-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.wb-case-info p {
    font-size: 16px;
    color: var(--wb-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.wb-case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--wb-primary);
    transition: var(--wb-transition);
}

.wb-case-link:hover {
    color: var(--wb-accent);
    gap: 12px;
}

.wb-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wb-about-content p {
    margin-bottom: 18px;
}

.wb-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.wb-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--wb-bg-alt);
    border-radius: var(--wb-radius);
    border: 1px solid var(--wb-border);
    transition: var(--wb-transition);
}

.wb-about-feature:hover {
    border-color: var(--wb-accent);
    transform: translateY(-2px);
    box-shadow: var(--wb-shadow);
}

.wb-about-feature-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
    color: var(--wb-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.wb-about-feature h4 {
    font-size: 15px;
    margin: 0 0 4px;
    color: var(--wb-text);
}

.wb-about-feature p {
    font-size: 13px;
    margin: 0;
    color: var(--wb-text-light);
    line-height: 1.5;
}

.wb-about-image img {
    width: 100%;
    border-radius: var(--wb-radius-lg);
    box-shadow: var(--wb-shadow-lg);
}

@media (max-width: 900px) {
    .wb-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wb-about-features {
        grid-template-columns: 1fr;
    }
}

.wb-stats {
    background: linear-gradient(135deg, var(--wb-primary) 0%, #24395f 100%);
    padding: 80px 0;
}

.wb-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.wb-stat-item {
    text-align: center;
    color: var(--wb-white);
}

.wb-stat-icon {
    font-size: 40px;
    color: var(--wb-accent);
    margin-bottom: 20px;
}

.wb-stat-number {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--wb-white);
}

.wb-stat-number span {
    font-size: 28px;
    font-weight: 500;
    color: var(--wb-accent);
    margin-left: 4px;
}

.wb-stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.wb-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--wb-primary) 0%, #1e3a5f 50%, var(--wb-primary) 100%);
    position: relative;
    overflow: hidden;
}

.wb-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,165,116,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.wb-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.wb-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wb-cta-inner h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--wb-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.wb-cta-inner p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.wb-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wb-site-footer {
    background-color: #111111;
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.wb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.wb-footer-about .wb-site-logo {
    color: var(--wb-white);
    margin-bottom: 20px;
    display: inline-block;
}

.wb-footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.wb-footer-social {
    display: flex;
    gap: 12px;
}

.wb-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: var(--wb-transition);
}

.wb-footer-social a:hover {
    background-color: var(--wb-accent);
    color: var(--wb-white);
    transform: translateY(-3px);
}

.wb-footer-col h4 {
    color: var(--wb-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.wb-footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wb-footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--wb-transition);
}

.wb-footer-links a:hover {
    color: var(--wb-accent);
    padding-left: 6px;
}

.wb-footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.wb-footer-contact i {
    color: var(--wb-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.wb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.wb-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--wb-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: none;
}

.wb-bottom-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.wb-bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    color: var(--wb-text);
    font-size: 12px;
    transition: var(--wb-transition);
    border-right: 1px solid var(--wb-border);
}

.wb-bottom-bar-item:last-child {
    border-right: none;
}

.wb-bottom-bar-item i {
    font-size: 22px;
    color: var(--wb-primary);
}

.wb-bottom-bar-item:hover {
    background-color: var(--wb-bg);
    color: var(--wb-primary);
}

.wb-bottom-bar-item.wb-bottom-bar-primary {
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    color: var(--wb-white);
}

.wb-bottom-bar-item.wb-bottom-bar-primary i {
    color: var(--wb-accent);
}

.wb-bottom-bar-item.wb-bottom-bar-center {
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    color: var(--wb-white);
}

.wb-bottom-bar-item.wb-bottom-bar-center i {
    color: var(--wb-accent);
}

.wb-bottom-bar-item.wb-bottom-bar-center:hover {
    background: linear-gradient(135deg, #24395f, var(--wb-primary));
    color: var(--wb-white);
}

.wb-site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.wb-main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wb-main-nav .wb-main-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.wb-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--wb-white);
    cursor: pointer;
    padding: 8px;
    transition: var(--wb-transition);
}

.wb-menu-toggle-mobile {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--wb-white);
    cursor: pointer;
    padding: 8px;
    transition: var(--wb-transition);
}

.wb-site-header.scrolled .wb-menu-toggle,
.wb-site-header.scrolled .wb-menu-toggle-mobile {
    color: var(--wb-text);
}

.wb-scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--wb-primary);
    color: var(--wb-white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--wb-transition);
    z-index: 998;
    box-shadow: 0 4px 20px rgba(26,45,77,0.3);
}

.wb-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wb-scroll-top:hover {
    background-color: #24395f;
    transform: translateY(-3px);
}

.wb-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.wb-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.wb-counter-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--wb-white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.wb-footer {
    background-color: #111111;
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}

.wb-footer .wb-site-logo {
    color: var(--wb-white);
    margin-bottom: 20px;
    display: inline-block;
}

.wb-footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.wb-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.wb-footer-contact li i {
    color: var(--wb-accent);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.wb-footer-copyright {
    margin-bottom: 8px;
}

.wb-footer-icp a:hover {
    color: var(--wb-accent);
}

.wb-hero-dot {
    display: none;
}

.wb-site-main {
    overflow: hidden;
}

@media (max-width: 992px) {
    .wb-site-header {
        background-color: transparent;
    }

    .wb-site-header.scrolled {
        background-color: rgba(250,248,245,0.98) !important;
    }

    .wb-site-header .wb-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .wb-site-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 12px;
        gap: 10px;
        min-height: 56px;
    }

    .wb-menu-toggle-mobile {
        display: block;
        flex: 0 0 auto;
        order: 1;
    }

    .wb-site-logo {
        position: static;
        transform: none;
        flex: 1 1 auto;
        text-align: center;
        order: 2;
        max-width: none;
        font-size: 22px;
    }

    .wb-site-logo a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
		margin-left: 46px;
    }

    .wb-site-logo img {
        max-height: 36px;
    }

    .wb-site-logo-text {
        display: none;
    }

    .wb-site-header:not(.scrolled) .wb-site-logo {
        color: var(--wb-white);
    }

    .wb-header-cta {
        flex: 0 0 auto;
        order: 3;
    }

    .wb-header-cta .wb-menu-toggle {
        display: none !important;
    }

    .wb-header-cta .wb-btn {
        display: inline-flex;
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    .wb-header-cta .wb-btn i {
        display: none;
    }

    .wb-section {
        padding: 70px 0;
    }

    .wb-section-title {
        font-size: 32px;
    }

    .wb-hero-title {
        font-size: 42px;
    }

    .wb-hero-desc {
        font-size: 16px;
    }

    .wb-business-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wb-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .wb-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .wb-case-item,
    .wb-case-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .wb-case-info {
        padding: 0;
    }

    .wb-case-info h3 {
        font-size: 26px;
    }

    .wb-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .wb-main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--wb-white);
        box-shadow: -4px 0 30px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        display: block;
        z-index: 1001;
        overflow-y: auto;
    }

    .wb-main-nav.active {
        right: 0;
    }

    .wb-main-nav .wb-main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .wb-main-nav .wb-main-menu li {
        width: 100%;
        border-bottom: 1px solid var(--wb-border);
    }

    .wb-main-nav .wb-main-menu a {
        display: block;
        padding: 16px 0;
        color: var(--wb-text);
        font-size: 16px;
    }

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

    .wb-menu-toggle {
        display: block;
        z-index: 1002;
    }

    .wb-header-cta .wb-menu-toggle {
        display: none !important;
    }

    .wb-header-cta .wb-btn {
        display: inline-flex;
    }

    body.wb-nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 1000;
    }
}

@media (max-width: 768px) {
    .wb-section {
        padding: 60px 0;
    }

    .wb-section-title {
        font-size: 28px;
    }

    .wb-section-subtitle {
        font-size: 16px;
    }

    .wb-hero {
        min-height: auto;
    }

    .wb-hero-slider {
        height: auto;
        min-height: 500px;
        padding: 120px 0 80px;
    }

    .wb-hero-title {
        font-size: 32px;
    }

    .wb-hero-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .wb-hero-buttons {
        gap: 12px;
    }

    .wb-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .wb-btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    .wb-business-card {
        padding: 32px 24px;
    }

    .wb-business-card h3 {
        font-size: 20px;
    }

    .wb-business-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .wb-products-grid {
        grid-template-columns: 1fr;
    }

    .wb-stats-grid {
        gap: 30px;
    }

    .wb-stat-number {
        font-size: 38px;
    }

    .wb-stat-number span {
        font-size: 20px;
    }

    .wb-stat-label {
        font-size: 14px;
    }

    .wb-cta-inner h2 {
        font-size: 30px;
    }

    .wb-cta-inner p {
        font-size: 16px;
    }

    .wb-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wb-bottom-bar {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }

    .wb-header-phone {
        display: none;
    }

    .wb-header-cta .wb-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .wb-header-cta .wb-btn i {
        display: none;
    }
}

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

    .wb-section {
        padding: 50px 0;
    }

    .wb-section-title {
        font-size: 24px;
    }

    .wb-section-header {
        margin-bottom: 40px;
    }

    .wb-hero-slider {
        padding: 100px 0 60px;
        min-height: 450px;
    }

    .wb-hero-title {
        font-size: 26px;
    }

    .wb-hero-desc {
        font-size: 14px;
    }

    .wb-hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .wb-business-card {
        padding: 28px 20px;
    }

    .wb-business-card-header {
        gap: 14px;
        margin-bottom: 20px;
    }

    .wb-business-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 20px;
    }

    .wb-business-card h3 {
        font-size: 18px;
    }

    .wb-product-body {
        padding: 20px 16px;
    }

    .wb-product-title {
        font-size: 18px;
    }

    .wb-product-price-current {
        font-size: 24px;
    }

    .wb-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .wb-stat-number {
        font-size: 32px;
    }

    .wb-case-image {
        aspect-ratio: 16/10;
    }

    .wb-case-overlay {
        padding: 24px 20px 20px;
    }

    .wb-case-title {
        font-size: 18px;
    }

    .wb-case-info h3 {
        font-size: 22px;
    }

    .wb-cta-inner h2 {
        font-size: 24px;
    }

    .wb-cta-inner p {
        font-size: 14px;
    }

    .wb-site-footer {
        padding: 50px 0 0;
    }

    .wb-footer-grid {
        margin-bottom: 40px;
    }
}

/* ============================================
   外贸通 WMT 区块样式
   ============================================ */

/* ---- 首页外贸通功能展示区 ---- */
.wb-wmt-features {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(160deg, #0a1628 0%, #102038 40%, #0d1a2e 100%);
    overflow: hidden;
}

.wb-wmt-features-glow {
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212,165,116,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wb-wmt-features::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,45,77,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* 区块标题 */
.wb-wmt-features-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.wb-wmt-eyebrow {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212,165,116,0.15);
    border: 1px solid rgba(212,165,116,0.3);
    border-radius: 50px;
    color: var(--wb-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.wb-wmt-features-title {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.wb-wmt-features-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.55);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.wb-wmt-eyebrow-dark {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(26,45,77,0.08);
    border: 1px solid rgba(26,45,77,0.15);
    border-radius: 50px;
    color: var(--wb-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* 功能列表 */
.wb-wmt-features-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    position: relative;
    z-index: 2;
}

/* 功能项 */
.wb-wmt-feature-item {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.wb-wmt-feature-item.wb-wmt-feature-reverse {
    direction: rtl;
}

.wb-wmt-feature-item.wb-wmt-feature-reverse > * {
    direction: ltr;
}

/* 功能文字区 */
.wb-wmt-feature-text {
    position: relative;
}

.wb-wmt-feature-num {
    display: inline-block;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(212,165,116,0.5), rgba(212,165,116,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.wb-wmt-feature-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.35;
}

.wb-wmt-feature-summary {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

/* 功能详情列表 */
.wb-wmt-feature-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.wb-wmt-feature-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(10px);
}

.wb-wmt-feature-details li:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,165,116,0.25);
    transform: translateX(6px);
}

.wb-wmt-feature-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wb-accent), #b88a5a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.wb-wmt-feature-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wb-wmt-feature-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--wb-accent-light);
}

.wb-wmt-feature-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* 数据指标 */
.wb-wmt-feature-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wb-wmt-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 18px 12px;
    background: linear-gradient(135deg, rgba(212,165,116,0.1), rgba(212,165,116,0.02));
    border: 1px solid rgba(212,165,116,0.15);
    border-radius: 14px;
}

.wb-wmt-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--wb-accent);
    line-height: 1.2;
    margin-bottom: 6px;
}

.wb-wmt-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* 视觉展示区 */
.wb-wmt-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 320px;
}

.wb-wmt-feature-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(212,165,116,0.12);
    animation: wbWmtRingRotate 20s linear infinite;
}

.wb-wmt-feature-ring-2 {
    width: 360px;
    height: 360px;
    border: 1px dashed rgba(212,165,116,0.08);
    animation-duration: 30s;
    animation-direction: reverse;
}

.wb-wmt-feature-ring-3 {
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255,255,255,0.04);
    animation-duration: 40s;
}

@keyframes wbWmtRingRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wb-wmt-feature-icon-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wb-accent) 0%, #b88a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
    box-shadow:
        0 0 80px rgba(212,165,116,0.25),
        0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.wb-wmt-feature-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(212,165,116,0.2);
}

.wb-wmt-feature-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(212,165,116,0.1);
}

/* ---- 首页外贸通解决方案区 ---- */
.wb-wmt-solutions {
    background: var(--wb-bg);
}

.wb-wmt-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wb-wmt-solution-card {
    background: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 44px 30px 36px;
    text-align: center;
    box-shadow: var(--wb-shadow);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.wb-wmt-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wb-primary), var(--wb-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.wb-wmt-solution-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(26,45,77,0.04) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s;
}

.wb-wmt-solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(26,45,77,0.12);
}

.wb-wmt-solution-card:hover::before {
    transform: scaleX(1);
}

.wb-wmt-solution-card:hover::after {
    width: 240px;
    height: 240px;
}

.wb-wmt-solution-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 52px;
    font-weight: 900;
    color: var(--wb-bg-alt);
    line-height: 1;
    transition: color 0.4s;
}

.wb-wmt-solution-card:hover .wb-wmt-solution-num {
    color: rgba(212,165,116,0.12);
}

.wb-wmt-solution-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--wb-white);
    margin: 0 auto 28px;
    position: relative;
    z-index: 2;
    transition: all 0.4s;
}

.wb-wmt-solution-card:hover .wb-wmt-solution-icon {
    background: linear-gradient(135deg, var(--wb-accent), #b88a5a);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(212,165,116,0.3);
}

.wb-wmt-solution-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.wb-wmt-solution-desc {
    font-size: 14px;
    color: var(--wb-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.wb-wmt-solution-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--wb-primary);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.wb-wmt-solution-link:hover {
    color: var(--wb-accent);
    gap: 10px;
}

/* 解决方案页面 - 核心优势 */
.wb-wmt-advantage {
    background: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--wb-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wb-wmt-advantage:hover {
    transform: translateY(-6px);
    box-shadow: var(--wb-shadow-lg);
}

.wb-wmt-advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--wb-white);
    margin: 0 auto 24px;
}

.wb-wmt-advantage h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 14px;
}

.wb-wmt-advantage p {
    font-size: 14px;
    color: var(--wb-text-light);
    line-height: 1.8;
}

/* 解决方案页面 - 行业方案 */
.wb-wmt-industry {
    background: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 32px 28px;
    box-shadow: var(--wb-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.wb-wmt-industry:hover {
    transform: translateY(-4px);
    box-shadow: var(--wb-shadow-lg);
}

.wb-wmt-industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--wb-white);
    flex-shrink: 0;
}

.wb-wmt-industry h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 8px;
}

.wb-wmt-industry p {
    font-size: 14px;
    color: var(--wb-text-light);
    line-height: 1.7;
}

/* 解决方案页面 - 客户评价 */
.wb-wmt-testimonial {
    background: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 32px 28px;
    box-shadow: var(--wb-shadow);
    position: relative;
}

.wb-wmt-testimonial::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 60px;
    color: var(--wb-bg-alt);
    font-family: Georgia, serif;
    line-height: 1;
}

.wb-wmt-testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.wb-wmt-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wb-white);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.wb-wmt-testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--wb-text);
    margin-bottom: 2px;
}

.wb-wmt-testimonial-info p {
    font-size: 13px;
    color: var(--wb-text-muted);
}

.wb-wmt-testimonial-quote {
    font-size: 15px;
    color: var(--wb-text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}

.wb-wmt-testimonial-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    color: var(--wb-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

/* 产品页面 - Tab 切换 */
.wb-wmt-product-features {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.wb-wmt-tab-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.wb-wmt-tab-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--wb-border);
    background: var(--wb-white);
    color: var(--wb-text);
    transition: all 0.3s;
    font-family: var(--wb-font);
}

.wb-wmt-tab-btn.active {
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    color: var(--wb-white);
    border-color: var(--wb-primary);
}

.wb-wmt-tab-btn:hover:not(.active) {
    border-color: var(--wb-primary);
    color: var(--wb-primary);
}

.wb-wmt-tab-content {
    display: none;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

.wb-wmt-tab-content.active {
    display: flex;
}

.wb-wmt-feature-card {
    background: var(--wb-white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 4px solid var(--wb-primary);
    flex: 1;
    min-width: 240px;
    transition: var(--wb-transition);
}

.wb-wmt-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.wb-wmt-feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 10px;
}

.wb-wmt-feature-card p {
    font-size: 14px;
    color: var(--wb-text-light);
    line-height: 1.7;
}

.wb-wmt-data-highlight {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.wb-wmt-data-item {
    text-align: center;
    padding: 20px;
    background: var(--wb-white);
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.wb-wmt-data-item .wb-wmt-data-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--wb-primary);
    line-height: 1.2;
}

.wb-wmt-data-item .wb-wmt-data-label {
    font-size: 13px;
    color: var(--wb-text-light);
    margin-top: 6px;
}

/* 产品页面 - 技术优势 */
.wb-wmt-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.wb-wmt-tech-card {
    background: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--wb-shadow);
    transition: var(--wb-transition);
}

.wb-wmt-tech-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wb-shadow-lg);
}

.wb-wmt-tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--wb-white);
    margin: 0 auto 24px;
}

.wb-wmt-tech-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 14px;
}

.wb-wmt-tech-card p {
    font-size: 14px;
    color: var(--wb-text-light);
    line-height: 1.7;
}

/* ---- 首页外贸通功能按钮 ---- */
.wb-wmt-feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--wb-accent), #b88a5a);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.wb-wmt-feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.45);
    color: #fff;
    gap: 12px;
}

/* ---- 解决方案页面 - 横幅 ---- */
.wb-sol-banner {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(160deg, #0a1628 0%, #102038 40%, #0d1a2e 100%);
    overflow: hidden;
}

.wb-sol-banner-glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wb-sol-banner-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.wb-sol-banner-title {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.wb-sol-banner-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.wb-sol-banner-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.wb-sol-banner-stat {
    text-align: center;
}

.wb-sol-banner-stat strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--wb-accent);
    line-height: 1.2;
    margin-bottom: 8px;
}

.wb-sol-banner-stat span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- 解决方案页面 - 核心优势 ---- */
.wb-sol-advantages {
    padding: 100px 0;
}

.wb-sol-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.wb-sol-advantage-card {
    background: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 44px 32px 36px;
    text-align: center;
    box-shadow: var(--wb-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wb-sol-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wb-primary), var(--wb-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wb-sol-advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(26, 45, 77, 0.12);
}

.wb-sol-advantage-card:hover::before {
    transform: scaleX(1);
}

.wb-sol-advantage-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--wb-white);
    margin: 0 auto 28px;
    transition: all 0.4s;
}

.wb-sol-advantage-card:hover .wb-sol-advantage-icon {
    background: linear-gradient(135deg, var(--wb-accent), #b88a5a);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.3);
}

.wb-sol-advantage-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 14px;
}

.wb-sol-advantage-card p {
    font-size: 14px;
    color: var(--wb-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.wb-sol-advantage-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(26, 45, 77, 0.08);
    color: var(--wb-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.wb-sol-advantage-card:hover .wb-sol-advantage-tag {
    background: linear-gradient(135deg, var(--wb-accent), #b88a5a);
    color: #fff;
}

/* ---- 解决方案页面 - 行业方案 ---- */
.wb-sol-industries {
    padding: 100px 0;
}

.wb-sol-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wb-sol-industry-card {
    background: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 36px 30px;
    box-shadow: var(--wb-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wb-sol-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 45, 77, 0.12);
}

.wb-sol-industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--wb-white);
    flex-shrink: 0;
    transition: all 0.4s;
}

.wb-sol-industry-card:hover .wb-sol-industry-icon {
    background: linear-gradient(135deg, var(--wb-accent), #b88a5a);
    transform: scale(1.1);
}

.wb-sol-industry-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wb-text);
    margin-bottom: 12px;
}

.wb-sol-industry-content > p {
    font-size: 14px;
    color: var(--wb-text-light);
    line-height: 1.75;
    margin-bottom: 18px;
}

.wb-sol-industry-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wb-sol-industry-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--wb-text);
}

.wb-sol-industry-points i {
    color: var(--wb-accent);
    font-size: 13px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- 解决方案页面 - 客户评价 ---- */
.wb-sol-testimonials {
    padding: 100px 0;
}

.wb-sol-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wb-sol-testimonial-card {
    background: var(--wb-white);
    border-radius: var(--wb-radius);
    padding: 40px 30px 30px;
    box-shadow: var(--wb-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wb-sol-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 45, 77, 0.12);
}

.wb-sol-testimonial-quote {
    font-size: 32px;
    color: var(--wb-accent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.wb-sol-testimonial-text {
    font-size: 15px;
    color: var(--wb-text);
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 100px;
}

.wb-sol-testimonial-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--wb-primary), #24395f);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.wb-sol-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--wb-border-light);
}

.wb-sol-testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wb-primary), var(--wb-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.wb-sol-testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--wb-text);
    margin-bottom: 4px;
}

.wb-sol-testimonial-author span {
    font-size: 13px;
    color: var(--wb-text-light);
}

/* ============================================
 * WordPress Admin Bar 适配
 * ============================================ */

/* 管理员登录时，固定头部下移32px避免与admin bar重叠 */
body.admin-bar .wb-site-header {
    top: 32px;
}

/* 管理员工具栏在移动端高度为46px */
@media screen and (max-width: 782px) {
    body.admin-bar .wb-site-header {
        top: 46px;
    }
}

/* 移动端菜单也要相应下移 */
body.admin-bar .wb-mobile-menu {
    top: 72px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .wb-mobile-menu {
        top: 86px;
    }
}

/* ============================================
 * 子页面小横幅
 * ============================================ */

.wb-sub-banner {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4d 50%, #13284a 100%);
    color: #fff;
    overflow: hidden;
}

.wb-sub-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.wb-sub-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wb-accent), transparent);
}

.wb-sub-banner .wb-container {
    position: relative;
    z-index: 2;
}

.wb-breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.wb-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--wb-transition);
}

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

.wb-breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.wb-sub-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.wb-sub-banner-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-top: 12px;
    max-width: 600px;
}

@media screen and (max-width: 768px) {
    .wb-sub-banner {
        padding: 120px 0 40px;
    }

    .wb-sub-banner-title {
        font-size: 26px;
    }

    .wb-sub-banner-desc {
        font-size: 14px;
    }
}

.wb-form {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--wb-radius);
    box-shadow: var(--wb-shadow);
}

.wb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.wb-form-group {
    margin-bottom: 20px;
}

.wb-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--wb-text);
    font-size: 14px;
}

.wb-form-group input[type="text"],
.wb-form-group input[type="tel"],
.wb-form-group input[type="email"],
.wb-form-group textarea,
.wb-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--wb-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fafafa;
    transition: var(--wb-transition);
    color: var(--wb-text);
}

.wb-form-group input:focus,
.wb-form-group textarea:focus,
.wb-form-group select:focus {
    outline: none;
    border-color: var(--wb-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212,165,116,0.15);
}

.wb-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.wb-form-group input::placeholder,
.wb-form-group textarea::placeholder {
    color: var(--wb-text-muted);
}

@media screen and (max-width: 640px) {
    .wb-form {
        padding: 24px;
    }

    .wb-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
