/*公用*/
.container{
    padding: 20px 0 80px;
    background: #f1f1f1;
}
.center_main{
    display: table;
    border-collapse: collapse;
    table-layout: fixed;
}

/* 左边栏 */
.center_main .c_l{
    display: table-cell;
    width: 200px;
    background: url(../image/cen_l_bg.png) repeat-y;
    border: 1px solid #dcdcdc;
    border-left: 0;
    border-right: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}
.l_nav{

}
.l_nav li{
    width: 100%;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #666666;
    padding-left: 65px;
    position: relative;
    font-size: 14px;
    vertical-align: top;
}
.l_nav li.current{
    background: #00b7b6;
    color: #ffffff;
}
.l_nav li a:hover{
    color: #00b7b6;
}
.l_nav li.current a:hover{
    color: #ffffff;
}
.l_nav li.current:after{
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: #ffffff;
    position: absolute;
    content: '';
    left: 48px;
    top: 12px;
}

/*右边栏*/
.center_main .c_r{
    display: table-cell;
    padding: 25px 40px 64px 40px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-left: 0;
    vertical-align: top;
    width: 1000px;
}
.center_main .c_r>.title{
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 5px;
}

.content p{
	line-height: 24px;
	text-indent: 2em;
}
.content .img{
    display: block;
    margin-top: 10px;
    max-width: 100%;
}