p-personnel-orientation-section-3.vue 698 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view>
  3. <view class="content">
  4. <view class="title">
  5. 当前井下人员分布
  6. </view>
  7. <view class="inner">
  8. <slot></slot>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. };
  18. }
  19. }
  20. </script>
  21. <style lang="scss">
  22. .content{
  23. margin-top: 16rpx;
  24. background: #FFFFFF;
  25. box-shadow: 0px 3rpx 29rpx 0px rgba(59, 74, 116, 0.14);
  26. border-radius: 20rpx;
  27. .title{
  28. line-height: 96rpx;
  29. text-align: center;
  30. font-size: 30rpx;
  31. font-family: PingFangSC-Regular, PingFang SC;
  32. font-weight: 400;
  33. color: #232627;
  34. border-bottom: 2rpx solid #f3f3f3;
  35. }
  36. .inner{
  37. // height: 200rpx;
  38. }
  39. }
  40. </style>