<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}
.container {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 15px;
}
header {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
header::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
header::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.logo span {
    font-size: 14px;
    display: block;
    margin-top: 5px;
    opacity: 0.8;
}
.search-box {
    display: flex;
    width: 50%;
    position: relative;
}
.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.search-box button {
    padding: 0 25px;
    background: linear-gradient(135deg, #ff5722, #e64a19);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}
.search-box button:hover {
    background: linear-gradient(135deg, #e64a19, #bf360c);
}
nav {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.nav-item {
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}
.nav-item:hover, .nav-item.active {
    background-color: rgba(255,255,255,0.1);
}
.nav-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background-color: #ff5722;
}
.main-content {
    padding: 30px 0;
}
.section-title {
    font-size: 26px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1e88e5;
    color: #1e88e5;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #ff5722;
}
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff5722;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}
.card-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.card:hover .card-img {
    transform: scale(1.1);
}
.card-content {
    padding: 20px;
}
.card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-subtitle {
    color: #ff5722;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.card-subtitle i {
    margin-right: 5px;
}
.card-desc {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 12px;
    margin-bottom: 15px;
}
.card-contact {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    color: #555;
    font-size: 14px;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 8px;
}
.contact-item i {
    margin-right: 5px;
    color: #1e88e5;
    font-size: 16px;
}
.wechat-qrcode {
    position: absolute;
    bottom: 50px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 10;
}
.contact-item:hover .wechat-qrcode {
    display: block;
}
.ad-banner {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.ad-banner:hover {
    background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
}
.ad-label {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 3px;
}
.ad-content {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    color: #333;
}
footer {
    background: linear-gradient(135deg, #263238, #1a2327);
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1e88e5, #ff5722);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #bbdefb;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff5722;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 12px;
}
.footer-column a {
    color: #b0bec5;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}
.footer-column a:hover {
    color: #1e88e5;
    transform: translateX(5px);
}
.footer-contact {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #b0bec5;
}
.footer-contact i {
    margin-right: 10px;
    color: #1e88e5;
}
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #37474f;
    color: #b0bec5;
    font-size: 14px;
}
.social-links {
    display: flex;
    margin-top: 20px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #37474f;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.social-link:hover {
    background-color: #1e88e5;
    transform: translateY(-3px);
}
.copy-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
    transition: all 0.3s;
}
.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.copy-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.copy-btn:hover .copy-tooltip {
    opacity: 1;
}
.rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.stars {
    color: #ffc107;
    margin-right: 10px;
}
.review-count {
    color: #888;
    font-size: 13px;
}
.price {
    font-size: 20px;
    color: #ff5722;
    font-weight: bold;
    margin: 10px 0;
}
.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}
.discount {
    background-color: #ff5722;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}
.tag {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1e88e5;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.tag.hot {
    background-color: #ffebee;
    color: #f44336;
}
.tag.new {
    background-color: #e8f5e9;
    color: #4caf50;
}
.tag.vip {
    background-color: #fff8e1;
    color: #ff8f00;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}
.info-table th, .info-table td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: left;
}
.info-table th {
    background-color: #f5f5f5;
}
.info-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.review-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.review-author {
    font-weight: bold;
    color: #333;
}
.review-date {
    color: #888;
    font-size: 12px;
}
.review-content {
    color: #555;
    line-height: 1.6;
}
.review-rating {
    color: #ffc107;
    margin: 5px 0;
}
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}
.payment-method {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.payment-method i {
    margin-right: 5px;
    color: #1e88e5;
}

@media (max-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}
@media (max-width: 992px) {
    .search-box {
        width: 100%;
        margin-top: 15px;
    }
    .nav-container {
        justify-content: center;
    }
    .nav-item {
        padding: 12px 15px;
    }
}
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }
    .nav-container {
        flex-direction: column;
        align-items: center;
    }
    .nav-item {
        width: 100%;
        text-align: center;
    }
    .card-container {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-column {
        margin-bottom: 30px;
    }
    .copy-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}</pre></body></html>