* {
    margin: 0;
    padding: 0;
}

.w-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  /* margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5); */
}
.w-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  /* padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5); */
  margin-top: var(--bs-gutter-y);
}

.w-col {
  flex: 1 0 0%;
}

.w-row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.w-row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.w-row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.w-row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.w-row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.w-row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.w-row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.w-col-auto {
  flex: 0 0 auto;
  width: auto;
}

.w-col-1 {
  flex: 0 0 auto;
  width: 4.16666667%;
}

.w-col-2 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.w-col-3 {
  flex: 0 0 auto;
  width: 12.5%;
}

.w-col-4 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.w-col-5 {
  flex: 0 0 auto;
  width: 20.83333333%;
}

.w-col-6 {
  flex: 0 0 auto;
  width: 25%;
}

.w-col-7 {
  flex: 0 0 auto;
  width: 29.16666667%;
}

.w-col-8 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.w-col-9 {
  flex: 0 0 auto;
  width: 37.5%;
}

.w-col-10 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.w-col-11 {
  flex: 0 0 auto;
  width: 45.83333333%;
}

.w-col-12 {
  flex: 0 0 auto;
  width: 50%;
}

.w-col-13 {
  flex: 0 0 auto;
  width: 54.16666667%;
}

.w-col-14 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.w-col-15 {
  flex: 0 0 auto;
  width: 52.5%;
}

.w-col-16 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.w-col-17 {
  flex: 0 0 auto;
  width: 70.83333333%;
}

.w-col-18 {
  flex: 0 0 auto;
  width: 75%;
}

.w-col-19 {
  flex: 0 0 auto;
  width: 79.16666667%;
}

.w-col-20 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.w-col-21 {
  flex: 0 0 auto;
  width: 81.5%;
}

.w-col-22 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.w-col-23 {
  flex: 0 0 auto;
  width: 95.83333333%;
}

.w-col-24 {
  flex: 0 0 auto;
  width: 100%;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}
.pl-20 {
    padding-left: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}


.table {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    flex: 1;
    width: 100%;
    max-width: 100%;
    /* background-color: #fff; */
    font-size: 14px;
    color: #fff;
    border: 0; 

    border-collapse: separate;  /* 确保边框分开 */
    border-spacing: 0 6px;      /* 第一个值是水平间距，第二个值是垂直间距 */
}
.table-row {
    margin-top: 3px;
}
.table-row-striped tr:nth-child(even) {
    background-color: #10349e;
}
.table-cell {
    padding: 3px 0;
    min-width: 0;
    box-sizing: border-box;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
    text-align: left;
}
.table .table-cell.is-center {
    text-align: center
}

.table .table-cell.is-right {
    text-align: right
}
.table .table-cell.icon {
    border-left: 2px solid #4096ff;
}

/* ------------------------ 滚动 ------------------------ */
.seamless-warp {
    overflow: hidden;
    height: 270px;
}

    .seamless-warp .list {
        overflow: hidden;
        padding: 0;
    }
        .seamless-warp .list .item {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            height: 26px;
            margin-bottom: 4px;
            /* padding-left: 10px; */
            border-left: 2px solid #4096ff;
        }
        
        .seamless-warp .list .item:nth-child(even) {
            background-color: #10349e;
        }        
            .seamless-warp .list .item span {
                flex: 1;
                text-align: center;
                font-size: 14px;
            }

.dashboard {
    width: 100%;
    height: 1080px;
    color: #fff;
    
    background: url('../image/dashboard/bg.png') no-repeat center center;
    background-size: 100% 100%;
}

/* head css */
.dashboard > .head {
    width: 100%;
    height: 70px;
    padding-bottom: 10px;
    display: flex;
    background: url("../image/dashboard/head-bg.png") no-repeat;
    background-size: 100% 100%;
}

    .dashboard > .head .head-center {
        width: 720px;
        position: relative;
    }
        .dashboard > .head .head-center .title {
            text-align: center;
            font-size: 32px;
            color: #fff;            
            height: 60px;
            line-height: 60px;
        }

    .dashboard > .head .head-left {
        width: calc((100% - 720px) / 2);
        font-size: 20px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }
        .dashboard > .head .head-left .ymd,.week,.hms {
            font-size: 20px;
            margin: 0 20px;
            color: #fff; 
        }

    .dashboard > .head .head-right {
        width: calc((100% - 720px) / 2);
        font-size: 20px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }
        .dashboard > .head .head-right .date {
            font-size: 20px;
            margin: 20px 20px 0 20px;
            color: #fff;
        }

