.index {
    background-color: #c7bfe6;
    background-attachment: fixed;
    background-size: cover;
}

.index form {
    display: flex;
    align-items: stretch;
}

.index .menu * {
    padding: 0;
    margin: 0;
}

.index .menu {
    width: 100%;
}

.index .menu ul {
    list-style: none;
    text-align: center
}

.index .menu ul li {
    float: left;
    position: relative;
}

.index .menu ul li a, .index .menu ul li a:visited {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 104px;
    height: 30px;
    color: #000;
    border: 1px solid #C7BFE6;
    border-width: 1px 1px 0 0;
    background: #A7BCE8;
    line-height: 30px;
    font-size: 12px;
}

.index .menu ul li ul {
    display: none;
    position: absoulte;
    z-index: 9999;
}

.index .menu ul li:hover a {
    color: #fff;
    background: #9B9BE6;
}

.index .menu ul li:hover ul {
    display: block;
    position: absolute;
    top: 31px;
    left: 0;
    width: 105px;
}

.index .menu ul li:hover ul li a {
    display: block;
    background: #A7A6E8;
    color: #000;
}

.index .menu ul li:hover ul li a:hover {
    background: #A6DCE6;
    color: #000;
}

.index .timeselect {
    margin: 0.5rem;
}

.index .timeselect input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.index .timeselect input[type="radio"]+.radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    margin-right: 0.5em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}

.index .timeselect input[type="radio"]:checked+.radio-label:before {
    background-color: #3197EE;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.index .timeselect input[type="radio"]:focus+.radio-label:before {
    outline: none;
    border-color: #3197EE;
}

.index .timeselect input[type="radio"]:disabled+.radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.index .timeselect input[type="radio"]+.radio-label:empty:before {
    margin-right: 0;
}