* {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

html,
body,
#app,
.swiper-container,
.swiper-wrapper,
.swiperItem {
  height: 100%;
}

#app {
  padding: 12px 20px 20px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ebebeb;
  font-size: 12px;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.header {
  height: 36px;
  font-family: Roboto-Medium;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}

.container {
  position: relative;
  display: flex;
  height: calc(100% - 16px);
}

.leftBox,
.rightBox {
  position: relative;
  overflow: auto;
}

.leftBox {
  width: 32%;
  padding-right: 3%;
}

.rightBox {
  flex: 1;
  padding-left: 3%;
  /*border-left: 1px solid #ccc;*/
  box-shadow: inset 1px 0 0 0 #fafafa;
}

/* jsonData数据 */
.jsonDataBox {
  position: fixed;
  top: 0;
  left: 20%;
  z-index: 1;
  width: 80%;
  height: 45px;
  opacity: 0.5;
}

/* 轮播插件 */
.swiper-container > .swiper-pagination.swiper-pagination-bullets {
  bottom: 36px;
}

/* loading遮罩 */
.loadingBox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #007aff;
  font-size: 16px;
  background-color: #ebebeb;
  opacity: 1;
}

/* 左侧文本组件 */
[tem-text].textBox {
  font-family: Roboto-Regular;
  font-size: 16px;
  color: #464646;
  letter-spacing: 0;
  line-height: 22px;
}

[tem-text].textBox .textDiv > p {
  padding-left: 12px;
  text-indent: -12px;
}

/* 图片组件 */
[tem-img].imgBox {
  padding: 0 3.5%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  box-shadow: inset 1px 0 0 0 #fafafa;
}

/* 图片列表组件 */
[tem-img-list].imgListBox {
  display: flex;
  flex-wrap: wrap;
}

[tem-img-list].imgListBox .imgItem {
  position: relative;
  width: 50%;
  padding: 0 4.3%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  box-shadow: inset 1px 0 0 0 #fafafa;
}

[tem-img-list].imgListBox .imgItem.bigImg {
  width: 100%;
  padding: 0;
  border: none;
  box-shadow: none;
}

[tem-img-list].imgListBox .imgItem.noLeftBorder {
  border-left: none;
}

[tem-img-list].imgListBox .num {
  position: absolute;
  font-size: 12px;
  line-height: 100%;
  /* word-wrap: break-word; */
}

/*.hzs-select-part {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/

/* 灰色按钮组件 */
.greyButton {
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  min-width: 60px;
  padding: 10px;
  font-family: SourceHanSansCN-Medium;
  font-size: 17px;
  letter-spacing: 1px;
  border-width: 0 5px 0 5px;
  border-style: solid;
  border-image-slice: 0 20 fill;
  outline: none;
  background: transparent;
  white-space: nowrap;
  color: #000;
  cursor: pointer;
  border-radius: 4px;
  border-image-source: url('../img/grey60.png');
}

.greyButton:active {
  border-image-source: url('../img/grey60-active.png');
}

.rightBottom {
  position: absolute;
  right: 0;
  bottom: 0;
}

.borderLeft,
.borderRight,
.borderTop,
.borderBottom {
  position: relative;
}

.borderLeft::before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -7px;
  z-index: 2;
  width: 4px;
  border-right: 4px solid #9b9b9b;
  border-image-source: url('../img/borderRight.png');
  border-image-slice: 4;
  color: #9b9b9b;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: scaleX(0.33);
  transform: scaleX(0.33);
}

.borderRight::after {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  z-index: 1;
  width: 4px;
  border-right: 4px solid #9b9b9b;
  border-image-source: url('../img/borderRight.png');
  border-image-slice: 4;
  color: #9b9b9b;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: scaleX(0.33);
  transform: scaleX(0.33);
}

.borderTop::before {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  top: -7px;
  z-index: 1;
  height: 4px;
  border-bottom: 4px solid #9b9b9b;
  border-image-source: url('../img/borderTop.png');
  border-image-slice: 4;
  color: #9b9b9b;
  transform-origin: 0 100%;
  transform: scaleY(0.33);
}

.borderBottom::after {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 4px;
  border-bottom: 4px solid #9b9b9b;
  border-image-source: url('../img/borderTop.png');
  border-image-slice: 4;
  color: #9b9b9b;
  transform-origin: 0 100%;
  transform: scaleY(0.33);
}

/**
新加的反查的功能样式
*/
.rightTable {
  padding-left: 3%;
  width: 68%;
  height: 100%;
  white-space: pre-line;
}

.tableBox {
  height: 100%;
  
  border-right: 0;
  border-bottom: 0;


  
}

