51 lines
922 B
CSS
51 lines
922 B
CSS
/**
|
|
* 顶部
|
|
*/
|
|
.points-user {
|
|
background-color: #fe3e28;
|
|
padding: 80rpx 0 100rpx 0;
|
|
}
|
|
.points-user .avatar {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
margin: 0 auto;
|
|
}
|
|
.points-user .desc {
|
|
color: #ffe7b2;
|
|
}
|
|
.points-user .login-submit {
|
|
color: #5eb95e;
|
|
background-color: #E4F3E4;
|
|
border-color: #d2e8d2;
|
|
}
|
|
.points-user-menu-submit {
|
|
border: 1px solid #ffd606;
|
|
color: #fae501;
|
|
top: 20rpx;
|
|
right: 20rpx;
|
|
padding: 6rpx 20rpx;
|
|
}
|
|
.points-user .share-submit {
|
|
bottom: 20rpx;
|
|
right: 20rpx;
|
|
color: #F37B1D;
|
|
background-color: #ffe5be;
|
|
border-color: #f8d093;
|
|
}
|
|
|
|
/**
|
|
* 商品列表
|
|
*/
|
|
.data-list .item {
|
|
width: calc(50% - 10rpx);
|
|
}
|
|
.data-list .item:nth-child(2n) {
|
|
float: right;
|
|
}
|
|
.data-list .item:nth-child(2n+1) {
|
|
float: left;
|
|
}
|
|
.data-list .item .goods-img {
|
|
width: 100%;
|
|
height: 380rpx !important;
|
|
} |