/*
 * 版权声明
 * 上海万位数字技术有限公司（以下简称“本公司”）对其自行研究开发、编写编制的软件程序、代码等（以下简称“研发资料”）均受《中华人民共和国反不正当竞争法》、《中华人民共和国著作权法》、《中华人民共和国专利法》及适用之国际公约中有关著作权、专利权及/或其他财产所有权法律的保护，为本公司专属或持有。
 * 使用者将本公司专属或持有的研发资料用于商业、营利、广告性目的时，需事先征得本公司书面特别授权，并注明出处“上海万位数字技术有限公司”，并按照有关国际公约及中华人民共和国法律的有关规定，向本公司支付使用费。
 * 未经本公司事先明确的书面特别授权，任何单位或个人不得以任何形式、任何途径，通过任何渠道变更、篡改、发行、发布、散布、复制、重制、展示或利用研发资料全部或部分内容，否则以侵权论，依法追究法律责任。
 *
 * Copyright Notice
 * All the software programs and codes among others (hereinafter referred to as the R&D data) solely developed and written by Shanghai Wanway Digital Technology Co., Ltd. (hereinafter referred to as the Company) are protected by the Law of the People's Republic of China against Unfair Competition, Copyright Law of the People's Republic of China, Patent Law of the People's Republic of China and provisions on laws of copyrights, patent rights and/or other property ownership in international conventions that apply and exclusive to or owned by the Company.
 * While using the R&D data exclusive to or possessed by the Company for any commercial, marketing, or advertising purpose, users need ask for special authorization from the Company in writing beforehand, note the source "Shanghai Wanway Digital Technology Co., Ltd." and pay the Company royalties subject to relevant provisions in related international conventions and laws of the People's Republic of China.
 * With no prior and express written special authorization from the Company, any unit or individual shall not alter, tamper, issue, release, distribute, duplicate, remake, produce or use part or all of the R&D data in any form and any way, otherwise it shall be deemed as infringement and subject to legal penalties by law.
 */

@primary-color: #0420d1; // 全局主色
@link-color: #0420d1; // 链接色
@success-color: #52c41a; // 成功色
@warning-color: #faad14; // 警告色
@error-color: #f5222d; // 错误色
@font-size-base: 14px; // 主字号
@heading-color: rgba(0, 0, 0, 0.85); // 标题色
@text-color: rgba(0, 0, 0, 0.65); // 主文本色
@text-color-secondary: rgba(0, 0, 0, 0.45); // 次文本色
@disabled-color: rgba(0, 0, 0, 0.25); // 失效色
@border-radius-base: 4px; // 组件/浮层圆角
@border-color-base: #d9d9d9; // 边框色
@box-shadow-base: 0 2px 8px rgba(0, 0, 0, 0.15); // 浮层阴影
@menusWidth:18px;
@mrGt26:0px;

.new-app {
  display: flex;
  flex: 1;
  background-color: #fff;
  .app-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: relative;
    background: linear-gradient(
      45deg,
      rgba(0, 42, 104, 1) 0%,
      rgba(4, 33, 188, 1) 100%
    );
    .menu-collapsed {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 20px;
      top: 0;
      bottom: 0;
      right: -17px;
      z-index: 2;
    }
    .menu-logo {
      display: flex;
      //height: 50px;
      max-width: 160px;
      max-height: 50px;
      margin-top: 10px;
    }
    .un-menu-logo {
      display: flex;
      width: 38px;
      height: 21px;
      margin-top: 10px;
    }
    .login-info {
      font-size: 12px;
      color: #c1eeff;
      display: flex;
      height: 120px;
      margin-top: 25px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      img {
        width: 62px;
        height: 62px;
        margin-bottom: 8px;
      }
    }
    .un-login-info {
      font-size: 12px;
      color: #c1eeff;
      display: flex;
      height: 120px;
      margin-top: 25px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;

      img {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
      }
      span {
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 58px;
        white-space: nowrap;
        text-align: center;
      }
    }
    .menu-list {
      display: flex;
      flex-direction: column;
      width: 100%;
      background: transparent;
      &.uncollapse-list{
        li{
          padding-left: 30px;
          i{
            padding-right: 10px;
          }
        }
      }

      li {
        height: 45px;
        margin: 5px 0;
        font-size: 12px;
        color: #c1eeff;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        span{
          padding-left: 10px;
        }
        img {
          width: 17px;
          height: 17px;
          margin-right: 26px;
        }
      }
      .selected-li {
        color: #fff;
        background: rgba(255, 255, 255, 0.14);
        //border-radius:100px 0px 0px 100px;
      }
    }
    .newMenu-list{
      display: flex;
      flex-direction: column;
      width: 100%;
      background: transparent;
      li {
        height: 45px;
        margin: 5px 0;
        font-size: 12px;
        color: #fff;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding-left: 30px;
        img {
          width: 17px;
          height: 17px;
          margin-right: 26px;
        }
      }
      .selected-li {
        color: #fff;
        background: rgba(0, 0, 0, 0.14);
        //border-radius:100px 0px 0px 100px;
      }
    }
    #bottom-menu {
      position: absolute;
      bottom: 10px;
    }
  }
  .app-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    .app-header {
      display: flex;
      height: 60px;
      min-height: 60px;
      position: relative;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
      box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.09);
      .tree_search {
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .header_search {
        display: flex;
        align-items: center;
      }
    }

    .component-content {
      display: flex;
      flex: 1;
      padding: 10px 10px 0 10px;
      background-color: #f6f6f6;
    }
  }
}

//客户树
.treeDiv {
  height: 266px;
  overflow-y: auto;
  background: #fff;
  margin-top: 0;
  width: 100%;
  position: absolute;
  outline: 0;
  border-top: 1px solid #eee;
}

.shadowBox_tree {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
}

.treeAutoDiv {
  /*  height: 96%; */
  overflow-y: auto;
  background: #fff;

  /* margin-top: 4px; */
  width: 100%;

  /*  padding-left: 10px; */
  border-top: 1px solid #d9d9d9;
  flex: 1;
}

.treePopDiv {
  position: absolute;
  top: 30px;
}

