
/*动画*/
@keyframes menuMove{             /* 菜单滑动 */    
	from{
		top:25px;
	}
	to{
		top:10px;
	}
}
/*导航栏加上active状态*/
#nav-active-experiments{
  background: #4169E1 !important;
  color: #fff;
}
/*页面导航栏*/
.logo{
    width: 85px;
    max-height:50px; 
    position: absolute;
    top: 30px;
    right: 59%;
}
#bigBox{
	width:100%;
	position:relative;
	padding-bottom: 100px;
        top:10px;
}
#totalHead{
	width:94.74%;
	height:60px;
	background: white;
	position:fixed;
	top:0px;
	padding:0 2.63%;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	z-index: 10086;
	box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

/*内容*/

#contentBigBox {
    margin: 50px auto;
    padding: 40px 40px;
    position: relative;
    width: 70%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 20px;
    background-color: rgb(235,235,235);
}
.contentTitle{
	color:rgb(142,90,242);
	text-align: center;
	font-weight: bold !important;
	font-size:30px !important;
	margin:0px 0 20px 0;
}
.articltitle{
	color:#C04299;
	font-size: 25px !important;
	font-weight: bold !important;

}
.artical{
	font-size: 20px !important;
	line-height: 35px;
}
.imgBox{
	width:100%;
	margin:20px 0 50px 0;
	display: flex;
	justify-content:space-around;
}
.insertImg{
	width:400px;
	height:auto;
}
/*手风琴*/
button.xd-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 95%;
    border: none;
    text-align: left;
  	font-weight: bold;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
	  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}


button.xd-accordion.active, button.xd-accordion:hover {
    background-color: #ddd;
}

button.xd-accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.xd-accordion.active:after {
    content: "\2212";
}

div.xd-panel {
	display: flex;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
	padding-right: 15px;
}

div.xd-panel>div{
	display: inline-block;
	width: 485px;
	margin: 0 10px;
}

div.xd-panel img{
	margin: 20px 44.5% 0;
	width: 50px;
	height: 50px;
}

div.xd-panel h3{
	text-align: center;
	color: #4169E1 !important;
	margin: 15px ;
	font-weight: bold !important;
	font-size:25px !important;
}
div.xd-panel p{
	text-align: left !important;
	font-size: 20px !important;
	line-height: 35px;
}
div.xd-panel span:after{
	content: "\2611";
}
/*引导目录*/
#menuBox{
	width:245px;
	height:520px;
	position:fixed;
	left:0;
	top:190px;
	box-shadow:0 4px 4px 0 rgba(0,0,0,0.15); 
	border-radius: 15px;
	background-color: rgb(235,235,235);
	z-index:10086;
}
.menuUl{
	padding:30px 20px !important;
	margin:0 !important;
}
.menuLi{
	padding:10px 2px;
	margin:20px 0;
	color:#EE587B;
	font-size: 20px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
}
.menuLi a{
	
}
#topButton{
	display: none;
	position: fixed;
	text-align: center;
	color:#EE587B;
	z-index: 2;
	opacity: 1;
	width: 11vh;
	height: 11vh;
	bottom: 300px;
	right: 62px;
	background-color: white;
	border: none;
	border-radius: 50%;
	font-family: 'Raleway', sans-serif;
	font-size: 2em;
	cursor: pointer;
}
/*页面定位单独设置*/
footer{
	top:111px!important;
}