body{ margin:0; background-color:#999}
p,ul{ margin:0; padding:0}
img{ border:0}
a{ color:#000; text-decoration:none}
a:hover{ color:#F03; text-decoration:none}


/* 轮播图容器 */
.carousel-container {
    position: relative;
    width: 1200px; /* 可根据实际需要调整宽度 */
    height: 330px; /* 可根据实际需要调整高度 */
    overflow: hidden;
    border-radius: 4px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
    background-color: #fff;
}

/* 图片轨道 */
.carousel-track {
    display: flex;
    width: 100%;
    /* height: 100%; */
    transition: transform 0.5s ease-in-out;
}

/* 单张幻灯片 */
.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保证图片铺满且不变形 */
    display: block;
}

/* 底部指示器（圆点）容器 */
.carousel-bj{position: absolute; background: #ddd; height: 30px; width: 100%;}
.carousel-indicators {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    /* background-color: rgba(255, 255, 255, 0.6); 半透明背景条，仿照原图 */
    padding: 5px 12px;
    border-radius: 12px;
}
/* 单个圆点 */
.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc; /* 未激活状态颜色（灰色） */
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* 激活状态的圆点（红色） - 对应您图片中的样式 */
.dot.active {
    background-color: #a91606; 
}

.dot:hover {
    background-color: #888;
}

</style>

