| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- .brand_list_page {
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- position: relative;
-
- .brand_list {
- background-color: #fff;
- padding: 20rpx;
- .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: 140rpx;
- height: 80rpx;
- }
- .brand_name {
- font-size: 28rpx;
- font-weight: 600;
- }
- }
- }
- }
-
- .index_list{
- flex: 1;
- overflow: hidden;
-
- ::v-deep uni-scroll-view{
- height: 100%;
- overflow: auto;
-
- .uni-scroll-view-content{
- padding-bottom: 120rpx;
- }
- }
- }
-
- .u-index-list{
- height: 100%;
- overflow: hidden;
- }
-
- .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;
- }
- }
- }
- // 确保整个页面没有滚动条
- body {
- overflow: hidden;
- }
- // 确保 u-popup 内部也没有滚动条
- ::v-deep .brand_list_popup {
- overflow: hidden;
- }
- ::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;
- .brand_img{
- width: 140rpx;
- height: 80rpx;
- }
- }
|