.content{
    width: 1200px;
    margin: 60px auto;
    background-color: #fff;
    padding: 17px 27px;
    box-sizing: border-box;
}
.content .title{
    display: flex;
    border-bottom: 1px solid #d8d8d8;
    padding: 0 15px 17px 15px;
    align-items: center;
}
.content .title span{
    font-size: 20px;
    letter-spacing: 2px;
    flex: 1;
    font-weight: bold;
}
.info{
    padding: 40px 13px;
    box-sizing: border-box;
    display: flex;
}
.info .lbox{
    display: flex;
    flex-direction: column;
    margin-right: 25px;
}
.info .lbox img{
    width: 400px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: 0.25s;
}
.info .lbox span{
    background-color: #58BBC2;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
}
.info .rbox{
    flex: 1;
    font-size: 15px;
}
.info .rbox .sdesc{
    background-color: rgba(88,187,194,0.1);
    border: 1px solid #58BBC2;
    font-size: 15px;
    letter-spacing: 2.5px;
    color: #3d3d3d;
    padding: 12px 12px;
    line-height: 25px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.info .rbox .sdesc .more{
    color: #58BBC2;
    margin-left: 15px;
}
.info .rbox td{
    vertical-align: top;
    line-height: 25px;
    padding: 2px 0;
}
.info .rbox .btns{
    display: flex;
    justify-content: end;
    margin-top: 20px;
}
.info .rbox .btns a{
    background-color: #E76161;
    color: #fff;
    letter-spacing: 2px;
    font-size: 15px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-left: 10px;
}
.ititle{
    background-color: rgba(88,187,194,0.2);
    height: 42px;
    padding-left: 16px;
    font-size: 15px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.ititle .van-icon{
    font-size: 24px;
    margin-right: 5px;
}
.imgs{
    width: 1119px;
    display: flex;
    flex-wrap: wrap;
    margin: 24px auto 25px auto;
}
.imgs .img{
    width: 270px;
    height: 180px;
    overflow: hidden;
    margin-right: 13px;
    margin-bottom: 15px;
    cursor: pointer;
}
.imgs .img:nth-child(4n){
    margin-right: 0;
}
.imgs img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.35s;
}
.imgs img:hover{
    transform: scale(1.1);
}
.desc{
    line-height: 30px;
    font-size: 15px;
    letter-spacing: 2px;
    margin: 20px auto;
}
.desc img{
    max-width: 100%;
}
.jqssd span:hover{
    cursor: pointer;
    font-weight: bold;
}
.jqssd span:nth-child(1){
    color: #1e90ff;
    color: #2ecc71;
}
.jqssd span:nth-child(2){
    color: #ffa502;
    color: #3498db;
}
.jqssd span:nth-child(3){
    color: #2ed573;
    color: #9b59b6;
}

@media (max-width: 1440px){
    .container{
        width: 100vw;
    }
    .content{
        width: 100vw;
        flex-direction: column;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    .content .title{
        padding: 16px;
        width: 100%;
        box-sizing: border-box;
        background-color: #f4f4f4;
        border: none;
        flex-wrap: wrap;
    }
    .info{
        flex-direction: column;
        padding: 16px;
    }
    .info .lbox,
    .info .rbox{
        width: 100%;
        box-sizing: border-box;
    }
    .info .lbox img{
        width: 100%;
        height: calc(100% / 1.33);
    }
    .info .rbox .sdesc{
        border-top: none;
    }
    .info .rbox td{
        word-break: break-all;
    }
    .ititle span{
        visibility: hidden;
        display: none;
    }
    .imgs{
        width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        padding: 0 16px;
        margin: 24px 0 0 0;
    }
    .imgs .img{
        width: 47.5%;
        margin-right: 0;
        margin-bottom: 24px;
        height: calc(100% / 1.4);
    }
    .desc{
        margin-top: 8px;
        overflow: hidden;
        padding: 16px;
    }
    .desc p,
    .desc span,
    .desc strong{
        width: 100%;
        word-wrap: break-word;
        word-break: break-all;
        text-indent: 0 !important;
    }
    .desc img{
        max-width: 100% !important;
        text-indent: 0 !important;
    }
}