html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #F7F7F7;
}

.container {
    background-color: #fff;

}

.container-header {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    padding-left: 10px;

}

.container-body {
    display: flex;
    border-top: 1px solid #dfdfdf;
    padding: 20px 10px 0 10px;
    /*justify-content: space-between;*/
    flex-direction: row;
    flex-wrap: wrap;
}

.container div {
    display: flex;
}

.item-block {
    position: relative;
    border: 1px solid #dfdfdf;
    flex-direction: column;
    height: 160px;
    width: 24%;
    margin-bottom: 20px;
    margin-right: 10px;
    transition: all .5s;
    overflow: hidden;
}


.item-block:hover {
    box-shadow: 0 4px 8px rgba(0,0,0, .2);
}

a:link {
    /* 超链接正常状态下的样式 */
    color: #000000;
    /* 黑色 */
    text-decoration: none;
    /* 无下划线 */
}

a:visited {
    /* 访问过的超链接 */
    color: #000000;
    /* 黑色 */
    text-decoration: none;
    /* 无下划线 */
}


.item-top {
    height: 80px;
    padding: 20px;
}

.item-logo {
    width: 60px;
    height: 60px;
    margin-right: 20px;

}

.item-logo img {
    width: 100%;
    height: 100%;

}

.item-body {
    flex-direction: column;
    width: 79%;
}

.item-bottom {
    height: 40px;
    justify-content: space-around;
    align-items: center;
    color: #888888;
    background-color: #F7F7F7;
    font-size: 13px;
}

.title {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
}

.notice {
    font-size: 12px;
    color: #888;
}

.divider {
    height: 20px;
    width: 1px;
    background-color: #dfdfdf;
}
