12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .content {
- padding: 0 30rpx;
- }
- .content .list .title {
- height: 100rpx;
- line-height: 100rpx;
- font-size: 36rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- }
- .content .list .box {
- display: grid;
- grid-gap: 20rpx 0rpx;
- grid-template-columns: repeat(1, 1fr);
- }
- .content .list .item {
- border-radius: 20rpx;
- background-color: #fff;
- overflow: hidden;
- box-sizing: border-box;
- }
- .content .list .item text {
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- .content .list .padding {
- padding: 16rpx 24rpx;
- }
- .content .list .item-msg {
- background: #FFF9F5;
- }
- .btm {
- height: 170rpx;
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- /* bottom: 56rpx; */
- background: #fff;
- /* padding: 0 28rpx; */
- }
- .btm-btn {
- width: 100%;
- height: 84rpx;
- font-size: 36rpx;
- color: #FFFFFF;
- margin: 0 40rpx;
- background: #FA7D22;
- border-radius: 42rpx;
- /* margin-top: 64rpx; */
- }
|