* {
    margin: 0;
    padding: 0;
    list-style: none;
}
body {
    background: #f1f1f1;
}
#container {
    width: 1400px;
    margin: 10px auto;
    background: white;
    min-height: 800px;
    padding-bottom: 20px;
}

#container #switch_nav {
    border-bottom: 2px #F99507 solid;
}

#container #switch_nav span {
    display: inline-block;
    font-size: 18px;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#container #switch_nav span.active,
#container #switch_nav span:hover {
    background: #F99507;
    color: white;
}

#container #work_show li {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #ecd4d4;
}

#container #work_show li .date {
    width: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#container #work_show li .date p {
    text-align: right;
    padding: 4px 0;
}

#container #work_show li .date p:first-child {
    font-size: 20px;
    color: #8f8388;
    font-weight: 600;
}

#container #work_show li .date p:last-child {
    color: #a5a2a2;
    font-weight: bolder;
    font-size: 18px;
}

#container #work_show li .content {
    width: 86%;
}

#container #work_show li .content .imgAddVideo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

#container #work_show li .content .imgAddVideo > div {
    width: 100px;
    cursor: pointer;
    border: 2px #ddd solid;
    padding: 0 4px;
    padding-top: 4px;
}

#container #work_show li .content .imgAddVideo > div:hover {
    border: 2px orangered solid;
}

#container #work_show li .content .imgAddVideo .video {
    width: 100px;
    height: 100px;
    position: relative;
}

#container #work_show li .content .imgAddVideo .video img {
    position: absolute;
    top: 30%;
    left: 25%;
}

#container #work_show li .content .imgAddVideo .look_more {
    background-image: url(/ui/img/more.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100%;
    border: none;
}

#container #work_show li .content .imgAddVideo .look_more:hover {
    border: none;
    background-image: url(/ui/img/more_active.png);
}

#container #work_show li .content p {
    margin-top: 20px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

#pictureViewer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

#pictureViewer > .content {
    background-color: #fff;
    position: absolute;
    width: 1200px;
    height: 800px;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#pictureViewer .menu-bar {
    width: 100%;
}

#pictureViewer .menu-bar .handel {
    width: 40px;
    height: 40px;
    float: right;
    background-repeat: no-repeat;
    background-position: 50%;
    cursor: pointer;
}

#pictureViewer .menu-bar .handel:hover {
    background-color: #ff2e67;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#pictureViewer .menu-bar .handel.close-view {
    background-image: url(/ui/img/icons/close_black.png);
    background-size: 15px;
}

#pictureViewer .menu-bar .handel.close-view:hover {
    background-image: url(/ui/img/icons/close_white.png);
}

#pictureViewer .handel-prev,
#pictureViewer .handel-next {
    display: inline-block;
    width: 50px;
    height: 70px;
    position: relative;
    top: calc(50% - 80px);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 50%;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#pictureViewer .handel-prev {
    background-image: url(/ui/img/left_.png);
    background-size: 35px;
}

#pictureViewer .handel-next {
    background-image: url(/ui/img/right_.png);
    background-size: 35px;
}

#pictureViewer .handel-prev:hover,
#pictureViewer .handel-next:hover {
    background-color: #ff2e67;
}

#pictureViewer .handel-prev:hover {
    background-image: url(/ui/img/icons/prev_white.png);
}

#pictureViewer .handel-next:hover {
    background-image: url(/ui/img/icons/next_white.png);
}

#pictureViewer .picture-content {
    display: inline-block;
    height: calc(100% - 80px);
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
}

#pictureViewer .picture-content .cover {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 99%;
    height: 95%;
}

#pictureViewer .counter {
    position: absolute;
    bottom: 30px;
    height: 40px;
    line-height: 17px;
    width: 95%;
    color: #808080;
    font-size: 13px;
    text-indent: 25px;
    margin-left: 30px;
}

#pictureViewer .hide {
    display: none;
}

#pictureViewer .left {
    float: left;
}

#pictureViewer .right {
    float: right;
}

#pictureViewer .clear-flex {
    clear: both;
}

#pictureViewer img {
    max-width: 100%;
    max-height: 100%;
}