﻿/* 定义动画 */
@keyframes slideUp {
    from {
        transform: translateY(-.1rem);
        -webkit-transform: translateY(-.1rem);
        -moz-transform: translateY(-.1rem);
        -ms-transform: translateY(-.1rem);
        -o-transform: translateY(-.1rem);
        /*transform: translateY(100%);*/
        opacity: 0;
    }

    to {
        transition: transform 0.5s ease-in-out; /* 平滑变化 */
        /*transform: translateY(0);*/
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideDownUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownLeft {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        background-color: rgba(168, 73, 56, 0.90);
    }
}

/* 应用动画到目标元素 */
.slide-up-animation {
    animation: slideUp 2s ease forwards;
}

.slide-left-animation {
    animation: slideLeft 3s ease forwards;
}

.px1400 {
    max-width: 1500px;
    /*min-width: 1400px;*/
    margin: 0 auto;
}

.row {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 140px;
}

.scroll {
    clear: both;
    overflow-y: hidden;
}

.home5 {
    /*background: url(../images/s-2.png) center top 100% no-repeat;*/
    height: 930px;
    margin-top: 80px;
}

    .home5 .left {
        float: left;
        width: 25%;
        background: url(../images/s2-l.png) center no-repeat;
        background-size: cover;
        height: 930px;
    }

    .home5 .right {
        float: left;
        width: 75%;
        height: 930px;
        background: #fff;
    }

        .home5 .right .r-t {
            background: url(../images/s2-r-t.png) center no-repeat;
            background-size: cover;
            height: 585px;
        }

.home6 {
    background: url(../images/s-3.png) center top 100% no-repeat;
    height: 927px;
}

.home7 {
    background: url(../images/s-4-t.png) center top 100% no-repeat;
    height: 606px;
}

.home8 {
    background: url(../images/s-4-b.png) center top 100% no-repeat;
    height: 238px;
}

.home9 {
    clear: both;
    background: #fff;
    height: auto;
}

.square {
    color: #fff;
    line-height: 35px;
    text-align: center;
}

.s-s1 {
    cursor: pointer;
    background-color: rgba(90, 130, 207, 0.90);
}

.s-s2 {
    cursor: pointer;
    background-color: rgba(51, 91, 170, 0.90);
}

.s-s3 {
    cursor: pointer;
    background-color: rgba(189, 105, 90, 0.90);
}

.s-s4 {
    cursor: pointer;
    background-color: rgba(35, 67, 130, 0.50);
}

.s-s5 {
    cursor: pointer;
    background-color: rgba(205, 138, 126, 0.90);
}

.s-s6 {
    cursor: pointer;
    background-color: rgba(3, 57, 140, 0.90);
}

    .s-s1 a, .s-s2 a, .s-s3 a, .s-s4 a, .s-s5 a, .s-s6 a {
        color: #fff;
    }

    .s-s1:hover, .s-s2:hover, .s-s3:hover, .s-s4:hover, .s-s5:hover, .s-s6:hover {
        animation: slideDownLeft 800ms ease-in-out forwards;
    }

/*.s-2-pdleft {
    padding-left: 30%;
}

.s2-b-pdleft {
    padding-left: 17.4%;
}*/

.s2-height {
    height: 150px;
}

.s2-news {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 10px;
}

.s3-outside {
    margin-top: 34px;
    padding: 15px;
    background: url(../images/outside.png) repeat;
    cursor: pointer;
    transition: transform 0.3s ease; /* 平滑变化 */
}

    .s3-outside:hover {
        transform: translateY(-.1rem);
        -webkit-transform: translateY(-.1rem);
        -moz-transform: translateY(-.1rem);
        -ms-transform: translateY(-.1rem);
        -o-transform: translateY(-.1rem);
    }

        .s3-outside:hover a.a_sect3 {
            color: #ba8c8a;
            text-decoration: none;
        }

        .s3-outside:hover .s3-inside {
            background: url(../images/s-3-bg2.png) left bottom no-repeat;
        }

.s3-inside {
    padding: 15px 0;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .1);
}

.s4-bottom {
    padding-top: 35px;
    line-height: 25px;
    color: #fff;
    font-size: 0.9em;
}

.s4-xglj {
    border-right: 1px solid #fff;
    color: #fff;
    font-size: 1em;
    text-align: right;
    padding-right: 20px;
}

a.a_s4_xglj {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

    a.a_s4_xglj:hover {
        color: #fff;
        text-decoration: none;
    }

.ellipsis_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #8c8c8c;
}

.ellipsis_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
}

.ellipsis_3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #fff;
    line-height: 25px;
    font-size: 14px;
}

