30 lines
490 B
Plaintext
30 lines
490 B
Plaintext
|
|
/* pages/cart/index.wxss */
|
||
|
|
.appointment-redirect {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
height: 100vh;
|
||
|
|
padding: 0 40rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.redirect-content {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.redirect-title {
|
||
|
|
font-size: 40rpx;
|
||
|
|
font-weight: bold;
|
||
|
|
margin: 30rpx 0 20rpx;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
|
||
|
|
.redirect-desc {
|
||
|
|
font-size: 28rpx;
|
||
|
|
color: #666;
|
||
|
|
margin-bottom: 60rpx;
|
||
|
|
text-align: center;
|
||
|
|
}
|