* {
    margin: 0;
    padding: 0;
}

.wrap {
    max-width: 1400px;
    margin: 0 auto;
    transition: all .6s;
    position: relative;
}

/* header */
#header {
    background: url(../images/header_bg.png) no-repeat;

}

#header .header_con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 29px 0;
}

#header .header_r {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .header_r form {
    position: relative;
    height: 32px;
}

#header .header_r span {
    border-right: 2px solid #fff;
    padding-right: 15px;
    font-size: 16px;
}

#header .header_r input {
    margin-left: 20px;
    background-color: #c20b32;
    border-radius: 50px;
    padding: 8px 20px;
    padding-right: 45px;
    color: #fff;
    font-size: 16px;
    height: 32px;
    box-sizing: border-box;
}

#header .header_r button {
    position: absolute;
    right: 10px;
    top: 2px;
    padding: 2px;
}

#header .header_r button i {
    font-size: 25px;
    color: #fff;

}

#header .nav {
    background-color: #9c0d2b;
    font-size: 18px;
}

#header .nav .wrap>ul {
    display: flex;
    justify-content: space-around;
}

#header .nav .wrap>ul>li {
    width: 13%;
    position: relative;
    padding: 20px 0;
    text-align: center;
}

#header .nav ul li a {
    color: #fff;
}

#header .nav ul li a:hover {
    color: #ddaf27f7;
}

#header .nav .wrap>ul>li:hover .nav-list {
    display: block;
}

#header .nav .wrap>ul>li .nav-list {
    position: absolute;
    left: 0;
    top: 58px;
    width: 100%;
    text-align: center;
    display: none;
    transition: all 0.3s ease;
    z-index: 50;
}

#header .nav .wrap>ul>li .nav-list ul {}

#header .nav .wrap>ul>li .nav-list ul li {
    padding: 20px 0;
    background-color: #9c0d2b;
    border-bottom: 1px solid #c12142;
}
.ri-search-line{
    display: inline-block;
    width: 22px;
    height: 22px;
    background:url(../images/search.png) right center no-repeat;
}
.ri-menu-line{
    margin-left: 10px;
    display: inline-block;
    width: 28px;
    height: 21px;
    background: url(../images/caidan.png) no-repeat;
    background-size: cover;
}
.con1,
.con2,
.con3,
.con4,
.con5,
.con6 {
    margin-top: 40px;
}

/* con1 */

.content_l {
    width: 48%;
    float: left;
    overflow: hidden;
}

.tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.tit .top {
    display: flex;
    align-items: center;
}

.tit .top h1 {
    padding-left: 15px;
    font-size: 30px;
}

.tit .top .x {
    background-color: #9c0d2b;
    width: 5px;
    height: 25px;
}

.tit .top .y {
    width: 5px;
    height: 10px;
    background-color: #e0244c;
}

.tit .more a{
    font-size: 14px;
    color: #9c0d2b;
    font-family: Arial;
    font-weight: bold;
}

.content_l .news {
    position: relative;
}

.content_l .news .title {
    display: flex;
    flex-direction: column;
    padding: 30px 0 25px 35px;
    color: #fff;
    font-size: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    transition: all .6s;
}
.content_l .news .title span{
    width: 80%;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* 这里是超出几行省略 */
    overflow: hidden;
}
._thum {
    height: 460px;
}

._thum img {
    object-fit: cover;
}

