#crumbs{
    width: 120rem;
}
.banner{
    width: 96%;
    height: 46rem;
    margin: 0 auto;
    background-image: url('/static/img/news-banner.jpg');
    background-size: 100% 100%;
    border-radius: 3rem;
}
.conten{
    width: 120rem;
    /* height: 100rem; */
    padding:0 10rem 10rem 10rem;
    box-sizing: border-box;
    margin: 5rem auto;
    background-color: white;
}
.conten .til{
    width: 100%;
    height: 20rem;
    padding-top: 8rem;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 1px dotted rgb(255, 75, 75);
}
.conten .til h1{

    font-size: 3rem;
}
.conten .til .time{
    position: absolute;
    bottom: 1rem;
    left: 50%;
    font-size: 1.4rem;
    color: #666;
    transform: translateX(-50%);
}
.jianje{
    width: 100%;
    font-size: 1.4rem;
    color: #333;
    line-height: 2.8rem;
    padding: 2rem 5rem;
    box-sizing: border-box;
}
.jianje p{
    margin-bottom: 2rem;
}
.batton{
    width: 100%;
    height: 6rem;
    /* margin-bottom: 10rem; */
    padding: 0 5rem;
    box-sizing: border-box;
    /* background-color: red; */
}
.batton p{
    width: 50%;
    height: 100%;
    font-size: 1.6rem;
    color: black;
    padding:0 2rem;
    text-align: left;
    box-sizing: border-box;
    border: 1px solid gainsboro;
    line-height: 6rem;
      text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;  

}
.batton p a{

    color: rgb(14, 13, 13);
}
.batton p:hover{
    background-color: rgb(100, 175, 237);
}

/* 锅炉导航 */
.bonav {
    width: 100%;
    height:10rem;
    line-height: 10rem;
    text-align: center;
    /* background-color: rgb(99,130,248); */
}

.bonav>span {
    font-size: 3rem;
}
/* 锅炉 */
.boiler {
    width: 1200px;
    height: 320px;
    display: flex;
    justify-content: space-between;
    margin: 1rem auto;
    /* background-color: rgb(99,130,248); */
}

.boilers {
    width: 24%;
    height: inherit;
    box-sizing: border-box;
    
    border: 1px solid rgb(226, 226, 226);
    transition: all 0.3s ease-in;
    background-color: rgba(204, 231, 248, 0.13);
}
.boilers:hover{
    border: 1px solid rgb(255,126,69);
    background-color: rgba(138, 206, 248, 0.548);
}
.boilers>div{
    background-color: white;
}
.boilers:hover>div>img{
    transform: scale(0.9    );
}
.boilers img {
    transition: all 0.3s ease-in;
    transform: scale(0.8);
    width: 100%;
    height: auto;
}

.boilers p {
    margin: 3rem 0;
    font-size: 2rem;
    padding-left: 3rem;
    position: relative;
    box-sizing: border-box;
}

.boilers p::after {
    content: '→';
    position: absolute;
    top: 0;
    right: 4rem;
    font-size: 2.5rem;
    color: rgb(105, 105, 105);
}

.boilers span {
    font-size: 1.2rem;
    padding-left: 3rem;
    /* box-sizing: border-box;   */
}