*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-color: #f2f2f2;
  font-family: sans-serif;
  color: rgb(30,30,30);
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
  height: 100%;
  margin: 0;
  
}

#search-container input[type=text] {
	padding: 10px;
	width: 50%;
	border: none;
	border-radius: 3px;
	outline: none;
	font-size: 16px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.content {
            /* flex 直式排列 */
    display: flex; flex-direction: column;
    height: 100%; padding: 0;
}

h1{
  font-weight: 400;
}
a{
  color: inherit;
}
p{
  margin-top: .7em;
}
.warning{
  color: rgb(62,148,236);
}
.st_viewport{
  max-height: 500px;
  overflow: auto;
}

h2{
	position: sticky;
	left: 0;
}

th:first-child{
	position: sticky;
	left: 0;
}

thead tr th:first-child{
	background-color: rgb(27,30,36);
}

[data-table_id="0"]{
  background-color: rgb(255,20,20);
  color: rgb(220,220,220);
}

[data-table_id="0"] tbody tr th:first-child{
	background-color: rgb(255,20,20);
}

[data-table_id="0"] tbody tr:nth-child(even) th:first-child{
	background-color: rgb(229,18,18);
}
		

[data-table_id="1"]{
  background-color: rgb(255,165,95);
}

[data-table_id="1"] tbody tr th:first-child{
	background-color: rgb(255,165,95);
}

[data-table_id="1"] tbody tr:nth-child(even) th:first-child{
	background-color: rgb(229,148,85);
}


[data-table_id="2"]{
  background-color: rgb(255,255,85);
}

[data-table_id="2"] tbody tr th:first-child{
	background-color: rgb(255,255,85);
}

[data-table_id="2"] tbody tr:nth-child(even) th:first-child{
	background-color: rgb(229,229,76);
}


[data-table_id="3"]{
  background-color: rgb(148,255,60);

}

[data-table_id="3"] tbody tr th:first-child{
	background-color: rgb(148,255,60);
}

[data-table_id="3"] tbody tr:nth-child(even) th:first-child{
	background-color: rgb(133,229,54);
}


[data-table_id="4"]{
  background-color: rgb(88,88,255);
  color: rgb(220,220,220);
}

[data-table_id="4"] tbody tr th:first-child{
	background-color: rgb(88,88,255);
}

[data-table_id="4"] tbody tr:nth-child(even) th:first-child{
	background-color: rgb(79,79,229);
}


[data-table_id="5"]{
  background-color: rgb(44,44,255);
  color: rgb(220,220,220);
}

[data-table_id="5"] tbody tr th:first-child{
	background-color: rgb(44,44,255);
}

[data-table_id="5"] tbody tr:nth-child(even) th:first-child{
	background-color: rgb(40,40,229);
}


[data-table_id="6"]{
  background-color: rgb(255,120,255);
  color: rgb(220,220,220);
}

[data-table_id="6"] tbody tr th:first-child{
	background-color: rgb(255,120,255);
}

[data-table_id="6"] tbody tr:nth-child(even) th:first-child{
	background-color: rgb(229,108,229);
}


._ytitle{
	width: 110px;
}

._name{
  width: 100px;
}

._ctitle{
	width: 110px;
}

._company{
  width: 210px;
}

._address{
  width: 300px;
}

._mobile{
  width: 140px;
}

._tel{
  width: 140px;
}

._fax{
  width: 140px;
}

._mail{
  width: 250px;
}

._product{
  width: 350px;
}

._web{
  width: 200px;
}


pre{
  overflow: auto;
}

/** Sticky table styles **/
.st_viewport{
  background-color: rgb(62,148,236);
  color: rgb(27,30,36);
  margin: 20px 0;
}
/* ###  Table wrap */
.st_wrap_table{
  min-width: 2107px;
}
/* ##   header */
.st_table_header{
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  background-color: rgb(27,30,36);
  color: rgb(220,220,220);
}
.st_table_header h2{
  font-weight: 400;
  margin: 0 20px;
  padding: 20px 0 0;
}
.st_table_header .st_row{
  color: rgba(220,220,220, .7);
}
.st_table_header .st_column{
  
}
/* ##  table */
.st_table{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
/* #   row */
.st_row{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.st_table .st_row:nth-child(even){
  background-color: rgba(0,0,0, .1)
}
/* #   column */
.st_column{
  padding: 10px 20px;
}