@-moz-document url-prefix() {

}

.floating-share * { Box-sizing: Border-box }

.floating-share {
	display: none;
	position: fixed;
	left: 50%;
	margin-left: 350px;
	top: 130px;
	z-index: 999;	
	cursor: pointer;
}

.floating-share li {
	float: left;
	display: block;
	color: #fff;
	margin-top: 3px;
	margin-bottom: 3px;
	border-radius: 15px;
	border-top-left-radius: 60px;
	border-bottom-left-radius: 60px;
	border-top-right-radius: 60px;
	border-bottom-right-radius: 60px;
	overflow: hidden;
	clear: both;
	white-space: nowrap;
	padding: 8px;
	opacity: 1;
	text-align: right;
	font-family: arial;
}

.floating-share .btn-0 {
	background-image: url(/thisis/images/floater2/btn-0.png);
	background-repeat: no-repeat;
	background-color: #6a6a6a;
	background-position: left;
	border-right: 0px solid transparent;
	height: 38px;
	width: 38px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 14px

}


.floating-share .btn-1 {
	background-image: url(/thisis/images/floater2/btn-1.png);
	background-repeat: no-repeat;
	background-color: #d27d3c;
	background-position: left;
	border-right: 0px solid transparent;
	height: 38px;
	width: 38px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 14px
}

.floating-share .btn-2 {
	background-image: url(/thisis/images/floater2/btn-2.png);
	background-repeat: no-repeat;
	background-color: #424242;
	background-position: left;
	border-right: 0px solid transparent;
	height: 38px;
	width: 38px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 14px
}

.floating-share .btn-3 {
	background-image: url(/thisis/images/floater2/btn-3.png);
	background-repeat: no-repeat;
	background-color: #5b7079;
	background-position: left;
	border-right: 0px solid transparent;
	height: 38px;
	width: 38px;
	color: #fff;
	top: 0px;
	font-size: 13px;
	font-weight: bold;
	line-height: 14px
}

.floating-share .btn-4 {
	background-image: url(/thisis/images/floater2/btn-4.png);
	background-repeat: no-repeat;
	background-color: #4d6fa9;
	background-position: left;
	border-right: 0px solid transparent;
	height: 38px;
	width: 38px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 12px
}

.floating-share .btn-5 {
	background-image: url(/thisis/images/floater2/btn-5.png);
	background-repeat: no-repeat;
	background-color: #2fb8e6;
	background-position: left;
	border-right: 0px solid transparent;
	height: 38px;
	width: 38px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 12px

}

.floating-share .btn-6 {
	background-image: url(/thisis/images/floater2/btn-6.png);
	background-repeat: no-repeat;
	background-color: #e4463e;
	background-position: left;
	border-right: 0px solid transparent;
	height: 38px;
	width: 38px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 12px
}

.floating-share .btn-7 {
	background-image: url(/thisis/images/floater2/btn-7.png);
	background-repeat: no-repeat;
	background-color: #6292b2;
	background-position: left;
	border-right: 0px solid transparent;
	height: 38px;
	width: 38px;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	line-height: 12px
}


.floating-share .bar {
	background-image: url(/thisis/images/floater2/btn-bar.gif);
	background-repeat: no-repeat;
	background-position: left;
	border-left: 0px solid transparent;
	margin-left: 6px;
	height: 5px;
	width: 50px;
}

data-text {
	vertical-align: middle;
}

.floating-share-bottom, .floating-share-set {
    display: none;    
}

@media screen and (max-width:560px) {
    body {
        padding-bottom: 35px;        
    }

    @keyframes fadein2 {
        from {
            opacity:0;
        }
        to {
            opacity:.7;
        }
    }
    @-moz-keyframes fadein2 { /* Firefox */
        from {
            opacity:0;
        }
        to {
            opacity:.7;
        }
    }
    @-webkit-keyframes fadein2 { /* Safari and Chrome */
        from {
            opacity:0;
        }
        to {
            opacity:.7;
        }
    }
    @-o-keyframes fadein2 { /* Opera */
        from {
            opacity:0;
        }
        to {
            opacity: .7;
        }
    }    


    @keyframes fadein {
        from {
            opacity:0;
        }
        to {
            opacity:1;
        }
    }
    @-moz-keyframes fadein { /* Firefox */
        from {
            opacity:0;
        }
        to {
            opacity:1;
        }
    }
    @-webkit-keyframes fadein { /* Safari and Chrome */
        from {
            opacity:0;
        }
        to {
            opacity:1;
        }
    }
    @-o-keyframes fadein { /* Opera */
        from {
            opacity:0;
        }
        to {
            opacity: 1;
        }
    }    

    .floating-share-set {
        display: block;
        position: fixed;
        width: 100%;
        height: 45px;
        background-color: #eaeaea;
        bottom: 0;
        opacity: .7;
        z-index: 99998;

        animation: fadein2 3s;
        -moz-animation: fadein2 3s; /* Firefox */
        -webkit-animation: fadein2 3s; /* Safari and Chrome */
        -o-animation: fadein2 3s; /* Opera */        
    }

    .floating-share-bottom {
        position: fixed;
        bottom: 0;
        display: block;
        margin: 0 auto;
        padding: 0;
        left: 50%;
        margin-left: -154px;
        cursor: pointer;
        z-index: 99999;

        animation: fadein 2s;
        -moz-animation: fadein 2s; /* Firefox */
        -webkit-animation: fadein 2s; /* Safari and Chrome */
        -o-animation: fadein 2s; /* Opera */        
    }

    .floating-share-bottom li {
        float: left;
        color: #fff;
        border-radius: 5px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        overflow: hidden;
        margin-left: 3px;
        margin-right: 3px;
    }

    .floating-share-bottom .btn {
        background-repeat: no-repeat;
        background-color: #7e7e7e;
        background-position: left;
        border-right: 0px solid transparent;
        height: 38px;
        width: 38px;
        color: #fff;
        font-size: 15px;
        font-weight: bold;
    }


}