/* 把所有标签的内外边距清零 */

* {
    margin: 0;
    padding: 0;
    /* css3盒子模型 */
    box-sizing: border-box;
}


/* em和i 倾斜的文字不倾斜 */

em,
i {
    font-style: normal;
}


/* 去掉li的小圆点 */

li {
    list-style: none;
}


/* border 0照顾低版本的浏览器  若 图片外面包含了链接 会有默认边框的问题 */

img {
    border: 0;
    /* 取消图片底部有空白缝隙的问题  */
    vertical-align: middle;
}

button {
    /* 当鼠标经过button 按钮时 鼠标变成小手 */
    cursor: pointer;
}

a {
    color: #666;
    text-decoration: none;
}


/* a:hover {
    color: #c81623;
} */

button,
input {
    /* "\5B8B\4F53" 宋体的意思 这样浏览器兼容性比较好 */
    font-family: "微软雅黑", "华文楷体", "楷体";
    /* 默认有灰色边框 需手动去掉 */
    /* border: 0; */
    outline: none;
}

body {
    font-size: 12px;
    font-family: "微软雅黑", "华文楷体", "楷体";
}


/* 把元素隐藏起来 */

.hide,
.none {
    display: none;
}


/* 清除浮动  */

.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0;
}

.clearfix {
    *zoom: 1;
}
.container img {
    max-width: 100%;
}
.container p span {
    font-size: 18px!important;
    font-weight: 500;
}