123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .data-house-list {
- padding: 30rpx;
- }
- .data-house-list .data-house-item {
- height: 200rpx;
- background: #fff;
- display: flex;
- align-items: center;
- border-radius: 16rpx;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- padding: 0 30rpx;
- margin-bottom: 30rpx;
- position: relative;
- }
- .data-house-list .hui-table-tag {
- position: absolute;
- bottom: 30rpx;
- right: 30rpx;
- }
- .data-house-list .image {
- width: 200rpx;
- height: 140rpx;
- border-radius: 8rpx;
- }
- .data-house-list .content {
- margin-left: 20rpx;
- flex: 1;
- width: 0;
- overflow: hidden;
- }
- .data-house-list .title {
- font-size: 32rpx;
- font-weight: 600;
- margin-bottom: 10rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .data-house-list .sub {
- font-weight: 300;
- font-size: 24rpx;
- margin-top: 10rpx;
- color: #8c8c8c;
- }
- .data-house-list .const {
- display: flex;
- align-items: center;
- }
- .data-house-list .const .const-item {
- display: flex;
- align-items: center;
- color: #8c8c8c;
- margin-right: 20rpx;
- }
- .data-house-list .const .text {
- margin-left: 6rpx;
- }
|