石墨消解仪
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.6 KiB

2 years ago
  1. <template>
  2. <div class="photo_container">
  3. <div class="photo_img_wrap">
  4. <p class="title">拍照加酸区</p>
  5. <img :src="PhotoImg" class="img" alt="" />
  6. </div>
  7. <div class="opers">
  8. <img :src="Load" class="img1" alt="" />
  9. <img :src="Take" class="img2" alt="" />
  10. <img :src="AddLiquid" class="img3" alt="" />
  11. <img :src="Hot" class="img4" alt="" />
  12. </div>
  13. </div>
  14. </template>
  15. <script setup>
  16. import PhotoImg from '@/assets/img/main/photo.png'
  17. import Load from '@/assets/img/main/oper/load.png'
  18. import Take from '@/assets/img/main/oper/take.png'
  19. import AddLiquid from '@/assets/img/main/oper/add_liquid.png'
  20. import Hot from '@/assets/img/main/oper/hot.png'
  21. </script>
  22. <style lang="scss" scoped>
  23. .photo_container {
  24. padding: 20px;
  25. box-sizing: border-box;
  26. height: 100%;
  27. display: flex;
  28. flex-direction: column;
  29. .photo_img_wrap {
  30. position: relative;
  31. .title {
  32. position: absolute;
  33. left: 40px;
  34. top: 26px;
  35. font-family: Poppins;
  36. font-size: 26px;
  37. font-weight: bold;
  38. line-height: normal;
  39. letter-spacing: 0.06em;
  40. color: #ffffff;
  41. }
  42. .img {
  43. width: 730px;
  44. height: 730px;
  45. border-radius: 14px;
  46. }
  47. }
  48. .opers {
  49. display: flex;
  50. align-items: center;
  51. justify-content: space-between;
  52. padding: 0 40px;
  53. box-sizing: border-box;
  54. flex: 1;
  55. .img1 {
  56. width: 150px;
  57. height: 38px;
  58. }
  59. .img2 {
  60. width: 95px;
  61. height: 38px;
  62. }
  63. .img3 {
  64. width: 82px;
  65. height: 38px;
  66. }
  67. .img4 {
  68. width: 92px;
  69. height: 38px;
  70. }
  71. }
  72. }
  73. </style>