/* 幻灯片容器 */
#w-slider {
    position: relative;
    width: 100%;
    height: 490px;
    overflow: hidden;
    visibility: hidden;
}

/* 幻灯片内容 */
.w-slider-wrap {
    cursor: default;
    position: relative;
    width: 100%;
    height: 100%;
}

/* 图片 */
.w-imglink {
    width:  100% !important;
    height:100%;
}
.w-slider-wrap img {
    width: 100%;
    height:100%;
    object-fit: cover;
}

/* 左右箭头 */
.slideArrow {
    display: block;
    position: absolute;
    width: 34px !important;
    height: 56px !important;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    z-index: 5;
}
.slideArrow:hover {
    background: rgba(000, 000, 000, .4);
}

.w-point-left {
    top: 0;
    left: 12px;
}

.w-point-right {
    top: 0;
    right: 12px;
}

.w-itemicon {
    color: #FFF;
    font-size: 18px;
    line-height: 56px;
    opacity: .8;
}

/* 小圆点导航 */
.slideCircle {
    position: absolute;
    bottom: 16px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.w-point-item {
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background-color: rgba(000, 000, 000, .5);
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.2s linear, transform 0.2s;
}

.w-point-itemav,
.w-point-item:hover,
.w-point-item[data-u="active"] {
    background-color: rgba(255, 255, 255, 1)
}
