faceSea.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: flex-start;
  5. width: 100%;
  6. height: 100%;
  7. background: #fff;
  8. font-family: "MicrosoftYaHei";
  9. .cameraField {
  10. position: relative;
  11. width: 750rpx;
  12. height: 1000rpx;
  13. background: #6eaff0;
  14. overflow: hidden;
  15. canvas {
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. width: 100%;
  20. height: 100%;
  21. border-radius: 5rpx;
  22. z-index: 2;
  23. }
  24. .hint {
  25. position: absolute;
  26. top: 45rpx;
  27. left: 223rpx;
  28. width: 301rpx;
  29. height: 72rpx;
  30. color: #fff;
  31. font-size: 32rpx;
  32. background: rgba($color: #000000, $alpha: 0.33);
  33. border-radius: 36rpx;
  34. text-align: center;
  35. line-height: 72rpx;
  36. box-sizing: border-box;
  37. z-index: 3;
  38. image {
  39. max-width: 30rpx;
  40. max-height: 30rpx;
  41. vertical-align: middle;
  42. margin-right: 15rpx;
  43. margin-bottom: 4rpx;
  44. }
  45. }
  46. .head {
  47. position: absolute;
  48. bottom: 16%;
  49. left: 50%;
  50. transform: translateX(-376rpx);
  51. width: 750rpx;
  52. height: 620rpx;
  53. z-index: 3;
  54. }
  55. }
  56. .controlField {
  57. width: 750rpx;
  58. // height: 334rpx;
  59. color: #fff;
  60. .control1 {
  61. display: flex;
  62. justify-content: space-between;
  63. width: 550rpx;
  64. height: 150rpx;
  65. margin: 0 auto;
  66. // margin-top: 130rpx;
  67. margin-top: 40rpx;
  68. .light,
  69. .change {
  70. max-height: 70rpx;
  71. max-width: 70rpx;
  72. margin-top: 40rpx;
  73. text-align: center;
  74. }
  75. .take {
  76. max-height: 150rpx;
  77. max-width: 150rpx;
  78. }
  79. }
  80. .control2 {
  81. display: flex;
  82. justify-content: space-between;
  83. width: 600rpx;
  84. height: 150rpx;
  85. margin: 0 auto;
  86. // margin-top: 130rpx;
  87. margin-top: 70rpx;
  88. view {
  89. width: 170rpx;
  90. height: 80rpx;
  91. background: #6eaff0;
  92. font-size: 32rpx;
  93. text-align: center;
  94. line-height: 80rpx;
  95. border-radius: 10rpx;
  96. }
  97. }
  98. }
  99. }