
.content{
    padding-top: 100px;
    padding-bottom: 100px;
    .textBox{
        position: relative;
        padding-left: 46px;
        padding-right: 46px;
        margin-left: 54px;
        margin-right: 54px;
        margin-bottom: 126px;
        .ml{
            position: absolute;
            width: 26px;
            height: 25px;
            display: block;
            left: 0;
            top: 0;
        }
        .text{
            font-size: 22px;
            line-height: 44px;
            color: #333436;
        }
        .mr{
            position: absolute;
            width: 26px;
            height: 25px;
            display: block;
            right: 0;
            bottom: 0;
        }
    }
    .contentBox{
        position: relative;
        margin-bottom: 30px;
        .pic{
            width: 100%;
        }
        .infoBox{
            position: absolute;
            width: 450px;
            left: 60px;
            top: 63px;
            .title{
                font-size: 36px;
                line-height: 50px;
                color: #394250;
                font-weight: bold;
            }
            .text{
                font-size: 15px;
                line-height: 32px;
                color: #4F5D72;
                font-weight: 300;
                margin-top: 15px;
            }
        }
        .button{
            position: absolute;
            left: 60px;
            bottom: 50px;
        }
    }
}

// 中等屏幕
@media (max-width: 1199px) {
    .content{
        .contentBox{
            .infoBox{
                .title{
                    font-size: 30px;
                    line-height: 34px;
                }
            }
        }
    }
}
// 小屏幕
@media (max-width: 991px) {
    .content{
        padding-top: 80px;
        padding-bottom: 80px;
        .textBox{
            margin-bottom: 80px;
            .text{
                font-size: 18px;
                line-height: 36px;
            }
        }
        .contentBox{
            .infoBox{
                width: 340px;
                left: 30px;
                top: 30px;
            }
            .button{
                left: 30px;
                bottom: 20px;
            }
        }
    }
}

@media (max-width: 767px) {
    .content{
        padding-top: 40px;
        padding-bottom: 50px;
        .textBox{
            padding-left: 28px;
            padding-right: 28px;
            margin: 0;
            margin-bottom: 40px;
            .text{
                font-size: 14px;
                line-height: 28px;
            }
            .ml, .mr{
                width: 18px;
                height: 17px;
            }
        }
        .contentBox{
            background: #F1F3F5;
            padding: 40px 20px;
            padding-bottom: 20px;
            &:last-child{
                margin-bottom: 0;
            }
            .infoBox{
                position: relative;
                width: 100%;
                left: auto;
                top: auto;
                .title{
                    font-size: 26px;
                    line-height: 34px;
                }
            }
            .button{
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 15px;
                margin-bottom: 15px;
            }
        }
    }
}