﻿@charset "utf-8";
/* CSS Document */

.user-list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
}

    .user-list .user .img {
        display: block;
        text-align: center;
    }

    .user-list .user img {
        max-width: 100%;
    }

.aequilate-user-list .user {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
}

    .aequilate-user-list .user .img {
        height: 7rem;
        overflow: hidden;
        text-align: center;
        display: box;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -o-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        -o-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center;
    }

    .aequilate-user-list .user .info {
        flex: 1;
    }

.user-list .user .info {
    padding: .5rem;
 padding-bottom:2.9rem;
}

    .user-list .user .info .username {
        color: #6a7780;
        font-size: 1rem;
        word-break: break-all;
    }

    .user-list .user .info .coupons {
        color: #6a7780;
        font-size: .8rem;
    }

.search-user {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    height: 2.4rem;
    line-height: 2.4rem;
    border-radius: 2.4rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

    .search-user input {
        border: none;
        padding-left: .5rem;
        outline: none;
    }

        .search-user input::-webkit-input-placeholder {
            color: #C5D5DF;
        }

.group-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.rule-panel {
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    padding: .5rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: .5rem;
    margin-bottom: 1rem;
    color: #6A7780;
}

    .rule-panel .title {
        border-bottom: 1px solid #eaeaec;
        padding-bottom: .3rem;
        margin-bottom: .5rem;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: box;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        -o-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        -o-align-items: center;
        align-items: center;
        -webkit-box-pack: space-between;
        -moz-justify-content: space-between;
        -webkit-justify-content: space-between;
        -ms-justify-content: space-between;
        -o-justify-content: space-between;
        justify-content: space-between;
    }

        .rule-panel .title .icon-remin {
            margin-right: .2rem;
        }

        .rule-panel .title .text {
            font-size: 16px;
        }

        .rule-panel .title .more {
            color: #6A7780;
            display: box;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-direction: normal;
            -webkit-box-orient: horizontal;
            -moz-flex-direction: row;
            -webkit-flex-direction: row;
            -ms-flex-direction: row;
            -o-flex-direction: row;
            flex-direction: row;
            -webkit-box-align: center;
            -moz-align-items: center;
            -webkit-align-items: center;
            -ms-align-items: center;
            -o-align-items: center;
            align-items: center;
            -webkit-box-pack: flex-start;
            -moz-justify-content: flex-start;
            -webkit-justify-content: flex-start;
            -ms-justify-content: flex-start;
            -o-justify-content: flex-start;
            justify-content: flex-start;
        }

            .rule-panel .title .more .text {
                font-size: 12px;
                margin-right: .2rem;
            }

    .rule-panel .content {
        max-height: 12.5rem;
        overflow: hidden;
    }


.user-list .user {
    /*background-color:rgba(0,0,0,0.1);*/
background:#fff;
    width: 48%;
    border-radius: .5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

    .user-list .user .number {
        text-align: center;
        color: #fff;
        background: #ff6a6a;
        border-bottom-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
        padding: 0 .2rem;
        height: 1.2rem;
        width: 2.6rem;
        line-height: 1.2rem;
        position: absolute;
        top: 0;
        left: 1rem;
        opacity: .7;
    }

.group-nav a {
    background-color:#ff6a6a;
    border-radius: 5px;
    color: white;
}

    .group-nav a.active {
           background-color:#ff6a6a;
    border-radius: 5px;
    color: white;
    }

.fl {
    float: left;
}

.fr {
    float: right;
}
/*添加*/
ul.user-list .user {
    width: 100%;
}

ul.user-list {
    height: auto;
    overflow: hidden;
}

.wall {
    display: block;
    position: relative;
}

.wall-column {
    display: block;
    position: relative;
    width: 50%;
    float: left;
    padding: 0 2%;
    box-sizing: border-box;
}

.page {
    text-align: center;
    display: flex;
    align-self: center;
    justify-content: center;
}

    .page a {
        display: inline-block;
        vertical-align: middle;
        padding: 0 10px;
        border: 1px solid #e2e2e2;
        height: 28px;
        line-height: 23px;
        margin: 0 -1px 5px 0;
        background: #fff;
        color: #333;
        font-size: 12px;
    }

        .page a.active {
            background: #ff4040;
            color: #fff;
        }

    .page span {
    }

.laypage-total {
    padding-left: 10px;
    font-size: 12px;
    color: #999;
    background: #fff;
    font-weight: 400;
    height: 28px;
    line-height: 28px;
    border: none;
}

    .laypage-total input {
        margin-top: -3px;
        height: 26px;
        width: 50px;
        border: 1px solid #e2e2e2;
        box-sizing: border-box !important;
        text-align: center;
        outline: none;
        background: #fff;
    }

    .laypage-total button {
        height: 26px;
        margin-left: 5px;
        line-height: 26px;
        background: #fff;
        outline: none;
        border: 1px solid #e2e2e2;
        box-sizing: border-box !important;
    }

.hdrule-icn {
    margin-right: 5px;
}

.hdrule-more {
    margin-left: 5px;
}
/*添加*/
.user-list .user .user-pic {
    height: 9rem;
    overflow: hidden;
    display: block;
    text-align: center;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-align-items: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.nomore {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.wrap {
    width: auto;
    max-width: 362px;
    margin: 0 auto;
    margin-bottom: 10px;
}
/***************分页******************/
.fenye {
    text-align: center;
    margin-top: 10px;
}

    .fenye ul {
        float: left;
        margin-left: 73px;
    }

        .fenye ul li {
            float: left;
            background: #fff;
            margin-left: 5px;
            padding: 4px 6px;
            border: 1px solid #ccc;
            font-weight: bold;
            cursor: pointer;
            color: #999;
        }

            .fenye ul li a {
                color: #999;
            }

            .fenye ul li.xifenye {
                text-align: center;
                float: left;
                position: relative;
                cursor: pointer;
            }

            .fenye ul li .xab {
                float: left;
                position: absolute;
                width: 39px;
                border: 1px solid #ccc;
                height: 123px;
                overflow-y: auto;
                overflow-x: hidden;
                top: -125px;
                background-color: #fff;
                display: inline;
                left: -1px;
                width: 50px;
            }

                .fenye ul li .xab ul {
                    margin-left: 0;
                    padding-bottom: 0;
                }

                    .fenye ul li .xab ul li {
                        border: 0;
                        padding: 4px 0px;
                        color: #999;
                        width: 34px;
                        margin-left: 0px;
                        text-align: center;
                    }
