ailink ble wifi 小程序配网演示demo
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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**app.wxss**/
  2. view,
  3. cover-view,
  4. scroll-view,
  5. swiper,
  6. swiper-item,
  7. movable-area,
  8. movable-view,
  9. button,
  10. input,
  11. textarea,
  12. label,
  13. navigator
  14. {
  15. box-sizing: border-box;
  16. }
  17. page{
  18. --safe-bottom: env(safe-area-inset-bottom);
  19. }
  20. .container{
  21. position: relative;
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. width: 100vw;
  26. height: 100vh;
  27. padding-bottom: var(--safe-bottom);
  28. }
  29. .flex{
  30. display: flex;
  31. }
  32. .flex_column{
  33. display: flex;
  34. flex-direction: column;
  35. }
  36. .ai_center{
  37. align-items: center;
  38. }
  39. .ai_start{
  40. align-items: flex-start;
  41. }
  42. .ai_end{
  43. align-items: flex-end;
  44. }
  45. .jc_center{
  46. justify-content: center;
  47. }
  48. .jc_sa{
  49. justify-content: space-around;
  50. }
  51. .jc_sb{
  52. justify-content: space-between;
  53. }
  54. .jc_end{
  55. justify-content: flex-end;
  56. }
  57. .flex_center{
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. }
  62. .flex_center_sa{
  63. display: flex;
  64. align-items: center;
  65. justify-content: space-around;
  66. }
  67. .flex_center_sb{
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. }