Creativity.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <div class="customize-container">
  3. <el-card body-style="padding: 20px 80px 0 80px;">
  4. <div class="custom-card-title">
  5. <span class="custom-card-icon">|</span>
  6. <span class="custom-card-Text">创意</span>
  7. </div>
  8. <div style="display: flex">
  9. <div class="left-container">
  10. <p class="left-part-title">请选择您想要自定义商品广告的方式</p>
  11. </div>
  12. <div class="right-container">
  13. <div class="preview-title-line">
  14. <p class="right-part-title">广告预览</p>
  15. <el-select></el-select>
  16. </div>
  17. </div>
  18. </div>
  19. </el-card>
  20. </div>
  21. </template>
  22. <script setup lang="ts"></script>
  23. <style scoped>
  24. .customize-container {
  25. margin-top: 10px;
  26. }
  27. .custom-card-title {
  28. font-weight: 700;
  29. padding-bottom: 18px;
  30. }
  31. .custom-card-Text {
  32. font-size: 18px;
  33. padding-left: 5px;
  34. }
  35. .custom-card-icon {
  36. color: #306cd7;
  37. font-size: 26px;
  38. }
  39. .left-container {
  40. width: 50%;
  41. }
  42. .left-part-title {
  43. color: #4e5969;
  44. padding-bottom: 4px;
  45. height: 32px;
  46. font-weight: 700;
  47. line-height: 32px;
  48. }
  49. .right-part-title {
  50. color: #4e5969;
  51. padding-bottom: 4px;
  52. height: 32px;
  53. font-weight: 700;
  54. line-height: 32px;
  55. }
  56. </style>