.data-wrapper {
    padding-bottom: 60px;
}

.module-title {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.module-title .title-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.module-title .title-wrap .img-wrap {
    width: 34px;
    height: 34px;
    margin-right: 12px;
}

.module-title .title-wrap .img-wrap img {
    object-fit: contain;
}

.module-title .title-wrap span {
    font-size: 20px;
    font-weight: 700;
    color: #006dba;
}

.module-title .time {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 32px;
    letter-spacing: 0px;
    color: #006dba;
}

.data-card {
    width: 1200px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}

.data-card .data-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.data-card .data-list li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*width: 216px;*/
    /*height: 282px;*/
    width: 183px;
    height: 254px;
    background-color: #f5f9fc;
    box-shadow: 0px 6px 18px 0px rgba(0, 110, 171, 0.06);
    border-radius: 4px;
    border: solid 1px #e0e7ef;
}

.data-card .data-list li .img-wrap {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
}

.data-card .data-list li span {
    font-size: 22px;
    font-weight: 700;
    color: #006dba;
}

.data-card .data-list li.active {
    border-color: #e60000;
}

.data-card .data-list li .more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 50px;
    background-color: transparent;
    border-radius: 4px;
    border: solid 1px #006dba;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #006dba;
    margin-top: 32px;
}

.data-card .data-list li .more-btn:hover {
    border-color: #e60000;
    color: #e60000;
}

.data-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.circle-module {
    width: 462px;
    height: 370px;
    background-color: #ffffff;
    box-shadow: 0px 6px 18px 0px rgba(0, 110, 171, 0.06);
    border-radius: 4px;
    border: solid 1px #e0e7ef;
}

.circle-module .circle-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.circle-module .circle-data .circle {
    width: 150px;
    height: 150px;
}

.line-module {
    width: 708px;
    height: 370px;
    background-color: #ffffff;
    box-shadow: 0px 6px 18px 0px rgba(0, 110, 171, 0.06);
    border-radius: 4px;
    border: solid 1px #e0e7ef;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 40px 50px;*/
}

.line-module .line {
    width: 708px;
    height: 370px;
}

.progress-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    color: #999999;
}

.progress-wrap .progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.progress-wrap .progress .progress-out {
    width: 240px;
    height: 8px;
    background-color: #F5F5F5;
    border-radius: 4px;
    overflow: hidden;
}

.progress-wrap .progress .progress-in {
    width: 0;
    height: 8px;
    border-radius: 4px;
    transition: all 1s;
}

.progress-wrap .progress .progress-in.blue {
    background-image: linear-gradient(90deg, #6cc2ff 0%, #2292e1 100%), linear-gradient(#e60000, #e60000);
    background-blend-mode: normal, normal;
}

.progress-wrap .progress .progress-in.red {
    background-image: linear-gradient(90deg, #ffb071 0%, #ff7200 100%), linear-gradient(#e60000, #e60000);
    background-blend-mode: normal, normal;
}
