associated.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. body {
  2. font-size: 3.7vw !important;
  3. background-color: rgb(251, 251, 251);
  4. }
  5. .top{
  6. display: flex;
  7. justify-content: space-between;
  8. align-items: center;
  9. width: 98vw;
  10. padding-right: 2vw;
  11. }
  12. .layui-input-block{
  13. margin-left: 0 !important;
  14. width: 70vw;
  15. }
  16. .layui-form-label{
  17. width: 10vw;
  18. }
  19. .layui-icon{
  20. font-size: 4.5vw !important;
  21. }
  22. .associated-add{
  23. margin-top: 14vw;
  24. margin-left: 3vw;
  25. }
  26. .associated-item {
  27. margin: 3vw 3vw 2vw 3vw;
  28. padding: 2vw 3vw 1vw 3vw;
  29. box-shadow: 0 1px 3px 0 rgb(5 32 96 / 10%);
  30. background-color: #fff;
  31. display: flex;
  32. }
  33. .associated{
  34. margin-bottom: 1vw;
  35. }
  36. .associated-left{
  37. margin-right: 3vw;
  38. }
  39. .associated-left img{
  40. width: 15vw;
  41. height: 15vw;
  42. border-radius: 7.5vw;
  43. margin-top: 25%;
  44. }
  45. .associated-right{
  46. width: 66%;
  47. }
  48. .associated-button{
  49. margin-top: 8%;
  50. }
  51. /*.associated-button button{*/
  52. /* padding: 2vw;*/
  53. /* border: red 0.25vw solid;*/
  54. /* color: red;*/
  55. /* background-color: rgb(255, 255, 255);*/
  56. /*}*/
  57. .layui-btn{
  58. font-size: 3.7vw !important;
  59. }
  60. .password {
  61. position: fixed;
  62. z-index: 1000;
  63. top: 0;
  64. right: 0;
  65. left: 0;
  66. bottom: 0;
  67. background: rgba(0, 0, 0, .6);
  68. opacity: 0;
  69. visibility: hidden;
  70. transition: opacity .3s;
  71. }
  72. .password.show {
  73. opacity: 1;
  74. visibility: visible;
  75. }
  76. .dialog {
  77. position: fixed;
  78. background-color: #fff;
  79. left: 0;
  80. right: 0;
  81. bottom: 0;
  82. min-height: 50vw;
  83. max-height: 75%;
  84. z-index: 5000;
  85. border-top-left-radius: 12px;
  86. border-top-right-radius: 12px;
  87. overflow: hidden;
  88. padding: 1vw !important;
  89. padding: 0 24px constant(safe-area-inset-bottom) 4vw;
  90. padding: 0 24px env(safe-area-inset-bottom) 4vw;
  91. transform: translateY(100%);
  92. transition: transform .3s;
  93. }
  94. .dialog.show {
  95. transform: translateY(0);
  96. }
  97. .password-top{
  98. display: flex;
  99. text-align: center;
  100. align-items: center;
  101. justify-content: space-between;
  102. border-bottom: 0.35vw solid rgb(219, 219, 221);
  103. margin-bottom: 6vw;
  104. padding: 1vw;
  105. }
  106. .password-top img{
  107. width: 5vw;
  108. }
  109. .password-top button{
  110. border: none;
  111. background-color: #fff;
  112. font-size: 3.7vw;
  113. }
  114. .layui-form-item .layui-input-inline{
  115. margin: 0 !important;
  116. }
  117. .layui-form-item{
  118. margin-top: 3vw !important;
  119. display: flex;
  120. align-items: center;
  121. margin: 3vw 3vw 3vw 6vw !important;
  122. font-size: 4vw !important;
  123. }
  124. .layui-input, .layui-select, .layui-textarea{
  125. line-height: 3.5vh !important;
  126. }
  127. .layui-input-wrap .layui-input{
  128. padding-bottom: 0 !important;
  129. padding-right: 0 !important;
  130. }
  131. .layui-input, .layui-textarea{
  132. width: unset !important;
  133. }