/*
common
*/
ul, li {
    padding: 0 0;
    margin: 0;
    list-style: none;
}

ul > li > .detail {
    width: 60vw;
    flex-direction: row;
    line-height: 200%;
    -moz-box-shadow: 0 0 10px #d4d4d4;
    -webkit-box-shadow: 0 0 10px #d4d4d4;
    box-shadow: 0 0 10px #d4d4d4;
}

#agenda {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#agenda > .banner {
    position: relative;
    width: 100vw;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.banner > img {
    -webkit-user-drag: none;
}

.banner > .title-wrapper {
    position: absolute;
    top: 40%;
    left: 30%;
}

.banner > .title-wrapper > .title {
    font-size: 37px;
    color: rgb(218, 255, 29);
    padding: 0 5px;
    font-weight: bold;
    border: 1px solid rgb(218, 255, 29);
}

#agenda > .banner  > .title-wrapper > .desc {
    font-size: 16px;
    color: rgb(218, 255, 29);
}

#agenda > .banner > .title {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #aace3f;
    transform: translate(-50%,-50%);
}

#agenda > .banner > .title > .one {
    display: inline-block;
    border: 1px solid #aace3f;
    padding: 5px;
    font-size: 40px;
    font-weight: bold;
}

#agenda > .banner > .title > .two {
    font-size: 22px;
    display: inline-block;
}

#agenda > .container {
    width: 100vw;
    padding: 5vh 0;
}

.container > li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
}

/**
customize
 */
.about > .detail {
}

.menu {
    overflow: hidden;
}

.menu .menu-item .title {
    padding: 20px 10px;
    font-size: 24px;
}

.menu-item .sub-titles li {
    background-color: #f2f2f4;
    color: #aace3f;
    padding: 10px;
    border-top: 1px solid #dbdbdc;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.menu-item .sub-titles:last-child {
    border-bottom: 1px solid #dbdbdc;
}

.menu-item .sub-titles li.active {
    background-color: #aace3f;
    color: #ffffff;
}

.detail .info {
    padding: 68px 20px;
    line-height: 150%;
    overflow-x: hidden;
}

.time-lines::-webkit-scrollbar {
    display: none;
}

.time-line::-webkit-scrollbar {
    display: none;
}


.detail .info .title {
    font-weight: bold;
    font-size: 20px;
}

.time-lines {
    margin-top: 5vh;
    font-size: 14px;
    /*max-height: 45vh;*/
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

.time-line {
    overflow-x: hidden;
    /*overflow-y: scroll;*/
}

.time-line .line {
    position: absolute;
    height: 100%;
    left: 6px;
    top: 30px;
    border: 1px solid #aace3f;
    border-image: -webkit-linear-gradient(#aace3f, white) 30 30;
    border-image: -moz-linear-gradient(#aace3f, white) 30 30;
    border-image: linear-gradient(#aace3f, white) 30 30;
}

.time-item {
    margin: 20px 20px;
}

.time-item > .desc {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


.time-item .time {
    font-weight: bold;
    font-size: 20px;
    position: relative;
}

.time-item .time:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666464;
    position: absolute;
    top: 8px;
    left: -17px;
    z-index: 99;
}

.arrow {
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}

.ani-arrow {
    -webkit-animation: floating 2s linear infinite;
    -o-animation: floating 2s linear infinite;
    animation: floating 2s linear infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0)
    }

    50% {
        opacity: .5;
        transform: translate(0, -6px)
    }
    100% {
        opacity: 1;
        transform: translate(0, 0)
    }
}
