pkedetail.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view class="background1">
  3. <view class="background2">
  4. <view class="title"> {{$t('homepledge.PKR介绍')}} </view>
  5. <view class="neirong">
  6. <view class="nr2">
  7. <rich-text :nodes="$t('homepledge.description')"></rich-text>
  8. </view>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. };
  18. },
  19. onLoad() {
  20. uni.setNavigationBarTitle({
  21. title: this.$t('homepledge.PKR介绍'),
  22. });
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. .nr2 {
  28. font-size: 24rpx;
  29. font-weight: bold;
  30. color: #211808;
  31. background-color: #FAEDD6;
  32. text-align: left;
  33. padding: 30rpx;
  34. border-radius: 20rpx;
  35. margin-bottom: 20rpx;
  36. }
  37. .background1 {
  38. position: relative;
  39. height: calc(100vh - var(--status-bar-height));
  40. background: url("../../static/img/youxi1.png");
  41. background-size: 100% 100%;
  42. background-position: 50% 50%;
  43. background-repeat: no-repeat;
  44. }
  45. .background2 {
  46. background:url("../../static/img/youxi2.png");
  47. position: absolute;
  48. background-size: 100% 100%;
  49. width: 650rpx;
  50. height: 960rpx;
  51. top: 50%;
  52. left: 50%;
  53. transform: translate(-50%, -60%);
  54. }
  55. .title {
  56. margin-top: 95rpx;
  57. text-align: center;
  58. font-size: 37rpx;
  59. font-weight: bold;
  60. color: #d7b271;
  61. }
  62. .juli {
  63. margin-left: 60rpx;
  64. margin-top: 70rpx;
  65. font-size: 36rpx;
  66. font-weight: bold;
  67. color: #201809;
  68. }
  69. .neirong {
  70. width: 530rpx;
  71. height: 100;
  72. margin-left: 60rpx;
  73. margin-top: 30rpx;
  74. }
  75. .nr1 .nr2{
  76. height: 147rpx;
  77. font-size: 28rpx;
  78. font-weight: bold;
  79. color: #201809;
  80. }
  81. .ls {
  82. margin-left: 60rpx;
  83. margin-top: 70rpx;
  84. font-size: 36rpx;
  85. font-weight: bold;
  86. color: #201809;
  87. }
  88. .liushui {
  89. width: 530rpx;
  90. height: 190rpx;
  91. margin-left: 60rpx;
  92. margin-top: 30rpx;
  93. }
  94. </style>