﻿/*轮播图开始*/
.shell {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    border-radius: 5px;

.images {
    width: 400%;
    height: 100%;
    display: flex;
    position: absolute;
    left: 0;
    transition: 0.2s;
}

.img {
    width: 100%;
    background-size: cover;
}

    .img:nth-child(1) {
        background-image: url("../image/001.jpg");
    }

    .img:nth-child(2) {
        background-image: url("../image/002.jpg");
    }

    .img:nth-child(3) {
        background-image: url("../image/003.jpg");
    }

    .img:nth-child(4) {
        background-image: url("../image/004.jpg");
    }

    .img:nth-child(5) {
        background:url("../image/004.jpg")no-repeat;
        background-size: cover;
    }

.min-images {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    right: 10%;
}

.min {
    width: 40px;
    height: 10px;
    cursor: pointer;
    background-size: cover;
    border-radius: 2px;
    border: solid 1px rgba(3, 2, 2, 0);
    /*照片偏移量    border:solid 5px rgba(255,255,255,0.5);*/
    background-position: -20px 0;
    box-shadow: 0 0 1rem 0.2rem rgba(254, 254, 255, 0);
}

    .min:nth-child(1) {
        background: url("") no-repeat;
    }

    .min:nth-child(2) {
        background: url("") no-repeat;
    }

    .min:nth-child(3) {
        background: url("") no-repeat;
    }

    .min:nth-child(4) {
        background: url("") no-repeat;
    }

.button {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    user-select: none;
}

.button-left, .button-right {
    font-size: 1.4rem;
    padding: 0 20px;
    line-height: 100%;
    cursor: pointer;
    color: rgb(102 136 226 / 0.9);
}
/*轮播图结束*/
