applyFor.wxss 2.2 KB

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