h1.title{
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: left;
    color: #111;
    font-size: 22px; 
    font-weight: 700;
    border-bottom: 1px solid #d9d9d9;
    position: relative;
    overflow: hidden;
}

h1.title::after {
    content: attr(data-title);
    height: 5px;
    background: #dd0404;
    position: absolute;
    left: 0;
    bottom: -1px;
    flex-shrink: 0;
    padding:0 6px;
}
h1.title a { 
    color: #111;
}

h2.title{
    width: 100%;
    line-height: 55px;
    font-size: 26px; 
    font-weight: 700;
    background-color: rgb(221, 4, 4);
    position: relative;
    overflow: hidden;
}
h2.title a { 
    color: #fff;
    padding-left: 10px;
}

.item{
    border: 1px solid #eeeeee;
    padding:15px;
    background: #fff;
}
.list{
    width:100%;
    padding:15px 0;
}
.list li{
    width: 100%;
    line-height: 54px;
    color: #333;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
}
.list li a{
    color: #333;
    padding-left: 10px;
    position: relative;
    display: inline-block;
    width: calc(100% - 0px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list li a::after{
    content: "▪";
    display: inline-block;
    color: #333;
    position: absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
}
.list li a:hover{
    color: #a00911;
}




/* 第一部分 */
.main{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 25px;
}
/* 轮播图 */
.main .lunbotu{
    width: 590px;
    height: 450px;
    position: relative;
    margin:0;
    background: #fff;
}
.main .lunbotu img{
    width: 100%;
    height: 450px;
    background: #ddd;
}

.main .lunbotu .swiper-btn{
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 50px;
    background-color: rgba(0, 0, 0, .2);
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    z-index: 9999;
    color: #FFF;
    font-size: 20px;
    line-height: 50px;
}

.main .lunbotu .swiper-btn svg{
    width: 100%;
    height: 100%;
}

.main .lunbotu .swiper-next{
    right:12px;
}
.main .lunbotu .swiper-prev{
    left:12px;
}



/* 右侧 */
.main .right{
    width: calc(590px - 32px);
    height: 420px;
    border: 1px solid #eeeeee;
    padding:15px;
    background: #fff;
}

.main .right .con{
    line-height: 1.8;
    padding:15px 0;
}
.main .right .con a{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}
.main .right .con p{
    line-height: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main .right .con span{
    color: #bbb;
    font-size: 12px;
}
.main .right .con b{
    font-size: 12px;
    color: #bbb;
    font-weight: 500;
}

.main .right .list1{
    width:100%;
    padding:0px 0;
}
.main .right .list1 li{
    width: 100%;
    line-height: 39px;
    color: #333;
    display: flex;
    justify-content: space-between;
}
.main .right .list1 li a{
    color: #333;
    padding-left: 10px;
    position: relative;
    display: inline-block;
    width: calc(100% - 95px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.main .right .list1 li a::after{
    content: "▪";
    display: inline-block;
    color: #333;
    position: absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
}
.main .right .list1 li a:hover{
    color: #a00911;
}
.main .right .list1 li span{
    color: #999;
}


/* banner */
.index_banner{
    height: 108px;
    margin-top: 30px;
}
.index_banner img{
    width: 100%;
    height: 100%;
}

.p2{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}
.p2 .item{
    width:31.5%;
    min-height: 300px;
}

.p3{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}
.p3 .item:first-child{
    width:66%;
}
.p3 .item:last-child{
    width:31.5%;
}

/* 关于我们 */
.p3 .item .con{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 20px;
}
.p3 .item .con img{
    width: 333px;
    height: 178px;
}

.p3 .item .con .text{
    font-size:14px;
    line-height: 2.2;
}

/* 联系我们 */
.company-info{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.company-info a{
    display: flex;
    padding-left: 27px;
    align-items: center;
}
.company-info a {

}
.company-info a:nth-child(1){
    background:url(../images/icon2.svg) no-repeat -171px 0;
    background-size: 100% 100%;
}
.company-info a:nth-child(2){
    background:url(../images/icon3.svg) no-repeat  -171px 0;
    background-size: 100% 100%;
}
.company-info a:nth-child(3){
    background:url(../images/icon4.svg) no-repeat  -171px 0;
    background-size: 100% 100%;
}







/* 媒体查询 */
@media only screen and (max-width: 1024px) {
    
}
@media only screen and (max-width: 768px) { 
    
    .toutiao{
        padding: 10px 0 10px;
    }
    .toutiao a{
        font-size: 0.7rem;
    }
    .main{
        flex-direction: column;
    }
    
    .main .lunbotu {
        width: 100%;
        height: 288px;
    }
    .main .lunbotu img {
        height: 288px;
    }
    .main .right {
        width: 100%;
        padding-top: 20px;
    }

    

    .tzh_title{
        font-size: 26px;
        margin-top: 20px;
        margin-bottom: 20px;
        letter-spacing: 0px;
        text-indent: 0px;
        font-size: 0.8rem;
    }
    .tzh_title::before{
        width: 130px;
    }
    .tzh_title::after{
        width: 130px;
    }
    .tzh_title h1{
        font-size: 0.8rem;
        letter-spacing: 0px;
        text-indent: 0px;
    }

    .tdftzh{
        flex-direction: column;
    }

    .tdftzh .left {
        width: 100%;
        flex-direction: column;
    }

    .tabs {
        width: calc(100% - 19px);
        height: auto;
        padding:9.5px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: flex-start;
        font-size:0.5rem;
    }
    .tabs a{
        padding: 6px 6px;
        display: inline-table;
        white-space: nowrap;
    }
    .tabs a br{
        display: none;
    }
    .tab-content{
        width: calc(100% - 30px);
        padding: 15px 15px;
    }
    .tab-content ul.active{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .tab-content ul li{
        width: 100%;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .tab-content ul li:nth-child(3){
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .tab-content ul li a{
        font-size:0.45rem;
    }

    .tdftzh .right {
        width: 100%;
    }

    .p3 .inner{
        flex-direction: column;
    }
    .p3 .inner>div {
        width: 100%;
    }

    .list li.img {
        height: auto;
    }
    .list li.img img {
        margin-right: 14px;
        float: left;
    }
    
}