core.scss 978 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. button::after{
  2. border: none;
  3. }
  4. .btn-background{
  5. background-color: #ffffff;
  6. }
  7. .btn-box{
  8. display: flex;
  9. justify-content: space-around;
  10. }
  11. .content-box{
  12. margin: 50rpx 30rpx;
  13. font-size: 40rpx;
  14. line-height: 100rpx;
  15. }
  16. .content-label{
  17. display: block;
  18. margin-left: 20rpx;
  19. // margin-bottom: 20rpx;
  20. }
  21. .label-name,.label-data{
  22. display: inline-block;
  23. }
  24. .label-name{
  25. width: 40%;
  26. font-weight: 700;
  27. word-wrap: break-word;
  28. }
  29. .label-data{
  30. // text-align: center;
  31. padding-left: 50rpx;
  32. width: 50%;
  33. word-wrap: break-word;
  34. vertical-align: middle
  35. }
  36. .content-btn{
  37. display: flex;
  38. justify-content: space-between;
  39. }
  40. .content-btn-edit,.content-btn-save{
  41. width: 25%;
  42. background-color: darkcyan;
  43. color: #ffffff;
  44. }
  45. .label-input{
  46. border: 1px solid #b9b9b3;
  47. padding: 10rpx;
  48. border-radius: 10rpx;
  49. line-height: 80rpx;
  50. // height: 80rpx;
  51. font-size: 16px;
  52. }
  53. .common-picker{
  54. border: 1px solid #b9b9b3;
  55. border-radius: 10rpx;
  56. padding-left: 10rpx;
  57. line-height: 80rpx;
  58. font-size: 16px;
  59. }