.drag {
    -webkit-app-region: drag;
}

.no-drag {
    -webkit-app-region: no-drag;
}
.word{
width: unset;
}
/* 渐变效果 */
.leave_slowly {
  transition-duration: .5s;
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
}

/* 渐变效果 */
.hover_slowly:hover {
  transition-duration: .5s;
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
}

/* 单行省略 */
.d_ellipsis {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

/* 两行省略 */
.m_ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

/* 三行省略 */
.m3_ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden; }

/* 四行省略 */
.m4_ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden; }

/* 鼠标点击样式 */
.pointer {
	cursor: pointer;
}

/* 文字居中 */
.txt_center {
	text-align: center;
}

/* 隐藏滚动条 */
.hideScroll::-webkit-scrollbar {
  display: none !important; }

/*@font-face {*/
/*	font-family: "ZhanKuQingKeHuangYouTi";*/
/*	src: url("./font/ZhanKuQingKeHuangYouTi/zcoolqingkehuangyouti-Regular.woff2") format("woff2"),*/
/*	  url("./font/ZhanKuQingKeHuangYouTi/zcoolqingkehuangyouti-Regular.woff") format("woff"),*/
/*	  url("./font/ZhanKuQingKeHuangYouTi/zcoolqingkehuangyouti-Regular.ttf") format("truetype"),*/
/*	  url("./font/ZhanKuQingKeHuangYouTi/zcoolqingkehuangyouti-Regular.eot") format("embedded-opentype"),*/
/*	  url("./font/ZhanKuQingKeHuangYouTi/zcoolqingkehuangyouti-Regular.svg") format("svg");*/
/*}*/

.zhanKuQingKeHuangYouTi {
	font-family: 'zhanKuQingKeHuangYouTi'!important;
}

/* .zkqk_title {
	font-family: 'ZhanKuQingKeHuangYouTi'!important;
} */

