12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .content{
- background-color: #F2F2F2;
- padding: 20rpx;
- }
- Page {
- width: 100%;
- height: 100%;
- background-color: #F2F2F2;
- }
- .info{
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-around;
- align-items: center;
- background-color: #fff;
- height: 80rpx;
- border-radius: 10rpx;
- margin-bottom: 20rpx;
- }
- .info_left{
- display: flex;
- flex-flow: row nowrap;
- justify-content: flex-end;
- align-items: center;
- width: 150rpx;
- height: 60rpx;
- }
- .info_left_1{
- color: red;
- margin-right:10rpx
- }
- .info_left_2{
- font-size: 28rpx;
- }
- .info_right{
- min-width:500rpx;
- height: 60rpx;
- margin-left: 20rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- }
- .placeholder{
- font-size: 28rpx;
- color: #c2c6da;
- }
|