takePhoto.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* pages/takePhoto/takePhoto.wxss */
  2. .top-container {
  3. position: relative;
  4. width: 100%;
  5. height: 35vh;
  6. padding-top: 154rpx;
  7. background-size: contain;
  8. background: url(https://6875-huihenduo-2gx127w7f837b584-1255802371.tcb.qcloud.la/miniapp-static/sea-bgd.jpeg?sign=f138978877f53ccdc48937c58811659b&t=1634539269)
  9. }
  10. .avatar-icon {
  11. display: block;
  12. width: 110rpx;
  13. height: 110rpx;
  14. border-radius: 50%;
  15. margin: 0 auto;
  16. }
  17. .user-name {
  18. margin-right: 40rpx;
  19. }
  20. .phone {
  21. font-size: 28rpx;
  22. font-weight: 400;
  23. }
  24. .text {
  25. font-size: 30rpx;
  26. font-family: PingFangSC-Medium,
  27. PingFang SC;
  28. font-weight: 500;
  29. color: #FFFFFF;
  30. margin-top: 30rpx;
  31. }
  32. .camera-icon {
  33. display: block;
  34. width: 234rpx;
  35. height: 234rpx;
  36. position: absolute;
  37. top: 50%;
  38. left: calc(50% - 117rpx);
  39. }
  40. .auth-modal {
  41. position: absolute;
  42. top: 0;
  43. right: 0;
  44. bottom: 0;
  45. left: 0;
  46. background-color: rgba(0, 0, 0, 0.7);
  47. }
  48. .modal {
  49. width: 557rpx;
  50. height: 274rpx;
  51. background: #FFFFFF;
  52. border-radius: 16rpx;
  53. margin: 548rpx auto;
  54. padding-top: 55rpx;
  55. }
  56. .service {
  57. width: 100%;
  58. text-align: center;
  59. font-size: 36rpx;
  60. font-family: PingFangSC-Medium,
  61. PingFang SC;
  62. font-weight: 500;
  63. color: #333333;
  64. -webkit-text-stroke: 1rpx #979797;
  65. }
  66. .auth-btn {
  67. width: 350rpx;
  68. height: 69rpx;
  69. background: #0094FE;
  70. border-radius: 8rpx;
  71. font-size: 36rpx;
  72. font-family: PingFangSC-Regular,
  73. PingFang SC;
  74. font-weight: 400;
  75. color: #FFFFFF;
  76. line-height: 69rpx;
  77. margin: 0 auto;
  78. margin-top: 55rpx;
  79. text-align: center;
  80. }