12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .box{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .area-text{
- background-color: #f77409;
- width: 100%;
- text-align: center;
- padding: 18rpx;
- color: #fff;
- font-size: 28rpx;
- }
- .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;
- }
|