ul li{
    list-style: none;
}

/* 大屏幕 ：大于等于1200px*/
@media (min-width: 1200px) { 
    .About-CountUl {
        margin-top: 1vw;
        white-space:nowrap;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .About-CountLi {
        display:inline-block;
        margin-right: 4vw;
    }


    .About-CountSpan {
        color: white;
        font-size: 2.1vw;
        font-style: italic;
        font-weight: bold;
    }

    .About-CountP {
        color: white;
        font-size: 1vw;
    }
}
 
/*默认*/
@media (min-width: 980px){
    .About-CountUl {
        margin-top: 1vw;
        white-space:nowrap;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .About-CountLi {
        display:inline-block;
        margin-right:4vw;
    }


    .About-CountSpan {
        color: white;
        font-size: 2.1vw;
        font-style: italic;
        font-weight: bold;
    }

    .About-CountP {
        color: white;
        font-size: 1vw;
    }
}
 
/* 平板电脑和小屏电脑之间的分辨率 */
@media (min-width: 768px) and (max-width: 979px) { 
    .About-CountUl {
        margin-top: 1.25vw;
        white-space:nowrap;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .About-CountLi {
        display:inline-block;
        margin-right: 7.5vw;
    }


    .About-CountSpan {
        color: white;
        font-size: 2.5vw;
        font-style: italic;
        font-weight: bold;
    }

    .About-CountP {
        color: white;
        font-size: 1.25vw;
    }
}
 
/* 横向放置的手机和竖向放置的平板之间的分辨率 */
@media (max-width: 767px) { 
.About-CountUl {
        margin-top: 1.5vw;
        white-space:nowrap;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .About-CountLi {
        display:inline-block;
        margin-right: 9vw;
    }
    
    .About-CountSpan {
        color: white;
        font-size: 3.15vw;
        font-style: italic;
        font-weight: bold;
    }
    
    .About-CountP {
        color: white;
        font-size: 1.5vw;
    }
}
 
/* 横向放置的手机及分辨率更小的设备 */
@media (max-width: 480px) { 
.About-CountUl {
    padding: 0;
        margin-top: 2.5vw;
        white-space:nowrap;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .About-CountLi {
        display:inline-block;
        margin-right: 4vw;
    }
    
    
    .About-CountSpan {
        color: white;
        font-size: 4.15vw;
        font-style: italic;
        font-weight: bold;
    }
    
    .About-CountP {
        color: white;
        font-size: 2.5vw;
    }
}