select-form.wxss 948 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* components/select-form/select-form.wxss */
  2. .selectbox{
  3. background: url('/image/img-draw/search.png') no-repeat center center;filter:alpha(opacity=70);
  4. background-size: cover;
  5. background:rgba(0,0,0,0.5)
  6. }
  7. .origin{
  8. display: flex;
  9. flex-direction: row;
  10. }
  11. .cell-center{
  12. align-self: center;
  13. display: table-cell;
  14. vertical-align: middle;
  15. }
  16. .left-select,.left-right{
  17. width: 50%;
  18. display: flex;
  19. flex-direction: column;
  20. }
  21. .left-right{
  22. background: #F2F2F2;
  23. }
  24. .lect-item{
  25. border-bottom: 1px solid #EEE0E5;
  26. height: 80rpx;
  27. line-height: 80rpx;
  28. text-align: center;
  29. }
  30. .active-color{
  31. color: #7CCD7C;
  32. }
  33. .price-info,.price-auto{
  34. display: flex;
  35. color: #e54d42;
  36. justify-content: center;
  37. }
  38. .price-info{
  39. font-size: 40rpx;
  40. }
  41. .price-auto{
  42. color: grey;
  43. font-size: 15px;
  44. }
  45. .icon-price{
  46. font-size: 20px;
  47. }
  48. @import "../../colorui/main.wxss";
  49. @import "../../colorui/icon.wxss";