/*样式*/
/* 轮播图容器（动态计算高度） */
.slideBox {
    width: 100%;
    overflow: hidden;
    position: relative;}

/* 轮播内容 */
.slideBox .bd {
    height: 100%;}

.slideBox .bd li {
    position: relative;}

.slideBox .bd img {
    width: 100%;
    height: 100%;
    object-fit: cover;}

/* 图片说明文字 */
.slideBox .bd p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.18rem;}

/* 轮播导航点 */
.slideBox .hd {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;}

.slideBox .hd ul li {
    display: inline-block;
    width: 0.2rem;
    height: 0.2rem;
    margin: 0 0.3rem;
    background: rgba(0,0,0,.5);
    border-radius: 50%;
    cursor: pointer;
    line-height: 0.5rem;
    color: transparent;}

.slideBox .hd ul li.on {
    background: #0d5787;}

/* 前后按钮 */
.slideBox .prev,
.slideBox .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background: rgba(0,0,0,0.3);
    color: white;
    text-align: center;
    line-height: 1rem;
    border-radius: 50%;
    z-index: 10;
    font-size: 0.8rem;}

.slideBox .prev { left: 1rem;}
.slideBox .next { right: 1rem;}
