index.less 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .container {
  2. width: 100%;
  3. min-height: 100vh;
  4. padding: 50rpx 30rpx;
  5. border-radius: 40rpx 40rpx 10rpx 10rpx;
  6. background-color: white;
  7. .title {
  8. position: relative;
  9. margin-bottom: 20rpx;
  10. margin-left: 30rpx;
  11. font-size: 30rpx;
  12. font-weight: bold;
  13. color: #0F0F0F;
  14. }
  15. .title:before {
  16. position: absolute;
  17. content: '';
  18. left: -22rpx;
  19. top: 14rpx;
  20. width: 14rpx;
  21. height: 14rpx;
  22. background: #FF9D69;
  23. border-radius: 50%;
  24. }
  25. .text {
  26. font-size: 30rpx;
  27. color: #333;
  28. line-height: 60rpx;
  29. }
  30. .table {
  31. width: 620rpx;
  32. margin: 0 auto 26rpx;
  33. .header {
  34. margin-top: 10px;
  35. padding: 12rpx 0;
  36. background: #FF9D69;
  37. border: 1rpx solid #FF9D69;
  38. color: white;
  39. font-size: 22rpx;
  40. text-align: center;
  41. }
  42. .tr {
  43. display: flex;
  44. align-items: center;
  45. font-size: 26rpx;
  46. color: #1A1A1A;
  47. text-align: center;
  48. border: 1rpx solid #F6CFBA;
  49. border-top: none;
  50. view {
  51. padding: 12rpx 0;
  52. box-sizing: border-box;
  53. }
  54. .td1 {
  55. width: 170rpx;
  56. border-right: 1rpx solid #F6CFBA;
  57. }
  58. .td2 {
  59. flex: 1;
  60. border-right: 1rpx solid #F6CFBA;
  61. }
  62. .td3 {
  63. width: 200rpx;
  64. }
  65. }
  66. }
  67. .desc {
  68. margin-top: 12rpx;
  69. font-size: 28rpx;
  70. color: #333;
  71. }
  72. }