.ellipsis_4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #8c8c8c;
    line-height: 30px;
}

.tszs_title {
    padding-left: 25px;
}

.PdL30 {
    padding-left: 30px;
}

.index_datetime_white {
    border-right: 2px solid #fff;
    padding: 0 15px 0 0;
}

    .index_datetime_white:hover {
        background: url(../images/s-3-bg2.png) left bottom no-repeat;
    }

.index_day_white {
    color: #fff;
    font-size: 14pt;
    text-align: right;
    padding-bottom: 10px;
}

.index_yearly_white {
    color: #fff;
    font-size: 10pt;
    text-align: right;
}

a.a_sect2 {
    color: #fff;
    text-decoration: none;
    font-size: 14pt;
}

    a.a_sect2:hover {
        color: #fff;
        text-decoration: none;
    }

a.a_sect2-2 {
    color: #ba8c8a;
    text-decoration: none;
    font-size: 14pt;
}

    a.a_sect2-2:hover {
        color: #555555;
        text-decoration: none;
    }

.index_datetime {
    border-right: 2px solid #ba8c8a;
    padding: 0 15px 0 0;
}

.index_day {
    color: #ba8c8a;
    font-size: 14pt;
    text-align: right;
    padding-bottom: 10px;
}

.index_yearly {
    color: #ba8c8a;
    font-size: 10pt;
    text-align: right;
}

a.a_sect3 {
    color: #555555;
    text-decoration: none;
    font-size: 14pt;
}

    a.a_sect3:hover {
        color: #ba8c8a;
        text-decoration: none;
    }

.news_bga img {
    width: 100%; /* 图片初始大小 */
    transition: transform 0.3s ease; /* 平滑变化 */
}

.news_bga:hover img {
    transform: scale(1.2); /* 鼠标悬停时放大1.5倍 */
}

.news .slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    font-size: 0;
}

    .news .slick-dots li {
        position: relative;
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0px 5px;
        padding: 0;
        cursor: pointer;
        background-color: #f38a09;
        border-radius: 15px;
        z-index: 9999;
    }

        .news .slick-dots li.slick-active {
            background-color: #fff;
        }

@media screen and (max-width:1199px) {
    .px1400 {
        max-width: initial;
        margin: 0 auto;
    }

    .row {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 80px;
    }

    .home5 {
        /*background: url(../images/s-2-t.png) no-repeat;
        background-size: cover;*/
        height: auto;
    }

        .home5 .left {
            display: none;
        }

        .home5 .right {
            width: 100%;
            height: auto;
        }

            .home5 .right .r-t {
                height: auto;
            }

    .home6 {
        background-size: cover;
        height: auto;
    }

    .home7 {
        background-size: cover;
        height: auto;
    }

    .s2-news-bg {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
    }

    .s-2-pdleft {
        padding-left: 0;
    }

    .s2-b-pdleft {
        padding-left: 0;
    }

    .s2-height {
        height: 50px;
    }

    .s2-news {
        margin-top: 30px;
    }

    .s4-bottom {
        padding-top: 20px;
        font-size: 0.8em;
    }

    .tszs_title {
        padding-left: 15px;
    }

    .PdL30 {
        padding-left: 0;
    }

    .s3-outside {
        margin-top: 20px;
    }
}

@media screen and (max-width:850px) {
    .row {
        padding-top: 60px;
    }

    .newsImg img {
        width: 25%;
    }

    .s4-bottom {
        padding-top: 20px;
    }

    .home5 {
        margin-top: 0;
    }

    .home7 {
        padding: 0;
    }
}

@media screen and (max-width:570px) {
    .s4-bottom {
        font-size: 0.7em;
    }

    .newsImg img {
        width: 35%;
    }
}

@media screen and (max-width:500px) {
    .tszs_title {
        padding-left: 0;
    }

    .s4-bottom {
        font-size: 0.65em;
    }
}

@media screen and (max-width:420px) {
    .s2-height {
        height: 120px;
    }

    .s4-bottom {
        font-size: 0.55em;
    }

    .newsImg img {
        width: 45%;
    }
}

@media screen and (max-width:376px) {
    .s4-bottom {
        font-size: 0.45em;
    }
}

@media screen and (max-width:320px) {
    .newsImg img {
        width: 60%;
    }
}

@media screen and (min-width:320px) {
    .displayWeb {
        display: none;
    }

    .displayPhone {
        display: block;
    }
}

@media screen and (min-width:1199px) {
    .displayWeb {
        display: block;
    }

    .displayPhone {
        display: none;
    }
}
