/**
 * 
 * 网站工具
 * v 1.02
 * zbb 
 */
/* 网页打开下拉效果 */

.ans_slideDown {
    position: relative;
    width: 100%;
    height: 0;
    transition: height 2s;
    transform: translateZ(0);
    /*硬件加速*/
    backface-visibility: hidden;
}

.ans_slideDown .slideDown_close {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 0 20px;
    /* border: 1px solid #fff; */
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
}

/* 网页打开下拉效果 end */

/* 网页浮窗 */
.webFloatBox {
    position: fixed;
    z-index: 99999;
}

.webFloatBox_img {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
}

.webFloatBox_close {
    position: absolute;
    right: -5px;
    top: -5px;
    width: 20px;
    height: 20px;
    color: #fff;
    background: rgb(199, 14, 14);
    font-size: 18px;
    font-style: normal;
    border-radius: 100%;
    text-align: center;
    line-height: 100%;
    cursor: pointer;
}

/* 网页浮窗 end */