﻿/* pageHonor */
.pageHonor {
    width: 940px;
}

.pageHonor ul {
    width: 960px;
    display: table;
    text-align: left;
    word-spacing: 0;
    margin: 0 -10px;
}

.pageHonor ul li {
    display: inline-block;
    vertical-align: top;
    width: 300px;
    border: 1px solid #ececec;
    box-sizing: border-box;
    margin: 10px 10px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pageHonor ul li:hover {
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
    border-color: #fff;
}

.pageHonor ul li img {
    display: block;
    width: 280px;
    height: 220px;
    margin: 10px auto 20px;
}

.pageHonor ul li span {
    display: block;
    padding: 0 10px;
    line-height: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
    text-align: center;
    overflow: hidden;
}

#boxer {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

#boxer-overlay {
    background: #000;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

#boxer {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 10px;
    position: absolute;
    z-index: 99999;
}

#boxer .boxer-close {
    background: rgba(0, 0, 0, 0.67) url(../img/iconimg.png) no-repeat 0 0;
    cursor: pointer;
    display: block;
    height: 50px;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 50px;
    text-indent: -99999px;
    z-index: 106;
}

#boxer .boxer-close:hover {
    background: #B01F23 url(../img/iconimg.png) no-repeat 0 0;
}

#boxer .boxer-arrow {
    background: rgba(0, 0, 0, 0.67) url(../img/iconimg.png) no-repeat 0 -50px;
    cursor: pointer;
    display: block;
    height: 50px;
    margin: 0 auto;
    position: absolute;
    text-indent: -99999px;
    top: 50px;
    width: 50px;
}

#boxer .boxer-arrow.previous {
    left: 0;
}

#boxer .boxer-arrow.previous:hover {
    background: #B01F23 url(../img/iconimg.png) no-repeat 0 -50px;
    left: 0;
}

#boxer .boxer-arrow.next {
    background-position: -50px -50px;
    right: 0;
}

#boxer .boxer-arrow.next:hover {
    background: #B01F23 url(../img/iconimg.png) no-repeat -50px -50px;
    right: 0;
}

#boxer .boxer-position {
    color: #999;
    font-size: 12px;
    margin: 0;
    padding: 10px 0 6px;
}

#boxer .boxer-caption p {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

#boxer .boxer-caption.gallery p {
    padding: 0;
    text-align: center;
    line-height: 50px;
}

#boxer.loading .boxer-container {
    background: #fff url(../img/loading.gif) no-repeat center;
}


@media screen and (max-width: 400px) {
    #boxer .boxer-arrow {
        top: calc(50% - 50px)
    }

}