/* 通用部分 */
*{
    margin: 0;
    padding: 0;
    font-family: Microsoft YaHei;
    font-weight: 400;
}
a{
    text-decoration: none;
}
ul li {
    list-style: none;
}
table { 
    border-collapse: collapse; /* 合并边框,避免两条边框相交时出现两倍线的现象 */
} 
input { 
    outline: none;
}
button{
   border: transparent;
}
