| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /* model.wxss */
- page{
- background-color: rgba(255, 255, 255, 1);
- }
- .infoText{
- margin-top: 20rpx;
- text-align: center;
- width: 100%;
- justify-content: center;
- }
- .centerText{
- margin-top: 100rpx;
- width: 100%;
- text-align: center;
- }
- /* --------------分割线------------- */
- picker-view{
- background-color: white;
- padding: 0;
- width: 100%;
- height: 380rpx;
- bottom: 0;
- position: fixed;
- }
- picker-view-column view{
- vertical-align:middle;
- font-size: 28rpx;
- line-height: 28rpx;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .animation-element-wrapper {
- display: flex;
- position: fixed;
- left: 0;
- top:0;
- height: 100%;
- width: 100%;
- background-color: rgba(0, 0, 0, 0.6);
- z-index: 25;
- }
- .animation-element {
- display: flex;
- position: fixed;
- width: 100%;
- height: 470rpx;
- bottom: 0;
- background-color: rgba(255, 255, 255, 1);
- }
- .animation-button {
- margin-top: 20rpx;
- top:20rpx;
- width: 400rpx;
- height: 100rpx;
- line-height: 100rpx;
- align-items:center;
- }
- .animation-element text{
- color: #999999;
- display: inline-flex;
- position: fixed;
- margin-top: 20rpx;
- height: 50rpx;
- text-align: center;
- line-height: 50rpx;
- font-size: 34rpx;
- font-family: Arial, Helvetica, sans-serif;
- }
- .left-bt{
- left: 30rpx;
- }
- .right-bt {
- right: 30rpx;
- }
- .line{
- display: block;
- position: fixed;
- height: 1rpx;
- width: 100%;
- margin-top: 89rpx;
- background-color: #eeeeee;
- }
|