123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .house-items {
- 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-items .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-items .house-image {
- height: 300rpx;
- width: 100%;
- overflow: hidden;
- border-radius: 8px;
- }
- .house-items .title {
- font-size: 32rpx;
- font-weight: 500;
- padding: 20rpx 0 10rpx 0;
- }
- .house-items .space {
- font-weight: 300;
- color: #8c8c8c;
- }
- .house-items .tag {
- font-size: 24rpx;
- font-weight: 300;
- color: #8c8c8c;
- padding: 12rpx 0;
- }
- .house-items .pirce {
- color: #08979c;
- }
- .house-items .pirce .number {
- font-weight: 600;
- font-size: 48rpx;
- }
- .house-items .pirce .label {
- font-size: 24rpx;
- }
- .house-items .house-btn {
- background: #08979c;
- height: 68rpx;
- text-align: center;
- line-height: 68rpx;
- color: #ffffff;
- border-radius: 68rpx;
- margin-top: 30rpx;
- }
|