.header {
    position: relative;
    text-align: center;
    color: #fff;
    height: 240px;
}

.header-div {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    margin-top: -48px;
}

.header-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

.header-txt {
    font-size: 18px;
}

.middle {
    width: 65%;
    margin: 25px auto;
}

.middle-search {
    background: #fff;
    padding: 20px 20px 2px;
    border-radius: 4px;
    box-shadow: 5px 0 15px #dfedfa;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.middle-total {
    line-height: 40px;
    margin-bottom: 10px;
}

.ellipsis-1 {
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.middle-total span {
    color: #409eff;
    margin: 0 10px;
}

.middle-data-div {
    background: rgba(255,255,255,0.9);
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 5px 0 15px #dfedfa;
    box-sizing: border-box;
    margin-bottom: 20px;
    color: #666673;
    cursor: pointer;
}

.middle-data-div:hover {
    box-shadow: 0 4px 12px 0 hsla(0,0%,60%,.5);
}
.middle-data-div:hover .middle-data-name {
    color: #409eff;
}

.middle-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.middle-data-flex {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.middle-data-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.middle-data-left {
    height: 60px;
}

.middle-data-name {
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 600;
}

.middle-data-tag {
    background: #f5f5f5;
    padding: 2px 10px;
    border-radius: 5px;
    margin-left: 15px;
}


