/* 图片轮播*/
.LB {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.slides {
    position: relative;
    width: 1850px;
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 130px;
    overflow: hidden;
}

li.slide {
    margin: 0;
    padding: 0;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica;
    font-size: 120px;
    color: #fff;
    transition: .5s transform ease-in-out;
}

.slide:nth-of-type(1) {
    background-image: url(images/W05LB01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.slide:nth-of-type(2) {
    background-image: url(images/W05LB02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    left: 100%;
    background-position: center center;
}

.slide:nth-of-type(3) {
    background-image: url(images/W05LB03.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 200%;
}

.slide:nth-of-type(4) {
    background-image: url(images/W05LB04.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 300%;
}

.slide:nth-of-type(5) {
    background-image: url(images/W05LB05.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 400%;
}

.slide:nth-of-type(6) {
    background-image: url(images/W05LB09.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 500%;
}

.slide:nth-of-type(7) {
    background-image: url(images/W05LB08.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    left: 600%;
}


.navigator {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    width: 100%;
    z-index: 100;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    display: none;
}

.navigator i {
    font-size: 100px;
    color: #ffffff;
    font-style: normal;
    background-color: #ffffffc9;
}

input[type="radio"] {
    position: relative;
    z-index: 100;
    display: none;
}

.controls-visible {
    position: absolute;
    width: 100%;
    bottom: 12px;
    text-align: center;
}

/* 按钮样式*/
.controls-visible label {
    display: inline-block;
    width: 30px;
    height: 10px;
    background-color: #ffffff85;
    border-radius: 5px;
    margin: 0 5px 10px;
}

.slides input[type="radio"]:nth-of-type(1):checked~.controls-visible label:nth-of-type(1) {
    background-color: #ffffff;
}

.slides input[type="radio"]:nth-of-type(2):checked~.controls-visible label:nth-of-type(2) {
    background-color: #ffffff;
}

.slides input[type="radio"]:nth-of-type(3):checked~.controls-visible label:nth-of-type(3) {
    background-color: #ffffff;
}

.slides input[type="radio"]:nth-of-type(4):checked~.controls-visible label:nth-of-type(4) {
    background-color: #ffffff;
}

.slides input[type="radio"]:nth-of-type(5):checked~.controls-visible label:nth-of-type(5) {
    background-color: #ffffff;
}

.slides input[type="radio"]:nth-of-type(6):checked~.controls-visible label:nth-of-type(6) {
    background-color: #ffffff;
}

.slides input[type="radio"]:nth-of-type(7):checked~.controls-visible label:nth-of-type(7) {
    background-color: #ffffff;
}




.slides input[type="radio"]:nth-of-type(1):checked~.slide {
    transform: translateX(0%);
}

.slides input[type="radio"]:nth-of-type(2):checked~.slide {
    transform: translateX(-100%);
}

.slides input[type="radio"]:nth-of-type(3):checked~.slide {
    transform: translateX(-200%);
}

.slides input[type="radio"]:nth-of-type(4):checked~.slide {
    transform: translateX(-300%);
}

.slides input[type="radio"]:nth-of-type(5):checked~.slide {
    transform: translateX(-400%);
}

.slides input[type="radio"]:nth-of-type(6):checked~.slide {
    transform: translateX(-500%);
}

.slides input[type="radio"]:nth-of-type(7):checked~.slide {
    transform: translateX(-600%);
}


/* Left/Right Button Classes Below */

.navigator {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    width: 100%;
    z-index: 100;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    display: none;
}

.navigator i {
    font-size: 32px;
    color: #000;
}

.slides input[type="radio"]:nth-of-type(1):checked~.navigator:nth-of-type(1) {
    display: flex;
}

.slides input[type="radio"]:nth-of-type(2):checked~.navigator:nth-of-type(2) {
    display: flex;
}

.slides input[type="radio"]:nth-of-type(3):checked~.navigator:nth-of-type(3) {
    display: flex;
}

.slides input[type="radio"]:nth-of-type(4):checked~.navigator:nth-of-type(4) {
    display: flex;
}

.slides input[type="radio"]:nth-of-type(5):checked~.navigator:nth-of-type(5) {
    display: flex;
}

.slides input[type="radio"]:nth-of-type(6):checked~.navigator:nth-of-type(6) {
    display: flex;
}

.slides input[type="radio"]:nth-of-type(7):checked~.navigator:nth-of-type(7) {
    display: flex;
}