.main-container {
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 16px 0 40px 0;
    box-sizing: border-box;

    .router-box {
        display: flex;
        align-items: center;

        .normal-router {
            font-size: 14px;
            color: #666666;
        }

        .layui-icon {
            margin: 0 4px;
        }

        .last-router {
            color: #242424;
        }
    }

    .main-box {
        margin-top: 40px;

        .main-title {
            font-family: PingFang SC, PingFang SC;
            font-weight: 400;
            font-size: 28px;
            color: #242424;
        }

        .content-box {
            width: 100%;
            margin-top: 16px;
            border: 1px solid #EEEEEE;
            box-sizing: border-box;
            padding: 12px 24px;

            .content-item {
                padding: 20px 0;
                box-sizing: border-box;
                display: flex;
                align-items: center;
                border-bottom: 1px solid #EEEEEE;

                .set-top{
                    width: 40px;
                    height: 21px;
                    background: #E1251B;
                    border-radius: 1px 1px 1px 1px;

                    font-family: PingFang SC, PingFang SC;
                    font-weight: 400;
                    font-size: 14px;
                    color: #FFFFFF;
                    line-height: 21px;
                    text-align: center;
                }

                .dot {
                    width: 6px;
                    height: 6px;
                    border-radius: 50%;
                    background: #D8D8D8;
                }

                p {
                    font-family: PingFang SC, PingFang SC;
                    font-weight: 400;
                    font-size: 18px;
                    color: #333333;
                    margin-left: 10px;
                }
            }

            .content-item:hover {
                cursor: pointer;
                background: #E6F1FA;
                padding: 20px 16px;

                .dot {
                    background: #087CD6;
                }

                p{
                    color: #087CD6;
                }
            }
        }
    }
}
