/*
*
* author ChenDianWei
* 2018.10.15
*/
/*
 * lease.less
 * author ChenDianWei
 * 2018.9.28
 *
*/
.display {
  /* 2009 spec */
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  /* 混合 */
  display: -ms-flexbox;
  /* 新版语法*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.box_orient {
  /* UC 浏览器 使用flex-direction: column;的时候需要加上*/
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
}
.align_items_center {
  /*垂直居中*/
  /*老版本语法*/
  -webkit-box-align: center;
  -moz-box-align: center;
  /*混合版本语法*/
  -ms-flex-align: center;
  /*新版本语法*/
  -webkit-align-items: center;
  align-items: center;
}
.justify_content_center {
  /*水平居中*/
  /*老版本语法*/
  -webkit-box-pack: center;
  -moz-box-pack: center;
  /*混合版本语法*/
  -ms-flex-pack: center;
  /*新版本语法*/
  -webkit-justify-content: center;
  justify-content: center;
}
.justify_content_space_between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex_flow {
  flex-flow: wrap;
  -ms-flex-flow: wrap;
}
.word_wrap {
  word-wrap: break-word;
  word-break: break-all;
}
.text_overflow {
  -webkit-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
/**************检校报告-经销商 start***********/
.calibration-wrap {
  background: #fff;
  line-height: 1;
  /*** common start ***/
  /*** common end ***/
}
.calibration-wrap .h10 {
  height: 10px;
}
.calibration-wrap .h20 {
  height: 20px;
}
.calibration-wrap .h40 {
  height: 40px;
}
.calibration-wrap .h50 {
  height: 40px;
}
.calibration-wrap p {
  margin-bottom: 0;
}
.calibration-wrap ul {
  margin: 0;
}
.calibration-wrap .plate-tit {
  font-size: 16px;
  font-family: SourceHanSansSC-Medium;
  font-weight: bold;
  color: #333333;
  padding-bottom: 15px;
  padding-left: 10px;
  border-bottom: 1px solid #eeeeee;
}
.calibration-wrap .plate-sub-tit {
  font-size: 14px;
  font-family: SourceHanSansSC-Medium;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;
}
.calibration-wrap .plate-sub-tit a {
  font-size: 12px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #3598dc;
}
.calibration-wrap .calibration-link {
  font-size: 12px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #3598dc;
}
.calibration-wrap .radio-check {
  cursor: pointer;
  margin-right: 20px;
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #333333;
  padding-left: 20px;
  position: relative;
  margin-bottom: 0;
}
.calibration-wrap .radio-check input[type='radio'] {
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  opacity: 0;
  margin-bottom: 0;
}
.calibration-wrap .radio-check .circle {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #eeeeee;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  box-sizing: border-box;
}
.calibration-wrap .radio-check .circle:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.calibration-wrap .radio-check input[type='radio']:checked + .circle:after {
  background: #3598DC;
}
.calibration-wrap .form-group {
  /* 2009 spec */
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  /* 混合 */
  display: -ms-flexbox;
  /* 新版语法*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  line-height: 1;
  margin-bottom: 30px;
}
.calibration-wrap .form-group.confirm-btn {
  /*水平居中*/
  /*老版本语法*/
  -webkit-box-pack: flex-end;
  -moz-box-pack: flex-end;
  /*混合版本语法*/
  -ms-flex-pack: flex-end;
  /*新版本语法*/
  -webkit-justify-content: flex-flex-end;
  justify-content: flex-end;
}
.calibration-wrap .form-group.confirm-btn button {
  cursor: pointer;
  width: 150px;
  height: 48px;
  line-height: 48px;
  background: #3598dc;
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  font-family: SourceHanSansSC-Medium;
  font-weight: 500;
  color: #ffffff;
  border: 0;
}
.calibration-wrap input::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.calibration-wrap input::-moz-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.calibration-wrap input:-moz-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.calibration-wrap input:-ms-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.calibration-wrap .calibrate-table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #EAEAEA;
  width: 100%;
}
.calibration-wrap .calibrate-table thead th {
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #333333;
  height: 40px;
  background: #f9f9f9;
  text-align: center;
}
.calibration-wrap .calibrate-table tbody tr:last-of-type td {
  border-bottom: 0;
}
.calibration-wrap .calibrate-table tbody tr td {
  padding: 0 5px;
  height: 75px;
  text-align: center;
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #333333;
  border-bottom: 1px solid #F9F9F9;
}
.calibration-wrap .calibrate-table tbody tr td.tb-price {
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #ff0000;
}
.calibration-wrap .calibrate-table tbody tr td.num {
  color: #666666;
}
.calibration-wrap .calibrate-table tbody tr td .tb-ipt {
  outline: none;
  height: 36px;
  border: 1px solid #eaeaea;
  width: 120px;
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #666666;
  text-align: center;
  padding: 0 20px;
}
.calibration-wrap .calibrate-table tbody tr td .tb-link {
  cursor: pointer;
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #3598dc;
}
.calibration-wrap .calibrate-table tbody tr td .tb-select {
  outline: none;
  height: 36px;
  border: 1px solid #eaeaea;
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #333333;
  box-sizing: border-box;
  text-align: center;
  text-align-last: center;
  width: 120px;
}
.calibration-wrap .calibrate-table tbody tr td .tb-txt {
  text-align: left;
  line-height: 18px;
}
.calibration-wrap .calibrate-table tbody tr td .tb-btn {
  font-size: 12px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #333333;
  height: 26px;
  line-height: 24px;
  padding: 0 12px;
  background: #f1f1f1;
  border: 1px solid #cacaca;
  border-radius: 3px;
}
.calibration-wrap .operate-box {
  margin-top: 10px;
}
.calibration-wrap .operate-box .calibration-link {
  cursor: pointer;
}
.calibration-wrap .operate-box .calibration-link span {
  display: inline-block;
  font-size: 16px;
  color: #ccc;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-top: -4px;
}
.calibration-wrap .operate-box .calibration-link span img {
  width: 100%;
  height: 100%;
}
.calibration-wrap .amount-list {
  padding-right: 20px;
  padding-top: 20px;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.calibration-wrap .amount-list li {
  /* 2009 spec */
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  /* 混合 */
  display: -ms-flexbox;
  /* 新版语法*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  /*水平居中*/
  /*老版本语法*/
  -webkit-box-pack: flex-end;
  -moz-box-pack: flex-end;
  /*混合版本语法*/
  -ms-flex-pack: flex-end;
  /*新版本语法*/
  -webkit-justify-content: flex-flex-end;
  justify-content: flex-end;
  /*垂直居中*/
  /*老版本语法*/
  -webkit-box-align: center;
  -moz-box-align: center;
  /*混合版本语法*/
  -ms-flex-align: center;
  /*新版本语法*/
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
.calibration-wrap .amount-list li .item-label {
  color: #666666;
  min-width: 127px;
  text-align: right;
}
.calibration-wrap .amount-list li .sum {
  font-size: 14px;
  font-family: SourceHanSansSC-Medium;
  font-weight: 500;
  color: #ff0000;
  min-width: 110px;
  text-align: right;
  padding-left: 20px;
  box-sizing: border-box;
}
.calibration-wrap .amount-list li .amount {
  font-size: 24px;
  font-family: SourceHanSansSC-Medium;
  font-weight: 500;
  color: #ff0000;
}
.calibration-wrap .hidden-box {
  display: none;
}
.calibration-main {
  padding: 30px 20px 0;
  /***** 经销商-填写  start*****/
  /*** 商品信息 start***/
  /*** 商品信息 end***/
  /*** 商品检校 start***/
  /*** 商品检校 end***/
  /*** 商品配件 start***/
  /*** 商品配件 end***/
  /*** 商品功能 start***/
  /*** 商品功能 start***/
  /***** 经销商-填写  end*****/
  /***** 经销商-查看  start*****/
  /***** 经销商-查看  end*****/
}
.calibration-main .product-info-box {
  padding-top: 20px;
  padding-left: 10px;
  position: relative;
}
.calibration-main .product-info-box .product-info-list li {
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #333333;
  padding-bottom: 20px;
}
.calibration-main .product-info-box .product-parts-img {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 160px;
  height: 160px;
}
.calibration-main .product-info-box .product-parts-img img {
  width: 100%;
  height: 100%;
}
.calibration-main .product-calibrate-box {
  padding-left: 10px;
}
.calibration-main .product-calibrate-box .appearance-table.calibrate-table tbody tr td:first-of-type .tb-select {
  width: 206px;
}
.calibration-main .product-calibrate-box .appearance-table.calibrate-table tbody tr td:nth-of-type(2) .tb-select {
  width: 120px;
}
.calibration-main .product-calibrate-box .appearance-table.calibrate-table tbody tr td:nth-of-type(3) .tb-ipt {
  width: 120px;
}
.calibration-main .product-calibrate-box .appearance-table.calibrate-table tbody tr td:nth-of-type(4) .tb-ipt {
  width: 306px;
  text-align: left;
}
.calibration-main .product-parts-box {
  padding-left: 10px;
}
.calibration-main .product-parts-box .product-parts-table .parts-img {
  height: 60px;
  width: 60px;
  border: 1px solid #EAEAEA;
}
.calibration-main .product-action-box {
  padding-left: 10px;
}
.calibration-main .product-action-box .product-action-table.calibrate-table .tb-select {
  width: 206px;
}
.calibration-main .product-action-box .product-action-table.calibrate-table .tb-ipt {
  width: 478px;
  text-align: left;
}
.calibration-main.examine {
  /*** 商品功能 start***/
  /*** 商品功能 end***/
  /*** 维修方案 start***/
  /*** 维修方案 end***/
}
.calibration-main.examine .inner-box {
  padding: 0 20px 0 10px;
}
.calibration-main.examine .product-action-table tbody td:first-of-type {
  width: 25%;
}
.calibration-main.examine .product-action-table tbody td:nth-of-type(2) {
  width: 50%;
  padding: 20px 10px;
}
.calibration-main.examine .product-action-table tbody td:nth-of-type(3) {
  width: 25%;
}
.calibration-main.examine .maintenance-plan-box {
  padding-left: 10px;
}
.calibration-main.examine .maintenance-plan-box .maintenance-plan-list li {
  /* 2009 spec */
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  /* 混合 */
  display: -ms-flexbox;
  /* 新版语法*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 14px;
  font-family: SourceHanSansSC-Normal;
  font-weight: 400;
  color: #333333;
  margin-bottom: 20px;
}
.calibration-main.examine .maintenance-plan-box .maintenance-plan-list li.item-total {
  color: #ff0000;
}
.calibration-main.examine .maintenance-plan-box .maintenance-plan-list li.item-total .item-label {
  font-weight: bold;
  color: #333333;
}
.calibration-main.examine .maintenance-plan-box .maintenance-plan-list li .item-label {
  min-width: 60px;
  text-align: right;
  margin-right: 20px;
}
/******检校报告-经销商 end********************/
