37 lines
724 B
Plaintext
37 lines
724 B
Plaintext
.move-area{
|
|
background-color: var(--main-color);
|
|
border-radius: 12rpx;
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
.move-area .tips{
|
|
position: absolute;
|
|
/* right:120rpx; */
|
|
top:50%;
|
|
color: #000000;
|
|
font-size: 36rpx;
|
|
margin-top:-18rpx;
|
|
z-index: 0;
|
|
font-weight: 500;
|
|
transition-duration: .1s;
|
|
}
|
|
.move-area .tips.loading{
|
|
transition-duration: .4s;
|
|
left:110rpx;
|
|
}
|
|
|
|
.move-view{
|
|
background-color: #fff;
|
|
/* 为了精确定位width 用 px 单位 包括下面的 border*/
|
|
width: 92px;height:100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content:center;
|
|
border-radius: 12rpx;
|
|
border:2px solid var(--main-color);
|
|
z-index: 1;
|
|
box-sizing: border-box;
|
|
}
|
|
.move-view .icon{
|
|
width:56rpx;height:56rpx;
|
|
} |