56 lines
950 B
Plaintext
56 lines
950 B
Plaintext
|
/**app.wxss**/
|
||
|
@import '/style/tool.wxss';
|
||
|
|
||
|
page {
|
||
|
font-family: -apple-system-font, "Helvetica Neue", sans-serif;
|
||
|
font-size: 26rpx;
|
||
|
color: #333;
|
||
|
line-height: 1.5;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
box-sizing: border-box;
|
||
|
padding-top: 32rpx;
|
||
|
}
|
||
|
|
||
|
page::after {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
z-index: -1;
|
||
|
display: block;
|
||
|
content: '';
|
||
|
width: 750rpx;
|
||
|
height: 80rpx;
|
||
|
background-color: #4385f5;
|
||
|
/* background: linear-gradient(90deg,rgba(95, 153, 252, 1),rgba(57, 125, 242, 1)); */
|
||
|
}
|
||
|
|
||
|
view {
|
||
|
-webkit-overflow-scrolling: touch;
|
||
|
}
|
||
|
|
||
|
scroll-view{
|
||
|
-webkit-overflow-scrolling:touch;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow-y: scroll;
|
||
|
overflow-x: hidden;
|
||
|
box-sizing: border-box;
|
||
|
background-color: #fff;
|
||
|
border-radius: 40rpx 40rpx 0 0;
|
||
|
}
|
||
|
|
||
|
/* 重置弹窗组件蒙层透明度 */
|
||
|
|
||
|
.van-transition {
|
||
|
background-color: rgba(0, 0, 0, 0.5) !important;
|
||
|
}
|
||
|
|
||
|
/* 已经到底了 */
|
||
|
.footer {
|
||
|
padding: 20rpx;
|
||
|
}
|