@charset 'UTF-8';

img {
    max-width: 100%;
}
/*news*/

.home-news {
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.home-news::before,
.home-news::after {
    content: '';
    position: absolute;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.home-news::before {
    bottom: 0;
    left: -120px;
    background-image: url(/assets/template/d83f0e4aee803e469301004c68588776/img/left-eye.png);
    width: 317px;
    height: 472px;
    -webkit-animation: move 3s ease-in-out infinite;
    animation: move 3s ease-in-out infinite;
}

.home-news::after {
    top: 50px;
    right: -110px;
    background-image: url(/assets/template/d83f0e4aee803e469301004c68588776/img/right-eye.png);
    width: 238px;
    height: 241px;
    -webkit-animation: move2 3s ease-in-out infinite;
    animation: move2 3s ease-in-out infinite;
}

@media (max-width: 1399px) {
    .home-news::before {
        width: 257px;
        height: 342px;
    }

    .home-news::after {
        width: 198px;
        height: 201px;
    }
}


@keyframes move {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }

    50% {
        -webkit-transform: translatey(-10px);
        transform: translatey(-10px);
    }

    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

@keyframes move2 {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }

    50% {
        -webkit-transform: translatey(10px);
        transform: translatey(10px);
    }

    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

@media (max-width: 991px) {

    .home-news::before,
    .home-news::after {
        display: none;
    }
}

.home-news .home-title .title-cn span {
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .home-news .home-title .title-cn span {
        font-size: 24px;
    }
}

.home-news .home-title .title-en img {
    max-height: 16px;
}

.home-news .wrapper {
    display: flex;
    align-items: center;
    padding-top: 115px;
    padding-bottom: 105px;
}

.home-news .header {
    flex: 0 0 260px;
}

@media (max-width:1399px) {
    .home-news .wrapper {
        padding-top: 65px;
        padding-bottom: 55px;
    }
}

@media (max-width: 991px) {
    .home-news .wrapper {
        flex-direction: column;
    }

    .home-news .header {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 1rem;
    }
}

.home-news .news-list {
    width: 100%;
}

.home-news .news-list .item {
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
    transition: 0.2s all linear;
    border-bottom: 1px #E5E5E5 solid;
}

.home-news .news-list .item:hover {
    background-color: #f3faff;
}

.home-news .news-list .item:last-child {
    border: none;
    margin: 0;
}

.home-news .news-list .item .info .date {
    color: #0066B5;
    transition: 0.2s all linear;
    margin-right: 1rem;
}


.home-news .news-list .item .info .tag {
    border-color: #E79600;
    border-width: 1px;
    border-style: solid;
    color: #E79600;
    background-color: #fff;
    padding: 1px 5px;
    font-size: 15px;
    border-radius: 5px;
    margin-right: 1rem;
    min-width: 90px;
    text-align: center;
}

.home-news .news-list .item .info .tag.anniv {
    border-color: #D43807;
    border-width: 1px;
    border-style: solid;
    color: #D43807;
}

.home-news .news-list .item .info .tag.system{
    border-color: #338DD3;
    border-width: 1px;
    border-style: solid;
    color: #338DD3;
}

.home-news .news-list .item .title {
    margin: 10px 0;
    display: flex;
    align-items: center;
}


.home-news .news-list .item .title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    color: #6F6F6F;
    text-decoration: none;
    transition: 0.2s all linear;
    letter-spacing: 2px;
}

.home-news .news-list .item:hover .title a {
    color: #0066B5;
}
/*home-btn-style*/

.btn-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 2rem;
    line-height: 35px;
    border-radius: 50px;
    max-width: 150px;
    width: 100%;
    border: 1px #C8C8C8 solid;
}

.btn-more:hover {
    background-color: #0066B5;
    color: #fff;
}

.btn-more:hover i {
    color: #fff;
}

.btn-more .text {
    margin-right: 23px;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
}

.btn-more i {
    color: #0066B5;
    font-size: 13px;
}