.list_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

.list_tab .tabs {
  background-color: #ffcd00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 18px 18px 0 0;
  /* padding: 10px 5px 0 5px; */
}

.list_tab .tabs .tab {
  float: left;
  cursor: pointer;
  padding: 10px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #685b4c;
  width: 100%;
  /* margin-right: 2%; */
  font-size: 14px;
  text-align: center;
}

.list_tab .tabs .tab:nth-child(3n) {
  margin-right: 0;
}

.list_tab .tabs:after {
  content: '';
  display: block;
  clear: both;
}

.list_tab .panels {
  min-height: 200px;
  width: 100%;
  height: calc(100% - 46px);
  border-radius: 3px;
  overflow: hidden;
  color: #fff;
  background-color: #584e47;
  border-radius: 0 0 8px 18px;
}

.list_tab .panels .panel {
  height: 100%;
}

.list_tab .panels .tab_table {
  overflow-x: auto;
  /* direction: rtl; */
  height: 100%;
}

.list_tab .panels .tab_table .tab_table_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list_tab .panels .tab_table .tab_table_head span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  float: left;
  width: 53.5px;
  min-width: 53.5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #433a34;
  border-bottom: 1px solid #433a34;
  padding: 10px 0;
}

.list_tab .panels .tab_table .tab_table_head span img {
  width: auto;
  height: 20px;
}

.list_tab .panels .tab_table .tab_table_head:after {
  content: '';
  display: block;
  clear: both;
}

.list_tab .panels .tab_table .tab_table_body ul {
  height: 100%;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list_tab .panels .tab_table .tab_table_body ul li {
  float: left;
  width: 53.5px;
  min-width: 53.5px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.list_tab .panels .tab_table .tab_table_body ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  font-size: 12px;
  margin-bottom: 5px;
  text-align: center;
}

.list_tab .panels .tab_table .tab_table_body ul li span:last-child {
  margin-bottom: 0;
}

.list_tab .panels .tab_table .tab_table_body ul:after {
  content: '';
  display: block;
  clear: both;
}

.list_tab .panels .tab_table::-webkit-scrollbar {
  width: 5px;
  height: 20px;
}

.list_tab .panels .tab_table::-webkit-scrollbar-track {
  border-radius: 0;
}

.list_tab .panels .tab_table::-webkit-scrollbar-thumb {
  border-radius: 5px;
}

.list_tab .panel {
  display: none;
  -webkit-animation: fadein .8s;
          animation: fadein .8s;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.list_tab .panel-title {
  font-size: 1.5em;
  font-weight: bold;
  padding: 15px;
  background-color: #000;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list_tab p {
  line-height: 2;
  font-size: 14px;
  padding: 15px;
}

.list_tab img {
  width: 100%;
}

.list_tab .radio {
  display: none;
}

.list_tab #tab_1:checked ~ .panels #tab_1_panel,
.list_tab #tab_2:checked ~ .panels #tab_2_panel,
.list_tab #tab_3:checked ~ .panels #tab_3_panel {
  display: block;
}

.list_tab #tab_1:checked ~ .tabs #tab_1_tab,
.list_tab #tab_2:checked ~ .tabs #tab_2_tab,
.list_tab #tab_3:checked ~ .tabs #tab_3_tab {
  /* background-color: #433a34; */
  border-radius: 10px 10px 0 0;
  border-bottom: transparent;
  color: #000;
  font-weight: bold;
}

.list_tab::-webkit-scrollbar {
  width: 5px;
}

.list_tab::-webkit-scrollbar-track {
  border-radius: 0;
}

.list_tab::-webkit-scrollbar-thumb {
  border-radius: 0;
}
/*# sourceMappingURL=list_tab.css.map */