take-photo.wxss 872 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. Page {
  2. background-color: black;
  3. }
  4. .view {
  5. width: 100%;
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. display: flex;
  10. }
  11. .border {
  12. position: fixed;
  13. }
  14. /* button-view */
  15. .button-view-bg,
  16. .button-view-bg-X {
  17. width: 100%;
  18. position: fixed;
  19. bottom: 0;
  20. background-color: black;
  21. display: flex;
  22. }
  23. .button-view-bg {
  24. height: 316rpx;
  25. }
  26. .button-view-bg-X {
  27. height: 384rpx;
  28. }
  29. .button-view {
  30. width: 100%;
  31. height: 316rpx;
  32. display: flex;
  33. }
  34. .button-view>image {
  35. width: 148rpx;
  36. height: 148rpx;
  37. margin: auto auto;
  38. }
  39. .button-view>view:first-child,
  40. .button-view>view:last-child {
  41. font-family: PingFangSC-Regular;
  42. font-size: 32rpx;
  43. color: #FFFFFF;
  44. width: 128rpx;
  45. height: 128rpx;
  46. text-align: center;
  47. line-height: 128rpx;
  48. }
  49. .button-view>view:first-child {
  50. margin: auto 0 auto 48rpx;
  51. }
  52. .button-view>view:last-child {
  53. margin: auto 48rpx auto 0;
  54. }