html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: "Microsoft YaHei";
}

/*上*/
.header {
    width: 100%;
    height: 66px;
    background-color: #477bc8;
}

/*下*/
.content {
    width: 100%;
    position: absolute;
    top: 66px;
    bottom: 0;
}

/*下的左侧边栏*/
.menu {
    width: 70px;
    height: 100%;
    float: left;
    overflow: auto;
    background-color: #6491d2;
}

/*下的右侧*/
.main {
    height: 100%;
    margin-left: 70px;
    overflow: auto;
}

button {
    background-color: rgba(255, 255, 255, 0);
    color: white;
    border: 0;
    position: absolute;
}

button:focus {
    outline: 0; /*隐藏Chrome点击黑框*/
}

/*提交按钮*/
.submitBtn {
    padding: 4px 10px;
    height: 30px;
    line-height: 20px;
    position: relative;
    cursor: pointer;
    background: #fafafa;
    border: 1px solid #57ad68;
    border-radius: 4px;
    overflow: hidden;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    font-weight: bold;
}

.submitBtn:hover {
    /*background: #AAC6EE;*/
    background: #57ad68;
    color: white;
    text-decoration: none;
}

/*预测页面，结果按钮的”+“号*/
#buttonDetails {
    border-width: 0;
    background: #5A9D5A;
    color: red;
    box-shadow: none;
}

input {
    border: 2px solid #57ad68;
    /*border: 1px solid #ccc;*/
    border-radius: 10px;
    padding: 5px 0 5px 0;
    font-size: 16px;
    text-align: center;
    box-shadow: gray 3px 3px 3px;
}

input:focus {
    border-style: solid;
    border-color: #0066FF;
    box-shadow: 0 0 5px #AAC6EE;
    outline: 0; /*隐藏Chrome点击黑框*/
}

.inputForm {
    position: absolute;
    top: 66px;
    height: 33px;
    display: none;
    z-index: 300;
}


select {
    /*将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 2px solid #57ad68;
    padding: 4px 0 4px 0;
    width: 100px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    box-shadow: gray 3px 3px 3px;
}

select:focus {
    border-style: solid;
    border-color: #0066FF;
    box-shadow: 0 0 5px #AAC6EE;
    outline: 0; /*隐藏Chrome点击时外围的黑框*/
}

/*台风预测结果表格*/
#forecastResult {
    position: absolute;
    z-index: 300;
    top: 47%;
    left: 70px;
    display: none;
    /*transform: translateY(-60%);*/
    background: rgba(245, 244, 238, 0.9);
    box-shadow: gray 5px 5px 5px;
    border-radius: 5px;
}

::-webkit-scrollbar { /*Chrome隐藏滚动条*/
    width: 0;
}

#preciseResult {
    position: absolute;
    z-index: 300;
    top: 62%;
    left: 70px;
    display: none;
    /*transform: translateY(-60%);*/
    background: rgba(245, 244, 238, 0.9);
    box-shadow: gray 5px 5px 5px;
    border-radius: 5px;
}

/*历史台风结果表格*/
#historyResult {
    position: absolute;
    z-index: 300;
    top: 66px;
    right: 100px;
    background: rgba(245, 244, 238, 0.9);
    box-shadow: gray 5px 5px 5px;
    border-radius: 5px;
}

#tableBody {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none; /*Firefox隐藏滚动条 其他值 thin*/
    -ms-overflow-style: none; /*IE隐藏滚动条*/
    box-shadow: gray 5px 5px 5px;
    border-radius: 5px;
}

table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

table th {
    text-align: center;
    color: #ffffff; /*表头中字体的颜色，白色*/
    background-color: #5A9D5A; /*表头中的背景颜色*/
}

table tr {
    height: 30px;
}

tr:nth-child(2n) td {
    background: rgba(248, 248, 248, 0.6);
}

table td {
    text-align: center;
    border-bottom: 1px dashed #e5e5e5;
}

table tr:hover {
    background-color: #AAC6EE;
}

table tr:hover td {
    background: none;
}

/*选择按钮*/
.radio {
    display: none
}

.radioInput {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100%;
    display: inline-block;
    height: 16px;
    margin-right: 10px;
    margin-top: -1px;
    vertical-align: middle;
    width: 16px;
    line-height: 1
}

.radio:checked + .radioInput:after {
    background-color: #57ad68;
    border-radius: 100%;
    content: "";
    display: inline-block;
    height: 12px;
    margin: 2px;
    width: 12px
}

/*当前台风预测等待*/
#info {
    background: rgba(245, 244, 238, 0.8);
    box-shadow: gray 0 0 10px;
    border-radius: 10px;
    color: #ff6464;
    font-size: 30px;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    left: 37%;
    top: 45%;
    z-index: 400;
}

/*历史回测*/
#wait {
    position: absolute;
    top: 40%;
    left: 45%;
    display: none;
    z-index: 400;
    width: 150px;
}