/* 通用样式，初始化样式和版心 */
* {
    margin: 0;
    padding: 0;
    font-family: MicrosoftYaHei;
}
a {
    text-decoration: none;
    color: #333333!important;
}
a:hover {
    /* a标签经过时统一样式，以防万一可以加个important */
    /* color: green; */
    text-decoration: none!important;
}
input {
    border: none;
    outline: none;
}
textarea {
    outline: none;
}
li {
    list-style: none;
}
.container {
    width: 80%!important;
    margin: 0 auto;
    color: #333333;
    font-size: 14px;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
/* 通用样式，初始化样式和版心end */