金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
2.2 KiB

  1. #store-search{
  2. .search-box{
  3. position: fixed;
  4. top: 0;
  5. width: 100%;
  6. padding: 8px;
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. background: #EFEFF4;
  11. z-index: 5;
  12. .input-box{
  13. display: flex;
  14. align-items: center;
  15. position: relative;
  16. border: 1px solid #e6e6ea;
  17. background: #fff;
  18. padding-left: 10px;
  19. border-radius: 5px;
  20. flex: 1;
  21. input{
  22. width: 100%;
  23. height: 30px;
  24. border-radius: 5px;
  25. background: #FFFFFF;
  26. padding: 0 35px;
  27. box-sizing: border-box;
  28. }
  29. .search{
  30. position: absolute;
  31. top:5px;
  32. left:8px;
  33. z-index: 5;
  34. }
  35. .clear{
  36. position: absolute;
  37. top:5px;
  38. right:8px;
  39. z-index: 5;
  40. }
  41. }
  42. .text{
  43. width: 50px;
  44. text-align: center;
  45. color: #00c203;
  46. }
  47. }
  48. .history-box{
  49. padding-top: 45px;
  50. .keywords{
  51. padding: 0 8px 0 8px;
  52. height: 40px;
  53. display: flex;
  54. align-items: center;
  55. justify-content: space-between;
  56. .name{
  57. flex: 1;
  58. }
  59. .clear{
  60. width: 50px;
  61. text-align: center;
  62. }
  63. }
  64. .clear-all{
  65. background-color: #f0f0f1;
  66. text-align: center;
  67. color: #6baccf;
  68. height: 40px;
  69. line-height: 40px;
  70. }
  71. }
  72. .goods-list{
  73. font-size: 0;
  74. box-sizing: border-box;
  75. padding: 40px 5px 20px 5px;
  76. .commodity-out{
  77. width: 50%;
  78. display: inline-block;
  79. font-size: 12px;
  80. padding: 10px 5px 0 5px;
  81. box-sizing: border-box;
  82. .commodity-box{
  83. background: #ffffff;
  84. overflow: hidden;
  85. width: 100%;
  86. padding: 10px;
  87. box-sizing: border-box;
  88. font-size: 14px;
  89. .commodity-img {
  90. overflow: hidden;
  91. image{
  92. width: 290rpx;
  93. //height: 310rpx;
  94. }
  95. }
  96. .commodity-name{
  97. overflow: hidden;
  98. text-overflow: ellipsis;
  99. white-space: nowrap;
  100. }
  101. .commodity-money{
  102. color: #e42b1e;
  103. }
  104. }
  105. }
  106. .loadingbox{
  107. margin-top: 10px;
  108. height: 40px;
  109. line-height: 40px;
  110. text-align: center;
  111. font-size:14px;
  112. }
  113. }
  114. }