/* 中间内容 */
.leadbox{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    min-height: 450px;
    margin-bottom: 40px;
}
.imgbox{
    flex-shrink: 0;
    padding: 10px;
    box-sizing: border-box;
}
.imgbox img{
    width: 180px;
    height: 240px;
}
.imgbox span{
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #bd1a2d;
}
.infobox{
    flex-grow: 1;
    padding: 0 20px;
}
.infobox .infoitem{
    margin-top: 20px;
}
.infobox .infoitem .tag{
    padding: 0 10px;
    border-left: 3px solid #bd1a2d;
    font-weight: 600;
    font-size: 18px;
    color: #bd1a2d;
    line-height: 20px;
}
.infobox .infoitem .con{
    margin-top: 14px;
    line-height: 24px;
    font-size: 16px;
    display: block;
    /*padding-left: 20px;*/
    color: #333;
    box-sizing: border-box;
}