/* 渐变效果 */
.slowly {
  transition-duration: .5s;
  -moz-transition-duration: .5s;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
}
/*里面的代码可以根据自己需求去进行更改*/
/* 设置滚动条的样式 */
.scrollbar ::-webkit-scrollbar {
width:5px;
}
/* 滚动槽 */
.scrollbar ::-webkit-scrollbar-track {
-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3);
border-radius:2px;
}
/* 滚动条滑块 */
.scrollbar ::-webkit-scrollbar-thumb {
border-radius:2px;
background:rgba(64,158,255,0.5);
}
.scrollbar2 ::-webkit-scrollbar {
width:5px;
}
/* 滚动槽 */
.scrollbar2 ::-webkit-scrollbar-track {
-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.1);
border-radius:2px;
}
/* 滚动条滑块 */
.scrollbar2 ::-webkit-scrollbar-thumb {
border-radius:2px;
background:rgba(103,194,58,0.3);
}


  .big_title {
    font-size: 30px;
    font-weight: bold;
  }

  .main_title {
    font-size: 20px;
    font-weight: bold;
  }

  .sub_title {
    font-size: 17px;
    font-weight: bold;
  }
  .custom_head{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  .handle_item{
  margin-left: 10px;
  }
  .icon-scan{
        margin-left: 20px;
      margin-right: 14px;
      width: 34px;
      height: auto;
  }

    .input_style .el-input__inner{
    background: #F2F2F2;
    border: none;
    }
    .input_style .el-input__inner::placeholder{
    font-size: 14px;
    }
    .el-dialog{
    border-radius: 6px;
    }
    .el-button.el-button--primary{
    background: #4F8AFE;
    }
    .back_button{
    padding: 5px 22px;
    border-radius: 5px;
    background: #4F8AFE;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 20px;
    cursor: pointer;
    }
    .on_line,.off_line{
    position: relative;
    overflow: unset!important;
    }
    .on_line_left{
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
        position: relative;
        z-index: 2;
    }
    .on_line .on_line_left{
        background: linear-gradient(180deg, #2AF598 0%, #009EFD 100%);
    }
        .off_line .on_line_left{
            background: #CCCCCC
        }
        .on_line .on_line_left_content{
                background: linear-gradient(180deg, #009EFD 0%, #2AF598 100%);
        }
                .off_line .on_line_left_content{
                            background: #fff
                }
    .on_line_left_content{
        width: 46px;
        height: 46px;
        border-radius: 50%;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .on_line_left_content .line{
    position: absolute;
    width: 2px;
    border-radius: 2px;
    height: 100%;
    background: #ccc;
transform: rotate(45deg);
    }
    .on_line_left_content .value{
    font-size: 12px;
    font-weight: 700;
    }
    .on_line_left_content .el-icon-upload{
    font-size: 22px;
    }    .on_line_left_content .icon-WIFI{
         font-size: 22px;
         color: #ccc;
         }
    .on_line_right{
    width: 100px;
    height: 30px;
    position: absolute;
    left:30px;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .on_line .on_line_right{
    background: #24B9D4;
    }
        .off_line .on_line_right{
        background: #ccc;
        }
#ocean{
  position:absolute;
  width:100%;
  min-height:100%;
  background: linear-gradient(90deg, #2AF598 0%, #009EFD 100%);
}

.wave{
  background:#a8e3ff;
  height:90%;
  width:2px;
  position:absolute;
  -webkit-animation-name:             dostuff;
  -webkit-animation-duration:         2s;
  -webkit-animation-iteration-count:  infinite;
  -webkit-transition-timing-function: ease-in-out;
}


@-webkit-keyframes dostuff{
  0%{
    height:20%;
  }
  50%{
    height:70%;
  }
  100%{
    height:20%;
  }
}
.text{
font-size: 12px;
color: #fff;
z-index: 2;
}
.is_network{
position: relative;
margin-right: 100px;
}
.new_popover{
width: unset!important;
background: #CCCCCC;
color: #fff;
}
.new_popover2{
width: unset!important;
}
.popover2_wrap{
width: 260px;
height: 330px;
overflow: hidden;
overflow-y: auto;
}
.new_popover[x-placement^=bottom] .popper__arrow::after{
border-bottom-color: #ccc;
}
.new_popover[x-placement^=bottom] .popper__arrow{
border-bottom-color: #ccc;
}
.popover_head{
color: #4F8AFE;
}
.popover_head .title{
color:#333;
}
.upload_item{
background: #fff;
overflow: hidden;
border-radius: 6px;
height: 50px;
position: relative;
font-size: 13px;
border: 1px solid #EBF2FF;
margin-top: 10px;
}
.upload_item i {
font-size: 26px;
color: #43CF7C;
margin: 0 15px;
}
.progress{
width: 100%;
height: 5px;
position: absolute;bottom: 0;
left: 0;
}
.progress-bar{
width: 100%;
height: 100%;
background: -webkit-repeating-linear-gradient(30deg, #83a7cf 0, #83a7cf 10px,#93b3d6 10px, #93b3d6 20px);
        -webkit-animation: move 5s linear infinite;
}@-webkit-keyframes move{
         0%{
             background-position: 0 0;
         }
         100%{
             background-position: -200px 0;
         }
     }

.update_dialog .el-dialog__header{
               padding: 0;
}

.update_dialog .el-dialog__body{
               padding: 0;
}
.update_dialog .el-dialog{
               background: transparent;
               box-shadow: none;
}
.update_dialog .content{
background: #fff;
margin-top: -5px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.update_dialog img{
padding: 0;
margin: 0;
font-size: 0;
}
.update_dialog .progress{
height: 10px;
position: relative;
width: 90%;
margin:  0 auto;
border-radius: 10px;
overflow: hidden;
}
.update_dialog .action{
color: #000;
}
.update_dialog .val{
color: #333;
}
.update_dialog .info{
padding: 0 40px 40px 40px;
}

.ta_center {
	text-align: center;
}



