body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #333;
}

a.active {
    color: #2289d8;
}

.mobile-wrapper {
    position: absolute;
    top: 0;
    bottom: 60px;
    width: 100vw;
    overflow-y: scroll;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

.button {
    background-color: #F4F4F4;
    border-radius: 6px;
    padding: 10px;
    font-size: 12px;
    color: #444;
}

.button.active {
    background-color: #2289D8;
    color: #fff;
}

.button.large {
    font-size: 16px;
}

.text-center {
    text-align: center;
}

.news-list {
    padding: 5px 5vw 8px;
}

.news-item {
    padding: 4px 0;
    display: flex;
    flex-direction: row;
}

.news-item>img {
    width: 40px;
    height: 40px;
    padding: 5px 5px 15px 15px;
}

.news-date {
    display: flex;
    flex-direction: column;
     width: 70px;
    height: 60px;
    margin: 4px 0;
    border-radius: 12px;
    overflow: hidden;
}

.news-date-day {
    width: 100%;
    height: 32px;
    background: #f4f4f4;
    font-family: "Arial";
    font-weight: bold;
    font-size: 24px;
    color: #6fbc2c;
    text-align: center;
    padding-top: 6px;
}

.news-date-month {
    width: 100%;
    height: 20px;
    background: #339edc;
    font-family: "Arial Narrow";
    font-size: 13px;
    color: #FFFFFF;
    text-align: center;
    vertical-align: center;
    padding-top: 4px;
}

.news-title {
    width: 80vw;
    margin: 4px 0 4px 20px;
    display: block;
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}