| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- .inquiry_wrap {
- background-color: #f9fafb;
- height: 100vh;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- overflow: hidden;
- .list_wrap {
- flex: 1;
- height: 100%;
- overflow: hidden;
- padding: 20rpx 0;
- ::v-deep .uni-scroll-view {
- height: 100%;
- }
- .list_item {
- margin: 0 20rpx;
- margin-bottom:20rpx;
- padding: 30rpx;
- background-color: #fff;
- border-radius: 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;
- display: flex;
- align-items: center;
- gap: 10rpx;
- }
- .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;
- }
- }
- }
- }
|