12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @import "/utils/styles/index.wxss";
- .item {
- /* height: 300rpx; */
- background-color: #fff;
- padding: 30rpx;
- margin-top: 22rpx;
- box-sizing: border-box;
- font-size: 26rpx;
- }
- .item image {
- width: 180rpx;
- }
- .icon {
- /* flex-basis: 30%; */
- position: relative;
- }
- .icon text {
- position: absolute;
- color: #fff;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .desc {
- flex-basis: 70%;
- }
- .desc text {
- color: #666;
- margin: 5rpx 0;
- }
- .title {
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- margin: 5px 0;
- }
|