/* 苹果风格的全局样式，加入服装厂特色 */

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(245, 245, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 56px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-feature-settings: 'tnum' on, 'lnum' on;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.navbar-logo-chinese {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.navbar-logo-english {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
    line-height: 1.2;
}

.navbar-logo:hover .navbar-logo-chinese {
    color: #0071e3;
}

.navbar-logo:hover .navbar-logo-english {
    color: #0071e3;
}

.navbar-logo:hover {
    transform: translateY(-1px);
}

.navbar-logo:hover .logo-icon svg {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar-menu li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-menu li a:hover {
    color: #0071e3;
}

.navbar-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-actions a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-actions a:hover {
    color: #0071e3;
}

/* 英雄区域 */
.hero {
    height: 92vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: #f5f5f7;
    position: relative;
    overflow: hidden;
    margin-top: 56px;
    padding: 0;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.03) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 113, 227, 0.05) 100%);
    z-index: 0;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.1), transparent);
    height: 1px;
}

.hero-line-1 {
    top: 20%;
    left: 5%;
    right: 5%;
    width: 90%;
}

.hero-line-2 {
    bottom: 20%;
    left: 10%;
    right: 10%;
    width: 80%;
}

.hero-dot {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(0, 113, 227, 0.08);
    border: 1px solid rgba(0, 113, 227, 0.1);
}

.hero-dot-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
}

.hero-dot-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 8%;
}

.hero-dot-3 {
    width: 180px;
    height: 180px;
    top: 25%;
    left: -60px;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    z-index: 1;
    position: relative;
}

.hero-content {
    z-index: 2;
    flex: 1;
    max-width: 620px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    position: relative;
}

.hero-company-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.05) 100%);
    border: 1px solid rgba(0, 113, 227, 0.2);
    color: #0071e3;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 2px 12px rgba(0, 113, 227, 0.08);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #0071e3 0%, #0077ed 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.4);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.4);
    }
    50% { 
        opacity: 0.8; 
        box-shadow: 0 0 0 10px rgba(0, 113, 227, 0);
    }
}

.hero-title {
    font-size: 76px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.95;
    letter-spacing: -0.05em;
    animation: fadeInUp 0.6s ease-out 0.15s both;
    position: relative;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #0071e3;
    letter-spacing: 0.01em;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    padding-left: 4px;
}

.hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.45s both;
    font-weight: 400;
    padding-left: 4px;
}

/* 统计数据 */
.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 44px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.03) 0%, rgba(0, 113, 227, 0.01) 100%);
    border-radius: 16px;
    padding: 24px 0;
    border: 1px solid rgba(0, 113, 227, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
    justify-content: center;
}

.stat-item:first-child {
    padding-left: 36px;
}

.stat-item:last-child {
    padding-right: 36px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #0071e3 0%, #0077ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(0, 113, 227, 0.15), transparent);
    margin: 8px 0;
}

.hero-image-container {
    position: relative;
    flex: 1;
    height: 600px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: visible;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image-frame {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid rgba(0, 113, 227, 0.15);
    border-radius: 36px;
    z-index: 0;
}

/* 轮播样式 */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 1;
    background-color: #f5f5f7;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: scale(1.08);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.carousel-slide:first-child {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 113, 227, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background-color: rgba(0, 113, 227, 0.4);
}

.indicator.active {
    background-color: #0071e3;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.06);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-group {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    margin-top: 4px;
    animation: fadeInUp 0.6s ease-out 0.75s both;
}

/* 按钮 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #0071e3 0%, #0077ed 50%, #0071e3 100%);
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.3), 0 2px 8px rgba(0, 113, 227, 0.15);
}

.btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 113, 227, 0.4), 0 4px 12px rgba(0, 113, 227, 0.2);
}

.btn-primary .btn-arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
    font-weight: 700;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(6px);
}

.btn-secondary {
    background-color: #fff;
    color: #000;
    border: 2px solid #e5e5e7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
    background-color: #fafafa;
    border-color: #c5c5c8;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* 产品展示 */
.products-section {
    padding: 80px 0;
    background-color: #f5f5f7;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

/* 页脚 */
.footer {
    background-color: #f5f5f7;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0071e3;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #888;
    text-align: center;
}

/* 登录/注册页面 */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f7;
    padding: 40px 20px;
}

.auth-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.auth-form h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.auth-links {
    margin-top: 20px;
    font-size: 14px;
}

.auth-links a {
    color: #0071e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #0077ed;
}

/* 个人中心 */
.service-center {
    min-height: 100vh;
    background-color: #f5f5f7;
    padding-top: 80px;
}
.service-center-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 30px;
}

.service-sidebar {
    width: 250px;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.service-sidebar h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}
.service-sidebar ul {
    list-style: none;
}
.service-sidebar li {
    margin-bottom: 12px;
}
.service-sidebar a {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.service-sidebar a:hover {
    background-color: #f5f5f7;
    color: #0071e3;
}
.service-sidebar a.active {
    background-color: #0071e3;
    color: #fff;
}
.service-content {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.service-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}
.service-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}
.service-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f5f7;
}
.service-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}
.service-info p {
    color: #666;
    margin-bottom: 4px;
}

