99 lines
1.5 KiB
Plaintext
99 lines
1.5 KiB
Plaintext
page {
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
|
|
/* tabs */
|
|
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 99;
|
|
}
|
|
|
|
.tabs {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
background: white;
|
|
padding: 15rpx 0;
|
|
font-size: 30rpx;
|
|
color: #9d9d9d;
|
|
}
|
|
|
|
.tabs-item {
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
}
|
|
|
|
.tabs-item.show {
|
|
color: #1d37e2;
|
|
border-bottom: solid 4rpx #1d37e2;
|
|
}
|
|
|
|
.list {
|
|
/* margin-top: 90rpx; */
|
|
}
|
|
|
|
.item {
|
|
position: relative;
|
|
background-color: #ffffff;
|
|
border-radius: 10rpx;
|
|
height: 200rpx;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.itemImg {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
border-radius: 10rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.itemCont {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
padding: 25rpx 230rpx 0 30rpx;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
|
|
.itemCont-name {
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.itemCont-name text {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.itemCont-text {
|
|
color: #999;
|
|
font-size: 26rpx;
|
|
margin: 15rpx 0 30rpx;
|
|
font-weight: 200;
|
|
}
|
|
|
|
.itemCont-see {
|
|
color: #999;
|
|
display: flex;
|
|
font-size: 26rpx;
|
|
font-weight: 200;
|
|
}
|
|
|
|
.itemCont-icon {
|
|
display: flex;
|
|
margin-right: 50rpx;
|
|
line-height: 26rpx;
|
|
}
|
|
|
|
.itemCont-icon image {
|
|
width: 26rpx;
|
|
height: 26rpx;
|
|
margin-right: 10rpx;
|
|
} |