You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
720 B
42 lines
720 B
|
|
.go-top {
|
|
position: fixed;
|
|
bottom: 156rpx;
|
|
right: 24rpx;
|
|
width: 76rpx;
|
|
height: 76rpx;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
z-index: 16;
|
|
-webkit-transform: translateY(80rpx);
|
|
transform: translateY(80rpx);
|
|
opacity: 0;
|
|
transition: all .5s ease;
|
|
background: rgba(255, 255, 255, 0.7);
|
|
border: 1rpx solid #eee;
|
|
}
|
|
.go-top.top-show {
|
|
-webkit-transform: translateY(0);
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
.go-top .iconfont {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 76rpx;
|
|
height: 76rpx;
|
|
line-height: 76rpx;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* .go-top text {
|
|
display: inline-block;
|
|
color: #333;
|
|
font-size: 22upx;
|
|
margin-top: 38upx;
|
|
position: relative;
|
|
z-index: 10;
|
|
} */
|
|
|
|
|