index.wxss 1.3 KB

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