﻿@charset "utf-8";
*{
    box-sizing: border-box;
}
html, body, h1, h2, h3, h4, h5, h6, p, img, figure, form, blockquote,ul, ol, li, dl, dd,button{
    margin: 0;
    padding: 0;
}
body{
    font-size: 12px;
    font-family: '微软雅黑', '宋体', Arial, sans-serif;
    color: #333;
}
ul, ol{
    list-style:  none outside none;
}
a{
    text-decoration: none;
    color: #333;
}
img {
    border: 0;
}
h1{
    font-size: 30px;
}
h2{
    font-size: 24px;
}
h3{
    font-size: 18px;
}
h4{
    font-size: 14px;
}
h5{
    font-size: 12px;
}

.w{
    width: 1200px;
    margin: 0 auto;
}
.left{
    float: left;
}
.right{
    float: right;
}
.uppercase{
    text-transform: uppercase;
}
.text-overflow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap;
}