maritime.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .container {
  2. padding: 20rpx;
  3. background-color: #f5f5f5;
  4. }
  5. .header {
  6. font-size: 36rpx;
  7. font-weight: bold;
  8. color: #333;
  9. padding: 20rpx 0;
  10. text-align: center;
  11. }
  12. .content {
  13. margin-top: 20rpx;
  14. }
  15. .card {
  16. background-color: #fff;
  17. border-radius: 16rpx;
  18. margin-bottom: 20rpx;
  19. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
  20. overflow: hidden;
  21. }
  22. .card-header {
  23. font-size: 32rpx;
  24. font-weight: bold;
  25. color: #333;
  26. padding: 20rpx;
  27. border-bottom: 2rpx solid #f0f0f0;
  28. }
  29. .card-content {
  30. padding: 20rpx;
  31. }
  32. /* 海事公告列表样式 */
  33. .notice-list {
  34. margin-top: 10rpx;
  35. }
  36. .notice-item {
  37. padding: 20rpx 0;
  38. border-bottom: 2rpx solid #f0f0f0;
  39. }
  40. .notice-item:last-child {
  41. border-bottom: none;
  42. }
  43. .notice-title {
  44. font-size: 28rpx;
  45. color: #333;
  46. margin-bottom: 10rpx;
  47. }
  48. .notice-info {
  49. display: flex;
  50. justify-content: space-between;
  51. font-size: 24rpx;
  52. color: #999;
  53. }
  54. /* 法律援助机构样式 */
  55. .org-info {
  56. text-align: center;
  57. }
  58. .org-name {
  59. font-size: 32rpx;
  60. font-weight: bold;
  61. color: #333;
  62. margin-bottom: 20rpx;
  63. }
  64. .org-photo {
  65. width: 100%;
  66. height: 300rpx;
  67. margin-bottom: 20rpx;
  68. border-radius: 8rpx;
  69. }
  70. .org-intro {
  71. font-size: 26rpx;
  72. color: #666;
  73. text-align: justify;
  74. line-height: 1.6;
  75. }
  76. /* 法律援助申请表单样式 */
  77. .legal-aid-form {
  78. margin-top: 10rpx;
  79. }
  80. .aid-input {
  81. width: 100%;
  82. height: 200rpx;
  83. padding: 20rpx;
  84. box-sizing: border-box;
  85. border: 2rpx solid #e0e0e0;
  86. border-radius: 8rpx;
  87. font-size: 28rpx;
  88. margin-bottom: 20rpx;
  89. }
  90. .submit-btn {
  91. width: 100%;
  92. height: 80rpx;
  93. line-height: 80rpx;
  94. text-align: center;
  95. background-color: #1989fa;
  96. color: #fff;
  97. border-radius: 8rpx;
  98. font-size: 28rpx;
  99. }
  100. .submit-btn:active {
  101. opacity: 0.8;
  102. }