| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- .inquiry_wrap {
- background-color: #f9fafb;
- height: 100vh;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- .list {
- flex: 1;
- height: calc(100vh - 100rpx);
- ::v-deep .uni-scroll-view {
- height:100%;
- .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;
- }
- }
- // .uni-scroll-view-content{
- // height: calc(100% - 70px);
- // }
- }
- }
- }
|