body{
    /*padding: 10px;*/
    padding: 0;
    margin: 0;
    /*box-sizing: border-box;*/
    font-size: 14px;
    background-color: rgb(244,244,244);
}

.top{
    position: absolute;
    top: 0px;
    height: 120px;
    left: 0px;
    right: 0px;
    border-radius: 5px;
    display: flex;
    background-color: #FFFFFF;
    /*justify-content: center;*/
    align-items: center;
}

.top-img{
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.top-img-icon{
    width: 60px;
    height: 60px;
    background-color: #00a3f5;
    border-radius: 50%;
}
.top-info{
    width: 20%;
    text-align: left;
    font-weight: 300;
}
.top-info-line{
    margin-bottom: 4px;
}
.top-other{
    width: 60%;
    font-weight: 300;
    text-align: left;
}
.top-operate{
    width: 10%;
}
.top-operate-button{
    width: 80px;
    height: 30px;
    background-color: #00a3f5;
    color: white;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    cursor:pointer;
}

.main{
    position: absolute;
    /*height: 1100px;*/
    top: 130px;
    bottom: 10px;
    left: 0px;
    right: 0px;
    overflow: auto;
    border-radius: 5px;
    background-color: #FFFFFF;
    padding: 15px;
    box-sizing: border-box;


}
.main-title{
    display: flex;
    height: 20px;
    /*background-color: #00a3f5;*/
    margin-bottom: 30px;
}
.main-title-front{
    height: 20px;
    width: 4px;
    background-color: rgb(31,98,173);
    margin-right: 10px;
}
.main-title-text{
    line-height: 20px;
    height: 20px;
    font-weight: bold;
}
.main-data{
    /*display: flex;*/
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}
.main-data-line{
    margin-bottom: 20px;

}
.three{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 150px;

}
.main-data-line-item{
    display: flex;
    /*background-color: #00a3f5;*/
    font-weight: 320;

}
.main-data-line-item-label{
    margin-right: 10px;
    white-space: nowrap;
}

.main-data-line-item-text{
    display: flex;
    gap: 20px;
}
