*{
    margin: 0;
    font-family: 微软雅黑 ;
    padding: 0;
}
#timeLine{
    width: 1000px;
    margin: 100px auto;
    /*border:  solid 1px #434343;*/
    /*background: rgba(500,500,500,0.9);*/
    overflow: hidden;
}
#yearList{
    width: 100%;
    list-style: none;
    position: relative;
	display: flex;
	margin-top: 40px;
}
#yearList:after,.container-li:after{
    content: "";
    display: table;
    clear: both;
}
#yearList li{
    float: left;
    cursor: pointer;
    text-align: center;
    font-size: 21px;
	padding: 10px 110px;
}
.dotted-line{
    border-bottom: dashed 2px  #7b7d7b;
    position: relative;
    top: -26px;
    z-index: -1;
}
#cList{
    width: 100%;
    position: relative;
	margin-top: 80px;
}
#btnLeft{
    display: inline-block;
    position: absolute;
    left: 0;
    top: 80px;
	width: 70px;
	height: 70px;
	background: url(../img/fllc_left.png) no-repeat;
	transition: all .5s;
}
#btnLeft:hover{
	background: url(../img/fzlc_left_hover.png) no-repeat;
}
#btnRight{
    display: inline-block;
    position: absolute;
	width: 70px;
	height: 70px;
    right: 0;
    top: 80px;
	background: url(../img/fzlc_right.png) no-repeat;
	transition: all .5s;
}
#btnRight:hover{
	background: url(../img/fzlc_right_hover.png) no-repeat;
}
#cUl{
    width: 1400px;
    list-style: none;
    height: 300px;
    margin: 0 auto;
    position: relative;
    left: 0px;
}
#cUl li{
    width: 100%;
	position: absolute;  left: 0;
}
.li-tit{
    display:inline-block;
    color: #fff;
    background-color: #002f21;
    padding: 10px 20px;
    margin: 30px auto 10px;
}
.container-li{
    width: 100%;
	height: 300px;
	overflow-y: scroll;
    padding: 40px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: solid 1px #e5e5e5;
}
.container-li p{
	font-size: 16px;
	line-height: 40px;
}
.c-li-left{
    width: 40%;
    float: left;
}
.c-li-right{
    width: 60%;
    float: right;
}


.year-dot{
	font-size: 26px;
	color: #362f2f;
	font-style: normal;
	position: relative;
	top: 5px;
}

.year-active .year-dot{
    color: red;
	font-size: 30px;
	font-weight: bold;
}