/* * {
    margin: 0;
    padding: 0;
} */

.box3 {
    position: relative;
    /* left: 264px; */
    top: 278px;
    width: 326px;
    height: 465px;
    margin: auto;
}

.wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    background:transparent;
    /* background-color: #eee; */
    perspective: 800px;
    transform-style: preserve-3d;
}

.image {
    float: left;
    width: 300px;
    height: 365px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 8px;
    transition: transform 1s ease-in-out;
}
.image img{
    width: 272px;
    height: 386px;
}

/* 左右按钮 */
.btn {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -25px);
    width: 1250px;
    z-index: 999
}

.btn .left,
.btn .right {
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 30px;
    text-align: center;
    cursor: pointer;
    color: white;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
}

.btn .left {
    left: 0;
}

.btn .right {
    right: 0;
}

.btn span:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* 小圆圈 */
.point {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, 200px);
    height: 14px;
    z-index: 999
}

.point>li {
    list-style: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: white;
    float: left;
    margin: 0 2px;
    border: 2px solid rgb(160, 162, 167);
    box-sizing: border-box;
}

.point .current {
    border: 2px solid rgb(70, 71, 71);
    background-color: rgb(119, 116, 116);
}