index.scss 949 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .container {
  2. width: 100%;
  3. height: 100vh;
  4. padding: 20rpx 0;
  5. overflow: hidden;
  6. display: flex;
  7. align-content: center;
  8. flex-direction: row;
  9. justify-content: center;
  10. font-size: 28rpx;
  11. box-sizing: border-box;
  12. }
  13. .handleBtn {
  14. display: inline-flex;
  15. flex-direction: column;
  16. justify-content: space-between;
  17. align-content: space-between;
  18. flex: 1;
  19. padding-right: 20rpx;
  20. box-sizing: border-box;
  21. overflow: hidden;
  22. }
  23. .handleBtn button {
  24. text-align: center;
  25. transform: rotate(90deg);
  26. }
  27. .handleBtn button:not([size='mini']) {
  28. width: 160rpx;
  29. margin-top: 40rpx;
  30. margin-bottom: 40rpx;
  31. }
  32. .handCenter {
  33. border: 4rpx dashed #e9e9e9;
  34. flex: 5;
  35. overflow: hidden;
  36. box-sizing: border-box;
  37. }
  38. .handRight {
  39. display: inline-flex;
  40. align-items: center;
  41. }
  42. .handRight .handTitle {
  43. transform: rotate(90deg);
  44. flex: 1;
  45. color: #666;
  46. }
  47. .handWriting {
  48. background: #fff;
  49. width: 100%;
  50. height: 95vh;
  51. flex: 2;
  52. }