@charset "utf-8";
/* reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

/* 初始化标签在所有浏览器中的margin、padding值 */
fieldset,
img {
    border: 0 none
}

/* 重置fieldset（表单分组）、图片的边框为0*/
dl,
ul,
ol,
menu,
li {
    list-style: none
}

/* 重置类表前导符号为onne,menu在HTML5中有效 */
blockquote,
q {
    quotes: none
}

/* 重置嵌套引用的引号类型 */
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

/* 重置嵌套引用*/
input,
select,
textarea,
button {
    vertical-align: middle
}

/* 重置表单控件垂直居中*/
button {
    border: 0 none;
    background-color: transparent;
    cursor: pointer
}

/* 重置表单button按钮效果 */
body {
    background-color: #f1f1f1;
    overflow-x: hidden;
}

/* 重置body 页面背景为白色 */
body,
th,
td,
input,
select,
textarea,
button {
    font-size: 12px;
    font-family: "PingFang SC", "Microsoft YaHei";
    color: #333;
}

/* 重置页面文字属性 */
a {
    color: #333;
    text-decoration: none;
}

/* 重置链接a标签 */
a:active,
a:hover {
    text-decoration: none;
    color: #da251a;
}

/* 重置链接a标签的鼠标滑动效果 */
address,
caption,
cite,
code,
dfn,
em,
var {
    font-style: normal;
    font-weight: normal;
}

/* 重置样式标签的样式 */
caption {
    display: none;
}

/* 重置表格标题为隐藏 */
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed
}

/* 重置table属性 */
img {
    vertical-align: top
}

/* 图片在当前行内的垂直位置 */
input {
    border: none;
    outline: none
}

button {
    outline: none;
}

/* 页面设置 */

/* 取消a标签点击后的虚线框 */
a {
    outline: none;
}

/*清除浮动*/
.clearfix {
    overflow: hidden\0;
}

.clearfix:before,
.clearfix:after {
    content: '';
    display: table;
}

.clearfix:after {
    clear: both;
}

/* 常用 */
.fl{
    float:left;
}
.fr{
    float:right;
}

/* 内容宽 */
.pageWidth{
    width:1200px;
    margin:0 auto;
}

/* 头部 */
.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:70px;
    background-color:rgba(255,255,255,0.9);
    z-index:2;
}
/* logo */
.header .logo{
    padding:15px 0;
}
/* 用户信息 */
.header .userInfo .message{
    position:relative;
    top:0;
    left:0;
}
.header .userInfo .message .mesIcon{
    padding:23.5px 0;
    cursor:pointer;
}
.header .userInfo .message .noticPoint{
    position:absolute;
    right:-6px;
    top:18px;
}
.header .userInfo .message #mesModel{
    display:none;
    position:absolute;
    top:80px;
    right:0;
    width:300px;
    z-index:9;
    padding:15px;
    background-color:#fff;
    box-shadow:6px 0 30px #ddd;
}
.header .userInfo .message #mesModel>dl>dt{
    font-size:16px;
    color:#333;
    line-height:1;
    margin-bottom:5px;
}
.header .userInfo .message #mesModel>dl>dd{
    font-size:13px;
    color:#666;
    line-height:1.6;
    padding:9px 0;
    border-bottom:1px solid #ececec;
}
.header .userInfo .message #mesModel>button{
    font-size:14px;
    color:#666;
    text-align:center;
    line-height:24px;
    padding-top:10px;
    width:100%;
}
.header .userInfo .message #mesModelBg{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:8;
}

.header .userInfo .user{
    position:relative;
}
.header .userInfo .user>img{
    cursor:pointer;
    width:44px;
    height:44px;
    border-radius:50%;
    object-fit:cover;
    padding:11px 0;
    margin-left:30px;
}
.header .userInfo .user #userModel{
    display:none;
    position:absolute;
    top:80px;
    right:0;
    width:140px;
    background-color:#fff;
    box-shadow:6px 0 30px #ddd;
    z-index:9;
    font-size:14px;
    text-align:center;
    line-height:40px;
}
.header .userInfo .user #userModel>ul{
    padding:5px 0;
}
.header .userInfo .user #userModel>ul>li>a{
    display:block;
}
.header .userInfo .user #userModel>button{
    width:100%;
    font-size:14px;
    color:#666;
    border-top:1px solid #ececec;
    margin-top:-1px;
    line-height:46px;
}
.header .userInfo .user #userModelBg{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:8;
}
/* 底部 */
.footer{
    width:100%;
    height:52px;
    background-color:#000;
    margin-top:50px;
    text-align:center;
    line-height:52px;
}
.footer>span{
    font-size:14px;
    color:#999;
}
