/*** 

====================================================================
	                                                                自定义样式
====================================================================

***/

/*  模块标题文案  */
.section-title {
    position: relative;
    font-weight: 500;
    color: #333333;
    user-select: none;
}

.section-title:before {
    content: '';
    position: absolute;
    left: 50%;
    /* 将伪元素的左边界置于容器的水平中心 */
    transform: translate(-50%, -50%);
    /* 使用transform属性将伪元素居中 */
    border-bottom: 3px solid #333333;
}
.section-chiltitle:before{
    border-bottom: 0px solid #333333 !important;
        
}
.section-chiltitle{
font-size: 24px !important;
}
.section-title-time {
    margin-top: 120px;
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    line-height: 33px;
    user-select: none;
}

/*  模块介绍文案  */
.section-text {
    font-weight: 400;
    color: #595757;
    user-select: none;
}

/*  模块查看更多按钮  */
.section-more-but {
    display: block;
    margin: 20px auto 0;
    width: 155px;
    height: 40px;
    color: #FFFFFF;
    background: #1B71EC;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    user-select: none;
    cursor: pointer;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.section-more-but:hover {
    color: #FFFFFF;
    background: #4f96fa;
}

.section-more-but-m {
    margin-top: 40px;
}

/*当屏幕尺寸小于760px时*/
@media (max-width: 767px) {
    .section-title {
        margin-bottom: 54px;
        font-size: 26px;
        line-height: 36px;
    }

    .section-title:before {
        bottom: -10px;
        width: 48px;
    }

    /*  模块介绍文案  */
    .section-text {
        margin-top: -20px;
        font-size: 14px;
        line-height: 20px;
    }
}

/*当屏幕尺寸大于768px时*/
@media (min-width: 768px) {
    .section-title {
        margin-bottom: 54px;
        font-size: 34px;
        line-height: 48px;
    }

    .section-title:before {
        bottom: -12px;
        width: 62px;
    }

    .section-title-answer:before {
        width: 220px !important;
        border-bottom: 3px solid #1a56de;
    }

    /*  模块介绍文案  */
    .section-text {
        margin-top: -20px;
        font-size: 14px;
        line-height: 20px;
    }
}

/*当屏幕尺寸大于1200px时*/
@media (min-width: 1200px) {
    .section-title {
        margin-bottom: 54px;
        font-size: 34px;
        line-height: 48px;
    }

    .section-title:before {
        bottom: -12px;
        width: 62px;
    }

    .section-title-answer:before {
        width: 220px !important;
        border-bottom: 3px solid #1a56de;
    }

    /*  模块介绍文案  */
    .section-text {
        margin-top: -20px;
        font-size: 14px;
        line-height: 20px;
    }
}