mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
44 lines
723 B
Plaintext
44 lines
723 B
Plaintext
@import "dist/index.wxss";
|
|
|
|
page {
|
|
color: #333;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-family: 'PingFang SC', Helvetica, 'STHeiti STXihei', 'Microsoft YaHei', Tohoma, Arial, sans-serif;
|
|
}
|
|
|
|
.container {
|
|
background: #F9F9F9;
|
|
overflow: hidden;
|
|
min-height: 100vh;
|
|
box-sizing: border-box;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.container::before {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
content: ' ';
|
|
width: 100%;
|
|
height: 1rpx;
|
|
background-color: #e2e2e2;
|
|
z-index: 5;
|
|
}
|
|
|
|
.doc-title {
|
|
position: relative;
|
|
padding: 15px 0;
|
|
margin: 10px 15px;
|
|
line-height: 25px;
|
|
font-size: 25px;
|
|
color: #666;
|
|
}
|
|
|
|
.doc-description {
|
|
margin: 14px 0;
|
|
padding: 0 15px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
color: #666;
|
|
}
|