12345678910111213141516171819202122232425262728 |
- .healthy-card-component-entry {
- display: block;
- position: relative;
- background-color: #fff;
- }
- .healthy-card-component-entry * {
- box-sizing: border-box;
- }
- .healthy-card-component-entry .fill-center {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .healthy-card-component-entry .footer {
- height: 84rpx;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 10;
- color: #999;
- font-size: 30rpx;
- text-align: center;
- line-height: 84rpx;
- background-color: #F1F0F6;
- }
|