.lunbo {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.lunbo-container {
    width: 100%;
    position: relative;
}

.lunbo-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.lunbo-slide {
    min-width: 100%;
    overflow: hidden;
}

.lunbo-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.lunbo-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lunbo-controls button {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.lunbo-controls button:hover {
    background: rgba(0,0,0,0.7);
}

.lunbo-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    /*background-color: gray;*/
    z-index: 999;
}

.lunbo-dot {
    width: 12px;
    height: 12px;
    background: rgba(236, 4, 4, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.lunbo-dot.active {
    background: black;
}