.treeRelative {
  position: relative;
  top: 30px;
  height: 100%;
}
.ant-select-selection {
  border-radius: 29px;
  width: 100%;
}
.ant-input {
  border-radius: 29px;
}
.account_tab .ant-tabs-nav {
  left: 0;
}
.ant-tabs .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active {
  color: #0420d1;
  font-weight: bolder;
}
.ant-tabs-nav:hover .ant-tabs-tab:hover {
  color: #0420d1;
}
.ant-tabs-ink-bar {
  background-color: #0420d1;
}
.ant-modal-content {
  border-radius: 10px;
}
.device_detail .ant-modal-content .ant-modal-body {
  padding: 16px 0;
}
.ant-modal-content .ant-modal-header {
  background-color: #f3f4f9;
  padding: 6px 17px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.device_detail_tabs .ant-tabs-content > .ant-tabs-tabpane {
  padding: 0 20px;
}
.device_detail_tabs .ant-tabs-content {
  height: auto !important;
}
.component {
  display: flex;
  flex-direction: row;
  flex: 1;
  img {
    cursor: pointer;
  }
  .component_left {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-right: 10px;
    background-color: #fff;
  }
  .component_right {
    display: flex;
    flex: 4;
    flex-direction: column;
    background-color: #fff;
  }
  .component_header {
    display: flex;
    height: 30px;
    background-color: #0224a5;
    border-radius: 10px 10px 0px 0px;
    color: #c1eeff;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    a.help {
      color: #ffe141;
    }
  }
  .renewlog {
    width: 100%;
    height: 100%;  
    .renewlog_header {
      padding-left: 20px;
      border-radius: 10px 10px 0 0;
      color: #c1eeff;
      line-height: 30px;
      background-color: #0224a5;
    }
    .renewlog_container {
      padding-left: 20px;
      .ant-input {
        height: 32px;
      }
      .renewlog_date {
        line-height: 45px;
      }
      .renewlog_option {
        line-height: 60px;
      }
      .renewlog_tab_header {
        display: flex;
        justify-content: space-around;
        text-align: center;
        margin-right: 20px;
        line-height: 50px;
        font-weight: bold;
        color: #666666;
        border-radius: 6px 6px 0 0;
        background-color: #f3f4f9;
      }
      .renewlog_tab_content {
        max-height: 460px;
        margin-right: 20px;
        overflow-y: auto;
        .renewlog_list:nth-of-type(2n) {
          background-color: #f7faff;
        }
        .renewlog_list {
          display: flex;
          justify-content: space-around;
          align-items: center;
          height: 70px;
          line-height: 1.8;
          text-align: center;
          cursor: pointer;
          color: #333;
          border: 0;
          &:hover {
            background-color: #ebf4ff;
          }
        }
      }
      .renewlog_page {
        display: flex;
        position: absolute;
        bottom: 0;
        align-items: center;
      }
    }
  }
}
.emailPushDevice {
  flex-direction: column !important;
  box-shadow: 0px 4px 7px 0px rgba(4, 26, 120, 0.14);
  border-radius: 10px;
  height: 300px;
}

.mileageCountData {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 25px 20px 8px;
  .count-item {
    flex: 1;
    height: 86px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-right: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 0 19px 15px;
    &:nth-last-child(1) {
      margin-right: 0;
    }
    .title {
      font-size: 12px;
      color: rgba(0, 0, 0, 0.5);
      line-height: 17px;
    }
    .countImg {
      position: absolute;
      bottom: 17px;
      right: 46px;
      &.mile_ocunt_img {
        right: 12px;
      }
      &.overspeed_img_count {
        right: 37px;
      }
      &.stay_img_count {
        right: 26px;
      }
    }
    .countNo {
      font-size: 20px;
      color: #0420d1;
    }
  }
}
.account_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 215px;
  padding: 13px 20px 20px 20px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 1px 4px 0px rgba(4, 26, 120, 0.14);
  .account_name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(102, 102, 102, 1);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    div {
      display: flex;
      justify-content: space-between;
      img {
        width: 25px;
        height: 25px;
        cursor: pointer;
        margin-right: 40px;
        &:last-child {
          margin-right: 0;
        }
      }
    }
  }
  .account_type {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    div {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      font-size: 12px;
      color: #333;
      span {
        display: inline-block;
        width: 60px;
      }
    }
  }
  .account_device_number {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    div {
      flex: 1;
      height: 62px;
      display: flex;
      margin-right: 50px;
      justify-content: center;
      align-items: center;
      background: rgba(255, 255, 255, 1);
      box-shadow: 0px 1px 4px 0px rgba(4, 26, 120, 0.14);
      border-radius: 10px;
      font-size: 29px;
      font-weight: 400;
      color: rgba(4, 32, 209, 1);
      &:last-child {
        margin-right: 0;
      }
      img {
        width: 26px;
        height: 24px;
        margin-right: 15px;
      }
    }
  }
}

.new_app_table_content {
  padding: 10px 20px;
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  .new_app_pagination {
    position: absolute;
    bottom: 0px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #ffffff;
    .new_app_pagination_tip {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      max-width: 50%;
    }
  }
}

.component_body {
  margin-left: 10%;
}
.content_text_number {
  width: 6px;
  height: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(102, 102, 102, 1);
  line-height: 20px;
}
.content_text {
  width: 353px;
  height: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(102, 102, 102, 1);
  line-height: 20px;
  padding-left: 21px;
}
.add_img {
  // width: 115px;
  height: 14px;
  margin-top: 35px;
  // margin-left: 85%;
  cursor: pointer;
}
// .add_img:hover {
//   opacity: 50%;
// }
.delete:hover {
  opacity: 50%;
}
.component_table {
  margin: 22px 29px 0 29px;
  background: rgba(243, 244, 249, 1);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(102, 102, 102, 1);
  line-height: 16px;
}
.keyAddModal {
}
.keyContent {
}
.keyImg {
  width: 126px;
  height: 100px;
}

.component_left_ul {
  li {
    height: 30px;
    margin-bottom: 10px;
    a {
      display: flex;
      flex: 1;
      padding-left: 30px;
      height: 30px;
      align-items: center;
      color: #000000;
    }
  }
}

.component_table_content {
  display: flex;
  flex: 1;
  flex-direction: column;
  background-color: #fff;
  padding: 0 20px;
}
.search_content {
  background: rgb(255, 255, 255);
  height: 50px;
  padding: 0px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  .search_content_left {
    display: flex;
    align-items: center;
  }
  .search_content_right {
    display: flex;
    align-items: center;
  }
  .btns_wrap {
    position: absolute;
    top: 53px;
    right: 20px;
  }
}
.device_more_menu {
  background-color: #fff;
  height: 50px;
  width: 196px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 14px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
  img {
    cursor: pointer;
  }
}

.car_table {
  .ant-table-header {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
  .ant-table {
    table {
      border-radius: 0px;
    }
  }
}

#languageSel {
  width: 128px;
  height: 28px;
  border-radius: 23px;
}
.login-container {
  display: flex;
  position: absolute;
  top: 180px;
  background-color: transparent;
  width: 100%;
  z-index: 2;
  flex: 1;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  .icon-content {
    display: flex;
    width: 442px;
    padding: 0 36px;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    margin-bottom: 50px;
  }
  .login-content {
    width: 442px;
    height: auto;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 21px 0px rgba(98, 54, 255, 0.07);
    border-radius: 25px;
    border: 1px solid rgba(1, 121, 255, 1);
    padding-left: 0px;

    .login-tab ul {
      display: flex;
      justify-content: space-around;
    }
    .login-tab ul li {
      width: 30%;
      float: left;
      margin: 0;
      color: #0420d1;
      border-bottom: 2px solid;
    }
    .login-tab-active {
      color: #000 !important;
      border: none !important;
      background: none !important;
      box-shadow: none !important;
    }
    .login-account-info {
      display: flex;
      justify-content: center;
      align-items: center;
      img {
        margin-right: 15px;
        margin-top: 10px;
      }
      input {
        border: none !important;
        border-bottom: 1px solid #7f7f7f !important;
        margin-top: 10px !important;
        position: initial !important;
        border-radius: 0 !important;
      }
    }
  }
}
.login-bg {
  //display: flex;
  width: 100%;
  height: 464px;
  background-repeat: no-repeat;
  background-size: cover;
  -o-background-size: cover;
  background-position: bottom;
}
#index_copyright {
  background-color: #fff;
  margin-top: 300px;
}

