index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**index.wxss**/
  2. .wrap_nr{
  3. padding: 30rpx;
  4. }
  5. .store_item{
  6. width: 690rpx;
  7. padding: 40rpx 0;
  8. margin-top: 30rpx;
  9. background: #F9F9F9;
  10. border-radius: 15rpx;
  11. display: flex;
  12. align-items: center;
  13. position: relative;
  14. }
  15. .store_item .item_l{
  16. width: 460rpx;
  17. padding-left: 30rpx;
  18. font-size: 26rpx;
  19. color: #666666;
  20. border-right: 1rpx solid rgba(216,169,115,.2);
  21. }
  22. .store_item .item_name{
  23. font-size: 32rpx;
  24. color: #0C0C0C;
  25. }
  26. .store_item .item_info{
  27. display: flex;
  28. align-items: center;
  29. margin-top: 26rpx;
  30. }
  31. .store_item .item_info .icon{
  32. width: 24rpx;
  33. height: 24rpx;
  34. }
  35. .store_item .item_info .wenzi{
  36. padding-left: 10rpx;
  37. width: 340rpx;
  38. }
  39. .store_item .item_r{
  40. flex: 1;
  41. display: flex;
  42. flex-direction: column;
  43. align-items: center;
  44. }
  45. .store_item .item_r .juli{
  46. font-size: 24rpx;
  47. color: #666666;
  48. padding: 4rpx 10rpx;
  49. background: #FFFFFF;
  50. box-shadow: 0rpx 1rpx 10rpx 0rpx rgba(0, 0, 0, 0.1);
  51. border-radius: 14rpx;
  52. position: relative;
  53. }
  54. .store_item .item_r .juli::after{
  55. content: "";
  56. display: block;
  57. position: absolute;
  58. bottom: -22rpx;
  59. left: 50%;
  60. width: 0rpx;
  61. height: 0rpx;
  62. border: 12rpx solid transparent;
  63. border-top: 12rpx solid #FFFFFF;
  64. }
  65. .store_item .item_r .store_logo{
  66. width: 60rpx;
  67. height: 69rpx;
  68. margin-top: 20rpx;
  69. }
  70. .store_item .item_r .desc{
  71. font-size: 30rpx;
  72. color: #0C0C0C;
  73. padding-top: 12rpx;
  74. }
  75. .store_item .tuijian_icon{
  76. width: 77rpx;
  77. height: 74rpx;
  78. position: absolute;
  79. top: -5rpx;
  80. right: -5rpx;
  81. }
  82. .store_item .selected_icon{
  83. width: 61rpx;
  84. height: 61rpx;
  85. position: absolute;
  86. bottom: -1px;
  87. right: -1px;
  88. }
  89. /* 选中状态 */
  90. .store_item.selected{
  91. background: #FFFFFF;
  92. border: 1px solid #D54C43;
  93. }