/* */
.list>div {
    margin-bottom: 20px;
    padding: 20px 30px;
    background-color: #f4f4f4;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer
;}

.list>div>img {
    width: 100px;
    height: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 20px
;}

.list>div>div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
;}

.list>div>div>div>a:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 26px;
    font-weight: 700
;}

.list>div>div>div:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px
;}

.list>div>div>div:last-child>div {
    font-size: 14px;
    border: 1px solid #999;
    color: #666;
    margin-right: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 10px
;}

.list>div:hover {
    background: #215130;
    color: #fff
;}

.list>div:hover>div>div:last-child>div {
    font-size: 14px;
    border: 1px solid #fff;
    color: #fff
;}