#rememberMeText,
#rememberMeTextIMEI {
  position: initial;
  margin-top: 0px;
}
#loginBtn,
#loginBtnIMEI {
  position: initial;
  margin-top: 0px;
  width: auto;
  background: none;
}
.login-btn {
  margin-top: 30px;
}
.btn-img {
  border-radius: 28px;
  box-shadow: 1px 5px 10px -2px #4587d1;
}
.btn-img:active {
  box-shadow: none;
}
.batch_export {
  overflow: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  text-overflow: ellipsis;
}
.device_radio_group {
  display: flex;
  .ant-radio-wrapper {
    margin-right: 0px;
    display: flex;
    align-items: flex-end;
  }
}
.component_right {
  .content {
    display: flex;
    flex: 1;
    background-color: #f6f6f6;
    .content_left {
      display: flex;
      width: 300px;
      flex-direction: column;
      margin-right: 5px;
      background-color: #fff;
      .left_list,
      .account_tab {
        display: flex;
        flex: 1;
        flex-direction: column;
        .list_ul {
          display: flex;
          flex: 1;
          overflow-y: auto;
          flex-direction: column;

          li {
            display: flex;
            height: 30px;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            padding: 0 17px;
            cursor: pointer;
            min-height: 30px;
          }
          li span:first-child {
            width: 80%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
          }
          .activeItem {
            background: #d2eafb !important;
          }
          li:nth-child(even) {
            background: #f9fafe;
          }

          li:nth-child(odd) {
            background: #fff;
          }
        }
      }
    }
    .content_right {
      display: flex;
      flex: 1;
      background-color: #fff;
      flex-direction: column;
    }
  }
}
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close:after {
  -webkit-filter: none;
  filter: none;
  font-size: 12px;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close:after {
  -webkit-transform: rotate(270deg) scale(.59);
  -ms-transform: rotate(270deg) scale(.59);
  transform: rotate(270deg) scale(.59);
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close:after {
  font-size: 12px;
  font-size: 7px\9;
  // -webkit-transform: scale(.58333333) rotate(0deg);
  // -ms-transform: scale(.58333333) rotate(0deg);
  // transform: scale(.58333333) rotate(0deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  zoom: 1;
  display: inline-block;
  font-family: anticon;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E606";
  font-weight: 700;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s,-webkit-transform .3s;
}
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open:after {
  -webkit-filter: none;
  filter: none;
  font-size: 12px;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open:after {
  font-size: 12px;
  font-size: 7px\9;
  -webkit-transform: scale(.58333333) rotate(0deg);
  -ms-transform: scale(.58333333) rotate(0deg);
  transform: scale(.58333333) rotate(0deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
  zoom: 1;
  display: inline-block;
  font-family: anticon;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\E606";
  font-weight: 700;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s,-webkit-transform .3s;
}
.erea_choose_tree {
  li {
    //display: flex;
    //flex: 1;
    //height: 27px;
    //padding: 0px;
    //align-items: center;
    span.ant-tree-switcher {
      height: 21px;
      line-height: 21px;
      background-color: transparent !important;
    }
    a {
      width: 100%;
    }
  }
  li:nth-child(even) {
    background: #f9fafe;
  }

  .ant-tree-title > div img {
    float: right;
    padding-right: 15px;
  }

  li:nth-child(odd) {
    background: #fff;
  }
  .ant-tree-child-tree {
    li {
      display: flex;
      flex: 1;
      height: 30px;
      padding: 0px;
      align-items: center;
      min-height: 30px;
    }
    .ant-tree-title > div img {
      padding-right: 0px;
    }
  }
}
#google_auto_complete {
  position: absolute;
  top: 20px !important;
  left: 20px;
  z-index: 222;
  display: flex;
  width: 35%;
  div {
    background-color: #3895e5;
    color: #fff;
    display: flex;
    min-width: 60px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    height: 28px;
    max-width: 120px;
  }
  input {
    border-radius: 0px;
  }
}
.multi-select {
  width: 200px;
}
.item-renderer {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  input {
    min-width: 14px;
  }
}
.dropdown-heading {
  border-color: rgb(217, 217, 217) !important;
  height: 30px !important;
  border-radius: 29px !important;
  .dropdown-heading-value {
    line-height: 30px !important;
    max-width: 75% !important;
  }
}
.device_all_select {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.time_period {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 10px;
}
.multi-select_content {
  position: relative;
  display: inline-block;
  .select_count {
    position: absolute;
    top: 6px;
    right: 23%;
  }
  .clear_img {
    position: absolute;
    top: 7px;
    right: 13%;
  }
}
.dropdown-content {
  display: flex;
}
.expiredDevice {
  position: relative;
  .expire_tip {
    position: absolute;
    top: 0px;
    right: -20px;
    width: 8px;
    height: 8px;
    background: #fd3f3f;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
  }
}
.recharge_tip {
  display: flex;
  height: 140px;
  .tip_item {
    width: 300px;
    height: 100px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 20px 20px;
    .item_count {
      margin-left: 20px;
      font-size: 12px;
      color: rgba(0, 0, 0, 0.5);
      .count {
        font-size: 24px;
        color: rgba(4, 32, 209, 1);
      }
    }
  }
}

/**气泡 报警*/
.alarm_beel_container {
  &_activate {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 0;
    bottom: 40px;
    background: #ffd077;
    z-index: 999;
    cursor: pointer;
    .alarm_beel {
      background-image: url("../images/bell.png");
      width: 40px;
      height: 40px;
      animation: myAnimation 1.25s steps(1);
      animation-iteration-count: 4;
    }
    @keyframes myAnimation {
      0% {
        background-position: 0px 0px;
      }
      3.57% {
        background-position: -40px 0px;
      }
      7.14% {
        background-position: -80px 0px;
      }
      10.71% {
        background-position: -120px 0px;
      }
      14.29% {
        background-position: -160px 0px;
      }
      17.86% {
        background-position: -200px 0px;
      }
      21.43% {
        background-position: -240px 0px;
      }
      25.00% {
        background-position: -280px 0px;
      }
      28.57% {
        background-position: -320px 0px;
      }
      32.14% {
        background-position: -360px 0px;
      }
      35.71% {
        background-position: -400px 0px;
      }
      39.29% {
        background-position: -440px 0px;
      }
      42.86% {
        background-position: -480px 0px;
      }
      46.43% {
        background-position: -520px 0px;
      }
      50.00% {
        background-position: -560px 0px;
      }
      53.57% {
        background-position: -600px 0px;
      }
      57.14% {
        background-position: -640px 0px;
      }
      60.71% {
        background-position: -680px 0px;
      }
      64.29% {
        background-position: -720px 0px;
      }
      67.86% {
        background-position: -760px 0px;
      }
      71.43% {
        background-position: -800px 0px;
      }
      75.00% {
        background-position: -840px 0px;
      }
      78.57% {
        background-position: -880px 0px;
      }
      82.14% {
        background-position: -920px 0px;
      }
      85.71% {
        background-position: -960px 0px;
      }
      89.29% {
        background-position: -1000px 0px;
      }
      //92.86% { background-position: -1040px 0px; }
      //96.43% { background-position: -1080px 0px; }
      //100.00% { background-position: -1120px 0px; }
    }
  }
  &_disabled {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 0;
    bottom: 40px;
    background: #d0d0d0;
    z-index: 999;
    .alarm_beel {
      background-image: url("../images/bell.png");
      width: 40px;
      height: 40px;
    }
  }
  &_normal {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 0;
    bottom: 40px;
    background: #ffd077;
    .alarm_beel {
      background-image: url("../images/bell.png");
      width: 40px;
      height: 40px;
    }
  }
}

.alarm_pop_container {
  //width: 280px;
  padding: 0 10px;
  min-width: 280px;
  position: fixed;
  bottom: 35px;
  background: #1d76fe;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50px;
  height: 50px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  &_show {
    animation: myAnimationPop 0.5s;
  }
  &_hidden {
    animation: myAnimationPopHide 0.5s;
  }
}

.alarm_pop_container::after {
  display: block;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: -10px;
  margin-right: -10px;
  bottom: 15px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #1d76fe;
  border-right: 10px solid transparent;
  //transform: translateX(-50%);
}

@keyframes myAnimationPop {
  0% {
    transform: translateX(430px);
  }
  100% {
    transform: translateX(0x);
  }
}
@keyframes myAnimationPopHide {
  0% {
    transform: translateX(0x);
  }
  100% {
    transform: translateX(430px);
  }
}

//驾驶行为总览
.driving_behavior {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 130px;
  padding: 13px 20px 20px 20px;
  background: rgba(255, 255, 255, 1);
  .driving_behavior_number {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    .driving_behavior_number_all {
      flex: 0.3;
      height: 100px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      background: rgba(255, 255, 255, 1);
      box-shadow: 0px 1px 4px 0px rgba(4, 26, 120, 0.14);
      border-radius: 10px;
      .driving_behavior_number_right {
        margin-left: 20px;
        .driving_behavior_number_title {
          width: 150px;
          height: 17px;
          font-size: 12px;
          font-family: PingFangSC-Regular, PingFang SC;
          font-weight: 400;
          color: rgba(0, 0, 0, 0.5);
          line-height: 17px;
        }
        .driving_behavior_number_num {
          width: 60px;
          height: 33px;
          font-size: 24px;
          font-family: PingFangSC-Regular, PingFang SC;
          font-weight: 400;
          color: rgba(4, 32, 209, 1);
          line-height: 33px;
          letter-spacing: 1px;
          margin-top: 16px;
        }
      }
    }
  }
}

//行程油耗总览
.tour_fuel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 130px;
  padding: 13px 20px 20px 20px;
  background: rgba(255, 255, 255, 1);
  .tour_fuel_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    .tour_fuel_item_all {
      flex: 0.18;
      width: 180px;
      height: 110px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      align-items: center;
      background: rgba(255, 255, 255, 1);
      box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
      border-radius: 6px;
      .tour_fuel_item_text {
        height: 17px;
        font-size: 12px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.5);
        line-height: 17px;
      }
      .tour_fuel_item_num {
        width: 65px;
        height: 33px;
        font-size: 24px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: rgba(4, 32, 209, 1);
        line-height: 33px;
        letter-spacing: 1px;
      }
    }
  }
}

.card_transfer {
  display: flex;
  flex: 1;
  padding: 20px;
  .customertab_tree {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 7px 0px rgba(4, 26, 120, 0.14);
    border-radius: 10px;
    max-width: 280px;
  }
  .transfer_content {
    padding-left: 48px;
    .row {
      color: #333;
      margin-bottom: 20px;
      .tree_search {
        position: relative;
        display: inline-block;
      }
    }
  }
}

.card_transfer_left {
  width: 300px;
  height: 410px;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.card_transfer_middle {
  height: 410px;
  display: flex;
  align-items: center;
  padding: 0 50px;
}
.card_transfer_right {
  width: 300px;
  height: 410px;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.card_transfer_title_left {
  height: 75px;
  background: linear-gradient(
    90deg,
    rgba(69, 161, 236, 1) 0%,
    rgba(0, 114, 247, 1) 100%
  );
  font-size: 18px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  line-height: 19px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  flex-direction: column;
}
.card_transfer_title_right {
  height: 75px;
  font-size: 18px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  line-height: 19px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  flex-direction: column;
  background: linear-gradient(
    270deg,
    rgba(4, 62, 149, 1) 0%,
    rgba(4, 33, 188, 1) 100%
  );
  .card_transfer_title_right_in {
    font-size: 12px;
    font-family: PingFang-SC-Regular, PingFang-SC;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
  }
}
.card_transfer_tree {
  margin: 10px 0 20px 0;
  padding: 0 10px;
  img {
    margin: 0 10px;
  }
}
.card_transfer_content {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 12px;
  font-family: PingFang-SC-Medium, PingFang-SC;
  font-weight: 500;
  color: rgba(126, 127, 131, 1);
  line-height: 20px;
  letter-spacing: 1px;
}

//油耗报表和油量报表
.oli_driving_behavior {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 130px;
  padding: 13px 20px 20px 20px;
  background: #ffffff;

  .oli_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 180px;
    height: 110px;
    flex: 0.18;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    .oli_item_number {
      height: 33px;
      font-size: 24px;
      font-family: PingFangSC-Regular, PingFang SC;
      font-weight: 400;
      color: rgba(4, 32, 209, 1);
      line-height: 33px;
      letter-spacing: 1px;
    }
    .oli_item_title {
      height: 17px;
      font-size: 12px;
      font-family: PingFangSC-Regular, PingFang SC;
      font-weight: 400;
      color: rgba(0, 0, 0, 0.5);
      line-height: 17px;
    }
  }
}
.oli_content {
  .oli_header {
    display: flex;
    align-items: center;
  }
  .oli_title {
    color: #414450;
    font-weight: 800;
    font-size: 14px;
    margin-left: 61px;
  }
  .oli_center_title {
    //text-align: center;
    //margin: 0 auto;
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
  }
  .dot_blue {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #1c77ff;
    margin-right: 5px;
  }
  .dot_green {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #70d6d1;
    margin-right: 5px;
  }
  .oli_unit {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px 61px 0 83px;
  }
  #oli_chart {
    margin: 0 45px;
  }
  .oli_chart_bottom {
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.25);
    text-align: center;
  }
}
.oli_total {
  height: 16px;
  font-size: 12px;
  font-family: PingFangHK-Regular, PingFangHK;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  line-height: 16px;
  margin-left: 61px;
}

