﻿@charset "utf-8";

/*通用样式表*/
html,
body {
    width: 100%;
    height: 100%;
    background: #fff;
    background-size: cover;
}

html,
body,
div,
p,
b,
span,
i,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
td,
form,
input,
textarea,
select,
button {
    margin: 0;
    padding: 0;
    font: Lantinghei SC, Open Sans, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, SimSun, sans-serif;

    -moz-font-smoothing: antialiased;
    /*控制字体渲染只对MacOS的Webkit有效  antialiased反锯齿*/
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;

    -moz-box-sizing: border-box;
    /*元素指定的任何内边距和边框都将在已设定的宽度和高度内进行绘制*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    color: #444c54;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ul,
ol {
    list-style: none;
}

li {
    list-style-type: none;
}

img {
    border: 0px;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}


.clear {
    clear: both;
    width: 100%;
    *display: inline;
}

.block {
    display: block;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
	max-width: 750px; 
	font-size: 14px;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}