*{
    /* 初始化 */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #222;
}
.box{
    width: 220px;
    height: 60px;
    background-color: #e8f0fd;
    border: 0px solid #e8f0fd;
    border-radius: 5px;
    position: relative;
    margin-top: 15px;
}
.box .fl{
    width: 100px;
    height: 60px;
    position: absolute;
}
/* 小绿点 */
.box .radio{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1abd6c;
    color: #fff;
    text-align: center;
    line-height: 20px;
    position: absolute;
    z-index: 99;
}
/* 要点击的文字 */
.box span{
    font-size: 20px;
    color: blueviolet;
    font-weight: bold;
    position: absolute;
    z-index: 1;
    cursor: pointer;
}
/* 底部提示区 */
.tit-box{
    width: 180px;
    height: 30px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    color: #333;
    background-color: #e8f0fd;
    margin-top: 15px;
}
.tit-box span{
    color: #6097eb;
    font-weight: bold;
}