
.content1{
    position: relative;
    .listBox{
        position: relative;
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        .listItem{
            position: relative;
            width: 18.5%;
            background: #FFFFFF;
            box-shadow: 0 5px 30px 0 rgba(0,0,0,0.05);
            .picBox{
                position: relative;
                width: 100%;
                .pic{
                    width: 100%;
                    display: block;
                }
                .black{
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    left: 0;
                    top: 0;
                    background: #000;
                    opacity: 0.5;
                }
                .icon{
                    position: absolute;
                    width: 88px;
                    height: 88px;
                    left: 50%;
                    top: 50%;
                    margin-left: -44px;
                    margin-top: -44px;
                }
            }
            .infoBox{
                padding-top: 30px;
                padding-left: 22px;
                padding-right: 22px;
                padding-bottom: 30px;
                .title{
                    font-weight: bold;
                    font-size: 20px;
                    color: #222325;
                    line-height: 32px;
                }
                .text{
                    font-size: 14px;
                    color: #727476;
                    line-height: 32px;
                    margin-top: 10px;
                    .txt{
                        span{
                            font-size: 10px;
                            color: #E60012;
                            margin-right: 10px;
                        }
                    }
                }
            }
        }
    }
}
@media (max-width: 991px) {
    .content1{
        .listBox{
            flex-wrap: wrap;
            .listItem{
                width: 48.5%;
                margin-bottom: 20px;
            }
        }
    }
}
@media (max-width: 767px) {
    .content1{
        .listBox{
            flex-wrap: wrap;
            .listItem{
                width: 48.5%;
                margin-bottom: 10px;
                .picBox{
                    .icon{
                        width: 66px;
                        height: 66px;
                        margin-left: -33px;
                        margin-top: -33px;
                    }
                }
                .infoBox{
                    padding: 30px 12px;
                    .title{
                        font-size: 15px;
                        line-height: 22px;
                    }
                    .bar{
                        height: 2px;
                        margin: 12px auto;
                    }
                    .text{
                        padding: 0;
                        font-size: 13px;
                        line-height: 30px;
                    }
                }
            } 
        }
    }
}

.content2{
    padding-top: 150px;
    padding-bottom: 150px;
    background: #F6F8FA;
    .listBox{
        .item{
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            .icon{
                width: 100px;
                height: 100px;
                display: block;
                margin-left: 88px;
            }
            .txtBox{
                margin-left: 119px;
                .t1{
                    font-weight: bold;
                    font-size: 30px;
                    color: #333436;
                }
                .t2{
                    font-weight: bold;
                    font-size: 24px;
                    color: #D1D3D5;
                    margin-top: 5px;
                }
                .t3{
                    font-size: 16px;
                    color: #515356;
                    line-height: 28px;
                    margin-top: 5px;
                }
            }
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
}
@media (max-width: 767px) {
    .content2{
        padding-top: 50px;
        padding-bottom: 50px;
        .listBox{
            .item{
                flex-wrap: wrap;
                justify-content: center;
                margin-bottom: 40px;
                .icon{
                    width: 90px;
                    height: 90px;
                    margin-left: 0;
                    margin-bottom: 20px;
                }
                .txtBox{
                    width: 100%;
                    margin-left: 0;
                    text-align: center;
                    .t1{
                        font-size: 22px;
                        line-height: 29px;
                    }
                    .t2{
                        font-size: 18px;
                        line-height: 22px;
                    }
                    .t3{
                        font-size: 14px;
                        line-height: 22px;
                    }
                }
            }
        }
    }
}