| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- .container {
- background-color: #f5f5f5;
- min-height: 100vh;
- }
- .header {
- width: 100%;
- }
- .list-item {
- margin-bottom: 24rpx;
- border-radius: 16rpx;
- overflow: hidden;
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.06);
- background-color: #fff;
- }
- .item {
- padding: 24rpx;
- transition: all 0.3s ease;
- &:active {
- background-color: #f9f9f9;
- }
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- .name-row {
- display: flex;
- align-items: center;
- flex: 1;
- overflow: hidden;
- margin-right: 16rpx;
- }
- .name {
- font-size: 34rpx;
- font-weight: 600;
- color: #1a1a1a;
- line-height: 48rpx;
- flex-shrink: 0;
- margin-right: 16rpx;
- }
- .storeno-tag {
- font-size: 24rpx;
- color: #999;
- line-height: 40rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .statu {
- font-size: 24rpx;
- padding: 6rpx 20rpx;
- border-radius: 8rpx;
- font-weight: 500;
- flex-shrink: 0;
- background-color: #fff;
- border: 2rpx solid;
- }
- }
- .content {
- width: 100%;
- margin-bottom: 8rpx;
- .row {
- display: flex;
- margin-bottom: 14rpx;
- flex-wrap: wrap;
- align-items: center;
- &:last-child {
- margin-bottom: 0;
- }
- }
- .exp {
- flex: 1;
- font-size: 26rpx;
- color: #666;
- line-height: 40rpx;
- margin-right: 24rpx;
- &.full-width {
- flex: none;
- width: 100%;
- margin-right: 0;
- }
- }
- }
- }
- /* 操作按钮区域 */
- .actions {
- display: flex;
- padding: 20rpx 24rpx;
- gap: 16rpx;
- background: linear-gradient(180deg, #fafbfc 0%, #f5f6f8 100%);
- border-top: 1rpx solid #eef0f3;
- flex-wrap: wrap;
- }
- /* 操作按钮基础样式 */
- .action-btn {
- flex: 1;
- min-width: 140rpx;
- height: 76rpx;
- border-radius: 38rpx;
- font-size: 26rpx;
- font-weight: 500;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- position: relative;
- overflow: hidden;
- letter-spacing: 1rpx;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.12);
- transition: transform 0.15s ease, box-shadow 0.15s ease;
- &:active {
- transform: scale(0.95);
- opacity: 0.9;
- }
- /* 编辑 */
- &.edit {
- background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
- box-shadow: 0 4rpx 14rpx rgba(37, 99, 235, 0.3);
- }
- /* 启用申请 */
- &.apply-enable {
- background: linear-gradient(135deg, #10b981 0%, #059669 100%);
- box-shadow: 0 4rpx 14rpx rgba(5, 150, 105, 0.3);
- }
- /* 停用申请 */
- &.apply-disable {
- background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
- box-shadow: 0 4rpx 14rpx rgba(217, 119, 6, 0.3);
- }
- /* 删除 */
- &.delete {
- background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
- box-shadow: 0 4rpx 14rpx rgba(220, 38, 38, 0.3);
- }
- }
- /* 新建按钮样式 */
- .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;
- }
|