@charset "utf-8";
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1660px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="50" font-family="Arial" font-size="20" fill="rgba(255,255,255,0.05)">Aa</text></svg>');
            opacity: 0.3;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .logo a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 40px;
            margin-right: 10px;
        }
        
        .copy-btn {
            background: linear-gradient(135deg, #3498db, #2c7be5);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
        }
        
        .copy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .copy-btn i {
            margin-right: 5px;
        }
        
        nav {
            margin: 25px 0 15px;
            width: 100%;
            position: relative;
        }
        
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .nav-menu li {
            flex: 1 0 auto;
        }
        
        .nav-menu li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            text-align: center;
            transition: all 0.3s;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }
        
        .nav-menu li a::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: #3498db;
            transition: width 0.3s;
        }
        
        .nav-menu li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .nav-menu li a:hover::before {
            width: 60%;
        }
        
        .nav-menu li a.active {
            background-color: rgba(52, 152, 219, 0.7);
            font-weight: bold;
        }
        
        .nav-menu li a.active::before {
            width: 80%;
            background-color: white;
        }
        
        main {
            padding: 40px 0;
        }
        
        .section {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 35px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #3498db, #2c3e50);
        }
        
        .section-title {
            font-size: 28px;
            margin-bottom: 25px;
            color: #2c3e50;
            padding-bottom: 15px;
            border-bottom: 2px solid #f1f1f1;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, #3498db, #9b59b6);
        }
        
        .section-title i {
            margin-right: 15px;
            color: #3498db;
            font-size: 32px;
        }
        
        .ad-banner {
            position: relative;
            width: 100%;
            height: 120px;
            background: linear-gradient(135deg, #f1f1f1, #e0e0e0);
            margin: 40px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .ad-banner:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .ad-label {
            position: absolute;
            top: 8px;
            right: 8px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 10px;
            font-size: 12px;
            border-radius: 20px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .font-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .font-item {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 0;
            transition: all 0.3s;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .font-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .font-preview {
            height: 180px;
            background-color: #f9f9f9;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .font-preview::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            z-index: 1;
        }
        
        .font-preview-text {
            font-size: 36px;
            text-align: center;
            z-index: 2;
            width: 100%;
            padding: 0 20px;
            word-break: break-all;
        }
        
        .font-info {
            padding: 20px;
        }
        
        .font-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #2c3e50;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .font-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-bottom: 10px;
        }
        
        .font-tag {
            background-color: #e0f2fe;
            color: #0369a1;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .font-tag.free {
            background-color: #dcfce7;
            color: #166534;
        }
        
        .font-tag.commercial {
            background-color: #fee2e2;
            color: #991b1b;
        }
        
        .font-tag.chinese {
            background-color: #e0e7ff;
            color: #4338ca;
        }
        
        .font-tag.english {
            background-color: #fef3c7;
            color: #92400e;
        }
        
        .font-desc {
            margin-bottom: 15px;
            color: #555;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .font-meta {
            background-color: #f8fafc;
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 15px;
            font-size: 13px;
            color: #64748b;
        }
        
        .font-meta-item {
            display: flex;
            margin-bottom: 5px;
        }
        
        .font-meta-label {
            font-weight: bold;
            min-width: 80px;
            color: #475569;
        }
        
        .font-downloads {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .font-download {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #3498db, #2c7be5);
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .font-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #2c7be5, #3498db);
        }
        
        .font-download i {
            margin-right: 5px;
        }
        
        .font-download.github {
            background: linear-gradient(135deg, #333, #555);
        }
        
        .font-download.github:hover {
            background: linear-gradient(135deg, #555, #333);
        }
        
        .font-download.official {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }
        
        .font-download.official:hover {
            background: linear-gradient(135deg, #c0392b, #e74c3c);
        }
        
        .font-download.cloud {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }
        
        .font-download.cloud:hover {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .product-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            background-color: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 200px;
            background-color: #f9f9f9;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #999;
            position: relative;
            overflow: hidden;
        }
        
        .product-img::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .product-price {
            color: #e74c3c;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .product-desc {
            color: #555;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .product-btn {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2c7be5);
            color: white;
            padding: 8px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .product-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .contact-info {
            margin-top: 25px;
            padding: 20px;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }
        
        .contact-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }
        
        .contact-title i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .contact-item {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .contact-label {
            font-weight: bold;
            min-width: 100px;
            color: #475569;
        }
        
        .contact-value {
            color: #334155;
        }
        
        .contact-value a {
            color: #3498db;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .contact-value a:hover {
            color: #2c7be5;
            text-decoration: underline;
        }
        
        footer {
            background: linear-gradient(135deg, #2c3e50, #1a2639);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #3498db;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #3498db;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            padding: 5px 0;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background-color: #3498db;
            transform: translateY(-3px);
        }
        
        .copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .font-list {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 20px;
                justify-content: center;
            }
            
            .nav-menu {
                flex-direction: column;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .font-list, .product-grid {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 25px 20px;
            }
            
            .footer-column {
                min-width: 100%;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .font-downloads {
                flex-direction: column;
            }
            
            .font-download {
                justify-content: center;
            }
            
            .section-title {
                font-size: 24px;
            }
        }