/* ÂÖ²¥ÓÅ»¯ÑùÊ½ */
#slider {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    height: 205px;
    background: #f5f5f5;
}

    #slider a {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        #slider a:first-child {
            display: block !important;
        }

    #slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

.slider-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

    .slider-dot.active {
        background: #ff6666 !important;
        border-color: #ff6666;
        transform: scale(1.2);
    }

    .slider-dot:hover {
        background: rgba(255,255,255,1);
    }


