You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
905 B
44 lines
905 B
@charset "UTF-8";
|
|
/* 页面左右间距 */
|
|
/* 文字尺寸 */
|
|
/*文字颜色*/
|
|
/* 边框颜色 */
|
|
/* 图片加载中颜色 */
|
|
/* 行为相关颜色 */
|
|
.collect-container__head .navigater {
|
|
position: relative;
|
|
}
|
|
.collect-container__head .navigater .back {
|
|
position: absolute;
|
|
left: 25rpx;
|
|
z-index: 9999;
|
|
}
|
|
.collect-container__head .navigater .back text {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
}
|
|
.collect-container__main {
|
|
position: relative;
|
|
z-index: 99;
|
|
}
|
|
.collect-container__main .content {
|
|
height: 100%;
|
|
}
|
|
.collect-container__main .content .box {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
.collect-container__main .content .box:after {
|
|
content: "";
|
|
width: 33%;
|
|
}
|
|
.collect-container__main .content .box .item {
|
|
width: 33%;
|
|
background-color: #ffffff;
|
|
margin-bottom: 5rpx;
|
|
}
|
|
.collect-container__main .content .box .item image {
|
|
height: 230rpx;
|
|
}
|
|
|
|
|