/* 现代化基础样式 */
body{
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

/* 现代化导航栏样式 */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.modern-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50 !important;
    text-decoration: none;
}

.modern-navbar .navbar-nav > li > a {
    color: #495057 !important;
    font-weight: 500;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.modern-navbar .navbar-nav > li > a:hover {
    color: #3498db !important;
    background: transparent !important;
}

.modern-navbar .navbar-nav > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.modern-navbar .navbar-nav > li > a:hover:after {
    width: 80%;
}

.modern-search-form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.modern-search-input {
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 12px 50px 12px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.modern-search-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.modern-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #3498db;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.modern-search-btn:hover {
    background: #2980b9;
    transform: translateY(-50%) scale(1.05);
}

.modern-cart-icon {
    position: relative;
    display: inline-block;
}

.modern-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* 现代化顶部导航 */
.modern-top-nav {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.modern-top-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-top-nav a:hover {
    color: white;
    text-decoration: none;
}

.modern-top-nav .dropdown-menu {
    background: #34495e;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modern-top-nav .dropdown-menu a {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
}

.modern-top-nav .dropdown-menu a:hover {
    background: #3498db;
    color: white;
}

/* 现代化增强版页脚样式 */
.modern-footer-enhanced {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.modern-footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* 主要内容区域 */
.footer-main {
    padding: 40px 0 25px;
    position: relative;
    z-index: 1;
}

.footer-section {
    height: 100%;
}

/* 品牌区域 */
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 13px;
}

/* 联系信息 */
.footer-contact {
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.contact-item i {
    width: 18px;
    margin-right: 10px;
    color: #3498db;
    font-size: 13px;
}

/* 页脚标题 */
.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: #3498db;
    border-radius: 1px;
}

/* 页脚链接 */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 3px 0;
}

.footer-links a i {
    font-size: 10px;
    margin-right: 8px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
    text-decoration: none;
    padding-left: 5px;
}

.footer-links a:hover i {
    opacity: 1;
    margin-right: 12px;
}

/* 社交媒体区域 */
.social-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.social-media {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
}

.social-link.wechat:hover {
    background: #1aad19;
    border-color: #1aad19;
    color: white;
}

.social-link i {
    font-size: 16px;
}

/* 邮件订阅区域 */
.newsletter-signup {
    margin-top: 18px;
}

.newsletter-title {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-title i {
    font-size: 14px;
    color: #3498db;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.newsletter-form {
    margin-top: 12px;
}



.newsletter-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: 1px solid #3498db;
    color: white;
    border-radius: 0 20px 20px 0;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    border-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.newsletter-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

/* 创建更现代的发送图标效果 */
.newsletter-btn i.glyphicon-send {
    transform: rotate(-45deg);
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:hover i {
    transform: translateX(4px) rotate(-45deg);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 添加发送动画效果 */
.newsletter-btn:active i {
    transform: translateX(8px) rotate(-45deg) scale(1.2);
    transition: all 0.15s ease;
}

/* 可选：创建自定义箭头图标 */
.newsletter-btn .custom-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    margin-left: 2px;
}

.newsletter-btn:hover .custom-arrow {
    transform: translateX(3px);
    border-left-color: rgba(255, 255, 255, 1);
}

/* 邮件订阅输入框图标 */
.newsletter-form {
    position: relative;
}

.newsletter-form::before {
    content: '\e010'; /* glyphicon-envelope */
    font-family: 'Glyphicons Halflings';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px 0 0 20px;
    padding: 10px 15px 10px 40px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #3498db;
    color: white;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    outline: none;
    padding-left: 42px;
}



/* 现代化布局 */
.modern-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* 现代化统一导航栏样式 */
.modern-unified-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
    border: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.modern-unified-navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    min-height: 70px;
}

/* Logo区域 */
.navbar-brand-section {
    flex-shrink: 0;
    margin-right: 40px;
}

.modern-logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.modern-logo:hover img {
    transform: scale(1.05);
}

/* 主导航菜单 */
.navbar-menu-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.modern-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

/* 右侧区域 */
.navbar-right-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.modern-nav-menu > li {
    position: relative;
}

.modern-nav-menu > li > a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.modern-nav-menu > li > a:hover {
    color: #3498db;
    text-decoration: none;
}

.modern-nav-menu > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.modern-nav-menu > li > a:hover:after {
    width: 100%;
}

/* 大型下拉菜单 */
.mega-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 30px;
    min-width: 600px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-dropdown:hover .dropdown-menu,
.mega-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.mega-category h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.mega-category h5 a {
    color: #2c3e50;
    text-decoration: none;
}

.mega-category h5 a:hover {
    color: #3498db;
    text-decoration: none;
}

.mega-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-category ul li {
    margin-bottom: 8px;
}

.mega-category ul li a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mega-category ul li a:hover {
    color: #3498db;
    text-decoration: none;
}

/* 搜索区域 */
.navbar-search-section {
    flex-shrink: 0;
}

.modern-search-form {
    position: relative;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 40px 8px 16px;
    font-size: 13px;
    width: 240px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    height: 36px;
}

.search-input:focus {
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
    outline: none;
}

.search-btn {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    background: #3498db;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 12px;
}

.search-btn:hover {
    background: #2980b9;
    transform: translateY(-50%) scale(1.05);
}

/* 工具栏区域 */
.navbar-tools-section {
    flex-shrink: 0;
}

.modern-nav-tools {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.modern-nav-tools > li {
    position: relative;
}

.tool-link {
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    white-space: nowrap;
    min-height: 40px;
}

.tool-link:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    text-decoration: none;
    transform: translateY(-1px);
}

/* 工具栏图标优化 */
.tool-link .glyphicon {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* 语言图标 */
.tool-link .glyphicon-globe {
    font-size: 19px;
    color: #3498db;
}

.tool-link:hover .glyphicon-globe {
    color: #2980b9;
    transform: rotate(15deg);
}

/* 货币图标 */
.tool-link .glyphicon-usd {
    font-size: 18px;
    font-weight: bold;
    color: #27ae60;
}

.tool-link:hover .glyphicon-usd {
    color: #229954;
    transform: scale(1.1);
}

/* 收藏图标 */
.tool-link .glyphicon-heart {
    font-size: 18px;
    color: #e74c3c;
}

.tool-link:hover .glyphicon-heart {
    color: #c0392b;
    transform: scale(1.1);
}

/* 购物车图标 */
.tool-link .glyphicon-shopping-cart {
    font-size: 19px;
    color: #f39c12;
}

.tool-link:hover .glyphicon-shopping-cart {
    color: #e67e22;
    transform: translateY(-1px);
}

/* 用户图标 */
.tool-link .glyphicon-user {
    font-size: 18px;
    color: #9b59b6;
}

.tool-link:hover .glyphicon-user {
    color: #8e44ad;
    transform: scale(1.05);
}

.tool-badge {
    background: #e74c3c;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    margin-left: 3px;
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: 10;
}

.cart-badge {
    background: #ff6b6b;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

/* 特殊的购物车和收藏夹图标样式 */
.cart-link,
.tool-link[title="收藏夹"] {
    position: relative;
}

.cart-link .tool-badge,
.tool-link[title="收藏夹"] .tool-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    margin-left: 0;
}

/* 购物车下拉菜单 */
.cart-dropdown {
    position: relative;
}

.cart-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.cart-dropdown:hover .cart-dropdown-menu,
.cart-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    margin: 0;
}

.cart-header h5 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
}

.cart-products {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    text-align: center;
}

.cart-products p {
    margin: 0 0 15px 0;
    color: #6c757d;
    font-size: 14px;
}

.cart-products button {
    transition: all 0.3s ease;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    background: #3498db;
    color: white;
    cursor: pointer;
    font-size: 13px;
}

.cart-products button:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

/* 工具栏下拉菜单通用样式 */
.modern-nav-tools .dropdown-menu {
    right: 0;
    left: auto;
    min-width: 180px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
    background: white;
    z-index: 1000;
}

.modern-nav-tools .dropdown-menu a {
    padding: 10px 18px;
    color: #495057;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-nav-tools .dropdown-menu a:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    text-decoration: none;
}

.modern-nav-tools .dropdown-menu .divider {
    margin: 6px 0;
    border-color: #e9ecef;
}

.modern-nav-tools .dropdown-menu .active > a {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    font-weight: 600;
}

/* 用户下拉菜单特殊样式 */
.user-dropdown .dropdown-menu {
    min-width: 220px;
}

.user-dropdown .dropdown-menu a .glyphicon {
    font-size: 14px;
    width: 16px;
}

/* 响应式优化 */
@media (max-width: 1400px) {
    .navbar-brand-section {
        margin-right: 30px;
    }

    .navbar-right-section {
        gap: 15px;
    }

    .modern-nav-menu {
        gap: 25px;
    }

    .search-input {
        width: 220px;
    }

    .modern-nav-tools {
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .navbar-brand-section {
        margin-right: 25px;
    }

    .navbar-right-section {
        gap: 12px;
    }

    .modern-nav-menu {
        gap: 20px;
    }

    .modern-nav-menu > li > a {
        font-size: 14px;
    }

    .search-input {
        width: 200px;
    }

    .modern-nav-tools {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .navbar-row {
        padding: 10px 0;
        flex-wrap: nowrap;
    }

    .navbar-brand-section {
        margin-right: 15px;
    }

    .navbar-right-section {
        gap: 10px;
    }

    .modern-nav-menu {
        gap: 15px;
    }

    .modern-nav-menu > li > a {
        font-size: 13px;
        padding: 8px 0;
    }

    .search-input {
        width: 160px;
        font-size: 12px;
        padding: 6px 35px 6px 14px;
    }

    .search-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .mega-dropdown .dropdown-menu {
        min-width: 400px;
        padding: 20px;
    }

    .modern-nav-tools {
        gap: 8px;
    }

    .tool-link {
        padding: 6px 8px;
        font-size: 13px;
        min-height: 36px;
    }

    .tool-link .glyphicon {
        font-size: 16px;
    }

    .tool-badge {
        font-size: 10px;
        padding: 1px 5px;
        min-width: 16px;
    }
}

@media (max-width: 768px) {
    .modern-unified-navbar {
        display: none;
    }

    /* 现代化页脚响应式 */
    .modern-footer-enhanced {
        margin-top: 50px;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-brand {
        justify-content: center;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-contact {
        text-align: left;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .social-media {
        justify-content: center;
        margin-bottom: 25px;
    }

    .newsletter-form .input-group {
        display: flex;
        border-radius: 25px;
        overflow: hidden;
    }

    .newsletter-input {
        border-radius: 0;
        flex: 1;
    }

    .newsletter-btn {
        border-radius: 0;
        flex-shrink: 0;
    }

    .footer-bottom-links {
        text-align: center;
        justify-content: center;
        margin-top: 15px;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-brand {
        flex-direction: column;
        gap: 10px;
    }

    .social-media {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .social-link {
        width: 200px;
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 10px;
        flex-direction: column;
        gap: 5px;
    }

    .footer-bottom-links .separator {
        display: none;
    }
}
.st .pull-right .dropdown-menu{
    left:auto;
    right:0;
}
.st .pagination a,.st .breadcrumb a{
    color:#333;
}
/*div高度*/
.st-h5{
    height: 5px;
    line-height: 5px;
}
.st-h10{
    height: 10px;
    line-height: 10px;
}
.st-h20{
    height: 20px;
    line-height: 20px;
}
.st-h50{
    height: 50px;
    line-height: 50px;
}
.st-h100{
    height: 100px;
    line-height: 50px;
}
.st-navtip .alert{
    margin-bottom: 5px;
    text-align: center;
}
.st-navtip > div:first-child > div.alert{
    margin-top: 5px;
}
/*导航区域-顶部*/
.st-navtop{
    height: 30px;
    line-height: 30px;
    background-color:#FAFAFA;
    border-bottom:1px solid #e9e9e9;
}
.st-navtop li a:hover,.st-navtop li a:hover i{
    color:#4285F4;
    background:none;
}
.st-navtop-items > li > a{
    font-size:12px;
    color:#666;
    padding-top: 0;
    padding-bottom: 0;
}
.st-navtop-items > li:first-child > a{
    padding-left: 0;
}
.st-navtop-items > li:last-child > a{
    padding-right: 0;
}
.st-navtop-items > li a font{
    display: inline-block;
    padding:0 5px;
}
.st-navtop-items > li > a > i{
    color:#999;
}
/*导航区域-品牌和搜索*/
.st-navbrand{
    height: 90px;
    background: #ffffff;
}
.st-navbrand-logo{
    max-width: 200px;
    min-width: 170px;
    padding-top: 10px;
}
.st-navbrand-slogan{
    line-height: 90px;
    font-style:italic;
}
.st-navbrand-search{
    padding-top:25px;
}
.st-navbrand-search .input-group-addon{
    background-color: #4285F4;
    border: 2px solid #4285F4;
    cursor: pointer;
}
.st-navbrand-search input{
    border: 2px solid #4285F4;
}
.st-navbrand-search .input-group-addon i{
    color: #ffffff;
}
.st-navbrand-cart{
    position: relative;
    cursor: pointer;
    padding-top:30px;
}
.st-navbrand-cart a{
    display: inline-block;
    color:#666;
}
.st-navbrand-cart i{
    position: relative;
    font-size: 28px;
    color:#666;
}
.st-navbrand-cart .badge{
    position: absolute;
    bottom:29px;
    left: 4px;
    background-color: #EA4335;
    color:#ffffff;
    width:24px;
    padding:3px;
}
.st-navbrand-cart i:hover,.st-navbrand-cart a:hover{
    color:#999;
    text-decoration: none;
}
/*导航区域-菜单*/
.st-navmenu{
    background-color: #F9F9F9;
    border-top:1px solid #e9e9e9;
}
.st-navmenu .nav > li > a{
    height: 44px;
    line-height: 44px;
    color:#666;
    border-radius: 0;
    padding:0;
    margin-right: 30px;
}
.st-navmenu .nav > li > a:hover{
    color:#080808;
    background:none;
    border-radius: 0;
    border-bottom: 3px solid #EA4335;
}
#products{
    position: relative;
}
.st-allcat{
    display: none;
    position: absolute;
    top:44px;
    left: 0;
    z-index: 999;
    width: 240px;
    box-shadow: none;
    border-radius: 0;
    border-right:none;
}
.st-allcat-items{
    border: none;
    box-shadow: none;
}
.st-allcat-items > li{
    padding:0;
    margin:0;
    border:none;
}
.st-allcat-items > li > a{
    color:#666;
    text-decoration: none;
    display:inline-block;
    padding: 0 8px;
    width:100%;
    height: 35px;
    line-height: 35px;
    border:1px solid #ddd;
    border-left: 1px solid #ffffff;
    border-top:1px solid #ffffff;
    border-bottom:1px solid #ffffff;
}
.st-allcat-items > li > a > i{
    padding-right:5px;
    color:#BCBCBC;
    font-size: 16px;
}
.st-allcat-items > li.active > a{
    background-color:#ffffff;
    color: orange;
    text-shadow:none;
    border-right: none;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
    border-radius: 0;
}
.st-allcat-items > li.active:last-child > a{
    border-bottom:1px solid #ffffff;
}
.st-allcat-items > li.active:first-child > a{
    border-top:1px solid #ffffff;
}
.st-allcat-items > li.active > a > i{
    color: orange;
}
.st-allcat-content{
    display: none;
    position: absolute;
    top:-1px;
    left:238px;
    background-color: #ffffff;
}
.st-allcat-content-item{
    width:490px;
    min-height: 400px;
    border: 1px solid #ddd;
    padding:0 15px;
    padding-right: 0;
    overflow-x: hidden;
}
.st-allcat-content-item > dl{
    width: 50%;
    /*min-height: 230px;*/
    float: left;
    margin: 15px 0;
}
.st-allcat-content-item > dl > dt{
    border-bottom: 1px solid #ddd;
    margin-right: 15px;
    margin-bottom: 7px;
    padding:5px 0;
    padding-top:0;
}
.st-allcat-content-item > dl > dt > a{
    color:#333;
    text-decoration: none;
}
.st-allcat-content-item > dl > dd{
    line-height: 25px;
}
.st-allcat-content-item > dl > dd > i{
    font-size:18px;
    color:#999;
    vertical-align: middle;
    padding-right: 2px;
}
.st-allcat-content-item > dl > dd > a{
    color:#666;
    text-decoration: none;
}
.st-allcat-content-item > dl > dd > a::before{
    content: "•";
    font-size:18px;
    color:#999;
    padding-right: 2px;
    vertical-align: middle;
}
.st-allcat-content-item > dl a:hover,.st-allcat-content-item > dl > dd > a:hover::before{
    color:orange;
}
/*导航区域-顶部-移动端*/
.st-header{
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top:none;
    margin-bottom: 0;
}
.st-header .navbar-header{
    /*padding:0 5px;*/
}
.st-header .navbar-brand{
    display: inline-block;
    padding: 0;
    width: auto;
}
.st-header-cart{
    position: relative;
    color:#666;
    font-size: 26px;
    margin-right: 15px;
    padding-top:8px;
}
.st-header-cart > i{
    padding-left: 3px;
}
.st-header-cart > span{
    position: absolute;
    top:3px;
    left:9px;
    display: inline-block;
    text-align: center;
    color:#EA4335;
    font-size: 1rem;
    width:15px;
}
.st-header .navbar-form{
    border-top:none;
    border-bottom: none;
}
.st-header .navbar-nav ul.st-subcat,.st-header .navbar-nav ul.st-subsubcat{
    padding-left: 25px;
}
.st-header .navbar-nav ul.st-cat > li{
    border-bottom: 1px solid #ddd;
}
.st-header .navbar-nav ul.st-subcat > li{
    border-top: 1px solid #ddd;
}
.st-header .navbar-nav ul.st-subcat > li > ul.st-subsubcat > li:first-child{
    border-top: 1px solid #ddd;
}
/*首页推荐产品和产品列表页*/
.st-home-product > div.container > div.row,.st-main-product > div.row{
    padding:0 12px;
}
.st-home-product > div.container > div.row > div,.st-main-product > div.row > div{
    padding:0 4px;
}
.st-home-product .thumbnail,.st-main-product .thumbnail{
    padding: 0;
}
.st-home-product .thumbnail > a.st-thumb,.st-main-product .thumbnail > a.st-thumb{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px;
    border-radius: 8px;
}
.st-home-product .thumbnail > a.st-thumb img,.st-main-product .thumbnail > a.st-thumb img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 首页产品图片悬停效果 */
.st-home-product .thumbnail:hover > a.st-thumb img,
.st-main-product .thumbnail:hover > a.st-thumb img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.st-home-product .caption,.st-main-product .caption{
    padding-top:0
}
.st-home-product .caption > h5 > a,.st-main-product .caption > h5 > a{
    display: inline-block;
    height: 30px;
    overflow-y: hidden;
    color: #333;
    font-size:1.4rem;
}
.st-home-product .caption > p,.st-main-product .caption > p{
    margin-bottom: 5px;
}
.st-home-product-price{
    color:#080808;
    font-weight: bolder;
    font-size:1.5rem;
}
.st-home-product-sold{
    color:#666;
    font-size: 12px;
}
.st-home-product-addcart{
    margin: 0 9px;
    margin-bottom:10px ;
}
.st-home-product-addcart > button{
    width: 100%;
}
.st-home-product-title{
    display: block;
    width: 100%;
    text-align: center;
    color:#000000;
}
.st-home-product-title > span{
    font-size: 13px;
    vertical-align: top;
}
/*底部*/
.st-footer{
    background-color: #FAFAFA;
    padding-top: 80px;
}
.st-footer-service{
    padding-bottom: 80px;
    color:#333;
}
.st-footer-service dt{
    padding-bottom: 5px;
}
.st-footer-service a{
    display: inline-block;
    line-height: 30px;
    color:#666;
}
.st-footer-beian{
    text-align: center;
    font-size: 12px;
    color: gray;
}
.st-footer-beian a{
    color:gray;
}
.st-footer-service-icon > a{
    text-decoration: none;
    display: inline-block;
    padding-right: 10px;
}
.st-footer-service-icon > a > i{
    font-size: 20px;
}
.st-footer-service-icon > a > i:hover{
    color:#999;
}
.st-footer-service-icon > a > img{
    width: 25px;
    display: inline-block;
    vertical-align: top;
}
.st-footer-service-icon .bi-pinterest{
    /*padding-top:3px;*/
    vertical-align: bottom;
}
.st-footer-service-signup{
    padding-top:10px;
}
.st-footer-service-signup p{
    color:#666;
}
.st-footer-service-signup span{
    background: #000000;
    color: #ffffff;
    font-weight: bolder;
    border: 1px solid #000000;
}
/*导航路径/面包屑*/
.st-breadcrumb .breadcrumb{
    margin: 5px 0;
    background-color:#ffffff;
    padding-left:0;
}
/*产品列表页*/
.st-main{}
.st-main-left>div{
    background: #F9F9F9;
    padding:10px;
    margin-bottom: 10px;
}
.st-main-left a{
    color:#666;
}
.st-main-left h5,#FILTER h5{
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    font-weight: bolder;
    margin-top: 0;
}
.st-main-left-category a,.st-main-product-header-filter a{
    color:#333;
}
.st-main-left-category dl{
    margin-bottom: 5px;
}
.st-main-left-category dt a{
    color:#333;
    font-weight: lighter;
}
.st-main-left-category dd{
    margin-left: 15px;
}
.st-main-left-category > dl > dt{
    border-bottom: 1px solid #ddd;
}
.st-main-left-category > dl > dt > a{
    font-weight: bold;
}
.st-main-left-category > dl > dd::before{
    position: absolute;
    content: "•";
    left:32px;
    color:gray;
}
.st-main-left-category .active{
    background-color: #BCBCBC;
}
.st-main-product-header{
    padding-bottom:8px;
}
.st-main-product-header > span{
    display: inline-block;
}
.st-main-product-header-pager .pager{
    margin: 0;
    padding: 0;
}
.st-main-product-header-pager .pager li a{
    padding:2px 14px;
}
.st-main-product-header-pager ul.pagination{
    margin: 0 0;
    margin-bottom: 10px;
}
.st-main-product-header-sortby{
    line-height: 34px;
}
.st-main-product-header-sortby select{
    height: 26px;
}
.st-main-product-header-filter{
    border:1px solid #ddd;
    padding:2px 14px;
    border-radius: 15px;
}
/*产品详情-图片放大镜*/
.st-detail-img{
    position:relative;
    margin-bottom: 15px;
}
.st-detail-img-left {
    position:relative;
    display:inline-block;
    *display:inline;
    *zoom:1;
    width:10%;
    height: 417px;
    overflow-x:hidden;
    overflow-y:auto;
}
.st-detail-img-left::-webkit-scrollbar{
    display: none;
}
.st-detail-img-left ul {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    font-size:0;
    padding: 0;
}
.st-detail-img-left ul li {
    display:inline-block;
    *display:inline;
    *zoom:1;
    border:1px solid #BCBCBC;
    border-color:#F0F0F0;
    margin-bottom: 2px;
    border-radius: 2px;
    min-width: 35px;
    min-height: 35px;
}
.st-detail-img-left ul li:last-of-type {
    margin-bottom:0;
}
.st-detail-img-left ul .active {
    border-color:#999;
}
.st-detail-img-left ul li img{
    width:100%;
}
.st-detail-img-right {
    vertical-align:top;
    position:relative;
    display:inline-block;
    *display:inline;
    *zoom:1;
    width:460px;
    width:89%;
    border:1px solid #ddd;
}
.st-detail-img-right .pic {
    position:relative;
    width: 100%;
    /*min-height: 318px;*/
}
.st-detail-img-right .pic img{
    width: 100%;
}
.st-detail-img-right .pic .magnify {
    width:230px;
    height:230px;
    display:none;
    position:absolute;
    top:0;
    left:0;
    cursor:crosshair;
    background-color:#000000;
    opacity:.3;
    filter:alpha(opacity=30);
}
.st-detail-img-right .bigpic {
    display:none;
    position:absolute;
    top:-1px;
    right:-460px;
    width:460px;
    height:460px;
    z-index:333;
    border:1px solid #ddd;
    border-left: none;
    overflow:hidden;
}
.st-detail-img-right .bigpic > img {
    width:920px;
    height:920px;
    position:absolute;
    top:0;
    left:0;
}
.st-detail-img-right-share{
    position: absolute;
    left:0;
    bottom:-40px;
}
.st-detail-img .swiper-container {
    /*width: 100%;*/
    min-height: 260px;
}
.st-detail-img .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
/*产品详情-产品属性信息*/
.st-detail-attr{
    /*padding-bottom: 10px;*/
}
.st-detail-attr > h3{
    padding-top: 0;
    margin-top: 0;
    font-size:19px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    line-height: 1.4;
}
.st-detail-attr > dl{
    display: block;
    clear: both;
    margin-bottom: 0px;
}
.st-detail-attr > dl > dt{
    display: block;
    line-height: 20px;
    padding-right: 5px;
    color:#555555;
    font-weight: normal;
}
.st-detail-attr > dl > dd{
    display: block;
    text-align: center;
    line-height: 20px;
}
.st-detail-attr .st-attr > dd{
    display: inline-block;
    margin:0 10px 10px 0;
    border:1px solid #BCBCBC;
    cursor: pointer;
    min-width: 40px;
    text-align: center;
    padding:0 3px;
}
.st-detail-attr .st-picture > dd{
    width:40px;
    height: 40px;
    overflow: hidden;
    padding:0;
}
.st-detail-attr .st-attr > dd > img{
    width:100%;
}
.st-detail-attr .st-attr > dd.st-stockout,.st-detail-attr .st-attr > dd.st-invalid{
    border-style: dotted;
    opacity: .6;
    filter:alpha(opacity=60);
}
.st-detail-attr .st-price{
    margin-top: 20px;
    margin-bottom: 20px;
}
.st-detail-attr .st-price > dt{
    font-size: 2.5rem;
    color:#333;
    font-weight: 700;
}
.st-detail-attr .st-price > dt > del{
    font-size: 1.8rem;
    color:#666;
    padding-left: 10px;
    font-weight: lighter;
}
.st-detail-attr .st-attr > dd.active{
    border:2px solid #EA4335;
}
.st-detail-attr .st-attr > dd:hover{
    box-shadow: 0px 0px 5px #BCBCBC;
}
.st-detail-attr .st-general > dt,.st-detail-attr .st-general > dd{
    display: inline-block;
}
.st-detail-attr .st-itemcode > dd{
    display: block;
    text-align: left;
    color:#999;
    font-size: 12px;
}
/*产品详情操作按钮*/
.st-detail-btn button{
    font-size: 12px;
    margin-top:5px;
    margin-bottom:5px;
}
.st-detail-btn button span{
    text-align: left;
    float: left;
    display: inline-block;
    padding-right: 8px;
}
.st-detail-btn .st-share a,.st-detail-img-right-share .st-share a{
    font-size:16px;
    color:#666;
    padding:0 5px;
}
.st-detail-btn .st-share a:hover{
    color:#999;
}
.st-detail-btn-right{
    border:1px solid #ddd;
    padding:10px 15px;;
    border-radius: 5px;
}
.st-detail-btn-right .st-qty > input{
    width:50px;
}
.st-detail-btn-right .st-instock{
    color:#34A853;
}
.st-detail-btn-right .st-stockout{
    color:#EA4335;
}
.st-detail-btn-right .st-whosale td font{
    padding-right: 5px;
    width:15px;
    display: inline-block;
}
.st-detail-btn-right .addtocart{
    /*width:100%;*/
}
.st-detail-btn-right .st-btn .buynow > span{
    padding-right: 5px;
}
.st-main-detail .nav-tabs li a{
    color:#555555;
}
.st-main-detail-reviews-content > dl{
    border-bottom: 1px solid #ddd;
    padding-top: 15px;
}
.st-main-detail-reviews-content > dl > dt{
    line-height: 35px;
}
.st-main-detail-reviews-content > dl > dt i{
    color:orange;
}
.st-main-detail-reviews-content > dl > dd.st-datetime{
    color:#666;
    font-size:12px;
    line-height: 25px;
}
#Details img{
    max-width:100%;
    height: auto;
}
/*个人中心*/
.st-user .media-heading > a{
    color:#333;
}
.st-user .panel-body .page-header{
    margin-top:0;
}
.st-user-info .st-emailnotvalidated{
    color:#EA4335;font-size: 12px;
}
.st-user-info .st-emailnotvalidated a{
    text-decoration: underline;color:#4285F4;
}
.st-user-orders .st-price{
    font-size:12px;
    color:#666;
}
.st-user-address-add select{
    margin-top: 5px;
}
.st-user-address-default .st-default dl{
    padding:5px;
}
.st-user-address-default .st-default dl:first-child{
    margin-right: 100px;
}
.st-user-address-default .st-default dl > dt{
    color:#4285F4;
}
.st-user-address-list dl{
    padding:5px;
    border: 2px dotted #999;
}
.st-user-address-list dl dd small{
    color:#666;
    font-style: italic;
    font-size: 12px;
}
.st-user-feedback-list > dl{
    border-bottom: 1px solid #ddd;
    padding-top: 15px;
}
.st-user-feedback-list > dl > dt{
    line-height: 35px;
}
.st-user-feedback-list > dl > dt i{
    color:orange;
}
.st-user-feedback-list dd.st-datetime{
    color:#666;
    font-size:12px;
    line-height: 25px;
}
.st-user-feedback-list > dl > dd.st-reply > dl{
    padding-left: 30px;
    border-top:1px dotted #999;
}
.st-user-feedback-list>dl.st-reply{
    text-align: right;
}
.st-user-feedback-list-replies>dl{
    border-bottom: none;
    padding-top:0;
    margin-bottom: 10px;
}
.st-user-feedback-list-replies>dl>dd.st-text{
    display: inline-block;
    max-width:70%;
    border: 1px solid #eee;
    padding: 5px 10px;
    border-radius: 10px;
    word-break: break-word;
    text-align: left;
}
.st-user-feedback-list-replies>dl.st-reply>dd.st-text{
    float:right;
    background: #eee;
}
.st-user-wishlist .media .media-object,.st-user-orders .media .media-object{
    width:64px;
}
.st-user-wishlist .media .media-body .st-itemcode,.st-user-orders .media .media-body .st-itemcode{
    color:#999;font-size:12px;
}
.st-user-wishlist .media .media-body .st-datetime{
    color:#666;text-align: right;
}
.st-user-orders p{
    margin-bottom: 0px;
}
.st-user-orders .panel-body > div.st-date > p > label{
    width:100px;
}
.st-user-orders .panel-body > div.st-date > p.st-shipdesc{
    text-indent: 100px;
}
.st-user-orders table>thead>tr>th{
    border-bottom:none;
}
.st-user-orders table>thead>tr:first-child>th{
    border-bottom: 2px solid #ddd;
}

/*购物车*/
.st-cart .page-header{
    margin-top: 0;
}
.st-cart-checkout{
    padding:25px 15px;
}
.st-cart-checkout a.btn{
    width: 100%;
}
.st-cart-table tr:first-child td{
    border-top:none;
}
.st-cart-table a,.st-cart-table .st-price{
    color:#333;
}
.st-cart-table .st-price{
    margin-top:5px;
}
.st-cart-table .st-itemcode{
    color:#666;
}
.st-cart-table .st-price input{
    width:80px;
}
.st-cart-table .media-object{
    width:80px;
}
.st-cart-table .media-body > p{
    margin-bottom: 0;
}
.st-cart-table .st-wholesale{
    min-width:150px;
    font-size: 12px;
    color:gray;
}
.st-cart-table .st-wholesale td{
    padding:3px;
    border-top:none;
}
.st-cart-table .st-wholesale tr td:first-child{
    text-align:right;
}
.st-cart .st-fixed{
    position: fixed;top:5px;
}
/*订单结算 checkout*/
.st-checkout .form-group > label{
    font-weight: normal;
    font-size: 12px;
    color:#666;
}
.st-checkout div.row > div > div.panel{
    padding:0 15px;
}
.st-checkout div.page-header{
    margin-top: 0;
}
.st-checkout-address > div{
    padding: 0 15px;
}
.st-checkout-address select{
    margin-top: 5px;
}
.st-checkout-address .page-header{
    margin-left:-15px; 
    margin-right:-15px; 
}
.st-checkout-address .form-group > label > span{
    color:red;font-weight: bolder;padding-left: 3px;font-size: 16px;vertical-align: middle;
}
.st-checkout-cartlist > .page-header h4 font{
    font-weight: normal;
}
.st-checkout-shipingmethod div.radio label,.st-checkout-proceed div.radio label{
    line-height: 22px;
}
.st-checkout-proceed > p > label{
    display: inline-block;
    width: 49%;
    text-align: left;
    font-weight: normal;
}
.st-checkout-proceed > p > font{
    display: inline-block;
    width: 49%;
    text-align: right;
}
.st-checkout-proceed .btn{
    width:100%;
}
.st-signin .form-group label > font{
    color:#EA4335;
    font-weight: bolder;
}
#FILTER{
    display: none;
    position: absolute;
    top:0;
    right:0;
    z-index: 666;
    background-color:#fff;
    width:80%;
    height: 100%;
    overflow: auto;
    padding: 15px;
}
#FILTER .st-close{
    position: absolute;
    top:0;
    right:15px;
    cursor: pointer;
}
div.st-form-alert p{
    text-align: center;
}
div.st-form-alert:nth-child(2){
    margin-top: 10px;
}
#ST-NAVCART{}
#ST-NAVCART-PRODUCTS{
    display: none;
    width:380px;
    position: absolute;
    top:80px;
    right:0;
    background: #ffffff;
    z-index: 666;
    border:1px solid #BCBCBC;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #BCBCBC;
}
#ST-NAVCART-PRODUCTS:before{
    content: "";
    position: absolute;
    top:-9px;
    right: 27px;
    z-index: 667;
    width:0;
    height:0;
    border-right:8px solid transparent;
    border-left:8px solid transparent;
    border-bottom:8px solid #BCBCBC;
}
#ST-NAVCART-PRODUCTS .page-header{
    margin:0;
    padding:8px 10px;
    box-shadow: 0 1px 3px #eee;
}
.st-navbrand-cart-product-list{
    min-height: 200px;
    max-height: 400px;
    overflow: auto;
}
.st-navbrand-cart-total .btn{
    width:100%;
}
.st-navbrand-cart-total .st-total > span{
    display: inline-block;
    width: 50%;
    text-align: right;
    padding-right: 10px;
}
.st-navbrand-cart-product-list .st-cart-table .st-wholesale{
    display: none;
}
.st-cart-checkout .st-total > span{
    display: inline-block;
    min-width: 60%;
    text-align: left;
}
.st-article > h3{
    text-align: center;
}
.st-article > p.author{
    text-align: center;
    color:gray;
}
.st-article-content{
    padding:15px;
}
.st-article-content img{
    max-width:100%;
    height: auto;
}
.st-home-aboutus .jumbotron>h1{
    font-size:27px;
}
.st-home-aboutus .jumbotron p{
    font-size:16px;
}
#Delivery table td{
    border:1px solid gray;
}
#Delivery table td p{
    margin: 0;
    padding: 0;
}
#Delivery table tr:first-child{
    background:#70ad47;
    line-height: 40px;
}
#Delivery table tr>td:first-child{
    width:230px;
}
.st-article-list a{
    color:#333;
    text-decoration: underline;
}
.st-article-list h4{
    font-size:16px;
}
.st-article-list .media-body{
    font-size: 14px;
    color:#666;
}
.st-article-origin{
    font-size:12px;
    color:#666;
}
.st-nav-user{
    color: #666;
    font-size: 26px;
    padding-right: 5px;
    padding-top: 8px;
}
/*响应式*/
@media (min-width: 1200px) {
    .st-home-product .thumbnail > a.st-thumb{
        height: 181px;
    }
}
@media (max-width: 992px) {
    .st-main-product .thumbnail > a.st-thumb{
        height: 181px;
    }
}
@media (max-width: 768px) {
    .st-home-product .thumbnail > a.st-thumb{
        height: 234px;
    }
}
@media (max-width: 767px) {
    .st-main-detail .nav-tabs li{
        min-width: 145px;
    }
    .st-home-product .thumbnail > a.st-thumb,.st-main-product .thumbnail > a.st-thumb{
        height: 165px;
    }
}
.st-nav-default-currencypay>a{
    color:#EA4335 !important;
    text-align: center;
}
#st-google-translate-element{
    height: 29px;overflow: hidden;
}

