﻿/****清空所有默认样式，并设置默认字体及颜色、大小****/
*{
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
    font-size: 16px;
}
body{
    background: #fff;
}
ul,ol,li{
    list-style: none;
}
p{
    margin: 0;
}
a:link,a:visited{
    color: #333;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
img{
    border: none;
}
input{
    border: none;
}
textarea{
    border: none;
}
.clear{
    clear: both;
}
