12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .house-item {
- width: 100%;
- padding: 30rpx;
- background: #fff;
- border-radius: 16rpx;
- box-sizing: border-box;
- position: relative;
- box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
- margin-bottom: 30rpx;
- }
- .house-item .house-level {
- position: absolute;
- top: 50rpx;
- right: 50rpx;
- color: #fa8c16;
- font-weight: bold;
- background: rgba(255, 255, 255, 0.7);
- width: 80rpx;
- text-align: center;
- height: 40rpx;
- line-height: 40rpx;
- border-radius: 40rpx;
- }
- .house-item .house-image {
- height: 400rpx;
- width: 100%;
- overflow: hidden;
- border-radius: 8px;
- }
- .house-item .title {
- font-size: 20px;
- font-weight: 600;
- padding: 20rpx 0 10rpx 0;
- }
- .house-item .space {
- font-weight: 300;
- color: #8c8c8c;
- }
- .house-item .tag {
- font-size: 24rpx;
- font-weight: 300;
- color: #8c8c8c;
- padding: 12rpx 0;
- }
- .house-item .pirce {
- color: #08979c;
- }
- .house-item .pirce .number {
- font-weight: 600;
- font-size: 48rpx;
- }
- .house-item .pirce .label {
- font-size: 24rpx;
- }
- .house-item .location {
- font-size: 24rpx;
- color: #8c8c8c;
- position: absolute;
- bottom: 40rpx;
- right: 40rpx;
- }
|