/* 商品详情页 */
.product-detail {
    min-height: 100vh;
    background-color: #f5f5f7;
    padding-top: 80px;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: #0071e3;
    transform: scale(1.05);
}

.product-detail-info h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.product-detail-price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #000;
}

.product-detail-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.product-detail-features {
    margin-bottom: 32px;
}

.product-detail-features h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.product-detail-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-detail-features li {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-detail-features li::before {
    content: "•";
    color: #0071e3;
    font-weight: bold;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 管理中心 */
.admin-container {
    display: flex;
    min-height: calc(100vh - 56px);
    margin-top: 56px;
}

.admin-sidebar {
    width: 250px;
    background-color: #f5f5f7;
    border-right: 1px solid #e0e0e0;
    padding: 20px;
}

.admin-sidebar h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar li {
    margin-bottom: 10px;
}

.admin-sidebar a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #666;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-sidebar a:hover {
    background-color: #e8e8ed;
    color: #000;
}

.admin-sidebar a.active {
    background-color: #0071e3;
    color: #fff;
}

.admin-content {
    flex: 1;
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.admin-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.admin-actions {
    display: flex;
    gap: 12px;
}

/* 表格样式 */
.table-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.table th,
.table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.table th {
    background-color: #f5f5f7;
    font-weight: 600;
    font-size: 14px;
}

.table tr:hover {
    background-color: #f9f9f9;
}

/* 搜索和筛选 */
.search-container {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    align-items: center;
}

.search-input {
    flex: 1;
    max-width: 400px;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.filter-select {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.pagination-button {
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-button:hover {
    background-color: #f5f5f7;
}

.pagination-button.active {
    background-color: #0071e3;
    color: #fff;
    border-color: #0071e3;
}

/* 模态框 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

/* 通知 */
.notification {
    position: fixed;
    top: 60px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.success {
    background-color: #34c759;
}

.notification.error {
    background-color: #ff3b30;
}

.notification.info {
    background-color: #0071e3;
}

.notification.active {
    transform: translateX(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 导航栏 */
    .navbar-container {
        padding: 0 20px;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .navbar-actions {
        gap: 10px;
    }
    
    .logo-text {
        display: none;
    }
    
    /* 英雄区域 */
    .hero {
        height: auto;
        min-height: 700px;
        flex-direction: column;
        padding: 60px 20px;
        gap: 50px;
        text-align: center;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0;
        gap: 50px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-company-badge {
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding-left: 0;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
        padding-left: 0;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        width: 100%;
        padding: 20px 0;
    }
    
    .stat-item {
        padding: 0 24px;
    }
    
    .stat-item:first-child {
        padding-left: 24px;
    }
    
    .stat-item:last-child {
        padding-right: 24px;
    }
    
    .stat-divider {
        display: block;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-container {
        width: 100%;
        height: 350px;
        min-height: 300px;
    }
    
    .hero-image-frame {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    
    .carousel-indicators {
        bottom: -30px;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
    }
    
    /* 产品网格 */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .products-sidebar {
        width: 100%;
    }
    
    /* 产品详情 */
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }
    
    /* 服务中心 */
    .service-center-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .service-sidebar {
        width: 100%;
    }
    
    /* 管理中心 */
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .admin-content {
        padding: 20px;
    }
    
    /* 公司页面 */
    .company-container {
        padding: 20px;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 登录页面 */
    .login-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }
    
    .login-form {
        padding: 30px;
    }
    
    /* 特色功能 */
    .feature-grid {
        padding: 0 20px;
        gap: 20px;
    }
    
    /* 服装系列 */
    .collection-grid {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 服装厂特色 */
    .clothing-feature-grid {
        padding: 0 20px;
        gap: 20px;
    }
    
    /* 页脚 */
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .footer-section {
        width: 100%;
        text-align: center;
    }
}

/* 微信浏览器特定样式 */
@media (max-width: 480px) {
    /* 防止微信浏览器默认字体大小调整 */
    * {
        -webkit-text-size-adjust: 100%;
    }
    
    /* 确保按钮和链接有足够的点击区域 */
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-block;
    }
    
    /* 调整字体大小以适应小屏幕 */
    body {
        font-size: 14px;
    }
    
    /* 调整导航栏高度 */
    .navbar-container {
        height: 50px;
    }
    
    /* 调整英雄区域 */
    .hero {
        min-height: 500px;
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    /* 调整按钮大小 */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* 调整表单输入大小 */
    .form-input {
        padding: 12px;
        font-size: 14px;
    }
    
    /* 调整表格显示 */
    .table {
        font-size: 12px;
    }
    
    .table th, .table td {
        padding: 8px 12px;
    }
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0071e3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 服装厂特色样式 */
.clothing-feature {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.clothing-feature h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: -0.01em;
}

.clothing-feature p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clothing-feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.clothing-feature-item {
    padding: 40px 30px;
    border-radius: 16px;
    background-color: #f5f5f7;
    transition: all 0.3s ease;
}

.clothing-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.clothing-feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0071e3;
}

.clothing-feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    letter-spacing: -0.01em;
}

.clothing-feature-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* 服装分类样式 */
.category-section {
    padding: 80px 0;
    background-color: #fff;
}

.category-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.category-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}