.pagewrap {
    min-width: 1200px;
    height: 500px;
    position: relative;
}

.pageblock {
    width: 100%;
}

.pageblock#fullscreen {
    height: 100%;
    background: #1A1A1A;
    color: white;
    max-width: 1920px;
    margin: 0 auto;
}

.pageblock#fullscreen .slider {
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
    position: relative;
}

.pageblock#fullscreen .slider .slide {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    float: left;
    position: absolute;
}
.pageblock#fullscreen .slider .slide .slide-btn{
    position: absolute;
    width: 204px;
    height:46px;
    line-height: 46px;
    border: 1px solid #E40807;
    font-size: 16px;
    color: #E40807;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
    text-align: center;
}
.pageblock#fullscreen .slider .slide .slide-btn:hover{
    color: #fff;
}
.pageblock#fullscreen .slider .slide .slide-btn::after{
    content: "";
    display: block;
    width: 0;
    height: 47px;
    background-color: #E40807;
    color: #fff;
    margin-top: -47px;
    transition: all 0.6s ease 0s;
}
.pageblock#fullscreen .slider .slide .slide-btn:hover::after{
    width: 100%;
    height: 47px;
}
.pageblock#fullscreen #slideposition {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    text-align: center;
}

.pageblock#fullscreen #slideposition ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.pageblock#fullscreen #slideposition ul li.indicator {
    display: inline-block;
    height: 3px;
    width: 50px;
    background: #666666;
    margin: 0 5px;
    padding: 0;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    filter: progid: DXImageTransform.Microsoft.Shadow(color=#909090, direction=120, strength=3);
}

.pageblock#fullscreen #slideposition ul li.indicator.active {
    background: #f40606;
}
.pageblock#fullscreen #slideposition ul li.indicator:hover{
    background: #f40606;
}

.pageblock#fullscreen .slide_arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 45%;
    font-size: 50px;
    font-weight: 100;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: rgba(0, 0, 0, 0.2);
}

.pageblock#fullscreen .slide_left {
    left: 0;
}

.pageblock#fullscreen .slide_right {
    right: 0;
}