1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- page{
- height: 100%;
- background: #F4F4F4;
- }
- .box{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .text1{
- font-size:32rpx;
- font-family:PingFang SC;
- font-weight:400;
- width: 82%;
- padding-top: 63rpx;
- }
- .text2{
- font-size:32rpx;
- font-family:PingFang SC;
- font-weight:400;
- width: 82%;
- padding: 32rpx 0rpx;
- border-bottom: 2rpx solid #D5D5D5;
- }
- .view1{
- display: flex;
- width: 82%;
- padding: 31rpx 0rpx;
- border-bottom: 2rpx solid #D5D5D5;
- justify-content: flex-start;
- }
- .view1 text{
- font-size:32rpx;
- font-family:PingFang SC;
- font-weight:400;
- }
- .view1 text:nth-of-type(1){
- width: 27%;
- }
- .view1 text:nth-of-type(2){
- width: 73%;
- }
- .view2{
- display: flex;
- justify-content: space-between;
- width: 82%;
- font-size:32rpx;
- font-family:PingFang SC;
- font-weight:400;
- /* color:rgba(255,71,71,1); */
- padding: 31rpx 0rpx;
- border-bottom: 2rpx solid #D5D5D5;
- }
- .text3{
- font-size:26rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(56,60,63,1);
- padding: 40rpx 0rpx;
- }
- .view3{
- width:100%;
- height:94rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size:36rpx;
- font-family:PingFang SC;
- font-weight:400;
- background: #ff0000;
- color: white;
- position: fixed;
- bottom: 0;
- left: 0;
- }
|