.c_index_card_box {
    height: auto;
    width: 250px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.c_index_card_box .image {
    height: 200px;
    width: 250px;
    border-top: 4px rgba(16, 140, 218, 1) solid;
}
.c_index_card_box .icon {
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
    background-color: #eee;
    position: relative;
    background-color: #f7f7f5;
}
.c_index_card_box:hover .icon {
    background-color: #108cda;
}
.c_index_card_box .icon .icon_image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    min-height: 50px;
    height: 50px;
}

.c_index_card_box .icon .icon_image_depicker {
    display: none;
}

.c_index_card_box .icon .icon_image_picker {
    display: block;
}

.c_index_card_box:hover .icon .icon_image_picker {
    display: none;
}

.c_index_card_box:hover .icon .icon_image_depicker {
    display: block;
}
.c_index_card_box .card {
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 190px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px #eee solid;
    position: relative;
    top: -50px;
    overflow: visible !important;
    transition: all 2s ease;
}

.c_index_card_box .card .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    z-index: 1;
    height: 40px;
    min-height: 40px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c_index_card_box .card .content {
    color: #999;
    overflow-wrap: break-word;
    width: 100%;
    margin-bottom: 10px;
    min-height: 120px;
    height: 120px;
    line-height: 24px;
    /* 五行超出部分省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.c_index_card_box .card .icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-40deg);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: rgba(25, 47, 93, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 100 !important;
    transition: all 1s ease;
}
.c_index_card_box:hover .card .title {
    color: #ffffff;
}
.c_index_card_box:hover .card {
    color: #fff;
    background-color: rgba(25, 47, 93, 1);
}
.c_index_card_box:hover .card .icon {
    background-color: rgba(16, 140, 218, 1);
    transform: translate(-50%, 50%) rotate(0deg);
}
.c_index_card_box:hover .card .content {
    color: #fff;
}
