.work {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
    min-height: 570px;
    padding: 115px 30px 0 30px;
    overflow: hidden;
}

.work-bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.work-bg p {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 2s;
}

.work-box {
    position: absolute;
    top: 27.5%;
    left: 12.5%;
    width: 75%;
    height: 65%;
    padding: 70px 100px;
    box-sizing: border-box;
	filter:alpha(opacity=80);
    background: rgb(255,255,255);
	opacity:0.8; 
}

.work-bg:hover p {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.work-left {
    display: block;
    float: left;
    width: 30%;
    height: 100%;
}

.work-left .title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15%;
    text-align: left;
    letter-spacing: 0px;
}

.search-box {
    position: relative;
    width: 100%;
    height: 30px;
    border: solid 1px #555;
}

.search-box input {
    display: block;
    width: 85%;
    height: 100%;
    padding-left: 5%;
    border: none;

}

.search-box .search-icon {
    position: absolute;
    top: 2px;
    right: 8px;
    cursor: pointer;
}

.work-nav {
    width: 100%;
    height: 65%;
    margin-top: 10%;
    overflow: auto;
}

.work-nav > li {
    position: relative;
    height: 50px;
    line-height: 40px;
    font-size: 14px;
    color: #717275;
    font-family: Brandon_reg;
    cursor: pointer;
}

.work-nav::-webkit-scrollbar, .work-right::-webkit-scrollbar { /*滚动条整体样式*/
    width: 5px; /*高宽分别对应横竖滚动条的尺寸*/

}

.work-nav::-webkit-scrollbar-thumb, .work-right::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    background: #717275;
}

.work-nav::-webkit-scrollbar-track, .work-right::-webkit-scrollbar-track {
    /*-webkit-box-shadow: 1px  0px 0px 0px #717275 inset;*/
    background: url("../images/line.png") center center repeat-y;
}

.work-right {
    display: block;
    float: right;
    width: 66%;
    height: 80%;
    margin-top: 5.7%;
    padding-right: 7.5%;
    box-sizing: border-box;
    overflow: auto;
}

.work-right .title {
    position: relative;
    line-height: 60px;
    font-family: 'brandon_grotesquebold';
    letter-spacing: 2px;
}

.work-right .title.line:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #b8b8ba;
    content: '';
}

.work-right .text {
    line-height: 20px;
    color: #717275;
    font-family: 'brandon_grotesque_regularRg';
    letter-spacing: 2px;
}

.work-right .text + .text {
    margin-top: 2%;
}

.work-box-small {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 960px;
    height: 280px;
    margin: -110px 0 0 -480px;
    padding: 35px 70px;
    box-sizing: border-box;
    background: #fdfdfd;
}

.work-box-small .title {
    line-height: 60px;
    font-family: 'brandon_grotesquebold';
    letter-spacing: 2px;
    font-size: 16px;
}

.work-box-small .text {
    line-height: 24px;
    font-family: 'brandon_grotesque_regularRg';
    letter-spacing: 2px;

}

.work-line {
    position: absolute;
    top: 0;
    left: 25%;
    width: 20%;
    height: 100%;
    background: url("../images/work/line.png") center no-repeat;
    background-size: auto 100%;
    animation: myline 5s;
    -moz-animation: myline 5s;	/* Firefox */
    -webkit-animation: myline 5s;	/* Safari 和 Chrome */
    -o-animation: myline 5s;
}

.pplc .title{
	font-weight:bold;
	font-size:14px;
}

@keyframes myline
{
    from { left: -20%;}
    to { left: 25%;}
}

@-moz-keyframes myline /* Firefox */
{
    from { left: -20%;}
    to { left: 25%;}
}

@-webkit-keyframes myline /* Safari 和 Chrome */
{
    from { left: -20%;}
    to { left: 25%;}
}

@-o-keyframes myline /* Opera */
{
    from { left: -20%;}
    to { left: 25%;}
}