合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
2.0 KiB

3 months ago
3 months ago
3 months ago
  1. @import "../../uvue.wxss";
  2. :host{display:flex;flex-direction:column}
  3. /* 搜索框 */
  4. .content_container{
  5. width: 100%;
  6. height: 10%;
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: center;
  10. align-items: center
  11. }
  12. .content_footer{
  13. width: 100%;
  14. height: 75%;
  15. display: flex;
  16. flex-direction: row;
  17. }
  18. /* 搜索框 */
  19. /* 遮罩层 */
  20. .isshow-header{
  21. width: 90%;
  22. height: 100%;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. flex-direction: row;
  27. color: #3c7697;
  28. }
  29. .isshow-header-content-icon{
  30. width: 10%;
  31. height: 30%;
  32. }
  33. .isshow-header-content-input{
  34. width: 80%;
  35. height: 40%;
  36. margin: 0 1rem 0 1rem;
  37. border:none;
  38. outline:none;
  39. }
  40. .isshow-content{
  41. height: 70%;
  42. display: flex;
  43. flex-direction: column;
  44. align-items: center;
  45. overflow-y:scroll;
  46. }
  47. .isshow-content-text{
  48. color: #414141;
  49. height: 1.5rem;
  50. width: 100%;
  51. line-height: 1,5rem;
  52. margin: 1rem 0 1rem 0;
  53. font-size: 1.5rem;
  54. }
  55. .isshow-content::-webkit-scrollbar {
  56. display: none;
  57. }
  58. /* 二级分类 */
  59. .content_footer_left{
  60. width: 20%;
  61. }
  62. .content_footer_left_product{
  63. width: 100%;
  64. height: 10%;
  65. display: flex;
  66. justify-content: center;
  67. align-items: center;
  68. font-size: 1rem;
  69. color: #7f7f7f;
  70. }
  71. .content_footer_right{
  72. width: 80%;
  73. display: flex;
  74. flex-direction: column;
  75. align-items: center;
  76. }
  77. .content_footer_right_content{
  78. width: 100%;
  79. height: 10%;
  80. display: flex;
  81. flex-direction: row;
  82. /* background-color: red; */
  83. align-items: center;
  84. }
  85. .content_footer_right_content_text{
  86. margin-right: auto;
  87. color:#242424;
  88. margin-left: 5%;
  89. font-size: 0.8rem;
  90. }
  91. .content_footer_right_content_radio{
  92. margin-left: auto;
  93. margin-right: 5%;
  94. transform: scale(0.9);
  95. }
  96. /* 点击颜色 */
  97. .click_color{
  98. background-color: #044f7a;
  99. color: #f0fcf2;
  100. }
  101. .select_color{
  102. color: #316b8b;
  103. }
  104. /* 按钮 */
  105. .buttun{
  106. width: 30%;
  107. height: 5%;
  108. position: absolute;
  109. display: flex;
  110. justify-content: center;
  111. align-items: center;
  112. font-size: 1.3rem;
  113. border-radius: 1.5rem;
  114. background-color: #05507c;
  115. bottom:5%;
  116. right: 5%;
  117. color: #fafcff;
  118. z-index: 99999;
  119. }