index.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. page {
  2. overflow: hidden;
  3. }
  4. .header {
  5. height: 102rpx;
  6. line-height: 102rpx;
  7. font-size: 30rpx;
  8. font-family: PingFang SC-Bold, PingFang SC;
  9. font-weight: bold;
  10. color: #000000;
  11. padding-left: 30rpx;
  12. }
  13. .item {
  14. width: 696rpx;
  15. margin: 10rpx auto 20rpx;
  16. background-color: #fff;
  17. border-radius: 16rpx;
  18. overflow: hidden;
  19. .introduce {
  20. position: relative;
  21. width: 100%;
  22. height: 178rpx;
  23. box-sizing: border-box;
  24. padding-left: 158rpx;
  25. border-bottom: 1px solid #DDDDDD;
  26. .image {
  27. position: absolute;
  28. width: 96rpx;
  29. height: 96rpx;
  30. left: 30rpx;
  31. top: 20rpx;
  32. }
  33. .title {
  34. height: 44rpx;
  35. line-height: 44rpx;
  36. font-size: 32rpx;
  37. font-family: PingFang SC-Bold, PingFang SC;
  38. font-weight: bold;
  39. color: #333333;
  40. padding-top: 20rpx;
  41. margin-bottom: 15rpx;
  42. }
  43. .explain {
  44. font-size: 24rpx;
  45. line-height: 44rpx;
  46. font-family: PingFang SC-Medium, PingFang SC;
  47. color: #999999;
  48. }
  49. }
  50. .handle {
  51. display: flex;
  52. width: 100%;
  53. navigator {
  54. flex: 1;
  55. height: 88rpx;
  56. line-height: 88rpx;
  57. text-align: center;
  58. width: 156px;
  59. font-size: 24rpx;
  60. font-family: PingFang SC-Regular, PingFang SC;
  61. color: #333333;
  62. box-sizing: border-box;
  63. }
  64. navigator:nth-child(2) {
  65. border-left: 1px solid #DDDDDD;
  66. }
  67. }
  68. }