.popupContainer{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10003;
    display: none;
    width: 100%;
    height: 100vh;
}
.popupBg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
}
.popupBox{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-y: scroll;
}
.popup{
    position: relative;
    z-index: 1000000;
    width: 90%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
}
.popupTitBox{
    padding: 15px;
    border-bottom: 1px solid #EEE;
}
.popupTitBox h3{
    font-size: 16px;
    font-weight: 700;
}
.popupTitBox p{
    position: relative;
    width: 20px;
    height: 19px;
    cursor: pointer;
}
.popupTitBox p span{
    position: absolute;
    top: 8px;
    right: 0;
    display: block;
    width: 15px;
    height: 2.5px;
    border-radius: 5px;
    background: #333;
}
.popupTitBox p span:first-child{transform: rotate(45deg);}
.popupTitBox p span:last-child{transform: rotate(-45deg);}
.popupCont{
    max-height: 55vh;
    padding: 15px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.popupCont .popupItem{
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.popupCont .popupItem:first-child{
    padding-top: 10px;
}
.popupCont .popupItem:last-child{
    padding-bottom: 0px;
    border-bottom: none;
}
.popupItem div{
    margin-bottom: 10px;
}
.popupCont .popupItem:last-child div{
    margin-bottom: 0px;
}
.popupCont p.subMessege{
    font-size: 13px;
    color: #999;
}

.popupItem.popDateSet div label{
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
}
.popupItem.popDateSet div input{
    min-width: 140px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.popupItem.popExcelSet > div{
    width: 100%;
}
.popupItem.popExcelSet input.emailInput{
    width: 85%;
    margin: 15px auto 0 auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.popupItem.popExcelSet input.emailInput:disabled{
    background: #f1f1f1;
}
.popupItem.popExcelSet div div{
    width: 50%;
}
.popupItem.popExcelSet div div label{
    font-size: 14px;
}
.popupItem.popExcelSet div div input{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.popupItem.popInfo{
    padding: 15px 5px;
}
.popupItem.popInfo h4{
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}
.popupItem.popInfo p{
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
.popupItem.popInfo p:last-child{
    margin-bottom: 0;
}
.popupItem.popInfo ul{
    margin-bottom: 10px;
    font-size: 12px;
    color: #999;
}
.popupItem.popInfo ul:last-child{
    margin-bottom: 0px;
}
.popupItem.popInfo > ul{
    padding-left: 5px;
    margin-top: 7px;
}
.popupItem.popInfo > ul li{
    margin-bottom: 3px;
}

.popupItem.popAlarmCode div{
    margin-bottom: 5px;
}
.popupItem.popAlarmCode div p{
    width: 22px;
    margin-right: 10px;
    background: #f1f1f1;
    border-radius: 50%;
    line-height: 21px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}
.popupItem.popAlarmCode div p.emergency{
    background: #ff3100;
    color: #fff;
}
.popupItem.popAlarmCode div p.warring{
    background: #FFCE00;
    color: #fff;
}
.popupItem.popAlarmCode div h4{
    margin-top: -2.5px;
    font-size: 14px;
}
.popupItem.popAlarmCode div h4.emergency{
    color: #ff3100;
}
.popupItem.popAlarmCode div h4.warring{
    color: #FFCE00;
}
.popupItem.popAlarmCode p.alarmCodeInfo{
    padding: 0 5px;
    font-size: 14px;
}

.popupBtnBox{
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}
.popupBtnBox.oneBtn button{
    width: 100%;
}
.popupBtnBox.twoBtn button{
    width: calc(50% - 5px);
}
.popupBtnBox button{
    border: none;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
    cursor: pointer;
}
.popupBtnBox button.cancel{
    background: #fff !important;
    border: 1px solid #ccc !important;
    color: #333 !important;
}
.popupBtnBox button.ok{
    background: #00b0ff !important;
    border: 1px solid #00b0ff;
    color: #fff !important;
}