| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .container {
- background-color: #f5f5f5;
- min-height: 100vh;
- .item {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 24rpx;
- margin-bottom: 20rpx;
- display: block;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.06);
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- .name {
- font-size: 34rpx;
- font-weight: 600;
- color: #1a1a1a;
- flex: 1;
- }
- .statu {
- font-size: 24rpx;
- padding: 6rpx 20rpx;
- border-radius: 8rpx;
- font-weight: 500;
- background-color: #fff;
- border: 2rpx solid;
- flex-shrink: 0;
- }
- }
- .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;
- }
- }
- /* 新建按钮样式 */
- .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;
- }
|