body{
	background: #000;
	font-size: 28px;
	color: #fff;
	width: 86%;
	max-width: 1200px;
	margin: 0 auto;
}
p,h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding:0;
}
h1{
	font-size: 60px;
}
h2,h3,h4{
	font-size: 40px;
	line-height:60px;
}
.cb {
	clear: both;
}
.hide {
	display: none;
}
.vhide{
	visibility: hidden;
}
.tcenter {
	text-align: center;
}
.row{ /*行*/
	margin: 40px auto;
}

/*查看答案*/
.key h2{
	padding-top: 20px;
}

/* 题目 */
.mathProblem {
	margin-top: 90px;
}
/* 题目首行缩进 */
.mathProblem  h1{
	font-size: 40px;
	text-indent:36px;
}

/* 范围选择器 */
.custom-scrollbar {
	height: 40px; /* 高度 */
	line-height: 40px; /* 高度 */
	background: #fff;
	position: relative;
	margin-bottom: 20px;
	left: 32px;
	text-align: center;
}
.thumb {
	width: 40px; /* 宽度 */
	height: 100%; /* 高度 */
	background-color: #4CAF50;
	position: absolute;
	
}
/*按钮通用样式*/
.useBtn {
	border: #ccc 1px solid;
	background-color: #4CAF50;
	border-radius: 5px;
	cursor: pointer;
	font-size: 30px;
	line-height: 30px;
	padding: 10px 20px;
	color: #fff;
	margin-left:15px;
}
/*播放与暂停*/
.useBtn.playing {
	background-color: #0074cc;
}
.useBtn.pause {
	background-color:#fc5531;
}
/*解题思路式文本对齐样式*/
.text p {
	margin-left:38px;
}
/*查看答案*/
.key {
	margin: 30px auto;
}
/*解题思路与查看答案文本对齐样式*/
.text { 
	margin-left: 18px;
}
/*翻页按钮颜色*/
.next .useBtn{
	background-color: #36C181;
}


.ani_dot {
    font-family: simsun;    
}
:root .ani_dot { /* 这里使用Hack是因为IE6~IE8浏览器下， vertical-align解析不规范，值为bottom或其他会改变按钮的实际高度*/
    display: inline-block;
    width: 1.5em;
    vertical-align: bottom;
    overflow: hidden;
}
@-webkit-keyframes dot {
    0% { width: 0; margin-right: 1.5em; }
    33% { width: .5em; margin-right: 1em; }
    66% { width: 1em; margin-right: .5em; }
    100% { width: 1.5em; margin-right: 0;}
}
.ani_dot {
    -webkit-animation: dot 3s infinite step-start;
}
 
@keyframes dot {
    0% { width: 0; margin-right: 1.5em; }
    33% { width: .5em; margin-right: 1em; }
    66% { width: 1em; margin-right: .5em; }
    100% { width: 1.5em; margin-right: 0;}
}
.ani_dot {
    animation: dot 3s infinite step-start;
}