123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**app.wxss**/
- page{
- width: 100%;
- height: 100vh;
- background-color: #20223b;
- --tips-btn: 1.05em;
- }
- .container {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
- .basePage{
- min-height: 100vh;
- width: 100vw;
- color: #bfcbd9;
- font-size: 14px;
- font-family: PingFang SC;
- padding-bottom: 2em;
- }
- .localCells {
- padding-left: 15rpx;
- position: relative;
- height: 40px;
- line-height: 40px;
- }
- .localCells::before{
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 5rpx;
- content: "";
- height: 1em;
- background-color: #bfcbd9;
- }
- .subTitle{
- font-size: 12px;
- }
|