*{
    margin: 0;
    padding: 0;

    /*  禁止长按复制粘贴*/
    -webkit-touch-callout:none;  /*系统默认菜单被禁用*/
    -webkit-user-select:none; /*webkit浏览器*/
    -khtml-user-select:none; /*早期浏览器*/
    -moz-user-select:none;/*火狐*/
    -ms-user-select:none; /*IE10*/
    user-select:none;
}
ul,li,ol{
    list-style:none;
}

#box{
    text-align: center;
}
ul{
    margin: 0 auto;
}
li:not(:last-child){
    padding-bottom: 0.2rem;
    background-color: rgba(204, 204, 204, 0.28);
}
img{
    width: 100%;
}
img:last-child{
    background-color: white;
}