.content_l .news .title::after {
    content: '';
    display: block;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.content_l .news .title time {
    padding-top: 15px;
}

time {
    font-family: Georgia;
}

.news-con .slick-dots {
    position: absolute;
    bottom: 25px;
    right: 30px;
}

.news-con .slick-dots li {
    width: 8px;
    height: 8px;
    background-color: #878484;
    border-radius: 50%;
    margin: 0;
    margin-left: 5px;
    cursor: pointer;
}

.news-con .slick-dots li.slick-active {
    background-color: #fff;
}

.news-con .slick-dots li button {
    width: 0;
    height: 0;
}

.content_r {
    width: 48%;
    float: right;
}

.list ul li {
    position: relative;
    font-size: 16px;
    border-top: 1px solid #efd8dd;
    padding: 20px 0;
}

.list ul li a {
    display: block;
}

.list ul li a h3 {
    float: right;
    width: 80%;white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: normal;
}

.list ul li a time {
    vertical-align: middle;
    color: #fff;
    background-color: #9c0d2b;
    padding: 5px 10px;
    border-radius: 50px;
}

.list ul li::after{
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #9c0d2b;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: all 0.5s ease 0s;
    z-index:20;
}
.list ul li:hover a{
    color: #9c0d2b;
}
.list ul li:hover::after{
    width: 100%;
}
/* con5 */
.con5 .con55 {
    display: flex;
    justify-content: space-between;
}

.con5 .content_l,
.con5 .content_m,
.con5 .content_r {
    width: 31%;
}

.con5 .list ul li a h3 {
    width: 70%;
}

/* con6 */
.con6 .service {
    width: 73%;
    float: left;
}

.con6 .service>.tit .top h1 {
    display: flex;
    align-items: center;
    padding: 0;
}

.con6 .service>.tit .top h1::before {
    content: '';
    display: block;
    background: url(../images/icon.png) no-repeat;
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.con6 .service .service-con1 {
    width: 18%;
    float: left;
}

.con6 .service .service-con2 {
    width: 77%;
    float: right;
}

.con6 .service .service-con header {
    display: block;
}

.con6 .service .service-con .tit {}

.con6 .service .service-con .tit .top {
    padding-bottom: 18px;
    padding-top: 10px;
    border-bottom: 1px solid #efd8dd;
}

.con6 .service .service-con .tit .top h1 {
    font-size: 26px;
}

.con6 .service .service-con .service1 {
    float: left;
    margin-right: 55px;
}

.con6 .service .service-con .service1:last-child {
    margin-right: 0;
}

.con6 .service .service-con .service1 dl {
    padding-top: 20px;

}

.con6 .service .service-con .service1 dl dt {
    padding-bottom: 15px;
    font-size: 18px;
    color: #9c0d2b;
    font-weight: bold;
}

.con6 .service .service-con .service1 dl dd {
    position: relative;
    padding-left: 12px;
    padding-bottom: 15px;
    font-size: 16px;
}

.con6 .service .service-con .service1 dl dd:last-child {
    /* padding-bottom: 0; */
}

.con6 .service .service-con .service1 dl dd::before {
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    background-color: #9c0d2b;
    position: absolute;
    top: 25%;
    left: 0;
}

.info {
    width: 23%;
    float: right;
    padding-bottom: 40px;
}

.info .info-con {
    background-color: #fef5f7;
    padding-bottom: 20px;
}

.info .info-con dl {
    padding-left: 35px;
    padding-top: 25px;
}

.info .info-con dl dt {
    font-size: 20px;
    color: #9c0d2b;
    font-weight: bold;
}

.info .info-con dl dd {
    font-size: 16px;
    color: #333;
    padding-top: 8px;
    line-height: 30px;
}

/* footer */
#footer {
    background: url(../images/foot_bg.png);
    color: #fff;
    font-size: 16px;
}

#footer .foot-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

#footer .foot_m span {
    margin-right: 15px;
    line-height: 20px;
}

#footer .foot_m p {
    padding-top: 15px;
    line-height: 20px;
}

#footer .foot_r {
    display: flex;
    justify-content: space-between;
}

#footer .foot_r div {
    text-align: center;
    margin-left: 10px;
}

#footer .foot_r div p {
    padding-top: 12px;
}

.search {
    position: fixed;
    top: 0;
    background-color: #00000091;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 100;
}

.cal {
    width: 48px;
    height: 48px;
    background: url(../images/remove.png) center no-repeat;
    background-size: cover;
    /* font-weight: 100; */
    position: absolute;
    right: 5%;
    top: 10%;
    /* cursor: pointer; */
}

.search-box {
    position: relative;
    top: 50%;
    left: 40%;
    /* height: 50px; */
    transform: translateX(-200px);
    width: 400px;
    height: 50px;
}

.search-box .inp {
    background-color: #fff;
    font-size: 20px;
    padding: 18px 20px;
    width: 100%;
}

.search-box .submit {
    position: absolute;
    right: -140px;
    top: 0;
    background-color: #9c0d2b;
    height: 100%;
    color: #fff;
    width: 100px;
    font-size: 20px;
}

.top-hr {
    width: 100%;
    height: 100%;
    background-color: #9c0d2b;
    position: fixed;
    top: 0;
    z-index: 10;
    display: none;
}

.top-hr .header {
    align-items: center;
}

.cal1 {
    /* font-size: 35px; */
    /* margin-top: -7px; */
}

.top-hr .header3 {
    margin-right: 50px;
}

.header-r {
    padding-top: 130px;
    text-align: left;
    display: none
}

.top-hr-1 {
    position: absolute;
    margin-top: 30px
}

