/*主界面*/
.index-center {
    width: 100%;
    margin: 3px 0px;
    height: 140px;
}
.index-center-1 {
    height: 140px;
    width: 40%;
    background-color: #FFF;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 55px;
    background-position: center 18px;
    float: left;
}
.index-center-1 div {
    font-size: 16px;
    padding-top: 80px;
}
.index-center-1 p {
    font-size: 12px;
    color: #797979;
    line-height: 13px;
}
.index-center-2 {
    height: 68px;
    width: 60%;
    background-color: #FFF;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 35px;
    background-position: 28px center;
    float: left;
    position: relative;
}
.index-center-2:before {
    content: "";
    display: block;
    background-color: #EFEFEF;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 3px;
    height: 68px;
}
.index-center-2 div {
    font-size: 16px;
    padding-left: 30%;
    margin-top: 11px;
}
.index-center-2 p {
    padding-left: 30%;
    font-size: 12px;
    color: #797979;
    line-height: 13px;
}
.index-center-3 {
    height: 69px;
    width: 60%;
    background-color: #FFF;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 35px;
    background-position: 28px center;
    float: left;
    margin-top: 3px;
    position: relative;
}
.index-center-3:before {
    content: "";
    display: block;
    background-color: #EFEFEF;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 3px;
    height: 68px;
}
.index-center-3 div {
    font-size: 16px;
    padding-left: 30%;
    margin-top: 11px;
}
.index-center-3 p {
    padding-left: 30%;
    font-size: 12px;
    color: #797979;
    line-height: 13px;
}
/*功能列表*/
.module_list {
    background-color: white;
    /*padding: 10px 0px;*/
    height: 100%;
    display: block;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.module_list>div {
    width: 25%;
    padding: 5px 0px;
}
.module_list>div>div {
    height: 40px;
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: 50%;
}
.module_list>div>p {
    text-align: center;
    padding: 0px;
    margin: 5px 0px 0px 0px;
    font-size: 12px;
}
/* 小红点 */
.module_list>div.tip_mark{
	position: relative;
}
.module_list>div.tip_mark:before{
	content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 3px;
    background-color: red;
    left: 50%;
    margin-left: 15px;
    top: 6px;
}
