123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- @import "../public-view.wxss";
- .item-bg {
- margin: -64rpx 20rpx 0rpx;
- display: flex;
- flex-direction: column;
- }
- /* item */
- .item {
- margin: 0rpx 0rpx 24rpx;
- height: 216rpx;
- background-color: white;
- border-radius: 8rpx;
- box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.03);
- display: flex;
- }
- .item>text {
- width: 96rpx;
- height: 96rpx;
- border-radius: 48rpx;
- background-color: #28AFF0;
- font-size: 30rpx;
- color: white;
- text-align: center;
- line-height: 96rpx;
- margin: auto 30rpx auto 48rpx;
- }
- .item>view:nth-child(2) {
- display: flex;
- flex-direction: column;
- }
- .item>view>view {
- margin-top: auto;
- margin-bottom: 6rpx;
- display: flex;
- }
- .item>view>view>text:first-child {
- font-size: 34rpx;
- color: #333333;
- font-weight: bold;
- margin-right: 20rpx;
- }
- /* .item>view>view>text:last-child {
- font-size: 22rpx;
- color: #FF5E5E;
- text-align: center;
- line-height: 32rpx;
- width: 100rpx;
- height: 32rpx;
- border-radius: 4rpx;
- border: 2rpx solid #FF5E5E;
- margin: auto 0rpx;
- } */
- .item>view>text {
- font-size: 28rpx;
- color: #808080;
- margin-bottom: auto;
- }
- .item>image {
- width: 48rpx;
- height: 48rpx;
- margin: auto 48rpx auto auto;
- }
- .item>view:nth-child(3), .item>view:nth-child(4) {
- width: 80rpx;
- height: 80rpx;
- display: flex;
- }
- .item>view:nth-child(3) {
- margin: auto 0 auto auto
- }
- .item>view:nth-child(4) {
- margin: auto 24rpx auto 0;
- }
- .item>view:nth-child(3)>image {
- margin: auto auto;
- width: 28rpx;
- height: 28rpx;
- }
- .item>view:nth-child(4)>image {
- margin: auto auto;
- width: 32rpx;
- height: 30rpx;
- }
- /* new-item */
- .new-item {
- height: 216rpx;
- background-color: white;
- border-radius: 8rpx;
- box-shadow: 0rpx 4rpx 8rpx rgba(0, 0, 0, 0.03);
- display: flex;
- }
- .new-item>image {
- width: 24rpx;
- height: 24rpx;
- margin: auto 14rpx auto auto;
- }
- .new-item>text {
- font-size: 30rpx;
- color: #3296FB;
- line-height: 216rpx;
- margin-right: auto;
- }
|