.top-hr-1 img {
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.top-hr1 {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 175px;
    left: 50px;
    line-height: 65px;
}

.top-hr2 {
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 40px;
    /* display: flex; */
    /* align-items: center; */
    /* margin-top: 30px; */
}



.header-r {
    padding: 110px 0 0;
    text-align: left;
    display: block
}

.header-r .scroll {
    padding-bottom: 20px;
    display: block;
    height: 100%;
    overflow: hidden;
    overflow-y: auto
}

.header-r .header-link {
    display: block;
    color: #fff;
}
.scroll .nav {
    width: 100%;
    padding-top: 2vh;
}

.scroll .nav li {
    display: block;
    position: relative;
    line-height: 35px;
}

.scroll .nav li>a {
    padding: 10px 30px;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    display: block;
}

.scroll .nav li>a:before {
    display: none
}

.scroll .nav li>a i {
    display: block
}

.sub {
    padding: 10px 0;
    width: 100%;
    min-width: 0;
    position: static;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
}

.sub a:before {
    display: none
}


.header-link {
    margin-top: 10px;
    padding: 0 20px;
    text-align: left
}

.header-link {
    margin-top: 10px;
    padding: 0 20px;
    text-align: left
}

.header-link a {
    padding: 0 10px;
    font-size: 14px;
    line-height: 2.2;
    color: #fff;
}

.header-link {
    font-size: 5px;
}

.scroll .nav li.on>a:after,
.nav li:hover>a:after {
    opacity: 1;
}

.scroll .nav li a:hover {
    background-color: transparent;
}

.scroll .nav li>a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #f5a00a;
    opacity: 0;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}

.scroll .nav li>a i {
    position: absolute;
    right: 20px;
    width: 30px;
    height: 30px;
    background: url(../images/arrow2.png) center center no-repeat;
    display: block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-100%)
}

.sub a {
    padding: 5px 40px;
    display: block;
    text-align: left;
    font-size: 16px;
    color: #fff;
    line-height: 36px;
    position: relative;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear
}

.sub a:hover {
    text-decoration: underline
}

.scroll .nav li.on>a:after,
.nav li:hover>a:after {
    opacity: 1
}

.scroll .nav li.on>a i {
    background-image: url(../images/arrow1.png);
}

.scroll .nav>li>a:focus {
    background-color: transparent;
}

.sj_header_r {
    display: none;
}

.sj_header_r i {
    color: #ffff;
    font-size: 30px;
    cursor: pointer;
}

@media all and (max-width:1600px) {
    .wrap {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }

    .con6 .service .service-con .service1 {
        float: left;
        margin-right: 40px;
    }

    .con6 .service {
        width: 75%;
    }
}

@media all and (max-width:1400px) {
    .con6 .service {
        width: 100%;
    }

    .con6 .service .service-con .service1 {
        float: left;
        margin-right: 75px;
    }

    .info {
        width: 100%;
    }

    .info .info-con {
        display: flex;
        justify-content: space-around;
    }

    #footer .foot_m span {
        margin-right: 10px;
    }

}

@media all and (max-width:1300px) {
    .con5 .list ul li a h3 {
        width: 65%;
    }

    #footer .foot_r div.vx {
        margin-left: 25px;
    }

    #footer .foot_r div {
        width: 6vw;
    }

    .foot_l {
        width: 28vw;
    }
}

@media all and (max-width:1200px) {
    .list ul li {
        padding: 16px 0;
    }

    .list ul li a h3 {
        width: 75%;
    }

    ._thum {
        height: 405px;
    }

    .content_l .news .title {
        padding-left: 20px;
    }

    .list ul li a time {
        padding: 4px 5px;
    }

    .tit .top h1 {
        font-size: 28px;
    }

    .con6 .service .service-con .service1 {

        margin-right: 25px;
    }

    #footer .foot-con {
        display: flex;
        flex-direction: column;
    }

    .foot_l {
        width: 100%;
    }

    .foot_m {
        width: 100%;
        margin-top: 20px;
    }

    .foot_r {
        position: absolute;
        top: 30%;
        right: 5%;
    }

    #footer .foot_r div {
        width: 90px;
    }
}