/* ==================== 民族服饰专用产品卡片样式 ==================== */

/* 民族服饰专用产品卡片 */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    background-clip: padding-box;
}

/* 民族风格装饰边框 */
.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        #d4af37 0%,   /* 金色 - 代表财富和尊贵 */
        #ffd700 14%,  /* 亮金色 */
        #ff6b35 28%,  /* 橙红色 - 代表热情 */
        #e74c3c 42%,  /* 红色 - 代表吉祥 */
        #8e44ad 56%,  /* 紫色 - 代表神秘 */
        #3498db 70%,  /* 蓝色 - 代表天空 */
        #27ae60 84%,  /* 绿色 - 代表自然 */
        #d4af37 100%  /* 回到金色形成循环 */
    );
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.product-card:hover::before {
    opacity: 1;
    animation: ethnicBorderGlow 3s ease-in-out infinite;
}

/* 民族风格顶部装饰条 */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        #d4af37 0%,
        #ffd700 16.66%,
        #ff6b35 33.33%,
        #e74c3c 50%,
        #8e44ad 66.66%,
        #3498db 83.33%,
        #27ae60 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    border-radius: 20px 20px 0 0;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* 民族风格边框动画 */
@keyframes ethnicBorderGlow {
    0%, 100% {
        filter: brightness(1) saturate(1);
    }
    50% {
        filter: brightness(1.2) saturate(1.3);
    }
}

