applyFor.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. z-index: 99;
  22. }
  23. .company-data-image {
  24. width: 114rpx;
  25. height: 114rpx;
  26. border-radius: 10rpx;
  27. margin-right: 20rpx;
  28. background-color: royalblue;
  29. z-index: 99;
  30. }
  31. .company-data-brandName {
  32. width: 300rpx;
  33. display: flex;
  34. align-items: center;
  35. font-size: 28rpx;
  36. color: #000000;
  37. z-index: 99;
  38. }
  39. .company-data-but {
  40. display: flex;
  41. align-items: center;
  42. height: 100%;
  43. }
  44. .custom-class-company-data {
  45. width: 88rpx;
  46. height: 46rpx !important;
  47. background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
  48. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  49. border-radius: 10rpx !important;
  50. padding: 0 !important;
  51. color: #ffffff !important;
  52. font-weight: 500;
  53. font-size: 24rpx;
  54. text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  55. }
  56. .jujue {
  57. background: linear-gradient(180deg, #D3D3D3 0%, #A7A8A8 100%) !important;
  58. }
  59. /* 选择合作方式 */
  60. .pattern {
  61. position: relative;
  62. display: flex;
  63. justify-content: center;
  64. align-items: center;
  65. font-size: 24rpx;
  66. color: #4BBECF;
  67. width: 198rpx;
  68. height: 46rpx;
  69. border-radius: 10rpx;
  70. border: 2rpx solid #4BBECF;
  71. z-index: 99;
  72. }
  73. .pattern-item-box {
  74. position: absolute;
  75. width: 100%;
  76. top: 65rpx;
  77. }
  78. .pattern-item {
  79. width: 100%;
  80. background-color: #ffffff;
  81. border: 2rpx solid #e8e8e8;
  82. border-radius: 8rpx;
  83. bottom: -70rpx;
  84. box-shadow: 0 0 8rpx 0 rgba(0, 0, 0, 0.1);
  85. }
  86. .pattern-item>view {
  87. line-height: 50rpx;
  88. text-align: center;
  89. color: rgba(0, 0, 0, 0.5);
  90. }
  91. .pattern-item::after {
  92. position: absolute;
  93. content: '';
  94. display: block;
  95. width: 15rpx;
  96. height: 15rpx;
  97. background-color: #fff;
  98. transform: rotate(45deg);
  99. border: 2rpx solid #e8e8e8;
  100. border-bottom: 0;
  101. border-right: 0;
  102. top: 0;
  103. margin-top: -9rpx;
  104. left: 75%;
  105. }