| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .inquiry_wrap {
- background-color: #f9fafb;
- // height: 100vh;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- .list_wrap {
- flex: 1;
- ::v-deep .uni-scroll-view {
- height: calc(100vh - 250rpx);
- }
- .list_item {
- margin: 0 20rpx;
- padding: 30rpx;
- background-color: #fff;
- border-radius: 20rpx;
- margin-bottom: 20rpx;
- box-shadow: 2px 2px 11px 1px #e7e7e7;
- .list_item_top {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- .top_left {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- .name {
- font-size: 32rpx;
- font-weight: bold;
- color: #111827;
- }
- .desc {
- font-size: 26rpx;
- color: #9ca3af;
- }
- }
- .top_right {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- .status {
- font-size: 24rpx;
- padding: 6rpx 12rpx;
- border-radius: 12rpx;
- border: 2rpx solid #2563eb;
- font-weight: 600;
- }
- .inquiry {
- color: #2563eb;
- background-color: #eff6ff;
- border-color: #dceafe;
- }
- .verification {
- color: #ed590e;
- background-color: #fff7ed;
- border-color: #fff2e2;
- }
- }
- }
- .imgs {
- margin: 20rpx 0;
- }
- .list_item_bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 26rpx;
- color: #9ca3af;
- font-weight: 550;
- .bottom {
- display: flex;
- align-items: center;
- gap: 8rpx;
- }
- }
- &:nth-of-type(1) {
- margin-top: 20rpx;
- }
- }
- }
- }
|