index.wxss 760 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. view,
  2. label,
  3. swiper-item,
  4. scroll-view {
  5. display:flex;
  6. flex-direction:column;
  7. flex-shrink: 0;
  8. flex-grow: 0;
  9. flex-basis: auto;
  10. align-items: stretch;
  11. align-content: flex-start;
  12. }
  13. view,
  14. image,
  15. input,
  16. scroll-view,
  17. swiper,
  18. swiper-item,
  19. text,
  20. textarea,
  21. video {
  22. position: relative;
  23. border: 0px solid #000000;
  24. box-sizing: border-box;
  25. }
  26. swiper-item {
  27. position: absolute;
  28. }
  29. button {
  30. margin: 0;
  31. }
  32. .face-container {
  33. width: 750rpx;
  34. height: 100vh;
  35. flex: 1;
  36. background: skyblue;
  37. }
  38. .back-btn {
  39. position: fixed;
  40. right: 30px;
  41. bottom: 30px;
  42. width: 100px;
  43. height: 40px;
  44. border-radius: 4px;
  45. background: #ecf5ff;
  46. display: flex;
  47. justify-content: center;
  48. align-items: center;
  49. }
  50. .back-val {
  51. color: #606266;
  52. font-size: 18px;
  53. }