YM
2024-05-22 e59a07075ba150d327683756dcd054d2b90b7fd8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<template>
  <div class="header">
    <!-- <div  class="pageHeader-first">
      <div class="header-bj"></div>
      <div class="content"></div>
    </div> -->
    <div class="pageHeader-second">
      <div class="second-con">
        <div class="second-left"></div>
        <div class="second-right">
          <img src="" alt="" />
          <span>单元 · 标题</span>
          <span>1-7</span>
        </div>
      </div>
    </div>
  </div>
</template>
<script>
export default {
  name: "header",
  data() {},
};
</script>
<style lang="less" scoped>
.header {
  width: 100%;
  height: 136px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  .pageHeader-first {
    width: 100%;
    height: 136px;
    position: relative;
    .header-bj {
      width: 80%;
      height: 115px;
      border-left: 1px solid #dfb27d;
      border-bottom: 1px solid #dfb27d;
      position: absolute;
      right: 30px;
      top: 36px;
    }
    .content {
      background-color: #f49a4c;
      width: 730px;
      height: 40px;
      position: absolute;
      left: 33px;
      top: 100px;
    }
  }
}
</style>