html body{
    padding: 0;
    margin: 0;
    font-family: '微软雅黑';
    font-size: 20px;
 min-height:101%;
overflow-y:scroll;
}
.content{
   width: 1200px;
   margin: 0 auto;
}
/* 更多按钮 */
.button-more{
    background-color: rgb(129,216,208);
    width: 80px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border-radius: 20px;
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    right: 0px;
    text-align: center;
    font-style: italic;
}
.button-more:hover{
    background-color: rgb(74,196,185);
}
/* input */
input{
    border: none;
    outline-style: none ;
}
/* 按钮 */
button{
    border: none;
}
/* 按钮小手 */
button:hover{
    cursor: pointer;
}
button:focus{
    outline: none;
}
.pointer{
    cursor: pointer;
}
a{
    text-decoration: none;
    font-size: 22px;
    color: #333333;
}
/* 小点 */
.aquare{
    height: 5px;
    display: inline-block;
    width: 5px;
    background-color: #333333;
    vertical-align: middle;
    margin-right: 10px;
}