<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ����桁� */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 紊顔���桁� */
header {
    background-color: #2c3e50;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background: linear-gradient(135deg, #3498db, #e74c3c);
    border-radius: 4px;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ��膣∽��垸� */
.search-bar {
    background-color: #3498db;
    padding: 20px 0;
}

.search-bar .container {
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #1a6a9c;
}

/* 莉��㊤�丈�桁� */
.slider {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

/* 篋у��臀��惹�桁� */
.featured-products {
    margin: 40px 0;
}

.featured-products h2, .page-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
    color: #2c3e50;
}

.product-card p {
    padding: 0 15px 15px;
    color: #7f8c8d;
}

.product-actions {
    display: flex;
    padding: 0 15px 15px;
    gap: 10px;
}

.demo-btn, .info-btn {
    flex: 1;
    padding: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

/* 篆��号�腓堺�����桁�鐚�篏水�句��莎傑�ュ��������丈･ */
.demo-btn {
    display: inline-block;
    padding: 8px 0;
    background-color: #3498db;
    color: white;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
    flex: 1;
}

.demo-btn:hover {
    background-color: #2980b9;
    color: white;
}

.info-btn {
    background-color: #e74c3c;
    color: white;
}

.info-btn:hover {
    background-color: #c0392b;
}

/* ��蕁究�桁� */
.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
	flex-wrap: wrap;
}

.pagination a {
    color: #2c3e50;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.pagination a.active {
    background-color: #3498db;
    color: white;
    border: 1px solid #3498db;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

/* 絎∽�������桁� */
.customer-service {
    position: fixed;
    right: 20px;
    bottom: 20px;
}
/* �贋�医��蕁究�桁� */
.pagination a.disabled {
    color: #ccc;
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
}

.service-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

.service-btn:hover {
    background-color: #c0392b;
    transform: scale(1.1);
}

/* 罔≧��罅��桁� */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover {
    color: #333;
}

#modal-title {
    margin-bottom: 15px;
    color: #2c3e50;
}

#modal-body {
    padding: 10px 0;
}

/* ��綺�綣顒乗� */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #2c3e50;
        flex-direction: column;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li a {
        padding: 15px;
        border-bottom: 1px solid #34495e;
    }

    .mobile-menu {
        display: block;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
}
/* ����篁倶��鮎羞糸��篁ヤ�篁ｇ�� */

/* ��膣∫�篋����� */
@keyframes highlight {
    0% { box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); }
    50% { box-shadow: 0 0 20px rgba(52, 152, 219, 0.8); }
    100% { box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); }
}

.highlight {
    animation: highlight 1.5s ease-in-out;
}
/* �����CSS�榊�筝�羞糸��篁ヤ��桁� */

/* 篋у��篁傑�惹�桁� */
.product-price {
    padding: 0 15px 10px;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

/* �贋�遺婚���∞��絽�絮� */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-actions {
    margin-top: auto;
    padding-bottom: 15px;
}
/* Logo�桁� */
.logo {
    height: 30x; /* �号������丞��蕭�綺���� */
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%; /* 篆����丞����紮�罸�箴� */
    width: auto;  /* 絎遵墾������綺� */
    max-width: 180px; /* �号�������荀�莪��� */
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 0.8;
}

/* ��絖�莊�薊����桁� */
.marquee-container {
    background: linear-gradient(135deg, #8e44ad, #3498db);
    color: white;
    height: 50px; /* 莨�蕭���莊�薊��� */
    overflow: hidden;
    position: relative;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.marquee-content {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: inline-block;
    margin-right: 60px;
    font-size: 22px;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
}

.marquee-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}
/* ���紙���� */
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ��綺�綣顒乗� */
@media (max-width: 768px) {
    .marquee-container {
        height: 60px;
    }
    
    .marquee-item {
        font-size: 18px;
        margin-right: 40px;
    }
}

@media (max-width: 480px) {
    .marquee-container {
        height: 50px;
    }
    
    .marquee-item {
        font-size: 16px;
        margin-right: 30px;
    }
}
.sparkle {
  color: #ff00ff;
  font-weight: bold;
  animation: sparkle 1s infinite alternate;
  text-shadow: 0 0 5px;
}

@keyframes sparkle {
  from { text-shadow: 0 0 5px #ff00ff; }
  to { text-shadow: 0 0 15px #ff00ff, 0 0 20px #ffff00; }
}</pre></body></html>