/* 二级页 */


/* 蒙版 */

.works-detail-mask {
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: -200%;
    z-index: 999;
    background-color: rgba(51, 51, 51, 0.75);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.works-detail-content {
    position: relative;
    width: 1190px;
    margin-left: auto;
    margin-right: auto;
    top: 50%;
    -webkit-transform: translateY(-310px);
        -ms-transform: translateY(-310px);
            transform: translateY(-310px);
    background-color: #FFFFFF;
    overflow: hidden;
}


/* 项目类别 */

.works-detail-title {
    /* position: relative; */
    display: inline-block;
    height: 75px;
    left: 100px;
    width: auto;
    line-height: 75px;
    font-size: 24px;
    font-weight: bold;
    color: #005da2;
    margin-left: 50px;
    z-index: 1000;
}


/* 轮播图 */

.works-carousel {
    background-color: #EBEBEB;
}


/* 轮播图中的图片 */

.works-carousel img {
    margin: 0 auto 0 auto;
    width: auto;
    height: 368px;
}


/* 缩略图 */

.works-carousel-thumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    /* background-color: rgba(51, 51, 51, 0.5); */
    background-color: #F7F8F8;
}

.works-carousel-thumbs ul {
    position: relative;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 10px 10px;
    -webkit-transition: left 0.8s;
    transition: left 0.8s;
}

.works-carousel-thumbs li {
    position: relative;
    height: 80px;
    margin-right: 10px;
    z-index: 1000;
    cursor: pointer;
    overflow: hidden;
}

.works-carousel-thumbs img {
    -webkit-transition: all 1.2s;
    transition: all 1.2s;
    height: 100%;
}


/* 滚动条 */

.works-carousel-scrollbar {
    position: relative;
    height: 10px;
    margin: 0 0 30px;
    background-color: #fff;
}


/* 滚动条上的滑块 */

.works-carousel-scrollbar div {
    display: none;
    position: absolute;
    height: 10px;
    width: 100%;
    left: 0px;
    background-color: #005da2;
    cursor: pointer;
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
}


/* 项目信息 */

.works-project {
    margin-bottom: 30px;
    padding: 0 50px;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
}

.works-project div {
    margin-bottom: 15px;
    font-family: 'Noto Sans SC';
}

.works-project-name {
    height: 18px;
    font-size: 16px;
    color: #333;
}

.works-project-title {
    float: left;
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}


/* 项目情况 */

.works-project-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 30px;
    font-size: 16px;
    color: #333;
    text-align: justify;
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
}


/* 左右切换按钮 */

.works-show-prev {
    background-image: url(../images/works_show/works-show-prev-white.png);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50px;
}

.works-show-next {
    background-image: url(../images/works_show/works-show-next-white.png);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
}


/* 关闭×按钮 */

.works-detail-close {
    position: absolute;
    right: 50px;
    top: 22.5px;
    width: 30px;
    height: 30px;
    font-size: 30px;
    font-family: Noto Sans SC;
    font-weight: 400;
    color: #333333;
    line-height: 25px;
    text-align: center;
    -webkit-animation: 0.5s 1;
            animation: 0.5s 1;
    -webkit-animation-name: rotate-180deg;
            animation-name: rotate-180deg;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-decoration: none;
}

.works-detail-close:hover {
    color: #005da2;
    text-decoration: none;
    /* animation-name: rotate180deg;     */
}