1234567891011121314151617181920212223242526272829303132333435363738 |
- .container{
- padding: 0 20rpx;
- }
- .cooperativeImgBox{
- position: static;
- left: 0;
- top: 0;
- z-index: 0;
- width: 100%;
- height: 400rpx;
- }
- .cooperativeImg{
- position: static;
- left: 0;
- top: 0;
- z-index: 0;
- width: 100%;
- height: 100%;
- }
- .itemBox {
- width: 100%;
- font-size: 50rpx;
- }
- .itemBox:nth-child(2n-1){
- background: #e4e4e4;
- }
- .itemBox:nth-child(2n){
- background: #eee;
- }
- .item{
- font-size: 30rpx;
- padding: 20rpx;
- /*width: 100%;*/
- /*background-color: #57f5a1;*/
- }
|