<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * @Author: 鏍囨⒌浜掑姩BiaoFun
 * @Date: 2024-01-18 12:15:36
 * @LastEditors: 鏍囨⒌浜掑姩BiaoFun
 * @LastEditTime: 2024-01-18 12:42:18
 * @Description: Sider 渚ц竟鏍忔牱寮忔枃浠�
 */
#sider {
    visibility: hidden;
    position: fixed;
    z-index: 20;
    /* width: 100px; */
    width: 60px;
    /*height: 360px;*/
    background: #fff;
    right: 20px;
    /* top: 50%; */
    bottom: -60px;
    opacity: 0;
    transform: translateY(-50%);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(200, 200, 200, 0.25);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 4px 7px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
#sider.show{
    visibility:visible;
    bottom: 60px;
    opacity: 1;

}
#sider .item{
    width: 100%;
    /* height: 88px; */
    border-bottom: 1px solid #019B50;
    display: block;
    cursor: pointer;
    position: relative;
}
#sider .item:last-child{
    border-bottom: none;
}
#sider .item .text{
    color: #333;
}
#sider .item .iconfont{
    font-size: 30px;
    color: #019b50;
    margin-right: 0;
}
#sider .item .qr-box{
    width: 150px;
    height: 150px;
    background: #fff;
    padding: 15px;
    position: absolute;
    top: -31px;
    left: 0;
    opacity: 0;
    transition: all .8s;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
}
#sider .item .qr-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#sider .call-me:hover .qr-box{
    left: -180px;
    opacity: 1;
}
#sider .item .qr-box:after{
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    left: 150px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%)
}

@media screen and (max-width:992px) {
    #sider{
        display: none;
    }
}</pre></body></html>