* {
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

html,
body {
    font-size: 14px;
    margin-top: 2px;
    font-family: "微软雅黑", sans-serif;
}
a {
    text-decoration: none;
}
.hide {
    display: none;
}
.showBlock {
    display: block;
}
.lightColor {
    color: #808080;
}
.cur {
    cursor: pointer;
}
.font-bold {
    font-weight: bold;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix {
    content: "";
    clear: both;
    display: block;
}
.flex {
    display: flex;
}

.flexAll {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flexCBetween {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flexY-center {
    display: flex;
    align-items: center;
}

.center {
    text-align: center;
}
.pt20 {
    padding-top: 20px;
}
.p20 {
    padding: 20px;
}
.pl20 {
    padding-left: 20px;
}
.mr5 {
    margin-right: 5px;
}
.mr10 {
    margin-right: 10px;
}
.ml10 {
    margin-left: 10px;
}
.ml5 {
    margin-left: 5px;
}
.ml18 {
    margin-left: 18px;
}
.ml20 {
    margin-left: 20px;
}
.mllose20 {
    margin-left: -20px;
}
.mt10 {
    margin-top: 10px;
}
.mt15 {
    margin-top: 15px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb15 {
    margin-bottom: 15px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb1 {
    margin-bottom: 1px;
}
.size12 {
    font-size: 12px;
}
.size14 {
    font-size: 14px;
}
.size16 {
    font-size: 16px;
}
.size36 {
    font-size: 36px;
}

.w50Ratio {
    width: 50% !important;
}

.color-blue {
    color: #1e88de;
}
.color-red {
    color: #ff0000;
}
.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn {
    cursor: pointer;
    text-align: center;
    padding: 8px 0px;
    border-radius: 5px;
    color: #fff;
    background: #1f93cb;
    background: linear-gradient(0deg, #1f93cb 0%, #1ca2e4 100%);
}

.dangerBtn {
    background: #ff584c;
    /* background: #FF7373; */
}
.warningBtn {
    background: #d1a649;
}
.table {
    border-left: 1px solid #ebeef5;
    color: #333333;
}
.table .tabTitle {
    height: 41px;
    line-height: 41px;
    /* border-top: 1px solid #ebeef5; */
    /* border-bottom: 1px solid #ebeef5; */
    /* background: #fafafa; */
}
.table .titleList {
    background: #f2f9ff;
    border-top: 1px solid #ebeef5;
}
.table .titleList,
.table .tabList {
    border-right: 1px solid #ebeef5;
    border-bottom: 1px solid #ebeef5;
    text-align: center;
    float: left;
    width: 160px;
    height: 41px;
    line-height: 41px;
    /* background: #F2F9FF; */
}
/* 单元格 */
.table .tabList {
    font-weight: 400;
    background-color: #fff;
}
#myServeInfo .table {
    border-left: 1px solid #ebeef5;
    color: #333333;
    min-width: 1288px;
}
#myServeInfo .table .titleList {
    background: #fafafa;
}
#myServeInfo .table .titleList,
#myServeInfo .table .tabList {
    border-right: 1px solid #ebeef5;
    border-bottom: 1px solid #ebeef5;
    text-align: center;
    float: left;
    width: 8%;
    /* min-width: 160px; */
    height: 41px;
    line-height: 41px;
    box-sizing: border-box;
    /* background: #F2F9FF; */
}
.table .tabContent {
    height: 41px;
    line-height: 41px;
    /* background: #ffffff; */
}

.dialog {
    position: fixed;
    top: 5%;
    left: 50%;
    z-index: 99;
    background: #f6f6f6;
}

.dialogClose {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 2%;
    top: 5px;
    background-size: cover;
    z-index: 999;
}
.dialogClose::before {
    position: absolute;
    content: " ";
    display: inline-block;
    width: 2px;
    height: 15px;
    background-color: #fff;
    transform: rotate(45deg);
    top: 18%;
    left: 46%;
}
.dialogClose::after {
    position: absolute;
    content: " ";
    display: inline-block;
    width: 2px;
    height: 15px;
    background-color: #fff;
    transform: rotate(-45deg);
    top: 18%;
    left: 46%;
}
.dialog_content {
    padding: 10px;
    max-height: 700px;
    overflow-y: auto;
    /* overflow: scroll; */
}
.dialogModal {
    display: none;
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.dialogCenter {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.dialog .dialog_title {
    position: relative;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    height: 31px;
    line-height: 31px;
    background: #1f93cb;
    background: linear-gradient(0deg, #3caef1, #378cf4);
}
.dialog_bottom {
    margin: 10px;
    padding: 0 25px;
}
.tooltip {
    position: relative;
    font-size: 14px;
    cursor: pointer;
}

.tooltip:hover::before {
    background-color: #f4fbff;
    border: 1px solid #d9d9d9;
    color: #333333;
    word-break: keep-all;
    white-space: nowrap;
    content: attr(data-msg);
    position: absolute;
    padding: 2px 6px;
    display: block;
    border-radius: 5px;
    font-size: 14px;
    line-height: 20px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.dialog-modal {
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}
.dialog-modal input {
    width: 180px;
    outline: none;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 3px;
}
.dialog-modal .tips {
    color: #fab901;
    font-size: 12px;
}
.normal_tips {
    height: 40px;
    text-align: center;
    padding: 30px;
}
.dialog-close-btn {
    display: block;
    cursor: pointer;
    text-align: center;
    padding: 5px 0px;
    border-radius: 5px;
    color: #fff;
    border: none;
    background: #1f93cb;
    background: linear-gradient(0deg, #1f93cb 0%, #1ca2e4 100%);
}

.message-box {
    position: fixed;
    top: 5%;
    left: 50%;
    background-color: #feecb9;
    border-radius: 5px;
    padding: 8px 12px;
    z-index: 1000;
    transform: translateX(-50%);
    display: none;
}
.message-box .warning-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #f00;
    text-align: center;
    line-height: 20px;
    border-radius: 50px;
    color: #fff;
    margin-right: 15px;
}
.fadeIn {
    -webkit-animation: fadeInDown 0.3s;
    animation: fadeInDown 0.3s;
}

/* Toast提示 */
#toast {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    padding: 10px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
}

@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -20%, 0);
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -20%, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: none;
        opacity: 1;
    }
}
.fadelogIn {
    -webkit-animation: fadelogIn 0.3s;
    animation: fadelogIn 0.3s;
}

@keyframes fadelogIn {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadelogIn {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
    }
    100% {
        -webkit-transform: none;
    }
}
