body {
    background: #f1f1f1;
}

.page-slide-inner {
    width: 100%;
    height: 360px;
}

.news {
    width: 1150px;
    padding: 0 25px;
    background: #fff;
    margin: -185px auto 0;
}

.news-title {
    padding-top: 68px;
    line-height: 40px;
    margin-bottom: 20px;
}

.news-title p {
    float: left;
    color: #d9d9d9;
    font-size: 40px;
    text-transform: uppercase;
}

.news-title span {
    float: left;
    color: #484848;
    font-size: 24px;
    font-weight: bold;
    margin-left: 5px;
    margin-top: 3px;
}

.news-inner {
    color: #666;
    font-size: 16px;
    text-align: justify;
    padding-bottom: 125px;
    padding-top: 80px;
}

.news-inner li {
    padding-bottom: 24px;
    margin-bottom: 25px;
    border-bottom: 1px solid #efefef;
}

.news-inner li a {
    position: relative;
    display: block;
}

.news-inner li a::before {
    position: absolute;
    left: 20%;
    transform: translateX(-50%);
    bottom: -25px;
    content: '';
    display: block;
    clear: both;
    width: 0;
    height: 1px;
    background: #1894eb;
    transition: all 0.8s;
}

.news-img {
    width: 185px;
    height: 133px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    max-width: none;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


.news-text {
    width: 725px;
    margin-left: 45px;
}

.news-text h1 {
    color: #333333;
    font-size: 22px;
    font-weight: normal;
    line-height: 29px;
    margin-bottom: 50px;
    transition: all 0.5s;
}


.news-text p {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 27px;
    text-align: justify;
    text-indent: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-timer {
    color: #1894eb;
    width: 78px;
    height: 120px;
    background: #efefef;
    text-align: center;
    transition: all 2s;
}

.news-timer p {
    transition: all 1s;
}

.news-timer p.day {
    font-size: 48px;
    line-height: 84px;
}

.news-timer p.Years {
    font-size: 14px;
}

.news-inner li:hover .news-text h1 {
    color: #1894eb;
}

.news-inner li:hover .news-timer {
    background: #1894eb;
}

.news-inner li:hover .news-timer p {
    color: #fff;
}

.news-inner li:hover a::before {
    width: 100%;
    left: 50%;
}


.news-inner li:hover .news-img img {
    transform: scale3d(1.1, 1.1, 1);
    -webkit-transform: scale3d(1.1, 1.1, 1);
}