step.wxss 822 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* components/step/step.wxss */
  2. /* 垂直方向布局,水平居中 **/
  3. .flex-column {
  4. display: flex;
  5. flex-flow: column nowrap;
  6. align-items: center;
  7. justify-content: left;
  8. }
  9. /* 水平方向布局,垂直居中 **/
  10. .flex-row {
  11. display: flex;
  12. flex-flow: row nowrap;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16. .ct-wx-step{
  17. background: #FFFFFF;
  18. padding: 12px 0px;
  19. }
  20. .ct-wx-cell-list{
  21. padding: 0 12px;
  22. }
  23. .ct-wx-cell-line{
  24. padding-left: 12px;
  25. color: #666666;
  26. font-size: 12px;
  27. margin-left: 5px;
  28. border-left: 1px solid #E4E4E4;
  29. height: auto;
  30. }
  31. .last{
  32. color: #333333;
  33. border-left: 1px solid #FFB93F;
  34. }
  35. .default{
  36. background: #E4E4E4;
  37. }
  38. .piont-last{
  39. background: #FFB93F;
  40. }
  41. .ct-wx-cell-point{
  42. border-radius: 20%;
  43. width: 10px;
  44. height: 10px;
  45. border-radius: 50%;
  46. opacity: 1;
  47. }