system.scss 3.82 KB
.head{
    ul{
        position: relative;
        .to_li {
            position: absolute;
            display: block;
            width: 40px;
            height: 5px;
            background: #C70009;
            border-radius: 49px 21px 0px 0px;
            bottom: -34px;
            left: 33.5%;
        }
    }
}
// 分类区域
.fen{
    width: 81.25rem;
    margin: 0 auto;
    // title区域
    .title{
        // float: left;
        font-size: 30px;
        font-family: Source Han Sans, Source Han Sans;
        font-weight: 900;
        color: #3D3D3D;
        line-height: 56px;
        display: flex;
        align-items: center;
        margin-top: 46px;
        &::before{
            content: "";
            display: inline-block;
            width: 6px;
            height: 56px;
            margin-right: 20px;
            background-color: #C70009;
        }
    }
    .two{
        width: 70rem;
        margin-left: 20px;
        font-size: 18px;
        font-family: Source Han Sans, Source Han Sans;
        font-weight: 400;
        color: #787878;
        line-height: 30px;
        margin-top: 21px;
    }
    // 下方分类框
     // 下方六个介绍框
     .info{
        width: 100%;
        // height: 550px;
        // margin-top: 28px;
        display: flex;
        justify-content: space-between;
        align-content: space-between;
        flex-wrap: wrap;
        div{
            width: 32.3%;
            height: 261.1px;
            // background-color: green;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            transition: linear all 500ms;
            border: 1px solid rgba(30,43,95,0.2);
            border-radius: 10px 10px 10px 10px;
            &:hover{
                background: url(../../imgs/system/bg.jpg) center center no-repeat ; 
                background-size: 100% 100%;
                box-shadow: 27px 21px 44px 0px rgba(24,35,80,0.18);
                background-blend-mode: multiply;
                span{
                    color: #FFFFFF;
                    &::before{
                        content: '';
                        display: inline-block;
                        width: 18px;
                        height: 18px;
                        background: url('../../imgs/home/info_new.png') center center no-repeat;
                        background-size: 100% 100%;
                        position: absolute;
                        left: -30px;
                        top: 50%;
                        transform: translateY(-50%);
                    }
                }
                p{
                    color: #FFFFFF;
                }
                div{
                    background: url('../../imgs/home/info_to_yellow.png') center center no-repeat;
                    background-size: 100% 100%;
                }
            }
            div{
                margin-left: 46px;
                width: 25px;
                height: 15px;
                background: url('../../imgs/home/info_to.png') center center no-repeat;
                background-size: 100%;
                border: none;
            }
            span{
                position: relative;
                margin-left: 46px;
                font-size: 24px;
                font-family: Source Han Sans, Source Han Sans;
                font-weight: 700;
                color: #000000;
                line-height: 46px;
               
            }
            p{
                margin-left: 46px;
                width: 316.21px;
                // height: 92px;
                font-size: 18px;
                font-family: Source Han Sans, Source Han Sans;
                font-weight: 500;
                color: #000000;
                line-height: 30px;
                margin-top: 30px;
            }
        }
    }
}