137 lines
2.4 KiB
Plaintext
137 lines
2.4 KiB
Plaintext
/**
|
|
* Web二雪
|
|
* 趁时光不老 努力活成自己想要成为的样子
|
|
*/
|
|
/* 滚动菜单 */
|
|
.scroll_menu {
|
|
background-color: #fff;
|
|
box-shadow: 0 0rpx 10px rgba(0, 0, 0, 0.1);
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.scroll-view_H {
|
|
white-space: nowrap;
|
|
color: #000;
|
|
}
|
|
|
|
.scroll-view-item {
|
|
height: 90rpx;
|
|
line-height: 90rpx;
|
|
}
|
|
|
|
.scroll-view-item_H {
|
|
display: inline-block;
|
|
width: 22%;
|
|
height: 90rpx;
|
|
line-height: 90rpx;
|
|
text-align: center;
|
|
border-bottom: solid 4rpx #fff;
|
|
}
|
|
|
|
.scroll_view_select {
|
|
border-bottom: solid 4rpx #378fff;
|
|
color: #378fff;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* 列表 */
|
|
|
|
.list_content {
|
|
margin: 20rpx;
|
|
border-radius: 10rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
justify-content: center;
|
|
padding: 20rpx;
|
|
background-color: #Fff;
|
|
box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.2);
|
|
position: relative;
|
|
}
|
|
|
|
.list_content .left {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
border-radius: 3rpx;
|
|
}
|
|
|
|
.list_content .right {
|
|
width: calc(100% - 160rpx);
|
|
padding: 0 0 20rpx 20rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.list_content .right .title {
|
|
margin-top: 10rpx;
|
|
width: 100%;
|
|
font-size: 30rpx;
|
|
color: #333;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.list_content .right .money {
|
|
margin-top: 30rpx;
|
|
width: 100%;
|
|
font-size: 34rpx;
|
|
color: #000;
|
|
font-weight: 600;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.list_content .right .money span {
|
|
color: #666;
|
|
font-weight: normal;
|
|
font-size: 24rpx;
|
|
margin-left: 10rpx;
|
|
}
|
|
|
|
.list_content .right .check {
|
|
margin-top: 10rpx;
|
|
font-size: 22rpx;
|
|
color: #fff;
|
|
background-color: #378fff;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
display: inline-block;
|
|
padding: 4rpx 20rpx;
|
|
border-radius: 30rpx;
|
|
}
|
|
|
|
.has_more {
|
|
color: #999;
|
|
font-size: 26rpx;
|
|
text-align: center;
|
|
padding: 30rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
padding-top: 30rpx;
|
|
}
|
|
|
|
.has_more image {
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.fixed {
|
|
position: absolute;
|
|
top: 36rpx;
|
|
left: 20rpx;
|
|
background-color: #ffcc00;
|
|
color: #4a1900;
|
|
border-radius: 0 20rpx 20rpx 0;
|
|
font-size: 20rpx;
|
|
padding: 2rpx 12rpx;
|
|
} |