/* -------------------搜索----------------- */
.search_box {
    float: left;
    margin-right: 10px;
    width: 200px;
    height: 36px;
    border: 1px solid #ccc;
}
.search_box.search_box_lg {
    width: 500px;
    height: 43px;
}
.search_box.search_box_md {
    width: 400px;
    height: 40px;
}
.search_box input {
    float: left;
    padding: 0;
    padding: 0 7px;
    width: 80%;
    height: 34px;
    border: none;
    outline: none;
    box-sizing: border-box;
}
.search_box input.search_box_lg {
    height: 41px;
}
.search_box input.search_box_md {
    height: 38px;
}
.search_ico {
    float: left;
    margin-top: -1px;
    width: 20%;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #20A8D8;
    cursor: pointer;
}
.search_ico.search_box_lg {
    height: 42px;
    line-height: 42px;
}
.search_ico.search_box_md {
    height: 40px;
    line-height: 40px;
}
.search_ico .glyphicon-search {
    font-size: 14px;
    color: #fff;
}

/* -------------------状态标签----------------- */
.z_label {
    font-size: 10px;
    padding: 4px 6px;
    border: none;
    color: #fff;
}
.z_label.label_success {
    background-color: #79c447;
}
.z_label.label_danger {
    background-color: #ff5454;
}
.z_label.label_info {
    background-color: #67c2ef;
}
.z_label.label_default {
    background-color: #d4d4d4;
    color: #484848;
}
.z_label.label_warning {
    background-color: #fabb3d;
}

/* -------------------操作按钮----------------- */
.z_btn {
    display: inline-block;
    padding: 6px 12px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}
.z_btn.z_btn_xs {
    padding: 5px 8px;
    font-size: 12px;
}
.z_btn .glyphicon {
    top: 2px;
}
.z_btn.btn_success {
    margin-top: 2px;
    background-color: #79c447;
}
.z_btn.btn_success:hover {
    background-color: #61a434;
    color: #fff;
}
.z_btn.btn_info {
    margin-top: 2px;
    background-color: #67c2ef;
}
.z_btn.btn_info:hover {
    background-color: #39afea;
    color: #fff;
}
.z_btn.btn_danger {
    margin-top: 2px;
    background-color: #ff5454;
}
.z_btn.btn_danger:hover {
    background-color: #ff2121;
    color: #fff;
}
.z_btn.btn_add {
    margin-top: 2px;
    background-color: #79c447;
}
.z_btn.btn_add:hover {
    background-color: #61a434;
    color: #fff;
}

/* -------------------滑动开关按钮----------------- */
.z_checkbox {
    position: relative;
    display: inline-block;
}
.z_checkbox label {
    width: 75px;
    height: 42px;
    background: #ccc;
    position: relative;
    display: inline-block;
    border-radius: 46px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.z_checkbox label.z_checkbox_md {
    width: 44px;
    height: 20px
}
.z_checkbox label.z_checkbox_xs {
    width: 39px;
    height: 15px;
}
.z_checkbox label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    z-index: 2;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.z_checkbox label.z_checkbox_md:after {
    width: 20px;
    height: 20px;
}
.z_checkbox label.z_checkbox_xs:after {
    width: 15px;
    height: 15px;
}
.z_checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
}
.z_checkbox input:checked + label {
    background: #4d90fe;
}
.z_checkbox input.z_checkbox_blue:checked + label {
    background: #67c2ef;
}
.z_checkbox input:checked + label:after {
    left: 35px;
}
.z_checkbox input:checked + label.z_checkbox_md:after{
    left: 25px;
}
.z_checkbox input:checked + label.z_checkbox_xs:after {
    left: 24px;
}
/* -------------------滑动开关按钮开启----------------- */
.z_checkbox.z_checkbox_open label {
    background: #4d90fe;
}
.z_checkbox.z_checkbox_open label:after {
    left: 24px;
}
.z_checkbox.z_checkbox_open input:checked + label {
    background: #ccc;
}
.z_checkbox.z_checkbox_open input:checked + label:after {
    left: 0px;
}

/* ------------------------分页------------------------- */
#page {
    margin: 20px auto;
    color: #666;
    display: block;
    text-align: center;
}
#page li {
    display: inline-block;
    min-width: 30px;
    height: 28px;
    cursor: pointer;
    color: #666;
    font-size: 13px;
    line-height: 28px;
    background-color: #f9f9f9;
    border: 1px solid #dce0e0;
    text-align: center;
    margin: 0 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: initial;
}
.xl-nextPage,
.xl-prevPage {
    width: 60px;
    color: #0F71EE;
    height: 28px;
}
#page li.xl-disabled {
    opacity: .5;
    cursor: no-drop;
}
#page li.xl-disabled:hover{
    background-color: #f9f9f9 !important;
    border: 1px solid #dce0e0 !important;
    color: #666 !important;
}
#page li.xl-active {
    background-color: #0F71EE;
    border-color: #0F71EE;
    color: #FFF
}
#page li:hover{
    background-color: #0F71EE !important;
    border-color: #0F71EE;
    color: #FFF
}
 #page li.xl-jumpText {
    background-color: rgba(0,0,0,0);
    border-color: rgba(0,0,0,0);
    opacity: 1;
}
#page li.xl-jumpText:hover{
    background-color: rgba(0,0,0,0) !important;
    border-color: rgba(0,0,0,0) !important;
}
#page li.xl-jumpButton{
    padding: 0 5px;
}
#xlJumpNum {
    width: 35px;
    margin: 0 3px;
    display: inline-block;
    height: 34px;
    /* padding: 4px 6px; */
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    vertical-align: middle;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: none;
    background-color: #fff;
    border: 1px solid #ccc;
}
input[type="number"]:focus {
    border-color: rgba(82,168,236,0.8);
    outline: 0;
    outline: thin dotted \9;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(82 168 236 / 60%);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(82 168 236 / 60%);
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
}
input[type="number"]{
    -moz-appearance:textfield;
}

/* --------------------------排序---------------------- */
.ulright {
    float: left;
    margin-top: 8px;
    border: 1px solid #E5E5E5;
    /* border-bottom: none; */
    border-right: none;
}
.ulright span {
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background-color: rgb(241, 240, 240);
    box-sizing: border-box;
}
.controls .patrol_point {
    float: left;
    margin-top: 8px;
    margin-left: 0;
    border: 1px solid #E5E5E5;
    /* border-bottom: none; */
    overflow: hidden;
}
.patrol_point li {
    padding-left: 10px;
    width: 100%;
    height: 34px;
    line-height: 34px;
    list-style: none;
    color: #333;
    border-bottom: 1px solid #E5E5E5;
    cursor: pointer;
    box-sizing: border-box;
}
.patrol_point li:last-child {
    border-bottom: none;
}
.sortable-ghost {
    opacity: 0.3;
    background-color:#ccc;
}
.point_delete {
    float: right;
    width: 24px;
    height: 34px;
    color: rgb(228, 30, 40);
    cursor: pointer;
}
.point_delete i {
    cursor: pointer !important;
}









