1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .box{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .box .title{
- font-size:48rpx;
- font-family:PingFang SC;
- font-weight:bold;
- color:rgba(42,42,42,1);
- }
- .box .content{
- width: 80%;
- }
- .temporary{
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 15rpx 0;
- }
- .temporary text:nth-of-type(1){
- height: 2rpx;
- background:#DFDFDF;
- width: 30%;
- }
- .temporary text:nth-of-type(3){
- height: 2rpx;
- background: #DFDFDF;
- width: 30%;
- }
- .temporary text:nth-of-type(2){
- font-size:26rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(42,42,42,1);
- }
- .rule{
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .rule view{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .rule text{
- font-size:24rpx;
- font-family:PingFang SC;
- font-weight:400;
- color:#A3A3A3;
- padding: 20rpx 0rpx;
- }
- .dispatch{
- width: 100%;
- padding: 20rpx 0rpx;
- font-size:24rpx;
- font-family:PingFang SC;
- font-weight:400;
- color:#A3A3A3;
- display: flex;
- flex-direction: column;
- }
- .dispatch view{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .dispatch text{
- padding: 20rpx 0rpx;
- }
|