brandList.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .brand_list_page {
  2. width: 100%;
  3. .brand_list {
  4. background-color: #fff;
  5. padding: 20rpx;
  6. .u-nav-slot {
  7. display: flex;
  8. align-items: center;
  9. gap: 10rpx;
  10. }
  11. .suggest_list {
  12. margin-top: 20rpx;
  13. display: grid;
  14. grid-template-columns: repeat(4, 1fr);
  15. gap: 20rpx;
  16. .brand_item {
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. .brand_img {
  21. width: 100rpx;
  22. height: 100rpx;
  23. }
  24. .brand_name {
  25. font-size: 28rpx;
  26. font-weight: 600;
  27. }
  28. }
  29. }
  30. }
  31. .index_list{
  32. ::v-deep .uni-scroll-view-content{
  33. margin-bottom: 120rpx;
  34. }
  35. }
  36. .no_brand{
  37. position:fixed;
  38. bottom:0;
  39. left: 0;
  40. right: 0;
  41. padding: 20rpx;
  42. background-color: #fff;
  43. z-index: 1;
  44. ::v-deep .u-button__text{
  45. color: #108cff;
  46. }
  47. }
  48. }
  49. ::v-deep .u-index-anchor{
  50. background-color: #efefef !important;
  51. }
  52. ::v-deep .u-border-bottom{
  53. border:none;
  54. }
  55. ::v-deep .list-cell{
  56. font-size: 28rpx;
  57. display: flex;
  58. align-items: center;
  59. gap: 20rpx;
  60. padding: 16rpx;
  61. border-bottom: 1rpx solid #f0eded;
  62. img{
  63. width: 160rpx;
  64. height: 80rpx;
  65. }
  66. }