device.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* page {
  2. background-color: #f8f8f8;
  3. }
  4. .container {
  5. padding: 30rpx;
  6. align-items: left;
  7. }
  8. .input {
  9. margin-top:3px;
  10. width: 100%;
  11. border: 1px solid lightgray;
  12. border-radius: 6px;
  13. }
  14. .button {
  15. margin-top:20px;
  16. margin-left: 5px;
  17. margin-right: 5px;
  18. }
  19. .layout_horizontal{
  20. height: 100rpx;
  21. display: flex;
  22. /*row 横向 column 列表 */
  23. /* flex-direction: row; */
  24. /* } */
  25. page {
  26. background-color: #f8f8f8;
  27. font-size: 32rpx;
  28. line-height: 1.6;
  29. }
  30. .scrollPage{
  31. height: 100%;
  32. overflow: hidden;
  33. }
  34. .searchBar{
  35. background: #fff;
  36. height: 72rpx;
  37. padding: 0 30rpx 16rpx;
  38. }
  39. .searchBar >input {
  40. background: #f0f1f2;
  41. height: 56rpx;
  42. border-radius: 28rpx;
  43. text-align: center;
  44. }
  45. .selectBox{
  46. background: #fff;
  47. margin-top: 18rpx;
  48. position: relative;
  49. display: flex;
  50. }
  51. .select{
  52. box-sizing: border-box;
  53. width: 50%;
  54. height: 100rpx;
  55. line-height: 100rpx;
  56. border: 1rpx solid #efefef;
  57. text-align: center;
  58. }
  59. .select_text{
  60. font-size: 30rpx;
  61. color: #4a4a4a;
  62. }
  63. .option_box{
  64. position: absolute;
  65. top: 100rpx;
  66. width: 100%;
  67. background: #fff;
  68. font-size: 30rpx;
  69. padding-left: 40rpx;
  70. overflow-y: auto;
  71. transition: height 0.3s;
  72. z-index: 2;
  73. }
  74. .option{
  75. display: block;
  76. padding: 12rpx;
  77. }
  78. .shadow {
  79. width: 100%;
  80. height: 100%;
  81. background-color: rgba(178, 178, 178, 0.3);
  82. z-index: 1;
  83. top: 210rpx;
  84. position: absolute;
  85. }
  86. .log_area {
  87. position: relative;
  88. background: #e4e4e6;
  89. padding: 26rpx;
  90. border-radius: 12rpx;
  91. }
  92. .log_area >textarea{
  93. width:100%;
  94. height:860rpx;
  95. font-size: 28rpx;
  96. }