/*主站基础css*/

body {
    background-color: #B5F1DD; /* 马卡龙薄荷绿背景，最常用 */
    margin: 0; /* 去掉页面默认白边 */
    padding: 0;
}

ul {
    /* 强制显示小圆点 */
    /*list-style-type: disc !important;*/
    /* 让圆点在里面，不跑出去 */
    list-style-position: inside;
    list-style: none;
    /* 去掉默认左边缩进 */
    padding-left: 20px;
    margin: 10px 0;
}
li.contact {
    list-style-type: disc;
    display: list-item;   /* 让 li 变成“列表项” → 前面自动出小圆点 */
    unicode-bidi: isolate; /* 浏览器处理文字方向用的，你不用管 */
}
#copyRight{
    text-align:center ;
    font-size:12px;
    color:#999;
    margin-top:20px;
    padding:10px 0;
    background:#000;
}
a.copy{
    color:#999;
    text-decoration:none;
}
