| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .block-line>view {
- width: 50%;
- text-align: center;
- color: #fff;
- height: 200rpx;
- }
- .block-line:first-child>view:first-child {
- background: purple;
- }
- .block-line:first-child>view:last-child {
- background: red;
- }
- .block-line:last-child>view:first-child {
- background: blue;
- }
- .block-line:last-child>view:last-child {
- background: green;
- }
- .block-line>view>view:first-child {
- margin-top: 40rpx;
- margin-bottom: 30rpx;
- }
- .search {
- border: 1rpx solid grey;
- width: 80%;
- background: #fff;
- }
- .tabs {
- width: 100%;
- height: 100rpx;
- background: #fff;
- box-shadow: rgb(209, 206, 206) 5rpx 5rpx 10rpx
- }
- .tabs>view {
- width: 100rpx;
- height: 60rpx;
- }
|