brand.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <div class="Brand-container">
  3. <div class="banner-img">
  4. <img src="http://res.training.luojigou.vip/FlpLqC_a2wOuyJqG7LiOb2tbmUZP?imageView2/0/q/50|imageslim" alt="">
  5. <section class="label ">
  6. 品牌故事
  7. </section>
  8. </div>
  9. <div class="company-intro">
  10. <section class="company-intro-label wow animate__flipOutY">
  11. 公司简介
  12. </section>
  13. <div class="company-intro-text ">
  14. 全球顶级儿童逻辑思维教育专家以国际教育理念为指导,推动中国学前教育事业发展填补了中国学前儿童思维教育领域空白率先领导和实践幼儿园思维游戏化教学,
  15. 用全球同频使用的优质思维教育内容,为0-12岁儿童培养优质思维模式,建构思维“芯”。
  16. 是国际化科技教育内容的创始者,以“让中国孩子幸福成长”为使命,始终以“走出去、
  17. 请进来”、“洋为中用”的全球化视野,融合中西文化,全力打造具有成长型思维模式的未来人才。
  18. </div>
  19. </div>
  20. <Label />
  21. </div>
  22. </template>
  23. <script>
  24. import Label from '@/components/products/label.vue'
  25. export default {
  26. name: 'BrandPage',
  27. components: {
  28. Label
  29. }
  30. }
  31. </script>
  32. <style scoped lang="scss">
  33. .Brand-container {
  34. .banner-img {
  35. position: relative;
  36. img {
  37. width: 100%;
  38. height: 881px;
  39. display: block;
  40. }
  41. .label {
  42. font-family:PingFangSC-Semibold,PingFang SC;
  43. font-weight:600;
  44. color: #ffffff;
  45. font-size: 80px;
  46. position: absolute;
  47. top: 50%;
  48. left: 50%;
  49. transform: translate(-50%, -50%);
  50. }
  51. }
  52. .company-intro {
  53. width: 1200px;
  54. height: 447px;
  55. border-radius:14px;
  56. position: relative;
  57. top: 50%;
  58. left: 50%;
  59. transform: translateX(-50%);
  60. z-index: 1;
  61. overflow: hidden;
  62. margin-top: -80px;
  63. background: url('http://res.training.luojigou.vip/FnRDWlB5l2fF-qQ8xtP6LQC1MRwq?imageView2/0/q/50|imageslim') no-repeat;
  64. background-size: 1200px 447px;
  65. .company-intro-label {
  66. color: #262626;
  67. font-size: 48px;
  68. letter-spacing: 1.2px;
  69. text-align: center;
  70. margin-top: 60px;
  71. }
  72. .company-intro-text {
  73. width: 1009px;
  74. height: 144px;
  75. margin: 32px;
  76. color: #999999;
  77. font-size: 18px;
  78. letter-spacing: 0.45px;
  79. line-height: 36px;
  80. position: absolute;
  81. left: 50%;
  82. transform: translateX(-50%);
  83. }
  84. }
  85. }
  86. </style>