/* 飘窗内容相关 */
.floatwindow {
    width: 565px;
    border-radius: 9px;
    position: absolute;
    z-index: 99;
    cursor: pointer;
    background: #65c5ff;
    padding: 2px 4px;
    right: 0;
    /* transition: all linear 0.1s; */
}

.floatwindow .tips-wrap {
    background-color: #fefefc;
    min-height: 175px;
    border-radius: 7px;
    border: 4px solid #22a7f4;
}

.floatwindow .tips-title {
    font-size: 30px;
    color: #eb5141;
    line-height: 22px;
    text-align: center;
    padding: 17px 15px 0 15px;
    font-weight: 600;
    margin: 0;
}

.floatwindow .content-warp {
    padding: 0 30px;
    margin-top: 12px;
}

.floatwindow .tips {
    text-indent: 2em;
    padding: 10px 5px 0 5px;
    color: #666666;
    font-size: 14px;
    line-height: 18px;
    border-top: 2px dashed #666666;
}

.floatwindow .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    border: solid 3px #44b6fc;
    border-radius: 50%;
    text-align: center;
    background: #fff url(https://gzsm.org.cn/js/static/modules/platform/themes/images/close.png) no-repeat;
    line-height: 22px;
    background-position: center center;
    background-size: 16px 16px;
    text-indent: -9999px;
}