| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- .container {
- background-color: #f5f5f5;
- min-height: 100vh;
- .text-red {
- color: #ff0000;
- }
- .item {
- background-color: #fff;
- border-radius: 12rpx;
- padding: 24rpx;
- display: block;
- width: 375px;
- margin: 0 auto;
- margin-bottom: 20rpx;
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- .name {
- font-size: 32rpx;
- font-weight: bold;
- flex: 1;
- }
- .actions {
- display: flex;
- gap: 12rpx;
- .van-button {
- margin: 0;
- }
- }
- .statu {
- font-size: 24rpx;
- padding: 4rpx 12rpx;
- border-radius: 8rpx;
- }
- }
- .content {
- .row {
- display: flex;
- flex-wrap: wrap;
- margin-bottom: 12rpx;
- .exp {
- flex: 1;
- font-size: 26rpx;
- color: #666;
- line-height: 1.5;
- &.full-width {
- width: 100%;
- }
- }
- }
- }
- }
- .header {
- background-color: #f5f5f5;
- }
- .loading {
- text-align: center;
- color: #999;
- padding: 20rpx 0;
- font-size: 24rpx;
- }
- .no-more {
- text-align: center;
- color: #999;
- padding: 20rpx 0;
- font-size: 24rpx;
- }
- }
- .bottom-btn {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 20rpx;
- background-color: #fff;
- box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
- z-index: 999;
- .van-button {
- width: 100%;
- }
- }
- .footer {
- display: flex;
- justify-content: center;
- position: fixed;
- bottom: 0;
- width: 100vw;
- min-height: 130rpx;
- background-color: #fff;
- box-shadow: 0px -2px 6px 1px rgba(0, 0, 0, 0.16);
- .but {
- width: 690rpx;
- height: 90rpx;
- background: #FA8C16;
- border-radius: 16rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #FFFFFF;
- margin-top: 10rpx;
- }
- }
- .modal-content {
- padding: 20rpx;
- }
- .radio-group {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 20rpx;
- margin-bottom: 20rpx;
- }
- .radio-label {
- margin-right: 20rpx;
- font-size: 28rpx;
- color: #333;
- }
- .van-radio {
- margin-right: 32rpx;
- }
|