style.scss 599 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* 容器 */
  2. .set-container{
  3. min-height: 100%;
  4. }
  5. /* 容器 */
  6. /* 控件视图 */
  7. .step-control-item{
  8. height: 100upx;
  9. border-bottom: 1upx solid #eee;
  10. padding: 0 30upx;
  11. }
  12. .step-control-item:last-of-type{
  13. border-bottom: none;
  14. }
  15. .step-control-item{
  16. font-size: 30upx;
  17. color: #333;
  18. line-height: 40upx;
  19. }
  20. .step-control-more{
  21. color: #999999;
  22. }
  23. /* 控件视图 */
  24. /* 按钮 */
  25. .step-control-button-container{
  26. margin: 70upx 0;
  27. }
  28. .step-control-button{
  29. width: 615upx;
  30. height: 80upx;
  31. border-radius: 40upx;
  32. background-color: #41AE3C;
  33. font-size: 30upx;
  34. color: #fff;
  35. }
  36. /* 按钮 */