style.scss 887 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* 容器 */
  2. .mobile-container{
  3. min-height: 100%;
  4. padding: 0 30upx;
  5. }
  6. /* 容器 */
  7. /* 视图 */
  8. .mobile-item{
  9. height: 85upx;
  10. border-bottom: 1upx solid #EEEEEE;
  11. }
  12. .mobile-icon{
  13. height:40upx;
  14. width: 0;
  15. margin-right: 20upx;
  16. }
  17. .mobile-input{
  18. width: 100%;
  19. height: 40upx;
  20. color: #333;
  21. font-size: 28upx;
  22. line-height: 36upx;
  23. }
  24. .mobile-item-verification{
  25. height: 105upx;
  26. }
  27. .mobile-verification{
  28. width: 171upx;
  29. height: 61upx;
  30. border: 1upx solid #5A91EE;
  31. border-radius: 10upx;
  32. font-size: 26upx;
  33. color: #5A91EE;
  34. line-height: 30upx;
  35. }
  36. .mobile-verification-disabled{
  37. border-color: #999;
  38. color: #999;
  39. }
  40. /* 视图 */
  41. /* 按钮 */
  42. .mobile-button-container{
  43. margin: 30upx 0 80upx;
  44. }
  45. .mobile-button{
  46. width: 615upx;
  47. height: 80upx;
  48. border-radius: 40upx;
  49. background-color: #41AE3C;
  50. color: #fff;
  51. font-size: 30upx;
  52. line-height: 36upx;
  53. }
  54. /* 按钮 */