| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- .brand_list_page {
- width: 100vw;
- // height: 100vh;
- display: flex;
- flex-direction: column;
- .brand_list {
- background-color: #fff;
- padding: 20rpx;
- flex-shrink: 0;
- .u-nav-slot {
- display: flex;
- align-items: center;
- gap: 10rpx;
- }
- .suggest_list {
- margin-top: 20rpx;
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- gap: 20rpx;
- .brand_item {
- display: flex;
- flex-direction: column;
- align-items: center;
- .brand_img {
- width: 100rpx;
- height: 100rpx;
- }
- .brand_name {
- font-size: 28rpx;
- font-weight: 600;
- }
- }
- }
- }
- .index_list{
- flex: 1;
- overflow: auto;
- ::v-deep uni-scroll-view{
- height: calc(100vh - 216rpx);
- .uni-scroll-view-content{
- padding-bottom: 120rpx;
- }
- }
- }
- .u-index-list{
- height: 100%;
- }
- .no_brand{
- position:fixed;
- bottom:0;
- left: 0;
- right: 0;
- padding: 20rpx;
- background-color: #fff;
- z-index: 1;
- ::v-deep .u-button__text{
- color: #108cff;
- }
- }
- }
- ::v-deep .u-index-anchor{
- background-color: #efefef !important;
- }
- ::v-deep .u-border-bottom{
- border:none;
- }
- ::v-deep .list-cell{
- font-size: 28rpx;
- display: flex;
- align-items: center;
- gap: 20rpx;
- padding: 16rpx;
- border-bottom: 1rpx solid #f0eded;
- img{
- width: 160rpx;
- height: 80rpx;
- }
- }
|