index.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .SearchInputBox {
  2. width: 100%;
  3. background-color: #ffffff;
  4. padding: 20rpx 0rpx;
  5. box-sizing: border-box;
  6. }
  7. /* 展示区域title image */
  8. .display-title_image {
  9. width: 32rpx;
  10. height: 32rpx;
  11. margin: 0 6rpx;
  12. }
  13. .list-scroll-view{
  14. width: 100%;
  15. max-height: 79vh;
  16. }
  17. /* 相关商家信息 */
  18. .company-data {
  19. display: flex;
  20. width: 100%;
  21. height: 114rpx;
  22. padding-bottom: 20rpx;
  23. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  24. margin-bottom: 20rpx;
  25. }
  26. .company-data-image {
  27. width: 114rpx;
  28. height: 114rpx;
  29. border-radius: 10rpx;
  30. margin-right: 20rpx;
  31. background-color: royalblue;
  32. }
  33. .company-data-text {
  34. flex: 1;
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: space-between;
  38. font-size: 24rpx;
  39. color: rgba(51, 51, 51, .7);
  40. }
  41. .company-data-brandName {
  42. width: 300rpx;
  43. font-size: 28rpx;
  44. color: #000000;
  45. }
  46. .company-data-but {
  47. display: flex;
  48. align-items: center;
  49. height: 100%;
  50. }
  51. .custom-class-company-data {
  52. width: 138rpx !important;
  53. height: 46rpx !important;
  54. background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
  55. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  56. border-radius: 10rpx !important;
  57. padding: 0 !important;
  58. color: #ffffff !important;
  59. font-weight: 500;
  60. font-size: 24rpx;
  61. text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  62. }