.top-title {
    background-color: #F5F5F5;
    display: flex;
    justify-content: space-between;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #FF2E63;
}

.top-title>h2 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 5px solid #FF2E63;
    line-height: 50px;
}

.is_dis {
    color: #FF2E63;
}

.is_show {
    display: none !important;
}

.top-title>ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-title>ul>li {
    width: 80px;
    text-align: center;
    font-size: 12px;
    list-style-type: none;
    border-right: 1px solid #CCCCCC;
    cursor: pointer;
}

.top-title>ul>li:last-child {
    border-right: none;
}

.main {
    width: 100%;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #E5EBF8;
    margin-bottom: 10px;
    position: relative;
}

.main>li {
    list-style-type: none;
    width: calc(25% - 15px);
    height: 180px;
    margin: 10px;
    cursor: pointer;
    position: relative;
}

.main>li:hover p {
    display: block;
    background: rgba(0, 0, 0, 0.5);
}

.main>li:nth-child(4n) {
    margin-right: 0;
}

.main>li:nth-child(4n+1) {
    margin-left: 0;
}

.main>li img {
    width: 100%;
    height: 180px;
}

.main li p {
    height: 180px;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    line-height: 24px;
    font-size: 14px;
    position: absolute;
    top: 0;
    display: none;
}

.li-item {
    width: 100%;
    font-size: 14px;
    color: #F5F5F5;
    position: absolute;
    bottom: 0px;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    padding: 0 10px 0 10px;
    box-sizing: border-box;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.li-item i {
    color: #FFC545;
}