﻿ .title {
        position: relative;
        display: inline-block;
        margin-left: 40px;
        font-size: 16px;
        font-weight: 600;
        color: #222222;
        margin-top: 25px;
        margin-bottom: 6px;
    }

        .title::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 6px;
            z-index: -1;
            border-radius: 3px;
            background-color: #b6eccf;
            left: 0;
            bottom: 4px;
        }

    .filterWrapper {
        width: calc(100% - 80px);
        position: relative;
        display: inline-block;
        margin-right: 39px;
    }

        .filterWrapper .label {
            font-size: 14px;
            font-weight: 600;
            color: #222220;
            line-height: 24px;
            width: 70px;
        }

            .filterWrapper .label::before {
                content: '';
                position: relative;
                bottom: 3px;
                display: inline-block;
                width: 4px;
                height: 4px;
                border-radius: 2px;
                margin-right: 5px;
                background-color: #DA4F49;
            }

        .filterWrapper .list {
            width: calc(100% - 120px);
            transition: all 0.5s;
            height: 38px;
            overflow: hidden;
        }

        .filterWrapper .item {
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            display: inline-block;
            padding: 0 10px;
            line-height: 25px;
            text-align: center;
            border-radius: 12.5px;
            background-color: #f8f8f8;
            margin-bottom: 13px;
            margin-right: 8px;
            color: #222222;
        }

            .filterWrapper .item.active {
                background: #1b9853;
                color: #FFF;
            }

    .searchOrder a {
        font-size: 14px;
        line-height: 20px;
        color: #7b7f81;
    }

        .searchOrder a.active {
            color: #1b9853;
            font-weight: bold;
        }