p-i-704-section-2.vue 811 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view>
  3. <view class="section">
  4. <view class="box">
  5. <view class="title">
  6. 今日产量
  7. </view>
  8. <view class="content">
  9. <slot></slot>
  10. </view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. };
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. .section{
  25. margin-top: 10rpx;
  26. .box{
  27. background: #FFFFFF;
  28. box-shadow: 0px 3rpx 30rpx 0px rgba(59, 74, 116, 0.14);
  29. border-radius: 21rpx;
  30. .title{
  31. width: 720rpx;
  32. font-size: 32rpx;
  33. font-family: PingFangSC-Medium, PingFang SC;
  34. font-weight: 500;
  35. color: #232627;
  36. line-height: 100rpx;
  37. text-align: center;
  38. border-bottom: 2rpx solid #f3f3f3;
  39. }
  40. .content{
  41. min-height: 200rpx;
  42. }
  43. }
  44. }
  45. </style>