
.list{
	width : 100%;
}
.list ul{
	list-style: none;
}
.list>ul>li{
	width        : 100%;
	border-bottom: 1px solid #666;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
			transition: .3s ease;
}
.list>ul>li:first-child{border-top: 1px solid #666;}
.list>ul>li p[class=title]{
	width      : 100%;
	text-align : center;
	height     : 40px;
	line-height: 40px;
	padding    : 0;
	border     : none;
	position   : relative;
	font-size  : 14px;
	display: flex;
    justify-content: space-between;
    align-items: center;
	font-family: 'gilroy-m';
}
.list>ul>li p[class=title]>span{
	position: absolute;
	right: 0;
	font-size: 25px;
	font-family: 'gilroy-l';
}
.list-se{
	overflow: hidden;
	display: none;
	padding-bottom: 40px;
}
.list-se>p{
	color:#3097C7;
}
.list-se>li{
	position: relative;
	right   : -100%;
	-webkit-transition: right .5s;
	-moz-transition   : right .5s;
	-o-transition     : right .5s;
	transition        : right .5s;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	cursor: pointer;
}
.list-se>li::before{
	position: absolute;
	content:"";
	width:8px;
	height:8px;
	border:2px solid #cccccc;
}
.list-se>.active::before{background-color: #3097C7;border:2px solid #3097C7;}
.list-se>li>p{
	color       : #888888;
	height      : 35px;
	-webkit-box-sizing :border-box;
	        box-sizing :border-box;
	padding-left: 20px;
	line-height : 35px;
	/* border-left : 5px solid #3b3b3b;  */
	-webkit-transition   : border .5s; 
			 transition  : border .5s;
	-webkit-transition   : background .3s;
			 transition  : background .3s;
}
.list-se>li>p:hover{
	color: #3097C7; 
}
