.visual {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.visual.reaction {
    height: auto;
}

.visual.reaction>img,
.visual.reaction>video {
    visibility: hidden;
    z-index: -1;
    width: 100%;
}

.visual.blind ul li .image_wrap:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.visual .layout {
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:1100px;
    height:100%;
}

.visual ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.visual ul li {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index:0;
    background-color: #000;
}

.visual ul li.active {
    z-index: 2;
}

.visual[data-visual-type="fade"] ul li {
    opacity:0;
}

.visual[data-visual-type="fade"] ul li.active {
    opacity:1;
}

.visual ul li .image_wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.visual ul li .image_wrap * {
    /* width:100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.visual ul li .text_wrap {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.visual .pos_wrap {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.visual .pos_wrap a:not(.auto_key) {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 2px solid #fff;
    background-color: transparent;
    margin: 0 3px;
    font-size: 0px;
    transition: all .3s;
}

.visual .pos_wrap a:not(.stop).active {
    background-color: #fff;
}

.visual .pos_wrap a.auto_key {
    display: inline-block;
    width: 10px;
    height: 15px;
    background-color: transparent;
    vertical-align: bottom;
    margin-bottom: 2px;
    margin-right: 5px;
    font-size: 0px;
    transition: all .3s;
    position: relative;
}

.visual .pos_wrap a.stop span {
    width: 3px;
    height: 100%;
    display: block;
    margin-top: 2px;
    background-color: #fff;
}

.visual .pos_wrap a.stop span:first-child {
    float: left;
}

.visual .pos_wrap a.stop span:last-child {
    float: right;
}

.visual .pos_wrap a.play span:first-child {
    width: 2px;
    height: 100%;
    margin-top: 2px;
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.visual .pos_wrap a.play span:last-child {
    display: none;
}

.visual[data-visual-pos_type="thumb"] .pos_wrap a {
    width: auto;
    height: auto;
    max-width: 50px;
    max-height: 100%;
    border: 1px solid #fff;
    border-radius: 0;
    background-color: transparent !important;
    margin: 0 5px;
    position: relative;
}

.visual[data-visual-pos_type="thumb"] .pos_wrap a img {
    width: 100%;
    vertical-align: middle;
}

.visual[data-visual-pos_type="thumb"] .pos_wrap a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all .5s;
}

.visual[data-visual-pos_type="thumb"] .pos_wrap a.active:after {
    opacity: 1;
}

.visual .arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 55px;
    display: block;
    z-index: 4;
    opacity:0;
    transition:all .5s;
}

.visual:hover .arrows {
    opacity:1;
}

.visual .arrows.left {
    left: 3%;
}

.visual .arrows.right {
    right: 3%;
}

.visual .arrows span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35px;
    height: 2px;
    border-top: 1px solid #fff;
    font-size: 0px;
}

.visual .arrows.left span:first-child {
    transform-origin: -50% 0;
    transform: rotate(-45deg) translate(-50%, -50%);
}

.visual .arrows.left span:last-child {
    transform-origin: -50% 0;
    transform: rotate(45deg) translate(-50%, -50%);
}

.visual .arrows.right span:first-child {
    transform-origin: 50% 0;
    transform: rotate(-45deg) translate(-50%, -50%);
}

.visual .arrows.right span:last-child {
    transform-origin: 50% 0;
    transform: rotate(45deg) translate(-50%, -50%);
}

.visual.not_button .arrows {
    display:none;
}