.oli_report {
  padding-bottom: 40px !important;
  .ant-table-thead {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 6px 0 rgba(4, 26, 120, 0.03);
  }
  .ant-table-thead > tr > th:first-child {
    padding-left: 30px;
  }
  .ant-table-tbody > tr > td:first-child {
    padding-left: 30px;
  }
}
.travel_tip {
  display: flex;
  height: 40px;
  margin: 0 20px;
  padding-left: 25px;
  justify-content: flex-start;
  align-items: center;
  color: #064184;
  background: rgba(229, 240, 255, 1);
  border: 1px solid rgba(153, 200, 255, 1);
  div {
    margin-right: 50px;
  }
}
//.select-list {
//  li:first-child {
//    background-color:rgba(229,240,255,1);
//    label {
//      .item-renderer {
//        span {
//          color: #0420D1;
//        }
//      }
//    }
//  }
//}

.new_card_transfer {
  margin: 20px;
  .title {
    font-size: 16px;
    font-family: PingFang-SC-Bold, PingFang-SC;
    font-weight: bold;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 20px;
  }
  .row {
    display: flex;
    height: 40px;
    align-items: center;
    margin-bottom: 15px;
    .label {
      font-size: 14px;
      font-family: PingFang-SC-Medium, PingFang-SC;
      font-weight: 500;
      color: rgba(102, 102, 102, 1);
      width: 130px;
    }
    .transfer_content {
      display: flex;
      align-items: center;
      .stock {
        font-size: 14px;
        font-family: PingFang-SC-Medium, PingFang-SC;
        font-weight: 500;
        color: rgba(153, 153, 153, 1);
        margin-left: 10px;
      }
      .num {
        font-size: 25px;
        font-family: DINAlternate-Bold, DINAlternate;
        font-weight: bold;
        color: rgba(238, 115, 35, 1);
      }
      .unit {
        font-size: 14px;
        font-family: PingFang-SC-Medium, PingFang-SC;
        font-weight: 500;
        color: rgba(102, 102, 102, 1);
        margin: 0 16px;
      }
    }
    .transfer_select_tree1,
    .transfer_select_tree {
      width: 200px;
      height: 35px;
      line-height: 35px;
    }
    .transfer_select_tree1 .ant-select-selection,
    .transfer_select_tree .ant-select-selection,
    .transfer_select_tree1
      .ant-select-selection
      .ant-select-selection__rendered,
    .transfer_select_tree
      .ant-select-selection
      .ant-select-selection__rendered {
      height: 35px;
      line-height: 35px;
    }
  }
}
.input_number {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  .reduce {
    width: 39px;
    height: 35px;

    background: rgba(252, 252, 252, 1);
    border-radius: 100px 0px 0px 100px;
    border: 1px solid #d9d9d9;
    border-right: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  input {
    width: 42px;
    border-radius: 0px;
    height: 35px;
  }
  .plus {
    width: 39px;
    height: 35px;
    background: rgba(252, 252, 252, 1);
    border-radius: 0px 100px 100px 0px;
    border: 1px solid #d9d9d9;
    border-left: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .reduce:hover,
  .plus:hover {
    background: rgba(234, 238, 241, 1);
  }
}

//监控
.positionmonitoring_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px 0;
  margin-right: @mrGt26;
}
.positionmonitoring_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 0;
  margin-right:@mrGt26;
}
.positionmonitoring_unselected-arlo{
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: 0 258px;
  margin-right: @mrGt26;
}

