*{
    padding: 0;
    margin: 0;
}
body{
    font-family: "Microsoft YaHei";
    position: relative;
    font-size: 14px;
	color: #323232;
}
a{
    text-decoration: none;
    vertical-align: top;
	color: #323232;
}
img{
    border: 0;
    vertical-align: top;
}
ul,li,ol{
    list-style: none;
}
input{
    border: 0;
    outline: none;
    vertical-align: middle;
}
.middle{
    width: 1200px;
    margin: 0 auto;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
textarea {
	outline: none;
	resize: none;
}
/* 单行省略 */
.one-row {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
/* 多行省略 */
.more-row {
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
/* 顶部信息 */
.header {
	width: 100%;
	height: 163px;
	background: url(../images/header.png) center top no-repeat;
	position: fixed;
	top: 0;
	z-index: 1001;
}
.header a {
    float: right;
    padding: 10px 10px 0 0;
    color: #e6a701;
    font-size: 12px;
}
.header a:hover {
    text-decoration: underline;
}
/* 回到顶部 */
.cbbfixed {
    position: fixed;
    right: 10px;
    transition: bottom ease .3s;
    bottom: 10px;
    z-index: 3;
    cursor: pointer;
}
.cbbfixed .gotop {
    transition: background-color ease .3s;
    margin-top: 1px;
}
.cbbfixed .gotop .up-icon {
    float: left;
    margin: 14px 0 0 9px;
    width: 50px;
    height: 75px;
    background: url(../images/top.png);
}