/* 全局样式 */
body {
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 导航栏样式 */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.25rem;
}

/* 轮播图样式 */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
}

/* 卡片样式 */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 服务卡片样式 */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* 评价卡片样式 */
.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 底部样式 */
footer {
    background-color: #343a40;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0d6efd;
}

/* 按钮样式 */
.btn {
    transition: all 0.3s ease;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }

    .navbar-brand {
        font-size: 1rem;
    }
}

/* 返回顶部按钮 */
#backToTop {
    z-index: 9999;
}

/* 商品列表样式 */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .price {
    color: #dc3545;
    font-weight: bold;
    font-size: 1.25rem;
    margin-top: auto;
}

/* 评分样式 */
.stars {
    color: #ffc107;
}

/* 搜索框样式 */
.search-container {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
}

/* 表单样式 */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* 标签样式 */
.badge {
    font-size: 0.75rem;
}

/* 分隔线样式 */
.divider {
    height: 3px;
    background-color: #0d6efd;
    margin: 2rem 0;
}

/* 面包屑导航样式 */
.breadcrumb {
    background-color: transparent;
}

.breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

#product-list{
}
