* {
    font-size: 10px;
    box-sizing: border-box;
    --default-shadow: 0px 0px 5px #ccc;
    --default-hover-shadow: 0px 0px 15px #ccc;
}

*[icon="icon1"]::before {
    content: "_";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/monitor/site.svg");
    height: 40px;
    width: 40px;
    color: transparent;
    display: inline-block;
    overflow: hidden;
    margin-right: 5px;
}

*[icon="icon2"]::before {
    content: "_";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/monitor/informationCapture.svg");
    height: 40px;
    width: 40px;
    color: transparent;
    display: inline-block;
    overflow: hidden;
    margin-right: 5px;
}

*[icon="icon3"]::before {
    content: "_";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/monitor/download.svg");
    height: 40px;
    width: 40px;
    color: transparent;
    display: inline-block;
    overflow: hidden;
    margin-right: 5px;
}

*[icon="icon4"]::before {
    content: "_";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/monitor/data.svg");
    height: 40px;
    width: 40px;
    color: transparent;
    display: inline-block;
    overflow: hidden;
    margin-right: 5px;
}

*[icon="icon5"]::before {
    content: "_";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/monitor/href.svg");
    height: 40px;
    width: 40px;
    color: transparent;
    display: inline-block;
    overflow: hidden;
    margin-right: 5px;
}

body {
    /*background-color: rgb(230, 242, 248);*/
    background-color: #F4F6F8;
}

.monitor-point-numbers {
    font-size: 24px;
    text-align: right;
    font-weight: 800;
}

.monitor-point-title {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    display: block;
}

.monitor-case {
    padding: 10px 0px 10px 20px;
}

.percent-up::before {
    content: "_";
    display: inline-block;
    overflow: hidden;
    border-top: 0px solid transparent;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid green;
    color: transparent;
    width: 8px;
    height: 5px;
}

.percent-down::before {
    content: "_";
    display: inline-block;
    overflow: hidden;
    border-top: 8px solid red;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 0px solid transparent;
    color: transparent;
    width: 8px;
    height: 5px;
}

.rank {
    text-align: center;
}

.monitor-page-title {
    font-size: 18px;
    width: fit-content;
    padding: 20px 20px 0px 20px;
}

.active {
    border-bottom: 1px solid #ccc;
    box-shadow: 0px 0px 5px #ccc;
}

.net-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.net-title {
    padding: 0px 0px 5px 0px;
}

.log-screen {
    height: 530px;
    overflow: auto;
    width: 100%;
}
.log-screen>div{
    user-select: none;
    border-bottom: 1px solid #ccca;
}
.log-screen>div:hover{
    background-color: #ccca;
}
.runing::before {
    content: "_";
    background-color: lightgreen;
    height: 10px;
    width: 10px;
    overflow: hidden;
    color: transparent;
    display: inline-block;
    border-radius: 10px;
    margin-right: 5px;
    margin-left: 10px;
}

.search-area {
    box-shadow: var(--default-shadow);
    margin: 10px 0px 10px 0px;
    padding: 10px;
    background-color: #fffa;
    border-radius: 5px;
}

.cstom-padding-40px {
    padding-right: 40px;
}
.cstom-padding-20px {
    padding-right: 20px;
}
.mo-module-title {
    width: fit-content;
    padding-bottom: 10px;
    /* padding-right: 20px;
    background-image: linear-gradient(90deg, rgb(219, 235, 245), #fff);
    color: rgb(43, 144, 208); */
    font-size: 12px;
    text-shadow: var(--default-shadow);
}

.net-item {
    padding: 10px;
    background-color: #fff9;
    box-shadow: var(--default-shadow);
    border-radius: 5px;
    display: flex;
}
.net-item-case{
    display: flex;
    gap:10px;
    flex-direction: column;
    min-height: 400px;
}
.bg-transparent{
    background: transparent;
}
#dataGrid .net-item {
    padding: 10px;
    background-color: #fff9;
    box-shadow: var(--default-shadow);
    border-radius: 5px;
    display: flex;
}

.net-item:hover {
    box-shadow: var(--default-hover-shadow);
    background-color: #fff;
}

.net-item a {
    color: #333;
    text-decoration: none;
}

.net-item:hover a {
    text-decoration: none;
    color: blue;
}

.mo-data-case {
    padding: 10px;
    box-shadow: var(--default-shadow);
    border-radius: 5px;
    background-color: #fff9;
    border: 0px;
}
.mo-data-case:hover {
    box-shadow: var(--default-hover-shadow);
    background-color: #fff;
}
.mo-chart-case {
    box-shadow: var(--default-shadow);
    border-radius: 5px;
    background-color: #fff9;
    padding-top: 10px;
    padding-bottom: 10px;
}
.mo-chart-case:hover {
    box-shadow: var(--default-hover-shadow);
    background-color: #fff;
}
.mo-list-case {
    box-shadow: var(--default-shadow);
    border-radius: 5px;
    background-color: #fff9;
    padding-top: 10px;
    padding-bottom: 10px;
}
.mo-list-case:hover {
    box-shadow: var(--default-hover-shadow);
    background-color: #fff;
}

.mo-unit{
    font-size: 12px;
}
tr {
    border-bottom: 1px dotted #eeeeee;
}
.mo-error{
    color:darkred
}

.mo-data-change{
    display: flex;
    gap:10px;
    padding: 0px;
}
.mo-data-change-button{
    border-radius: 5px;
    background-color: #fff;
    padding: 8px 20px 10px 20px;
}
.mo-data-change input[type="radio"]{
    display: none;
}
#mo-data-change-dd:checked ~ .mo-data-change-button{
    background-color:#3c66e4;
    box-shadow: var(--default-shadow);
    color:#333;
}
#mo-data-change-mm:checked ~ .mo-data-change-button{
    background-color: #3c66e4;
    box-shadow: var(--default-shadow);
    color:#333;
}
#mo-data-change-yyyy:checked ~ .mo-data-change-button{
    background-color: #3c66e4;
    box-shadow: var(--default-shadow);
    color:#333;
}
.more {
    margin-left: 10px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    width: 44px;
    height: 18px;
    font-size: 12px;
    line-height: 18px;
    background: #409eff;
    border-radius: 9px;
    text-align: center;
}

.more:hover {
    color: #fff;
    background: #66b1ff;
}

.search {
    border: none;
    background-color: transparent;
    outline: none;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    width: 54px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    background: #409eff;
    border-radius: 4px;
    text-align: center;
}

