1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /**index.wxss**/
- @import '../../app.wxss';
-
- .bg {
- width: 100%;
- height: 0;
- position: relative;
- overflow: hidden;
- padding-bottom: 54%;
- background: #eee;
- z-index: 1;
- }
-
- .list {
- padding: 0 40rpx;
- position: relative;
- overflow: visible;
- z-index: 2;
- margin-top: -56rpx;
- }
-
- .list > view {
- width: 100%;
- position: relative;
- overflow: hidden;
- background: #fff;
- border-radius: 10rpx;
- margin-top: 20rpx;
- box-shadow: 0 0 20rpx 10rpx rgba(0, 0, 0, 0.05);
- padding: 30rpx 0;
- align-items: center;
- }
-
- .list > view:first-child {
- margin-top: 0;
- }
-
- .list > view text {
- line-height: 50rpx;
- font-size: 26rpx;
- color: #666;
- }
-
- .list > view image:first-child {
- width: 36rpx;
- display: inline-block;
- margin-left: 30rpx;
- margin-right: 15rpx;
- }
-
- .list > view image:last-child {
- width: 12rpx;
- display: inline-block;
- margin-right: 30rpx;
- }
-
- .tips {
- text-align: center;
- width: 100%;
- display: block;
- position: absolute;
- left: 0;
- bottom: 60rpx;
- font-size: 24rpx;
- line-height: 40rpx;
- color: #ccc;
- z-index: 1;
- }
|