.caseContent1{
    height: 4.5rem;
    background: no-repeat;
    background-size: 100% 4.5rem;
    padding-top: 40px;
}
.caseContent1-title1{
    font-size: 12px;
}
.caseContent1-titleLg{
    font-size: 40px;
    font-weight: bold;
}
.caseContent1-titleLg.red{
    color: #FF4D4F;
}
.caseContent1-titleLg.orange{
    color: #ED6C00;
}
.caseContent1-titleLg.yellow{
    color: #FFBC25;
}
.caseContent1-titleLg.blue{
    color: #3374FF;
}
.caseContent1-titleLg.blue2{
    color: #1890FF;
}
.caseContent1-title2{
    font-size: 22px;
    color: #ffffff;
}
.hangyeContent{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 相当于 1fr 1fr 1fr */
    grid-template-rows   : repeat(2, 1fr);
    /* fr单位可以将容器分为几等份 */
    grid-gap             : 15px;
    /* grid-column-gap 和 grid-row-gap的简写 */
    grid-auto-flow       : row;
}
.hangyeContent .hangyeBox{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hangyeBox img{
    width: 3rem;
    height: 1.7rem;
}
.problemContent{
    background: #FFF4E3;
    border: 1px solid #FFCC00;
    border-radius: 5px;
    padding: 0.2rem;
}
.problemContent .problem-item{
    display: block;
    border-bottom: 1px solid #F9C385;
    padding: 8px 0;
    color: #FE621F;
    font-size: 0.24rem;
}
.problemContent .problem-item:last-child{
    border-bottom: none;
}
.caseColor{
    color: #FE621F !important;
}
.caseLabel{
    margin-top: 10px;
}
.caseLabel img{
    width: 0.72rem;
    height: 0.72rem;
}
.caseLabel p{
    color: #6D6D6D;
}
.mr30{
    margin-right: 30px;
}
.basicBox{
    padding: 13px 8px 13px 10px;
    background: #FEFEFE;
    border: 1px solid #EEEEEE;
    display: flex;
    align-items: center;
    margin-bottom: 0.1rem;
}
.basicBox .leftImg{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.basicBox .line{
    width: 1px;
    height: 50px;
    opacity: 0.51;
    margin: 0 10px;
    background: #939292;
}
.basicBox .right>div{
    margin-left: 5px;
}
.basicBox .right>div p{
    margin-bottom: 5px;
}
.w90{
    width: 1.7rem;
}