@charset "utf-8"; 
/*浮动客服*/
.toolbar {
    position: fixed;
    top: 55%;
    right: 1%;
    /* margin-top: -45px; */
    z-index: 100;
    width: 55px;
}

.toolbar dd {
    position: relative;
    float: left;
    width: 55px;
    height: 55px;
    background: #1C9FA7;
    margin: 1px 0 0 0;
    /* border-radius: 5px; */
    color: #fff;
    font-size: 12px;
    /* line-height: 21px; */
    text-align: center;
    cursor: pointer;
    transition: all .5s;
	/* box-shadow: 0 2px 8px rgba(0,0,0,0.3); */
}

.toolbar dd:first-child {
    margin-top: 0;
}

.toolbar dd i {
    width: 100%;
    height: 30px;
    display: block;
    margin-top: 5px;
    background: url(../images/toolbar.png) no-repeat center 0;
}

.toolbar dd.qq i {
    background-position-y: 0;
}

.toolbar dd.tel i {
    background-position-y: -30px;
}

.toolbar dd.code i {
    background-position-y: -60px;
}

.toolbar dd.top i {
    background-position-y: -90px;
}

.toolbar dd span {
    display: block;
    color: #fff;
    text-align: center
}

.toolbar dd.tel .box {
    position: absolute;
    top: 0;
    width: 190px;
    right: -200px;
    height: 100%;
    margin-right: 10px;
    border-radius: 5px;
    background: #1C9FA7;
    opacity: 0;
    transition: all .5s;
    text-align: center
}

.toolbar dd.tel .box p {
    font-size: 14px;
    margin: 6px auto 3px;
    text-align: center
}

.toolbar dd.tel .box h3 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
	margin-block-start:0px;
}

.toolbar dd.tel .box:after {
    display: block;
    content: " ";
    border-style: solid dashed dashed dashed;
    border-color: transparent transparent transparent #1C9FA7;
    border-width: 9px;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: -18px;
    margin-left: -12px;
}

.toolbar dd.code .box {
    position: absolute;
    top: 0;
    /* width: 162px; */
    right: -172px;
    /* height: 162px; */
    margin-right: 10px;
    border-radius: 5px;
    background: #1C9FA7;
    opacity: 0;
    transition: all .5s;
}

.toolbar dd.code .box img {
    width: 150px;
    height: 150px;
    padding: 10px;
}

.toolbar dd.code .box:after {
    display: block;
    content: " ";
    border-style: solid dashed dashed dashed;
    border-color: transparent transparent transparent #1C9FA7;
    border-width: 9px;
    width: 0;
    height: 0;
    position: absolute;
    top: 30px;
    right: -18px;
    margin-left: -12px;
}

.toolbar dd:hover {
    background: #096e74;
}

.toolbar dd.tel:hover .box {
    opacity: 1;
    right: 80px;
}

.toolbar dd.code:hover .box {
    opacity: 1;
    right: 80px;
}

/* 移动端隐藏浮窗 */
@media screen and (max-width: 768px) {
    .toolbar {
        display: none;
    }
}