camera-modal.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .modal {
  2. position: fixed;
  3. top: 0;
  4. width: 100%;
  5. height: 100%;
  6. background: rgba(0, 0, 0, 0.56);
  7. display: flex;
  8. flex-direction: column;
  9. z-index: 999;
  10. }
  11. .modal>view:first-child{
  12. width: 100%;
  13. flex: 1;
  14. }
  15. .modal > .detail {
  16. width: 100%;
  17. position: absolute;
  18. bottom: -500px;
  19. background: #ffffff;
  20. }
  21. .modal > .detail > .modalHeader {
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: center;
  25. padding: 26rpx 20rpx 26rpx 32rpx;
  26. border-bottom: 2rpx solid #eeeeee;
  27. }
  28. .modal > .detail > .modalHeader > view {
  29. font-family: PingFangSC-Medium;
  30. font-size: 32rpx;
  31. display: flex;
  32. align-items: center;
  33. }
  34. .modal > .detail > .modalHeader > view > view {
  35. width: 6rpx;
  36. height: 32rpx;
  37. background: #3296fb;
  38. margin-right: 22rpx;
  39. }
  40. .modal > .detail > .modalHeader > image {
  41. width: 48rpx;
  42. height: 48rpx;
  43. }
  44. .modal > .detail > .modalContent {
  45. padding: 40rpx 50rpx 0;
  46. overflow: hidden;
  47. padding-bottom: 100rpx;
  48. }
  49. .modal > .detail > .modalContent > .top {
  50. font-family: PingFangSC-Medium;
  51. font-size: 30rpx;
  52. color: #333333;
  53. margin-bottom: 52rpx;
  54. }
  55. .modal > .detail > .modalContent > .middle {
  56. display: flex;
  57. justify-content: space-between;
  58. margin-bottom: 42rpx;
  59. }
  60. .modal > .detail > .modalContent > .middle > view {
  61. display: flex;
  62. flex-direction: column;
  63. align-items: center;
  64. justify-content: space-between;
  65. height: 200rpx;
  66. font-size: 28rpx;
  67. color: #333333;
  68. }
  69. .modal > .detail > .modalContent > .middle > view:first-child > view {
  70. width: 128rpx;
  71. height: 84rpx;
  72. box-sizing: border-box;
  73. padding: 10rpx;
  74. border: 2rpx solid #3ab261;
  75. }
  76. .modal > .detail > .modalContent > .middle > view:first-child > view > image {
  77. width: 100%;
  78. height: 100%;
  79. }
  80. .modal > .detail > .modalContent > .middle > view > view > image {
  81. width: 128rpx;
  82. height: 84rpx;
  83. vertical-align: top;
  84. }
  85. .modal > .detail > .modalContent > .middle > view > image {
  86. width: 32rpx;
  87. height: 32rpx;
  88. }
  89. .modal > .detail > .modalContent > .bottom {
  90. font-size: 28rpx;
  91. color: #666666;
  92. line-height: 56rpx;
  93. }