@charset "UTF-8";

.soft-info{
    width: 100%;
    height: auto;
    margin: 6em 0;
    display: flex;
    align-items: center;
    @media (max-width: 850px){
        display: flex;
        flex-direction: column;
        margin: 4em 0;
    }
    .pic{
        img{
            width: 100%;
            max-width: 70%;
            display: block;
            margin-bottom: 0;
            margin: auto;
            @media (max-width: 850px){
                max-width: 100%;
                margin-bottom: 4em;
            }
        }
    }
    .info-list{
        text-align: left;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .item{
            display: flex;
            align-items: center;
            margin-bottom: 2em;
            transition: all .3s ease-in-out;
            &:last-child{
                margin-bottom: 0;
            }
            .icon{
                display: block;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: @color-black;
                color: @color-ff;
                font-size: 30px;
                text-align: center;
                line-height: 40px;
                cursor: pointer;
                margin-right: 10px;
                padding: 0;
            }
            .des{
                color: @color-black;
                margin-bottom: 0;
            }
            &:hover{
                .icon{
                    color: @color-ff;
                    background: @success;
                    transition: all .3s ease-in-out;
                }
                .des{
                    transition: all .3s ease-in-out;
                    color: @success;
                }
            }
        }
    }
    .item-btn{
        margin-top: 4em;
    }
}

.soft-system{
    height: auto;
    width: 100%;
    margin: 0;
    transition: all .3s ease-in-out;
    .soft-box{
        min-height: 350px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        transition: all .3s ease-in-out;
        @media (max-width: 850px){
            min-height: 100%;
        }
        .system-list{
            height: 150px;
            width: 88%;
            transition: all .3s ease-in-out;
            @media (max-width: 850px){
                height: auto;
                width: 100%;
                padding: 2em 0;
                background: @success;
            }
            li{
                img{
                    display: block;
                    width: 100%;
                    max-width: 100%;
                    margin: auto;
                    margin-bottom: 2em;
                    transition: all .3s ease-in-out;
                    @media (max-width: 850px){
                        margin-bottom: 2em;
                    }
                }
                .des{
                    color: @color-ff;
                    width: 80%;
                    margin: auto;
                }
            }
        }
        .box-bg{
            height: 240px;
            width: 90%;
            margin-left: 10%;
            background: @success;
            border-top-left-radius: 50px;
            transition: all .3s ease-in-out;
            @media (max-width: 850px){
                display: none;
                height: auto;
                width: 100%;
                margin-left: 0;
                border-radius: initial;
            }
        }
        .box-line{
            height: 240px;
            width: 86%;
            border: 2px dashed @success;
            border-radius: 50px;
            margin: auto;
        }
    }
}
.app{
    .soft-box{
        .system-list{
            width: 100%;
            @media (max-width: 850px){
                background: transparent;
            }
            li{
                img{
                    display: block;
                    width: 100%;
                    max-width: 60%;
                    margin: auto;
                    margin-bottom: 4em;
                    transition: all .3s ease-in-out;
                    @media (max-width: 850px){
                        margin-bottom: 2em;
                        max-width: 70%;
                    } 
                }
            }
        }
        .box-line{
            display: flex;
            justify-content: space-around;
            align-items:center;
            @media (max-width: 850px){
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 4em 0;
            } 
            li{
                &:nth-child(1),
                &:nth-child(2){
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    width: 25%;
                    @media (max-width: 850px){
                        width: 100%;
                    }
                    .icon{
                        font-size: 60px;
                        color: @success;
                    }
                }
            }
        }
    }
}
.soft-service{
    width: 86%;
    height: auto;
    margin: 6em auto;
    @media (max-width: 850px){
        width: 100%;
        padding: 2em 0;
    }
    .service-item{
        border-right: 1px solid @color-aa;
        &:last-child{
            border-right: 0;
        }
        @media (max-width: 850px){
            border-right: 0;
            padding-bottom: 4em;
            &:last-child{
                padding-bottom: 0;
            }
        }
        a{
            display: block;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .icon{
            font-size: 50px;
            color: @success;
            display: block;
            margin: 15px 0;
        }
        .icon-faq{
            &:before{
                content: "\e925";
            }
        }
        .icon-online{
            &:before{
                content: "\e926";
            }
        }
        .des{
            width: 50%;
            color: @success;
            margin: auto;
            @media (max-width: 850px){
                width: 100%;
            }
        }
    }
}
