.recommend {
    width: 60%;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.logo img {
    width: 200px;
}

.card {
    background: #ffffff;
    box-shadow: 0 2px 2px rgba(84, 48, 132, 0.06);
    border-radius: 3px;
    margin-left: 2px;
    margin-right: 2px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all .2s;
    border: solid 1px #009688;
}

.card:hover {
    box-shadow: 9px 11px 2px rgba(84, 48, 132, 0.06);
}

.card .card-heading {
    overflow: hidden;
    margin-bottom: 7px;
    display: block;
    cursor: pointer;
    padding: 10px 18px 0;
    color: #333
}

.card .card-heading .card-icon {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    float: left;
    display: block
}


.card .card-heading .card-title {
    display: block;
    padding-left: 10px;
    font-weight: 700;
    font-size: 14px;
    color: inherit;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card .card-body {
    color: rgba(102, 102, 102, 0.55);
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 2px;
    padding-left: 9px;
}

.layui-tab-title li {
    padding: 0 10px;
    min-width: unset;
}

.searchBox {
    display: flex;
    justify-content: space-between;
}