/* ----------------- 顶部统计 ----------------- */
.dashboard > .body {
    height: 1000px;
}
    .dashboard > .body .top-statistic {
        width: 100%;
        height: 180px;
        /* margin-top: 20px;  */
        margin-bottom: 10px;
    }
        .dashboard > .body .top-statistic .center {
            position: relative;
            text-align: center;
            padding-bottom: 10px;
            /* margin: 0 0; */
        }
        .dashboard > .body .top-statistic .center::after {
            content: "";
            position: absolute;
            top: 110px; 
            bottom: 0;    
            left: -50px;
            right: -50px;
            background: url("../image/dashboard/top-statistic-bg.png") no-repeat;
            background-size: cover;
        }
    .dashboard > .body .top-statistic .statistic {
        display: flex;
        justify-content: center;
        color: #fff;
    }
        .dashboard > .body .top-statistic .statistic .left {
            font-size: 22px;
            height: 100%;
            display: inline-block;
        }
            .dashboard > .body .top-statistic .statistic .left .icon-1 {
                background: url("../image/dashboard/statistic-icon-1.png") no-repeat;
                background-size: contain;
                text-align: center;  
            }

    .dashboard > .body .top-statistic .statistic .right {
        height: 100%;
        display: inline-block;
    }
        .dashboard > .body .top-statistic .statistic .right .top {
            height: 30%;
            display: inline-block;
        }
        .dashboard > .body .top-statistic .statistic .right .today {
            font-size: 22px;
            color: #cc8c3f;
            padding-left: 15px;    
            text-align: left;
        }
            .dashboard > .body .top-statistic .statistic .right .today span {
                font-size: 28px;
                color: #ffae39;
            }
        .dashboard > .body .top-statistic .statistic .right .total {
            font-size: 22px;
            color: #4c92ff;
            padding-left: 15px;
            text-align: left;
        }
            .dashboard > .body .top-statistic .statistic .right .total span {
                font-size: 28px; 
                color: #488afc;
            }

/* ----------------- 内容 ----------------- */
.dashboard > .body .main {

}
/* ----------------- 内容 左部 ----------------- */
.dashboard > .body .main .left {
    padding: 0px;
    position: relative;
}
    .dashboard > .body .main .left .statistic {    
        position: relative;
        text-align: center;  
        height: 420px;
        margin: 0px 30px 0 65px;    
    }