/* 产品图片容器 */
.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 民族风格产品标签 */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-badge.ethnic-new {
    background: linear-gradient(135deg, #e74c3c, #ff6b35);
    color: white;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4);
}

.product-badge.ethnic-hot {
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    color: #2c3e50;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
}

/* 产品操作按钮 */
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #2c3e50;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* 产品信息区域 */
.product-info {
    padding: 25px 20px 20px;
    background: rgba(255, 255, 255, 0.98);
    position: relative;
}

/* 民族风格装饰线 */
.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        #d4af37 25%,
        #e74c3c 50%,
        #3498db 75%,
        transparent 100%
    );
    opacity: 0.6;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #d4af37;
    text-decoration: none;
}

/* 民族风格价格显示 */
.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    font-family: 'Inter', sans-serif;
}

.original-price {
    font-size: 1rem;
    color: #95a5a6;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* 产品元信息 */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 18px;
    padding: 8px 0;
    border-top: 1px solid #f1f2f6;
    border-bottom: 1px solid #f1f2f6;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-meta i {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* 民族风格评分显示 */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-star {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-star.empty {
    color: #e9ecef;
}

.rating-text {
    font-size: 0.85rem;
    color: #6c757d;
}

/* 民族风格添加到购物车按钮 */
.add-to-cart-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border: none;
    border-radius: 12px;
    color: #2c3e50;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
}

.add-to-cart-btn:active {
    transform: translateY(-1px);
}

.add-to-cart-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

/* 民族风格特色标签 */
.ethnic-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.ethnic-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.ethnic-tag.handmade {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.2);
}

.ethnic-tag.traditional {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.2);
}

.ethnic-tag.premium {
    background: rgba(142, 68, 173, 0.1);
    color: #8e44ad;
    border-color: rgba(142, 68, 173, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .product-card {
        border-radius: 15px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 20px 15px 15px;
    }

    .product-actions {
        position: static;
        flex-direction: row;
        justify-content: center;
        opacity: 1;
        margin-top: 10px;
    }

    .action-btn {
        width: 40px;
        height: 40px;
    }
}
#st-google-translate-element>div>div{
    height: 30px;
    line-height: 27px;
    border:none;
    background: none;
}
#st-google-translate-element>div>div>span>a:hover{
    text-decoration: none;
}
#st-google-translate-element>div>div>span>a>span:last-child{
    font-size:12px;
}
.st-login-third a{
    font-size:20px;
    display: inline-block;
    padding-right:10px;
    color:#555555;
}