@charset "utf-8";

/* ouitline
------------------------------*/
.customer__head {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.categoryArticle__contTtl {
    width: 75%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.categorySelect {
    margin: 0 0 10px auto;
    display: flex;
    justify-content: flex-end;
}
    .categorySelect__item {
        height: 30px;
        width: 200px;
    }
    .category__bt {
        margin-left: 5px;
    }
        .category__bt a {
            width: 120px;
            height: 28px;
            font-size: 13px;
            background: #fff;
            border: 1px solid #bbb;
            display: flex;
            align-items: center;
            justify-content: center;
        }
.customer__wrap {
    padding: 20px 0;
}
    .customer__list {
        display: flex;
        flex-wrap: wrap;
    }
        .customer__list [class*="customer__item"] {
            width: 255px;
            box-shadow: 0 0 7px #ddd;
        }
        [class*="customer__item"]:not(:nth-child(4n+1)) {
            margin-left: 20px;
        }
        .customer__item {
            margin-top: 20px;
        }
            [class*="customer__item"] a {
                text-decoration: none;
            }
                .customer__img {
                    position: relative;
                }
                    .customer__link {
                        width: 255px;
                        height: 200px;
                        display: block;
                        position: relative;
                    }
                    .customer__img img {
                        width: 100%;
                        max-width: 280px;
                        max-height: 210px;
                        margin: auto;
                        position: absolute;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        left: 0;
                    }
                .customer__detail {
                    padding: 10px;
                }
                    .customer__name {
                        margin-bottom: 5px;
                        font-size: 18px;
                        font-weight: bold;
                        text-overflow: ellipsis;
                        overflow: hidden;
                        white-space: nowrap;
                    }
                    .customer__comment {
                        height: 40px;
                        font-size: 14px;
                        color: #777;
                    }

.customerList_conversion {
    margin-top: 40px;
}