.tableBox table td {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
  line-height: 30px;
  color: #000;
  font-size: 14px;
border-left: 1px solid #ccc;}

/*.tableBox table td span {*/
/*    !*border: 1px solid black;*!*/
/*    white-space: pre-line;*/
/*}*/

.tableBox .tableBody tr:nth-child(odd) {
  background-color: #E8E8E8;
}

.tableBox .firstRowLayer tr, .tableBox .tableBody tr:nth-child(even) {
  background-color: #E1E1E1;
}

.tableBox table th {
  font-weight: 700;
  font-size: 20px;
  color: #8C8C8C;
  line-height: 20px;
  padding-bottom: 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  /* border-top: 1px solid #ccc; */
text-align: center;border-left: 1px solid #ccc;border-top: 1px solid #ccc;}
.tableBox table th:first-child,td:first-child{
  min-width: 80px !important;
}
.tableBox table th:nth-child(2),td:nth-child(2) {
  min-width: 70px !important;
}
.tableBox table th:nth-child(3),td:nth-child(3) {
  min-width: 40px !important;
}
.tableBox table th:nth-child(4),td:nth-child(4) {
  min-width: 70px !important;
}

.tableBox .full-table, .tableBox .content-table {
  width: 100%;
  border-spacing: 0;
  word-wrap: break-word;
  word-break: break-all;
}

.tableBox .firstRowLayer {
  width: calc(100% - 5px);
}

.tableBox .firstRowLayer .guolvqi {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  background-image: url(../img/select.png);
  background-size: cover;
  margin-left: 8px;
  cursor: pointer;
  white-space:nowrap;
  z-index:999;
}

.tableBox .tableBody {
  width: calc(100% - 2px);
  max-height: calc(100% - 38px);
  overflow: auto;
  max-height: 610px;
  height: 100%;
  min-height: 610px;
  width: 100%;
}

.tableBox .tableBody table {
  /* border-top: 1px solid #ccc; */
}

/*
@media screen {

} */

.firstRowLayer {
  /* padding-right: 7px */
}

/*!* 自定义滚动条样式 *!*/
.tableBox .tableBody::-webkit-scrollbar {
  width: 10px;

  height: 18px;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  border-radius: 5px;
}

.tableBox .tableBody::-webkit-scrollbar-thumb {
  background-color: #ccc;

  /*background-color: black;*/

  background-clip: padding-box;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  border-radius: 5px;

  min-height: 28px;

}

.tableBox .tableBody::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}


.tableBox .tableBody::-webkit-scrollbar-corner {
  background: transparent;
}


/* 筛选card 部分 */
.hzs-filter-box {
  position: absolute;
  top: 0;
  overflow: hidden;
  
  
  padding-bottom: 58px;
  
  
border-left: 1px solid #ccc;}
.hzs-filter-icon {
  margin-left: 10px;
  cursor: pointer;
}

.hzs-card {
  position: relative;

  /*border: 1px solid black;*/
  background: #ffffff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  font-family: Roboto-Medium;
  /*height: 400px;*/
  /* height: 100%; */
  overflow: auto;
  z-index: 999; /* 这个必须要加 */
  /*transition: height 2s;*/
}

.brand-tag {
  display: inline-block;

  border-radius: 4px;
  border: 1px solid #ebebeb;
}

.hzs-button-group {
  width: 100%;
  position: absolute;
  bottom: 0;
  /*left: 0;*/
  display: flex;
  padding: 10px;
  justify-content: space-between;
  /*background: url('../img/grey60.png');*/
  border-top: 1px solid #C7C7C7;
  background: linear-gradient(180deg, #F3F3F3, #C7C7C7);
  z-index: 9999;
}

.hzs-button-group .greyButton {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  font-size: 16px;
}

.hzs-confirm {
  padding: 10px 25px;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  min-width: 60px;
  font-family: SourceHanSansCN-Medium;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  outline: none;

  white-space: nowrap;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  /*border-image-source: url('../img/grey60.png');*/

  background-image: linear-gradient(180deg, #7BBAFF 10%, #0072EE 76%, #007AFF 100%);
  /*box-shadow: 0 2px 0 0 #FFFFFF;*/
  /*border-radius: 14px;*/
}

.hzs-confirm:active {
  background: linear-gradient(180deg, #007AFF 100%, #0072EE 76%, #7BBAFF 10%);
}

.hzs-top-card {
  padding: 10px;
}

.hzs-all-brand-card {
  position: relative;
  padding-right: 30px;
  /*background: #EBEBEB;*/
  background: white;

}

.hzs-first-letter {
  background: #EBEBEB;
  padding: 0 10px;
  font-weight: 600;
  font-size: 17px;
}


.hzs-a-brand {
  background: white;
  padding: 10px;
  font-size: 17px;
  border-bottom: 2px solid #dcdcdc;
  display: flex;
  justify-content: space-between;
}

.hzs-caution {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99999;
}

.hzs-caution-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px 40px;
  max-width: 450px;
  line-height: 28px;
  background-color: #fff;
  border-radius: 4px;
  font-size: 18px;
  text-align: center;
  white-space: normal
}


/*  已筛选品牌 */
.had-filtered-brand-text {
  font-size: 20px;
  font-weight: 600;
}

.hzs-target-brand-list {
  /*min-height: 100px;*/
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  /*justify-content: flex-start;*/
}

.hzs-brand-tag {
  border: 1px solid gray;
  display: inline-block;
  padding: 5px;
  border-radius: 4px;
  font-size: 18px;
  /*font-weight: 600;*/
  margin-right: 10px;
  margin-top: 10px;
}

.hzs-brand-tag span:nth-child(1) {
  color: #007AFF;
  padding: 0 5px;
  text-transform: capitalize;
}


.hzs-brand-tag span:nth-child(2) {
  color: rgba(0, 0, 0, 0.3);
}

.hzs-brand-tag .shanchu {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../img/shanchu.png);
  background-size: cover;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

/* .hzs-brand-tag span:nth-child(3) {
  font-weight: 1000;
  padding: 0 5px;
  font-size: 4px
  font-size: 14px;
  color: brown;
} */

.hzs-all-brand-text {
  margin: 20px 0 0;
  font-size: 20px;
  font-weight: 600;
}

.hzs-please-choose {
  text-align: center;
  padding: 20px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: hsl(0, 2%, 50%);
}

.hzs-letter-list {
  width: 20px;
  position: fixed;
  right: 18px;
  top: 140px;
  font-size: 14px;
  font-weight: 500;
  color: #8C8C8C;
  /* border: 1px solid #000; */
  overflow-y: scroll;
  /*display: flex;*/
  /*flex-flow: column;*/
  /*justify-items: flex-start;*/
}

.hzs-letter-list::-webkit-scrollbar {
  width: 3px;

  height: 18px;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  border-radius: 5px;
}

.hzs-letter-list div {
  padding: 0;
  margin-bottom: 4px;
  text-align: center;
}

.hzs-letter-current {
  font-size: 18px;
  font-weight: 700;
  color: black;
}


.hzs-up {
  /*position: absolute;*/
  /*top: 10px;*/
  /*right: 20px;*/
  /*z-index: 9999;*/
  font-weight: 1000;
  font-size: 20px;
}

.hzs-up .xiangshang {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  background-image: url(../img/xiangshang.png);
  background-size: cover;
  margin-left: 10px;
  cursor: pointer;
}

.hzs-confirm-brand-list {
  position: absolute;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #ccc;
  background: #E1E1E1;
}

.hzs-gouxuan {
  color: green;
  font-weight: 1000;
}

.hzs-up-and-had-filtered {
  display: flex;
  justify-content: space-between;
  margin-right: 10px;
}

.hzs-enter, .hzs-leave-to {
  /*opacity: 0; !*点击按钮页面即将被显示，此时div标签处于隐藏状态*!*/
  height: 0;
}

/* .hzs-enter-active, .hzs-leave-active  { */
  /*transition: opacity 2s; !* 对该CSS样式进行transition的监控,有2s的过渡*!*/
  /* transition: height 0.4s ease-in-out; */
/* } */


/* 四轮样式 start */
.mode-tabs {
  display: flex;
  margin-bottom: 10px;
}
.mode-tabs .mode-tab{
  width: 50%;
  text-align: center;
  padding: 10px 10px;
  cursor: pointer;
  background-color: #f5f5f5;
}
.mode-tabs .mode-tab.actived{
  background-color: #007aff;
  color: white;
}
.wheel-wrap {
  overflow-x: auto;
}
.wheel-table {
  width: 100%;
}
.wheel-table tbody{
	display: block;
	height: 450px;
	overflow-y: scroll;
}
.wheel-table thead, .wheel-table tbody tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
.wheel-table thead {
	width: calc(100% - 10px)
}
.wheel-table th {
  width: 20%;
  background-color: #e1e1e1;
  padding: 10px;
  text-align: center;
  /* border: 1px solid #fff; */
}
.wheel-table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #fff;
}
.tag1 {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background-color: #00b400;
}
.tag2 {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background-color: white;
  border: 1px solid #000;
  box-sizing: border-box;
}
.tagNull {
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #000;
}
.wheel-table tbody tr {
  background-color: #f9f9f9;
}

.wheel-table tbody tr:nth-child(2n) {
  background-color: #f5f5f5;
}
.legend-box {
  margin-bottom: 10px;
}
.legend-box p {
  margin-bottom: 10px;
}
.legend-list {
  display: inline-flex;
  align-items: center;
}
.legend-list li{
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
}
.legend-list li:first-child{
  margin-left: 0;
}
.legend-list li span{
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .wheel-table {
    font-size: 10px;
  }
}
/* 四轮样式 end */