.banner {
    padding-top: 100px;
    width: 100%;
    /* height: 540px; */
}

.banner>img {
    width: 100%;
    display: block;
}

.content {
    width: 1200px;
    margin: 0 auto;
}

.news-type {
    display: flex;
}

.news-type-item {
    width: 140px;
    height: 60px;
    font-size: 20px;
    color: #1a1a1a;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    margin-right: 20px;
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
}

.news-type-item.on {
    background-image: url('../images/icon/news-title.png');
    background-size: 140px 60px;
    color: #298EC6;
}

.news-type-item:hover {
    background-image: url('../images/icon/news-title.png');
    background-size: 140px 60px;
    color: #298EC6;
}

.news-item {
    width: 1200px;
    height: 240px;
    padding: 20px 0;
    padding-right: 70px;
    box-sizing: border-box;
    background-color: #fff;
    margin-top: 30px;
    display: flex;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
}

.news-time {
    width: 140px;
    margin: 0 40px;
    margin-top: 22px;
    flex-shrink: 0;
}

.news-time-day {
    font-size: 60px;
    color: #1a1a1a;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #1a1a1a;
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
}

.news-time-year {
    font-size: 30px;
    color: #999;
    text-align: center;
    padding-top: 30px;
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
}

.news-item-img {
    width: 200px;
    height: 200px;
    display: block;
    background-color: #f2f2f2;
    flex-shrink: 0;
}

.news-item-title {
    font-size: 20px;
    color: #1a1a1a;
    line-height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
}

.news-item-info {
    font-size: 16px;
    color: #999;
    line-height: 26px;
    height: 78px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    white-space: pre-line;
}

.news-item-detail {
    width: 120px;
    height: 50px;
    font-size: 20px;
    color: #1a1a1a;
    line-height: 47px;
    margin-top: 30px;
    background-image: url('../images/icon/see-all-arrow.png');
    background-size: 26px 6px;
    background-position: center right;
    background-repeat: no-repeat;
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
}

.news-item:hover {
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.05);
}

.news-item:hover .news-time-day {
    color: #298EC6;
    border-bottom: 1px solid #298EC6;
}

.news-item:hover .news-time-year {
    color: #298EC6;
}

.news-item:hover .news-item-title {
    color: #298EC6;
}

.news-item:hover .news-item-detail {
    color: #298EC6;
    background-image: url('../images/icon/news-arrow-blue.png');
}

.mypage {
    margin-top: 64px;
    text-align: center;
}