//统计
.statisticsform_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px -29px;
  margin-right: @mrGt26;
}
.statisticsform_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -29px;
  margin-right: @mrGt26;
}
.statisticsform_unselected-arlo {
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -61px;
  margin-right: @mrGt26;
}

//管理
.devicemanage_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px -59px;
  margin-right: @mrGt26;
}
.devicemanage_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -59px;
  margin-right: @mrGt26;
}
.devicemanage_unselected-arlo {
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -91px;
  margin-right: @mrGt26;
}

//客户
.mycustomer_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px -89px;
  margin-right: @mrGt26;
}
.mycustomer_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -89px;
  margin-right: @mrGt26;
}
.mycustomer_unselected-arlo {
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -121px;
  margin-right: @mrGt26;
}

//智能评测
.intelligent_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px -239px;
  margin-right: @mrGt26;
}
.intelligent_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: @menusWidth;
  height: 18px;
  background-position: 0 -239px;
  margin-right: @mrGt26;
}
.intelligent_unselected-arlo {
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -241px;
  margin-right: @mrGt26;
}
//驾驶行为
.drivingbehavior_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px -269px;
  margin-right: @mrGt26;
}
.drivingbehavior_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -269px;
  margin-right: @mrGt26;
}
.drivingbehavior_unselected-arlo {
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: -1px -271px;
  margin-right: @mrGt26;
}

//自安装工单
.workorder_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px -209px;
  margin-right: @mrGt26;
}
.workorder_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -209px;
  margin-right: @mrGt26;
}
//设备运维平台
.deviceMgt_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px -296px;
  margin-right: @mrGt26;
}
.deviceMgt_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -296px;
  margin-right: @mrGt26;
}
.deviceMgt_unselected-arlo {
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -290px;
  margin-right: @mrGt26;
}

//系统设置
.systemset_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 18px -119px;
  margin-right: @mrGt26;
}
.systemset_unselected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -119px;
  margin-right: @mrGt26;
}
.systemset_unselected-arlo {
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: -1px -151px;
  margin-right: @mrGt26;
}

//返回旧版
.old_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -149px;
  margin-right: @mrGt26;
}

//退出
.logout_selected {
  background-image: url("../images/sprites/sprites_menu.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -179px;
  margin-right: @mrGt26;
}

.Arlo-logout {
  background-image: url("../images/sprites/Arlo-tab.svg");
  width: 18px;
  height: 18px;
  background-position: 0 -212px;
  margin-right: @mrGt26;
}

//客户图标
.addSubAccount_sprites {
  background-image: url("../images/sprites/sprites_list.svg");
  width: 25px;
  height: 25px;
  background-position: 0px 0;
  background-size: 100%;
  cursor: pointer;
}
.deviceTotalNo_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 32px;
  height: 24px;
  background-position: 0px -503px;
  margin-right: 15px;
  cursor: pointer;
}
.deviceNo_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 32px;
  height: 24px;
  background-position: 0px -461px;
  margin-right: 15px;
  cursor: pointer;
}
.onlineDeviceNo_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 32px;
  height: 24px;
  background-position: 0px -545px;
  margin-right: 15px;
  cursor: pointer;
}
.offlineDeviceNo_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 32px;
  height: 24px;
  background-position: 0px -586px;
  margin-right: 15px;
  cursor: pointer;
}

