body {
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
}
.news-dynamics {
    margin-top: 30px;
    margin-bottom: 100px;
}
.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}
.news-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.news-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}
.news-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.news-content {
    font-size: 14px;
    color: #555;
}

.header-logo {
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.logo {
    margin: 0;
    font-size: 28px;
}
.home-bannar {
    height: 100vh;
    background: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    width: 100%;
}
.home-bannar .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}
.inbox {
    top: 50%;
    color: #FFF;
    position: absolute;
    transform: translate(0, -50%);
    width: 100%;
    text-align: center;
    text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.75);
}
.line1 {
    font-size: 48px;
    margin: 0;
    animation: bounceInDown 1s;
}
.line2 {
    font-size: 24px;
    margin: 20px 0;
    animation: bounceInLeft 1s;
}
@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }
    75% {
        transform: translate3d(0, -10px, 0);
    }
    90% {
        transform: translate3d(0, 5px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInLeft {
    from, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }
    80% {
        transform: translate3d(-10px, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.copyright {
    width: 100%;
    background: #222;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}

.copyright a {
    color: inherit;
    text-decoration: none;
}