@charset "utf-8";

body {
    overflow: auto;
    overflow-x: hidden;
}
#footer {
    /* margin-top: 100px; */
}

.sub_container {
    padding:30px;
    border:1px solid #E0E0E0;
    border-radius:50px;
}

.cont + .cont {
    margin-top:60px;
}
.cont .cont_title {
    font-size:1.44rem;
    font-weight:700;
    text-align:center;
    position: relative;
    padding-top:36px;
}
.cont .cont_title::before {
    content:'';
    width:26px;
    height:24px;
    background-image:url(../img/layout/cont_title_point.png);
    background-repeat:no-repeat;
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
}

.dot_point {
    position: relative;
    padding-left:17px;
}
.dot_point::before {
    content:'';
    width:7px;
    height:7px;
    background-color:#757575;
    border-radius:999px;
    position:absolute;
    left:0;
    top:5px;
}


@media (max-width:991px) {
    .sub_container {
        padding:20px;
    }
}
@media (max-width:640px) {
    .sub_container {
        padding: 20px 10px;
        border-radius:30px;
    }
    .cont + .cont {
        margin-top: 40px;
    }
    #title .title .desc {
        height: 160px;
    }
}
@media (max-width:480px) {
    .cont .cont_title {
        font-size: 1.11rem;
    }
}