/* ----------------- 内容 左部 统计 ----------------- */
.dashboard > .body .main .left .statistic::after {
    content: "";
    position: absolute;
    top: 0; 
    bottom: 0;    
    left: 0;
    right: 0;
    background: url("../image/dashboard/main-left-statistic.png") no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.dashboard > .body .main .left .statistic .today {
    position: absolute;
    top: 13%;
    left: 0;
    width: 100%;
    font-size: 22px;
    color: #cc8c3f;
    /* padding-left: 15px; */
    z-index: 2;
}
    .dashboard > .body .main .left .statistic .today .count {
        font-size: 26px; 
    }
    .dashboard > .body .main .left .statistic .today .title {
        font-size: 18px; 
    }
.dashboard > .body .main .left .statistic .total {
    position: absolute;
    top: 33%;
    left: 0;
    width: 100%;
    font-size: 22px;
    color: #4c92ff;
    /* padding-left: 15px; */
    z-index: 2;
}
    .dashboard > .body .main .left .statistic .total .count {
        font-size: 26px; 
    }
    .dashboard > .body .main .left .statistic .total .title {
        font-size: 18px; 
    }

/* ----------------- 内容 左部 实时情况 ----------------- */
.dashboard > .body .main .left .live {
    height: 380px;
    padding: 0px 20px 0 40px;
}
    .dashboard > .body .main .left .live .head {
        position: relative; 
        min-height: 90px;
    }
        .dashboard > .body .main .left .live .head .title {
            text-align: center;
            height: 52px;
            line-height: 52px;
            font-size: 26px;
        }
        .dashboard > .body .main .left .live .head::after {
            content: "";
            position: absolute;
            top: 0;   
            bottom: 0;  
            left: 0;
            right: 0;
            background: url("../image/dashboard/main-left-live.png") no-repeat;
            background-size: contain;
            background-position: center;
            z-index: 2;
        }
    .dashboard > .body .main .left .live .body {
        padding: 0 6px;
    }    

    .dashboard > .body .main .left .live .seamless-warp {
        overflow: hidden;
        height: 270px;
    }

/* -------------------- 内容 中部 边框 --------------------*/
.dashboard > .body .main .center {
  position: relative;
}
    .dashboard > .body .main .center .border-left {
        width: 70px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: url("../image/dashboard/main-center-border-left.png") no-repeat;
        background-size: cover;
    }
    .dashboard > .body .main .center .border-right {
        width: 70px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: url("../image/dashboard/main-center-border-right.png") no-repeat;
        background-size: cover;
    }

    /* -------------------- 量表评估/在管人数/测量情况 --------------------*/
    .dashboard > .body .main .center .content {
        margin: 35px 40px;
    }
        /* -------------------- 量表评估 --------------------*/
        .dashboard > .body .main .center .content .estimate {
            padding: 0 10px 0 0;
        }
        .dashboard > .body .main .center .content .estimate .head {
            position: relative;
            width: 100%;
            height: 45px;
            background: url("../image/dashboard/main-center-estimate.png") no-repeat;
            background-size: 100% 100%;
        }
            
            .dashboard > .body .main .center .content .estimate .head .title {
                display: inline-block;
                font-size: 24px;
                color: #fff;
                height: 30px;
                line-height: 20px;
                margin: 0 0 0 18px;
            }
            
            .dashboard > .body .main .center .content .estimate .head .estimate-chart-legend {
                position: absolute;
                right: 35px;
                top: 10px;
            }
            
                .dashboard > .body .main .center .content .estimate .head .estimate-chart-legend .item {
                    display: inline-block;
                    padding-left: 10px;
                    font-size: 12px;
                }
            
                    .dashboard > .body .main .center .content .estimate .head .estimate-chart-legend .item .icon {
                        display: inline-block;
                        width: 15px;
                        height: 4px;
                        border-radius: 3px;
                        margin: 2px 2px;
                    }
            .dashboard > .body .main .center .content .estimate  .estimate-chart {
                width: 100%;
                height: 265px;
            }
        
        /* -------------------- 在管人数 --------------------*/
        .dashboard > .body .main .center .content .people {
          
        }
            .dashboard > .body .main .center .content .people .head {
                position: relative;
                width: 100%;
                height: 45px;
                background: url("../image/dashboard/main-center-people.png") no-repeat;
                background-size: contain;
            }
            
            .dashboard > .body .main .center .content .people .people-chart {
                width: 100%;
                height: 265px;
            }        
        
        /* -------------------- 测量情况 --------------------*/
        .dashboard > .body .main .center .content .measure {
            padding-top: 45px;
        }
        .dashboard > .body .main .center .content .measure .head {
            position: relative;
            width: 100%;
            height: 45px;
            background: url("../image/dashboard/main-center-measure.png") no-repeat;
            background-size: cover;
        }
            /* ---------------- 统计 ---------------- */
            .dashboard > .body .main .center .content .measure .head .measure-statistic {
                position: absolute;                
                top: 10px;
                left: 300px;
            }
                .dashboard >.body .main .center .content .measure .head .measure-statistic .item {
                    display: inline-block;
                    padding-left: 10px;
                    font-size: 12px;
                    text-align: center;
                }

                /* ---------------- 今日人数 ---------------- */
                .dashboard >.body .main .center .content .measure .head .measure-statistic .today {
                    display: inline-block;
                    width: 200px;
                    height: 30px;
                    line-height: 30px;
                    background: url("../image/dashboard/main-center-measure-today-bg.png") no-repeat;
                    background-size: cover;

                }
                    .dashboard >.body .main .center .content .measure .head .measure-statistic .today .title {
                        display: inline-block;
                        color: #cc8c3f;
                        font-size: 14px;
                    }
                    .dashboard >.body .main .center .content .measure .head .measure-statistic .today .text {
                        display: inline-block;
                        color: #fabd72;
                        min-width: 60px;
                        text-align: left;
                        font-size: 18px;
                        padding-left: 10px;
                    }

                /* ---------------- 累计人数 ---------------- */
                .dashboard >.body .main .center .content .measure .head .measure-statistic .total {
                    display: inline-block;
                    width: 220px;
                    height: 30px;
                    line-height: 30px;
                    margin-left: 10px;
                    background: url("../image/dashboard/main-center-measure-total-bg.png") no-repeat;
                    background-size: cover;

                }
                    .dashboard >.body .main .center .content .measure .head .measure-statistic .total .title {
                        display: inline-block;
                        color: #4983e0;
                        font-size: 14px;
                    }
                    .dashboard >.body .main .center .content .measure .head .measure-statistic .total .text {
                        display: inline-block;
                        color: #629cfa;
                        min-width: 60px;
                        text-align: left;
                        font-size: 18px;
                        padding-left: 10px;
                    }
            
            /* ---------------- legend ---------------- */
            .dashboard > .body .main .center .content .measure .head .measure-legend {
                position: absolute;
                right: 35px;
                top: 10px;
            }
                .dashboard >.body .main .center .content .measure .head .measure-legend .item {
                    display: inline-block;
                    padding-left: 10px;
                    font-size: 12px;
                }
                    .dashboard >.body .main .center .content .measure .head .measure-legend .item .icon {
                        display: inline-block;
                        width: 15px;
                        height: 4px;
                        border-radius: 3px;
                        margin: 2px 2px;
                    }
                .dashboard >.body .main .center .content .measure .head .measure-legend .today {
                    color: #cc8c3f;
                }                
                    .dashboard >.body .main .center .content .measure .head .measure-legend .today .icon {
                        background-color: #cc8c3f;
                    }
                .dashboard >.body .main .center .content .measure .head .measure-legend .total {
                    color: #4c92ff;
                }                
                    .dashboard >.body .main .center .content .measure .head .measure-legend .total .icon {
                        background-color: #4c92ff;
                    }

        .dashboard > .body .main .center .content .body {
            padding: 12px 6px;
            font-size: 14px;
            text-align: left;
        }
        .dashboard > .body .main .center .content .body .title {
            padding: 20px 0px;
            color: #4c92ff;
        }
        .dashboard > .body .main .center .content .body .low {
            color: #cc8c3f;
        }
        .dashboard > .body .main .center .content .body .high {
            position: relative;
            color: #4c92ff;
        }
        
            .dashboard > .body .main .center .content .body .high::after {
                content: "";
                position: absolute;
                top: 0;   
                bottom: 0;  
                left: 0;
                right: 0;
                z-index: -10;
                width: 100%;
                height: 40px;
                z-index: 1;          
            }

            .dashboard > .body .main .center .content .body .ren-shu {
                height: 100px;
            }
            .dashboard > .body .main .center .content .body .ren-shu .high::after {
                
                background: url("../image/dashboard/main-center-measure-renshu.png") no-repeat;
                background-size: cover;
                background-position: center;
            }
            
            .dashboard > .body .main .center .content .body .ci-shu {
                height: 100px;
            }
                .dashboard > .body .main .center .content .body .ci-shu .high::after {                
                    background: url("../image/dashboard/main-center-measure-cishu.png") no-repeat;
                    background-size: cover;
                    background-position: center;
                }
            .dashboard > .body .main .center .content .body .ren-jun-ci-shu {
                height: 50px;
            }
                .dashboard > .body .main .center .content .body .ren-jun-ci-shu .high {
                    color: #fff;
                }
                    .dashboard > .body .main .center .content .body .ren-jun-ci-shu .high::after {                
                        background: url("../image/dashboard/main-center-measure-renjun-cishu.png") no-repeat;
                        background-size: cover;
                        background-position: center;
                    }

/* -------------------- 内容 右部 --------------------*/
.dashboard > .body .main .right {  
}
            
    /* -------------------- 人群分布 --------------------*/
    .dashboard > .body .main .right {
    }
        .dashboard > .body .main .right .distribution {
            padding: 0 40px 0 10px;
        }
            .dashboard > .body .main .right .distribution .head {
                position: relative;
                width: 100%;
                height: 35px;
                background: url("../image/dashboard/main-right-distribution.png") no-repeat;
                background-size: 100% 100%;
            }
            
            .dashboard > .body .main .right .distribution .distribution-people .male {
                margin: 10px 0;  
                width: 100%;
                height: 34px;
                background: url("../image/dashboard/main-right-people-male.png") no-repeat;
                background-size: 100% 100%;
                /* padding: 5px 0; */
            }
                .dashboard > .body .main .right .distribution .distribution-people .male .sex {
                    color: #4983e0;
                    font-size: 14px;
                    padding-left: 25px;
                }                
            
            .dashboard > .body .main .right .distribution .distribution-people .female {
                margin: 10px 0;  
                width: 100%;
                height: 34px;
                background: url("../image/dashboard/main-right-people-female.png") no-repeat;
                background-size: 100% 100%;
            }
                .dashboard > .body .main .right .distribution .distribution-people .female .sex {
                    color: #ff6262;
                    font-size: 14px;
                    padding-left: 25px;
                }

            .dashboard > .body .main .right .distribution .distribution-people .progress-container {
                display: inline-block;
                width: 48%;
            }
                .dashboard > .body .main .right .distribution .distribution-people .progress-container .progress {
                    height: 8px; 
                    background-color: #000e4b;
                }

            .dashboard > .body .main .right .distribution .distribution-people .progress-text {
                display: inline-block;
                width: 35%;
                text-align: center;
                font-size: 14px;
            }            
                .dashboard > .body .main .right .distribution .distribution-people .progress-text .num {
                    padding-left: 5px;
                }
            
            .dashboard > .body .main .right .distribution .distribution-chart {
                /* width: 60%; */
                height: 265px;
            }   
            .dashboard > .body .main .right .distribution .distribution-chart-legend {
                /* width: 40%; */
                height: 265px;
                align-items: center;
                justify-content: center;
                display: flex;
            } 
               .dashboard > .body .main .right .distribution .distribution-chart-legend .item {
                    display: inline-block;
                }
                   .dashboard > .body .main .right .distribution .distribution-chart-legend .item .icon {
                        display: inline-block;
                        width: 15px;
                        height: 4px;
                        border-radius: 3px;
                        margin: 2px 2px;
                    }
                    
                   .dashboard > .body .main .right .distribution .distribution-chart-legend .item .name {
                        font-size: 10px;
                   }
                    
                   .dashboard > .body .main .right .distribution .distribution-chart-legend .item .percent {
                        font-size: 16px;
                        display: block;
                        width: 100%;
                        text-align: center;
                   }
                  
    .dashboard > .body .main .right .warning {
        padding: 0 40px 0 10px;
    }
        .dashboard > .body .main .right .warning .head {
            position: relative;
            width: 100%;
            height: 35px;
            background: url("../image/dashboard/main-right-warning.png") no-repeat;
            background-size: 100% 100%;
        } 
        .dashboard > .body .main .right .warning .body {
            padding: 0 6px;
        }
        
            .dashboard > .body .main .right .warning .body .title {
                padding: 12px 0;
                list-style-type: none;
                font-size: 12px;
                color: #4983e0 !important;
            }
            
            .dashboard > .body .main .right .warning .body .title span::before {
                content: "";
                display: inline-block;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                margin: 0 2px 2px 0;
                background-color: #4983e0 !important;
            }
            
            .dashboard > .body .main .right .warning .body .title .name {
                text-align: left;
            }
            .dashboard > .body .main .right .warning .body .title .today-emergency {
                text-align: center;
            }
            .dashboard > .body .main .right .warning .body .title .today-normal {
                text-align: center;
            }
            .dashboard > .body .main .right .warning .body .title .total {
                text-align: right;
            }

        .dashboard > .body .main .right .warning .seamless-warp {
            height: 300px;
        }
        
        
            .dashboard > .body .main .right .warning .seamless-warp .list .item:nth-child(even) {
                background-color: #1a41b6;
            } 
        
            .dashboard > .body .main .right .warning .seamless-warp .name {
                display: inline-block;
                width: 25%;
                text-align: left;
            }
            .dashboard > .body .main .right .warning .seamless-warp .today-emergency {
                display: inline-block;
                width: 29.16666667%;
                text-align: center;
                color: #e64f5a;
            }
            .dashboard > .body .main .right .warning .seamless-warp .today-normal {
                display: inline-block;
                width: 29.16666667%;
                text-align: center;
            }
            .dashboard > .body .main .right .warning .seamless-warp .total {
                display: inline-block;
                width: 16.66666667%;
                text-align: right;
                color: #d39147;
                padding-right: 12px;
            }
            .dashboard > .body .main .right .warning .seamless-warp .list {
                padding: 0;
            }
                .dashboard > .body .main .right .warning .seamless-warp .name {
                    padding: 0 0 0 10px;
                }

 .bg-blue-light {
    background-color: #4983e0;
}
.bg-red-light {
    background-color: #cc8c3f; 
}