/*添加*/
.tianjia_sprites {
  background-image: url("../images/sprites/sprites_list.svg");
  width: 20px;
  height: 20px;
  float: right;
  background-position: 0px -26px;
  cursor: pointer;
  display: block;
  margin-right: 3%;
  background-size: 100%;
}
.tianjia_sprites:hover {
  opacity: 50%;
}
.what_get {
  width: 215px;
  height: 20px;
  float: left;
  margin-left: 3%;
  font-family: PingFangSC-Regular, PingFang SC;
  color: #0420D1;
  font-weight: 400;
  font-size: 16px;

}
//充值卡管理图标
//月卡
.rechargeMonthCard_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 66px;
  height: 66px;
  background-position: 0px 0px;
  cursor: pointer;
  background-size: 100%;
}
//一年卡
.rechargeYearCard_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 66px;
  height: 66px;
  background-position: 0px -76px;
  cursor: pointer;
  background-size: 100%;
}
//终身卡
.rechargeLongCard_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 66px;
  height: 66px;
  background-position: 0px -152px;
  cursor: pointer;
  background-size: 100%;
}
//急加速
.speedUp_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 66px;
  height: 66px;
  background-position: 0px -228px;
  cursor: pointer;
  background-size: 100%;
}
//急减速
.speedDown_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 66px;
  height: 66px;
  background-position: 0px -304px;
  cursor: pointer;
  background-size: 100%;
}
//急转弯
.turn_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 66px;
  height: 66px;
  background-position: 0px -380px;
  cursor: pointer;
  background-size: 100%;
}
//行程油耗
//行程次数
.xingchengcishu_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 22px;
  height: 22px;
  background-position: 0px -624px;
  cursor: pointer;
}
//里程
.licheng_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 22px;
  height: 22px;
  background-position: 0px -656px;
  cursor: pointer;
}
//运行时间
.yunxingshijian_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 22px;
  height: 22px;
  background-position: 0px -688px;
  cursor: pointer;
}
//油耗
.youhao_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 22px;
  height: 22px;
  background-position: 0px -720px;
  cursor: pointer;
}
//平均油耗
.pingjunyouhao_sprites {
  background-image: url("../images/sprites/sprites_tubiao.svg");
  width: 22px;
  height: 22px;
  background-position: 0px -720px;
  cursor: pointer;
}

.logo-config {
  display: flex;
  flex: 1;
  flex-direction: row;
  .tree-wrap {
    width: 290px;
    border: 1px solid #ddd;
    border-radius: 10px 10px 0px 0px;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    .customer_tree_tittle {
      height: 33px;
      color: #666;
      line-height: 33px;
      background: #f1f1f1;
      padding-left: 10px;
      border-bottom: 1px solid #ddd;
      font-weight: 600;
      font-size: 14px;
      font-family: "Microsoft Yahei-Bold";
      margin-bottom: 0;
    }
    .customer_tree_all {
      -ms-flex: 1;
      flex: 1;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column;
      #customer_tree_wrap_home {
        padding-left: 15px;
        -ms-flex: 1;
        flex: 1;
        overflow-y: auto;
        max-height: 81vh;
      }
    }
  }
  .config_wrap {
    flex: 1;
    height: 100%;
    margin-left: 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px 10px 0px 0px;
    //margin-bottom: 15px;
    background: #fff;
    .config_title {
      height: 33px;
      color: #666;
      line-height: 33px;
      background: #f1f1f1;
      padding-left: 10px;
      border-bottom: 1px solid #ddd;
      font-weight: 600;
      font-size: 14px;
      font-family: "Microsoft Yahei-Bold";
      margin-bottom: 0;
    }
    .file_row_adress {
      padding: 20px 20px;
      display: flex;
      -ms-flex-direction: row;
      flex-direction: row;
      .logo_c {
        width: 180px;
        height: 50px;
        background-size: contain !important;
      }
      .logo_c_logo {
        width: 64px;
        height: 64px;
        background: #fafafa;
        background-size: contain !important;
      }
      .upload_photos_warp {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: 16px;
      }
      .logo_c,
      .logo_c_logo {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
        margin-left: 3px;
      }
    }
    .config_wrap_content {
      display: flex;
      flex-direction: column;
      padding: 20px;
      overflow: auto;
    }
  }
}

.login-modal {
  display: flex;
  flex-direction: row;
  height: 600px;
  .left {
    display: flex;
    flex-direction: column;
    flex: 2;
    .left-item {
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-around;
      padding: 20px;
      align-items: center;
      border: 1px dashed #ddd;
      margin: 0 20px 20px 0;
      .up {
        flex-direction: row;
      }
      .left-item-up {
        border: 1px dashed #ddd;
        width: 182px;
        text-align: center;
        align-items: center;
        height: 33px;
        padding-left: 11px;
      }
      .left-item-up:hover {
        border: 1px dashed #0420d1;
        cursor: pointer;
      }
    }
  }
  .right {
    display: flex;
    flex-direction: column;
    flex: 3;
    .login-html {
      display: flex;
      flex: 3;
      background-size: cover !important;
      .loginFrame {
        width: 250px;
        height: 300px;
      }
    }
    .login-style-label {
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: center;
    }
  }
}
.up {
  position: relative;
  height: 100%;
  cursor: pointer;
}

