detail.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .intr {
  2. position: relative;
  3. width: 100vw;
  4. box-sizing: border-box;
  5. background-color: #fff;
  6. padding: 20rpx 30rpx;
  7. .num {
  8. height: 40rpx;
  9. line-height: 40rpx;
  10. font-size: 32rpx;
  11. font-family: PingFang SC-Bold, PingFang SC;
  12. font-weight: bold;
  13. color: #333333;
  14. }
  15. .tags {
  16. margin-bottom: 15rpx;
  17. text {
  18. display: inline-block;
  19. height: 40rpx;
  20. line-height: 40rpx;
  21. background: #E7EEFF;
  22. border-radius: 20rpx;
  23. padding: 0 15rpx;
  24. font-size: 20rpx;
  25. color: #fff;
  26. margin-right: 10rpx;
  27. }
  28. }
  29. .exp {
  30. line-height: 34rpx;
  31. font-size: 26rpx;
  32. margin-top: 10rpx;
  33. color: #666;
  34. }
  35. .copy {
  36. position: absolute;
  37. right: 30rpx;
  38. top: 20rpx;
  39. background-color: #FF9933;
  40. border-radius: 12rpx;
  41. padding: 0 10rpx;
  42. color: #fff;
  43. border: none;
  44. height: 70rpx;
  45. }
  46. }
  47. .footer {
  48. display: flex;
  49. justify-content: space-between;
  50. padding: 0 30rpx;
  51. position: fixed;
  52. width: 100vw;
  53. height: 130rpx;
  54. background: #FFFFFF;
  55. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  56. bottom: 0;
  57. box-sizing: border-box;
  58. z-index: 99;
  59. padding-top: 10rpx;
  60. .but-box {
  61. display: flex;
  62. .but {
  63. min-width: 160rpx;
  64. height: 90rpx;
  65. border-radius: 8rpx;
  66. font-size: 28rpx;
  67. font-family: PingFang SC-Bold, PingFang SC;
  68. font-weight: bold;
  69. color: #FFFFFF;
  70. margin-left: 10rpx;
  71. }
  72. .delete {
  73. background: var(--warning);
  74. }
  75. }
  76. }
  77. .remarks {
  78. display: flex;
  79. align-items: center;
  80. textarea {
  81. border: 1px solid #ccc;
  82. padding: 10rpx;
  83. }
  84. }