@media all and (max-width:999px) {
    #header .header_r {
        display: none;
    }
    .header-r {
        padding: 80px 0 0;
    }
    .sj_header_r {
        display: block;
    }
    .sj_header_r  .ri-search-line{
        margin-right: 5px;
    }
    #header>.nav {
        display: none;
    }

    .content_l {
        width: 100%;
    }

    .content_r {
        width: 100%;
        margin-top: 30px;
    }

    ._thum {
        height: auto;
    }

    ._thum img {
        height: auto;
        object-fit: contain;
    }

    .list ul li a h3 {
        width: 85%;
    }

    .con5 .con55 {
        display: flex;
        flex-direction: column;
    }

    .con5 .content_l,
    .con5 .content_m,
    .con5 .content_r {
        width: 100%;
    }

    .con5 .list ul li a h3 {
        width: 85%;
    }

    .con5 .content_m {
        margin-top: 30px;
    }

    .con6 .service .service-con1 .service1 dl {
        display: flex;
        flex-wrap: wrap;
    }

    .con6 .service .service-con1 .service1 dl dd {
        margin-right: 10px;
    }

    .con6 .service .service-con1,
    .con6 .service .service-con2 {
        width: 100%;
    }

    .con6 .service .service-con .service1 {
        margin-right: 40px;
    }

    .con6 .service .service-con .service1 dl dd {
        font-size: 14px;
        line-height: 20px;
    }

    .con6 .service .service-con2 .service1 {
        float: left;
        width: 45%;
    }


    .con6 .service .service-con .service1 {
        margin-right: 30px;
    }

    .con6 .service .service-con1 .service1 dl dd {
        margin-right: 8px;
    }

    .info .info-con {
        display: flex;
        justify-content: flex-start;
        padding-right: 15px;
    }

    .info .info-con dl {
        padding-left: 20px;
    }

    .info .info-con dl dd {
        font-size: 15px;
    }

    .con5 .list ul li a h3 {
        width: 80%;
    }

    .info .info-con dl dt {
        font-size: 19px;
    }
}

@media all and (max-width:850px) {
    #footer .foot_r {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .con6 .service .service-con2 .service1 {
        width: 45%;
        margin-right: 0;
    }
    .list ul{
        height: auto;
        max-height: 304px;
        overflow: hidden;
    }

@media all and (max-width:750px) {
    .list ul li a h3 {
        width: 80%;
    }

    .search-box {
        width: 40vw;
        left: 50%;
    }

    #header .header_con {
        padding: 15px 0;
    }
    .con6 .service .service-con2 .service1:nth-child(even) {
        margin-right: 10%;
    }


}

@media all and (max-width:650px) {
    .header_l {
        width: 300px;
    }

    .info .info-con {
        display: flex;
        flex-direction: column;
    }
    .tit .top h1 {
        font-size: 18px;
    }
   .con6 .service .service-con .tit .top h1{
        font-size: 18px;
    }

@media all and (max-width:600px) {
    .header_l {
        width: 300px;
    }
    .header-r {
        padding: 70px 0 0;
    }
    .top-hr2{
        top:32px;
    }

    .cal1 {
        /* font-size: 28px; */
        /* margin-top: -7px; */
    }
    .list ul li a h3 {
        width: 75%;
    }

    .con5 .list ul li a h3 {
        width: 75%;
    }

    #footer .foot_m span {
        margin-right: 5px;
    }

    #footer {
        font-size: 15px;
    }
    .sj_header_r{
        display: flex;
    }
    .search-box{
        width: 35vw;
        left: 60%;
    }
    .top-hr-1{
        width: 300px;
    }
}

@media all and (max-width:480px) {
    .list ul li a h3 {
        width: 68%;
    }
    .cal1 {
        /* font-size: 28px; */
    }
    .list ul {
        height: auto;
        max-height: 285px;
        overflow: hidden;
    }
    .top-hr2 {
        /* margin-top: 27px; */
    }
.tit .top h1 {
        font-size: 17px;
    }
   .con6 .service .service-con .tit .top h1{
        font-size: 17px;
    }
    .con5 .list ul li a h3 {
        width: 68%;
    }
    .con6 .service .service-con .service1 dl dt{
        font-size:16px;
    }
    .list ul li {
        padding: 15px 0;
        font-size: 15px;
    }

    #footer {
        font-size: 14px;
    }
    .sj_header_r i{
        font-size: 25px;
    }
    .content_l .news .title span{
        font-size: 15px;
        padding-top: 8px;
    }
    .header_l , .top-hr-1{
        width: 290px;
    }
}
@media all and (max-width:400px) {
    .tit .top h1 {
        font-size: 17px;
    }
     .cal1 {
        /* font-size: 26px; */
    }
   .cal {
        width: 30px;
        height: 30px;
    }
    .top-hr2 {
        top: 35px;
    }
    .top-hr2 {
        /* margin-top: 11px; */
    }
    .content_r{
        margin-top: 20px;
    }
    .tit{
        margin-bottom: 20px;
    }
    .header_l , .top-hr-1 {
        width: 230px;
    }
    .content_l .news .title span{
        width: 75%;
    }
    .search-box{
        width: 35vw;
        left: 68%;
    }
}