| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .container {
- background-color: #f5f5f5;
- min-height: 100vh;
- .text-red {
- color: #ff0000;
- }
- .text-green {
- color: #52C41A;
- }
- .item {
- background-color: #fff;
- border-radius: 12rpx;
- padding: 24rpx;
- margin-bottom: 20rpx;
- display: block;
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- .name {
- font-size: 32rpx;
- font-weight: bold;
- }
- .statu {
- font-size: 24rpx;
- padding: 4rpx 12rpx;
- border-radius: 8rpx;
- background-color: #fff;
- border: 2rpx solid;
- }
- }
- .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;
- }
- }
- /* 开单按钮样式 */
- .create-order-button {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 10rpx 30rpx 20rpx;
- background-color: #fff;
- box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
- display: flex;
- justify-content: center;
- z-index: 999;
- }
- .create-btn {
- width: 355px;
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 8rpx !important;
- font-size: 32rpx;
- background-color: #3874F6;
- color: #fff;
- }
- /* 链接样式 */
- .link {
- color: #1890FF;
- text-decoration: underline;
- cursor: pointer;
- }
- .link:active {
- color: #096dd9;
- }
|