| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .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;
- }
- }
- .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;
- }
- }
- }
- }
|