@charset 'utf-8';
* {
    margin: 0;
    padding: 0;
}

html,
body,
div,
ul,
li,
a,
img {
    margin: 0;
    padding: 0;
    list-style: none;
}

html,
body {
    width: 100%;
    font-size: 100%;
}

img {
    display: block;
}

.pagination {
    width: 100%;
    left: 0;
    bottom: 10px;
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms;
    transition: 300ms;
    z-index: 10;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pagination span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: .5;
    margin: 0 3px;
}

.pagination span.active {
    opacity: 1;
    background: #007AFF;
}

.pic-panel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pic-list {
    width: 100%;
    position: relative;
}

.pic-list li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-height: 16rem;
    overflow: hidden;
}

.pic-list .re {
    position: relative;
    z-index: 2;
}

.pic-list li img {
    width: 100%;
}

.pic-list li a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media screen and (min-width: 600px) {
    .pic-box {
        position: relative;
        top: 0;
        left: 25%;
        width: 50%;
    }
    .pic-list li:nth-child(2) {
        left: 100%;
    }
    .pic-list li:last-child {
        left: -100%;
    }
    .pic-list li img {
        padding: 0 0.125rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}