.small-warp,
.up {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.up:hover {
  .clear-warp {
    display: flex;
  }
}
.ant-tree li a{
  display: inline !important;
}
.clear-warp {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.clear-warp .clear {
  color: #fff;
  font-size: 14px;
}
.mileage-row {
  margin-bottom: 10px;
  .mileage-span {
    margin-right: 10px;
    display:inline-block;
    width:100px;
    max-width:300px;
  }
  .mileage-row-span {
    margin-right: 10px;
    min-width: 60px;
    display: inline-block;
    max-width: 120px;
  }
}
.mileage-header {
  font-size: 12px;
  color: #7f7f7f;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-left: 14px;
  cursor: pointer;
}
.mileage-content {
  display: flex;
  flex-direction: row;
  height: 100px;
  padding-left: 14px;
  align-items: center;
  cursor: pointer;
  width: 300px;
  img {
    width: 40px;
    height: 40px;
    margin-right: 14px;
  }
  .right-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    div {
      margin-bottom: 5px;
    }
  }
}

//智能评测
#intelligent {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row;
  flex-flow: row;
  background: #eeeff1;
  font-size: 12px;
  position: relative;
  overflow-y: auto;
  .container {
    background-color: #011134;
    position: absolute;
    padding-bottom: 20px;

    ::-webkit-scrollbar {
      width: 5px; /*对垂直流动条有效*/
      height: 5px; /*对水平流动条有效*/
    }

    /*定义滚动条的轨道颜色、内阴影及圆角*/

    ::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 6px #213252;
      background-color: #213252;
      border-radius: 5px;
    }

    /*定义滑块颜色、内阴影及圆角*/

    ::-webkit-scrollbar-thumb {
      border-radius: 8px;
      background-color: #3c5a91;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid rgba(45, 65, 95, 1) !important;

      .table_label {
        font-size: 12px;
        color: #6c819e;
        width: 8%;
      }

      .table_value {
        font-size: 12px;
        color: #9dc3e8;
        width: 15%;
      }

      tr {
        line-height: 35px;
      }

      th {
        color: #6c819e;
        background: #213252;
        text-align: left;
        padding-left: 10px;
        border-bottom: 1px solid #2d415f;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      td {
        color: #a0dbff;
        padding-left: 10px;
        border-bottom: 1px solid #2d415f;
      }

      tr:hover,
      tr:hover td {
        background: none !important;
      }

      tr:hover,
      tr:hover td,
      .ant-select-dropdown-menu-item-active:hover {
        background: none !important;
      }
    }
    .risk_assessment {
      background: url("../images/titleBackGif.gif") center center;
      background-size: 100%;
      .risk_gif {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        //background: url("../../../images/titleBacklight.png") center center;
        .risk_text {
          text-align: center;
          font-size: 20px;
          color: #a0dbff;
          position: absolute;
          bottom: 80px;
          display: flex;
          flex-direction: column;
          width: 100%;
          justify-content: center;
        }
      }
    }

    .risk_title {
      position: absolute;
      width: 100%;
      bottom: 10px;
      text-align: right;
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .risk_title_i {
      display: inline-block;
      width: 172px;
      height: 8px;
      border-radius: 3px;
      background: linear-gradient(
        to right,
        #2bc093,
        #8bd554,
        #ffd50a,
        #ff800b,
        #ff491e
      );
      margin-bottom: 5px;
    }

    .card {
      //background-color:#1D2D4A;
      flex: 1;
      border-radius: 3px;
    }

    .title {
      color: #fff;
      margin-bottom: 30px;
      .title {
        font-size: 24px;
        font-weight: bold;
      }
      .detail {
        font-size: 12px;
        margin-left: 30px;
        color: #6c7bc7;
        cursor: pointer;
      }
    }

    .vehicleInfo {
      padding: 47px;
      background: linear-gradient(to right, #233659, #1d2c49);
      .licenseNumber {
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 50px;
      }
      .veh_mark {
        color: #fff;
        display: flex;
        vertical-align: top;
        flex: 1;
        justify-content: space-around;
      }
      .mark_title {
        color: #6c819e;
        font-size: 14px;
        margin-bottom: 20px;
      }
      td {
        border: 1px solid #2d415f;
        height: 35px;
        line-height: 35px;
        padding-left: 15px;
      }
    }

    .scoreInfo {
      padding: 47px 0px 40px 0;
      background: linear-gradient(to right, #1d2c49, #233659);
      display: flex;
      flex-direction: column;
      .scoreInfo_left {
        width: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        .scoreInfo_title {
          color: #fefefe;
          font-size: 24px;
          font-weight: bold;
        }
      }
      .scoreInfo_right {
        width: 100%;
      }
    }

    .alarm_detail {
      padding: 47px;
      background: linear-gradient(to right, #233659, #1d2c49);
    }

    //运行情况
    .run_static {
      padding: 47px;
      background: linear-gradient(to right, #1d2c49, #233659);
      color: #fff;
      .content {
        display: flex;
        flex-direction: row;
        padding: 50px 40px;
        .div {
          width: 33.33%;
          height: 154px;
          background: #0090ff;
          margin-right: 10px;
          border-radius: 2px;
          text-align: center;
          padding-top: 40px;
          .title {
            font-size: 12px;
          }
          .big_size {
            font-size: 40px;
            font-weight: bold;
          }
        }
        .div:hover {
          background: #5a43f1;
        }
      }
    }

    .track_analysis {
      height: 930px;
      padding-top: 40px;
      padding-bottom: 49px;
      padding-left: 40px;
      background: linear-gradient(to right, #233659, #1d2c49);
      color: #fff;
    }

    .risk_gauge {
      position: absolute;
      top: 70px;
      .scoreDiv {
        position: absolute;
        font-size: 150px;
        bottom: -60px;
        left: 0;
        font-weight: 700;
        width: 100%;
        text-align: center;
        font-family: KaiTi;
      }
    }

    .address {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      padding-right: 10px;
    }
  }
}

.drivebehavior_thisTitle {
  width: 100%;
  height: 50px;
  font-size: 14px;
  padding-left: 20px;
  // margin:  20px 10px;
  font-weight: bold;
  color: #333;
  line-height: 50px;
}

.drivebehavior_wrapper {
  padding: 15px;
  background-color: #eeeff1;
  width: 100%;
  height: 100%;
  .drivebehavior_top {
    width: 100%;
    height: 224px;
    background: white;
    display: flex;

    .drivebehavior_top_left {
      width: 400px;
    }

    .drivebehavior_top_right {
      flex: 1;

      p {
        width: 579px;
        margin-top: 48px;
        margin-bottom: 40px;
        height: 40px;
        font-size: 14px;
        font-weight: 400;
        color: #333333;
        line-height: 20px;
      }
      ul {
        width: 510px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        li {
          flex-shrink: none;
          display: flex;
          justify-content: flex-end;
          width: 250px;
          position: relative;
          margin-bottom: 20px;
          div {
            position: absolute;
            left: 0;
            display: flex;
            align-items: center;
            width: 210px;
            height: 16px;
            img {
              width: 16px;
              height: 16px;
              margin-right: 10px;
            }
          }
          .drivebehavior_info {
            margin-left: 20px;
            margin-right: 50px;
            color: #969696;
          }
          .drivebehavior_message {
            color: #333;
          }
        }
      }
    }
  }

  .drivebehavior_bottom {
    width: 100%;
    height: 647px;
    margin-top: 15px;
    display: flex;

    .drivebehavior_bottom_left {
      width: 65%;
      height: 100%;
      display: flex;
      flex-direction: column;

      .drivebehavior_left_top {
        width: 100%;
        height: 134px;
        display: flex;
        margin-bottom: 15px;
        flex-direction: row;
        justify-content: space-between;

        dl {
          width: 24%;
          height: 134px;
          background-color: white;
          display: flex;
          flex-direction: row;
        }

        dt {
          width: 100px;

          img {
            width: 67px;
            height: 67px;
            margin: 34.5px 20px;
          }
        }

        dd {
          flex: 1;
          display: flex;
          flex-direction: column;
          margin-left: 10px;
          justify-content: space-around;
          .drivebehavior_number {
            height: 55px;
            font-weight: bold;
            color: #3d4353;
            line-height: 100px;
            font-size: 24px;
          }

          .drivebehavior_alarm {
            font-size: 12px;
            height: 45px;
            font-size: 12px;
            font-family: PingFangSC-Regular, PingFang SC;
            font-weight: 400;
            color: #969696;
            //line-height: 75px;
          }
        }
      }

      .drivebehavior_left_bottom {
        width: 100%;
        height: 498px;
        background: #ffffff;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
        border-radius: 2px;
      }
    }

    .drivebehavior_bottom_right {
      width: 34%;
      height: 100%;
      margin-left: 15px;

      .drivebehavior_right_top {
        width: 100%;
        height: 306px;
        background: #ffffff;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
        border-radius: 2px;
        margin-bottom: 15px;
      }

      .drivebehavior_right_bottom {
        width: 100%;
        height: 324px;
        background: #ffffff;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
        border-radius: 2px;
      }
    }
  }
}

.dashContainer {
  width: 340px;
  height: 225px;
  margin: 5px 0 0 50px;
  position: relative;
  .scoreDiv {
    position: absolute;
    width: 340px;
    height: 100px;
    top: 100px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding-left: 10px;
    .scoreText {
      font-size: 60px;

      font-weight: 700;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .scoreUnit {
      font-size: 20px;
    }
    .one {
      color: #9da1a7;
      background-image: linear-gradient(24deg, #217aff 0%, #217aff 100%);
    }
    .two {
      color: #16fbfa;
      background-image: linear-gradient(24deg, #16fbfa 0%, #16fbfa 100%);
    }
    .three {
      color: #8c67ff;
      background-image: linear-gradient(24deg, #8c67ff 0%, #8c67ff 100%);
    }
    .four {
      color: #e000ff;
      background-image: linear-gradient(24deg, #e000ff 0%, #e000ff 100%);
    }
    .green {
      color: rgba(255, 52, 102, 1);
      background-image: linear-gradient(
        24deg,
        rgba(67, 197, 130, 1) 0%,
        rgba(81, 235, 156, 1) 100%
      );
    }
    .yellow {
      color: rgba(255, 52, 102, 1);
      background-image: linear-gradient(
        24deg,
        rgba(255, 185, 84, 1) 0%,
        rgba(255, 205, 132, 1) 100%
      );
    }
    .red {
      color: rgba(255, 52, 102, 1);
      background-image: linear-gradient(
        24deg,
        rgba(255, 52, 102, 1) 0%,
        rgba(255, 106, 148, 1) 100%
      );
    }
  }
}
.replay_btn {
  width: auto;
  height: auto;
  background: #ffffff;
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  box-shadow:rgba(0, 0, 0, 0.1) 0px 10px 12px;
  position: absolute;
  right: 0;
  top:230px;
  z-index: 111;
  ul {
    li {
      width:30px;
      height: 30px;
      margin:4px 0px;
      text-align:center;
      line-height:30px;
      img {
        width:20px;
        height:20px;
      }
    }
  }
}
.alarm_setting {
  padding: 20px;

  .setting_row {
    margin-bottom: 10px;

    .ant-checkbox-wrapper {
      width: 120px;
    }

    .ant-input-number {
      width: 100px;
      margin-right: 5px;
    }
  }
}
.pic-content {
  display: flex;
  flex-direction: column;
  /* height: 250px; */
  justify-content: center;
  align-items: flex-start;
  margin:0 10px;
  .logo_c_logo {
    width: 100px;
    height: 100px;
    background: #F2F2F2;
    border: 1px solid #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain !important;
    cursor: pointer;
    .up {
      justify-content: flex-end;
      .clear-warp {
        height: 24px;
        .clear {
          display: flex;
          justify-content: center;
          flex: 1;
          width: 100%;
        }
      }
    }
    .pic-upload {
      display: flex;
      height: 100%;
      width: 100%;
      .upload {
        display: flex;
        height: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
        cursor: pointer;
      }

    }
  }
}
.middleRow {
  display: flex;
  flex-direction: row;
  .leftCol{

  }
  .rightCol {
    isplay: flex;
    width: 100px;
    img {
      width: 100px;
      height: 100px;
    }
  }
}
.manage-device-list-search-content {
  .multi-select {
    width: 150px;
    margin-left: 10px;
    .select-panel {
      width: 100%;
    }
  }
}
.order-detail {
  min-height: 610px;

  .new_app_table_content {
    padding-left: 0;
    padding-right: 0;

    .ant-table-thead > tr > th {
      padding: 8px;
    }

    .new_app_pagination {
      left: 0;
      right: 0;
      position: initial;
    }
  }

  .customer-info {
    padding-bottom: 15px;
    padding-top: 5px;
    display: flex;
    flex-direction: column;

    .info-row {
      display: flex;
      margin-bottom: 10px;

      .info-item {
        display: flex;
        flex: 1;
        flex-direction: row;
        color: #333333;

        .info-span {
          font-size: 12px;
          font-family: PingFangSC-Regular, PingFang SC;
          font-weight: 400;
          color: #999999;
          display: inline-flex;
          margin-right: 10px;
        }
      }
    }
  }

  .pic-info {
    height: 277px;
    border: 1px dashed #E8E8E8;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;

    .pic-row {
      display: flex;
      flex: 1;
      flex-direction: column;

      .pic-title {
        height: 40px;
        background: #FBFBFB;
        font-size: 12px;
        font-family: PingFangSC-Medium, PingFang SC;
        font-weight: 500;
        color: #333333;
        display: flex;
        align-items: center;
        padding-left: 10px;

        .pic-tip {
          color: #999999;
          display: inline-flex;
          margin-left: 10px;
        }

      }

      .pic {
        display: flex;
        flex: 1;
        height: 97px;

        .pic-content {
          display: flex;
          flex-direction: column;
          /* height: 250px; */
          justify-content: center;
          align-items: center;
          margin: 0 10px;

          .logo_c_logo {
            width: 106px;
            height: 80px;
            background: #F2F2F2;
            border: 1px solid #F2F2F2;
            display: flex;
            justify-content: center;
            align-items: center;
            background-size: contain !important;

            .up {
              justify-content: flex-end;

              .clear-warp {
                height: 24px;

                .clear {
                  display: flex;
                  justify-content: center;
                  flex: 1;
                  width: 100%;
                }
              }
            }

            .pic-upload {
              display: flex;
              height: 100%;
              width: 100%;

              .upload {
                display: flex;
                height: 100%;
                width: 100%;
                justify-content: center;
                align-items: center;
                cursor: pointer;
              }

            }
          }
        }
      }
    }
  }

  .audit-info {
    margin-bottom: 28px;

    .audit-row {
      margin-bottom: 10px;

      .info-span {
        color: #999999;
        display: inline-flex;
        margin-right: 10px;
      }
    }
  }

  .btn-row {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
  }
}
.maps-api-tip {
  background-color: #E1EDFF;
  color: #012CA0;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 15px;
  display: flex;
  a {
    color: #006EFF;
  }
}
.add-key-row {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  .add-key-label {
    width: 100px;
    word-break: break-word;
  }
}