.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.img {
    width: 100%;
    height: 700rpx;
    position: relative;
    z-index: -1;
    overflow: visible;
}

.bg {
    flex: 1;
    background-color: #fff;
}

.float-list-wrap,
.float-detail-wrap {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    height: 900rpx;
    animation: climbup .5s;
    width: 100%;
    z-index: 99;
    border-top: 1px solid #666;
    border-radius: 10rpx;
}

.float-title {
    text-align: center;
    padding: 20rpx 0;
}

.float-list-component,
.float-detail-component {
    height: 100%;
}

.float-list,
.float-detail {
    overflow-y: scroll;
    height: 700rpx;
    /* my-toolbar 有多高，这里就设多少 */
    margin-bottom: 90rpx;
}

.float-detail-close {
    float: right;
    padding: 20rpx;
}

.my-toolbar {
    position: fixed;
    margin-left: 0px;
    margin-bottom: 2px;
    bottom: 0;
    width: 100%;
    height: 90rpx;
    background-color: #fff;
    z-index: 999;
    font-size: 28.99rpx;
}

@keyframes climbup {
    /* 因为浮层块高度为800rpx */
    0% {
        height: 0;
    }

    25% {
        height: 200rpx;
    }

    50% {
        height: 400rpx;
    }

    75% {
        height: 600rpx;
    }

    100% {
        height: 900rpx;
    }
}