index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. @import '/app.wxss';
  2. .WriteOff {
  3. width: 560rpx;
  4. height: 800rpx;
  5. background-color: #fff;
  6. border-radius: 20rpx;
  7. position: fixed;
  8. top: 50%;
  9. left: 50%;
  10. margin-top: -400rpx;
  11. margin-left: -280rpx;
  12. z-index: 99;
  13. padding-top: 55rpx;
  14. }
  15. .WriteOff .pictrue {
  16. width: 340rpx;
  17. height: 340rpx;
  18. margin: 0 auto;
  19. }
  20. .WriteOff .pictrue image {
  21. width: 100%;
  22. height: 100%;
  23. display: block;
  24. border-radius: 10rpx;
  25. }
  26. .WriteOff .num {
  27. font-size: 30rpx;
  28. color: #666;
  29. margin: 28rpx 0 30rpx 0;
  30. }
  31. .WriteOff .num .see {
  32. font-size: 16rpx;
  33. color: #fff;
  34. border-radius: 4rpx;
  35. background-color: #c68937;
  36. padding-left: 5rpx;
  37. margin-left: 12rpx;
  38. }
  39. .WriteOff .num .see .iconfont {
  40. font-size: 15rpx;
  41. }
  42. .WriteOff .tip {
  43. font-size: 36rpx;
  44. color: #282828;
  45. text-align: center;
  46. border-top: 1px dashed #ccc;
  47. padding-top: 40rpx;
  48. position: relative;
  49. }
  50. .WriteOff .tip:after {
  51. content: "";
  52. position: absolute;
  53. width: 25rpx;
  54. height: 25rpx;
  55. border-radius: 50%;
  56. background-color: #7f7f7f;
  57. right: -12.5rpx;
  58. top: -12.5rpx;
  59. }
  60. .WriteOff .tip:before {
  61. content: "";
  62. position: absolute;
  63. width: 25rpx;
  64. height: 25rpx;
  65. border-radius: 50%;
  66. background-color: #7f7f7f;
  67. left: -12.5rpx;
  68. top: -12.5rpx;
  69. }
  70. .WriteOff .sure {
  71. font-size: 32rpx;
  72. color: #fff;
  73. text-align: center;
  74. line-height: 82rpx;
  75. height: 82rpx;
  76. width: 460rpx;
  77. border-radius: 41rpx;
  78. margin: 40rpx auto 0 auto;
  79. background-image: linear-gradient(to right, #f67a38 0%, #f11b09 100%);
  80. }
  81. .WriteOff .sure.cancel {
  82. background-image: none;
  83. color: #999;
  84. margin-top: 10rpx;
  85. }