.main{
    width: 1200px;
    position: relative;
    margin: auto;
}
.main-title{
    font-size: 28px;
    font-weight: 600;
}

.menu-group{
    margin-top: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 360px 360px 360px;
    grid-template-rows: 160px;
    grid-column-gap: 60px;
    row-gap: 20px;
}
.menu{
    background-color: #F2F2F2;
    padding: 30px 40px;
    color: white;
    border-radius: 4px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}
.menu.first{
    background-color: #94A0F5;
}
.menu.first .menu-button{
    color: #94A0F5;
}
.menu.second{
    background-color: #FD939C;
}
.menu.second .menu-button{
    color: #FD939C;
}
.menu.third{
    background-color: #52a938a8;
}
.menu.third .menu-button{
    color: #52a938a8;
}

.menu.fourth{
    background-color: #E17D2C;
}
.menu.fourth .menu-button{
    color: #E17D2C;
}
.menu.fifth{
    background-color: #f5c767;
}
.menu.fifth .menu-button{
    color: #f5c767;
}
.menu.sixth{
    background-color: #0088B9;
}
.menu.sixth .menu-button{
    color: #0088B9;
}

.menu .menu-title{
    font-size: 24px;
    font-weight: 600;
}
.menu .menu-tip{
    font-size: 12px;
}
.menu .menu-button{
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.11);
    background-color: white;
    font-weight: bold;
    width: 88px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 3px;
    margin-top: 20px;
    cursor: pointer;
}

.instructions{
    color: #999999;
    font-size: 12px;
    margin-top: 20px;
    line-height: 24px;
}
.head-data{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(9, 11%);
    grid-template-rows: 100px;
    margin-top: 20px;
}
.data-item .line{
    border-top: 1px solid #ebeef5;
    margin-top: 10px;
    margin-bottom: 10px;
}
.data-item .num{
    font-size: 20px;
    line-height: 30px;
}
.percent-data{
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}
.percent-data .data-item{
    width: 100%;
    display: grid;
    grid-template-columns: 50px 790px 180px 180px;
    grid-template-rows: 70px;
    border-bottom: 1px solid #ebeef5;
    line-height: 70px;
}
.percent-data .data-item.head{
    color: #909399;
    font-weight: 600;
}
.progress .title{
    display: inline-block
}
.progress .progress-item{
    width: 620px;
    float: right;
    margin-right: 20px;
    margin-top: 26px;
}
.layui-progress-bar{
    background-color: #0078D7;
}