@charset "UTF-8";
.weatherBox {
    position: relative;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
}
.tableBox {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}

/* 下拉選單 */
.weatherBox select {
    font-size: 1.5em;
}
.selectBox {
    position: relative;
    width: 100%;
    text-align: center;
}
#township {    
    width: 10em;
}
.showTableBox {
    position: relative;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.tableTitle {
    position: relative;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
    margin-right: 2em;
}

.tableBox table {
    position: relative;
    width: 100%;
    color: #ffffff;
    border: 2px solid #ffffff;
    table-layout: fixed;
    font-size: 1.2em;
    line-height: 1.5em;
    display: none;
}
.tableBox table th,
.tableBox table td {
    position: relative;
    border: 2px solid #ffffff;
    padding: 0.5em;
    text-align: center;
    vertical-align: middle;
}
.tableBox table th{
    background-color: #1b4b8f;
    width: 8em;
}

.tableBox table td{
    width: 5em;
}
.tableBox table td{
    background-color: #285eaa;
}
/*
.tableBox table td:nth-child(even){
    background-color: #285eaa;
}
.tableBox table td:nth-child(odd){
    background-color: #346dbd;
}*/

.weather img {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 60%;
    height: auto;
    margin-bottom: 0.2em;
}
.windBox {
    position: relative;
    margin: 0 auto;
    width: 2.2em;
    height: 2.2em;
    display: table;
    margin-top: 0.3em;
    margin-bottom: 0.5em;
}
.wind-direction {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1.1em;
    background-color: #cccccc;
}
.wind-direction::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    left: 50%;
    bottom: 0;
    border-bottom: 14px solid #f3712d;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    -moz-transform: translate(-50%,50%);
    -webkit-transform: translate(-50%,50%);
    -o-transform: translate(-50%,50%);
    -ms-transform: translate(-50%,50%);
    transform: translate(-50%,50%);
    box-sizing: border-box;
}

.wind-direction.wind01 {
    transform: rotate(180deg);
}
.wind-direction.wind02 {
    transform: rotate(202.5deg);
}
.wind-direction.wind03 {
    transform: rotate(225deg);
}
.wind-direction.wind04 {
    transform: rotate(247.5deg);
}
.wind-direction.wind05 {
    transform: rotate(270deg);
}
.wind-direction.wind06 {
    transform: rotate(292.5deg);
}
.wind-direction.wind07 {
    transform: rotate(315deg);
}
.wind-direction.wind08 {
    transform: rotate(337.5deg);
}
.wind-direction.wind09 {
    transform: rotate(0deg);
}
.wind-direction.wind10 {
    transform: rotate(22.5deg);
}
.wind-direction.wind11 {
    transform: rotate(45deg);
}
.wind-direction.wind12 {
    transform: rotate(67.5deg);
}
.wind-direction.wind13 {
    transform: rotate(90deg);
}
.wind-direction.wind14 {
    transform: rotate(112.5deg);
}
.wind-direction.wind15 {
    transform: rotate(135deg);
}
.wind-direction.wind16 {
    transform: rotate(157.5deg);
}

.wind-level {
    position: relative;
    color: #333333;
    display: table-cell;
    vertical-align: middle;
}

.homeBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: #1b4b8f;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  display: block;
  padding: 0.5em 1em;
  cursor: pointer;
  user-select: none;
}
.homeBtn:visited,
.homeBtn:link {
    color: #ffffff;
}
.homeBtn:hover {
    color: #ffcc00;
}
/* ################################################ */
@media (max-width: 999px) {
}
