48 lines
726 B
SCSS
48 lines
726 B
SCSS
.container {
|
|
padding: 0 40upx 162upx;
|
|
.title {
|
|
margin: 14px 0 15px;
|
|
}
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 40upx;
|
|
column-gap: 20upx;
|
|
margin-top: 40upx;
|
|
}
|
|
}
|
|
|
|
:deep(.uni-swiper-dot) {
|
|
height: 8upx;
|
|
width: 8upx;
|
|
border-radius: 4upx;
|
|
}
|
|
|
|
:deep(.uni-swiper-dot-active) {
|
|
height: 8upx;
|
|
width: 24upx;
|
|
}
|
|
|
|
.goods-name {
|
|
font-size: 40upx;
|
|
font-weight: 700;
|
|
color: rgba(51, 51, 51, 1);
|
|
padding: 36upx 0;
|
|
}
|
|
|
|
.goods-nav {
|
|
height: 146upx;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
box-sizing: border-box;
|
|
padding-top: 30upx;
|
|
padding-left: 40upx;
|
|
padding-right: 40upx;
|
|
padding-bottom: 50upx;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
} |