index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /**index.wxss**/
  2. page {
  3. padding-top: 54rpx;
  4. background-color: #f6f6f6;
  5. padding-bottom: 60rpx;
  6. }
  7. .container {
  8. font-family: PingFang SC;
  9. }
  10. .title {
  11. font-family: PingFang SC;
  12. font-weight: 500;
  13. color: #000000;
  14. font-size: 44rpx;
  15. margin-bottom: 40rpx;
  16. }
  17. .function_title {
  18. font-family: PingFang SC;
  19. font-weight: 500;
  20. color: #000000;
  21. font-size: 36rpx;
  22. text-align: left;
  23. width: 93%;
  24. margin-top: 50rpx;
  25. }
  26. .top_tip {
  27. font-size: 28rpx;
  28. font-family: PingFang SC;
  29. font-weight: 400;
  30. color: #888888;
  31. margin-bottom: 28rpx;
  32. }
  33. .examples_container {
  34. display: flex;
  35. flex-direction: column;
  36. gap: 16rpx;
  37. width: 100%;
  38. align-items: center;
  39. }
  40. .example_item {
  41. border: 3rpx solid #e5e5e5;
  42. border-radius: 10rpx;
  43. padding: 24rpx;
  44. width: 90%;
  45. background-color: #fff;
  46. display: flex;
  47. align-items: center;
  48. justify-content: space-between;
  49. }
  50. .power {
  51. margin-top: 30rpx;
  52. border-radius: 5px;
  53. background-color: white;
  54. width: 93%;
  55. padding-bottom: 1rpx;
  56. }
  57. .power_info {
  58. display: flex;
  59. padding: 30rpx 25rpx;
  60. align-items: center;
  61. justify-content: space-between;
  62. }
  63. .power_info_more {
  64. width: 30rpx;
  65. height: 30rpx;
  66. transform: rotate(90deg);
  67. }
  68. .power_info_less {
  69. width: 30rpx;
  70. height: 30rpx;
  71. transform: rotate(270deg);
  72. }
  73. .power_info_text {
  74. display: flex;
  75. flex-direction: column;
  76. }
  77. .power_info_text_title {
  78. margin-bottom: 10rpx;
  79. font-weight: 400;
  80. font-size: 32rpx;
  81. display: flex;
  82. align-items: center;
  83. font-family: 'PingFang SC';
  84. color: #000;
  85. }
  86. .power_info_text_tag {
  87. margin-left: 20rpx;
  88. background-color: #fbe0e0;
  89. color: #e54545;
  90. padding: 0 7px;
  91. font-size: 14px;
  92. vertical-align: middle;
  93. border-radius: 3px;
  94. }
  95. .power_info_text_tip {
  96. color: rgba(0, 0, 0, 0.6);
  97. font-size: 28rpx;
  98. padding-right: 30rpx;
  99. }
  100. .power_item {
  101. padding: 30rpx 25rpx;
  102. display: flex;
  103. justify-content: space-between;
  104. }
  105. .power_item_title {
  106. font-size: 28rpx;
  107. color: rgba(0, 0, 0, 0.9);
  108. }
  109. .power_item_icon {
  110. width: 30rpx;
  111. height: 30rpx;
  112. }
  113. .line {
  114. width: 95%;
  115. margin: 0 auto;
  116. height: 2rpx;
  117. background-color: rgba(0, 0, 0, 0.1);
  118. }
  119. .environment {
  120. color: rgba(0, 0, 0, 0.4);
  121. font-size: 24rpx;
  122. margin-top: 25%;
  123. }