index.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. /* 相关商家信息 */
  14. .company-data {
  15. display: flex;
  16. width: 100%;
  17. height: 114rpx;
  18. padding-bottom: 20rpx;
  19. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  20. margin-bottom: 20rpx;
  21. }
  22. .company-data-image {
  23. width: 114rpx;
  24. height: 114rpx;
  25. border-radius: 10rpx;
  26. margin-right: 20rpx;
  27. background-color: royalblue;
  28. }
  29. .company-data-text {
  30. flex: 1;
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: space-between;
  34. font-size: 24rpx;
  35. color: rgba(51, 51, 51, .7);
  36. }
  37. .company-data-brandName {
  38. font-size: 28rpx;
  39. color: #000000;
  40. }
  41. .company-data-but {
  42. display: flex;
  43. align-items: center;
  44. height: 100%;
  45. }
  46. .custom-class-company-data {
  47. width: 138rpx !important;
  48. height: 46rpx !important;
  49. background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
  50. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  51. border-radius: 10rpx !important;
  52. padding: 0 !important;
  53. color: #ffffff !important;
  54. font-weight: 500;
  55. font-size: 24rpx;
  56. text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  57. }