.bottom-pop-container {
    box-sizing: border-box;
    position: fixed;
    right: 24px;
    bottom: 16px;
    width: 424px;
    z-index: 1000;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0px 2px 12px 2px rgba(0, 0, 0, 0.08);
}
.bottom-pop-hide {
    display: none;
}
.bottom-pop-header {
    position: relative;
    box-sizing: border-box;
    height: 33px;
    padding: 6px 24px 0 24px;
    font-size: 14px;
    color: #333;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
    border-bottom: 1px #eee solid;
}
.bottom-pop-close {
    position: absolute;
    right: 20px;
    top: 6px;
    width: 24px;
    height: 24px;
}
.bottom-pop-close::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    width: 12px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.45);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}
.bottom-pop-close::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    width: 12px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.45);
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
}
.bottom-pop-content {
    padding: 10px 24px 16px 24px;
    font-size: 14px;
    color: #595959;
    letter-spacing: 0;
    text-align: justify;
    line-height: 22px;
    font-weight: 400;
}