/*
 * 产权交易
 * autor: qianyuitng
 * date: 2021-10-11
 */

@charset "UTF-8";

.list {
    margin-left: -101px;
}

.item {
    width: 124px;
    height: 124px;
    margin-left: 101px;
    margin-bottom: 50px;
    background-color: #43dff6;
    border-radius: 24px;
    overflow: hidden;
}

.item:hover {
    box-shadow: 0 0 13px rgba(80, 84, 91, 0.29);
}

.item>a {
    display: block;
    height: 100%;
    padding-top: 14px;
    color: #fff;
    box-sizing: border-box;
}

.item-logo {
    width: 72px;
    height: 72px;
    line-height: 72px;
    margin: 0 auto;
    background: url("../images/subpage/circle_bg.png") center center repeat-x;
    background-size: auto 100%;
    border-radius: 50%;
    font-size: 0;
    -webkit-text-size-adjust: none;
    text-align: center;
}

.item-logo>img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

.item-name {
    line-height: 24px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 黄 */

.yellow {
    background-color: #f6c76d;
}

/* 绿 */

.green {
    background-color: #87dfbb;
}

/* 红 */

.red {
    background-color: #f6a489;
}

/* 紫 */

.purple {
    background-color: #b58ffb;
}