﻿* {
    padding: 0;
    margin: 0;
}

.banner-wq img {
    max-width: 100%;
}

.art-slick {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: -999;
}

.art-slick.on {
    opacity: 1;
    z-index: 99999;
}

.art-box-zzc {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 998;
}

.close-view {
    width: 30px;
    height: 30px;
    float: right;
    background-repeat: no-repeat;
    background-position: 50%;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
}

.close-view {
    background-image: url(../images/close_white.png);
    background-size: 15px;
    background-color: #ccc;
    border-radius: 50px;
    border: 2px solid #fff;
}

.close-view:hover {
    background-color: #0a437e;
}

.art-slick-body {
    width: 90%;
    height: 98%;
    margin: 1% auto;
    z-index: 999;
    position: relative;
}

.art-slick-body>ul {
    height: 100%;
}

.art-slick-body ul li {
    height: 100%;
    position: relative;
}

.art-slick-body ul li img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width:768px) {

    .art-slick-body {
        width: 100%;
    }

    .art-slick-body>ul {
        padding: 0 30px;
    }

}