h5.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .transfer-h5 {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. &-wechat {
  7. width: 100vw;
  8. height: 100vh;
  9. }
  10. &-header {
  11. position: relative;
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. font-size: 18px;
  16. padding: 16px 18px;
  17. .space, .icon {
  18. width: 18px;
  19. height: 18px;
  20. }
  21. }
  22. .main {
  23. flex: 1;
  24. flex-direction: column;
  25. width: auto;
  26. height: auto;
  27. border-radius: 0;
  28. border: none;
  29. box-shadow: none;
  30. max-height: calc(100% - 50px);
  31. padding: 0;
  32. .avatar {
  33. border-radius: 5px;
  34. }
  35. .left {
  36. padding: 0;
  37. flex: 1;
  38. border: none;
  39. display: flex;
  40. flex-direction: column;
  41. .transfer-header {
  42. position: sticky;
  43. top: 0;
  44. padding: 0 18px;
  45. input {
  46. border-radius: 5px;
  47. font-size: 14px;
  48. }
  49. }
  50. &-uniapp-input {
  51. height: 36px;
  52. }
  53. }
  54. .right {
  55. flex: 0;
  56. flex-direction: row;
  57. align-items: center;
  58. box-shadow: inset 0 1px 0 0 #EEE;
  59. padding: 8px 18px ;
  60. .transfer-list {
  61. flex-direction: row;
  62. width: 0;
  63. &-item {
  64. &-content {
  65. flex: none;
  66. }
  67. }
  68. }
  69. .transfer-right-footer {
  70. padding: 6px 0;
  71. display: flex;
  72. align-items: center;
  73. .btn {
  74. font-size: 14px;
  75. }
  76. }
  77. }
  78. }
  79. }