Blame view

app/static/css/manu/manu.scss 1.61 KB
7820380e   “wangming”   1
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
  .head {
      ul {
          position: relative;
  
          .to_li {
              position: absolute;
              display: block;
              width: 40px;
              height: 5px;
              background: #C70009;
              border-radius: 49px 21px 0px 0px;
              bottom: -34px;
              left: 79%;
          }
      }
  }
  
  .change {
      width: 100%;
  
      .tab-container {
          width: 100%;
          overflow: hidden;
          margin: 0 auto;
      }
  
      /* 设置标签页选项卡的样式 */
      .tab {
          padding: 8px 16px;
          cursor: pointer;
          font-size: 16px;
          font-family: Source Han Sans, Source Han Sans;
          font-weight: 400;
          color: #3D3D3D;
          line-height: 23px;
      }
  
      /* 设置选中的标签页样式 */
      .active {
          color: #C70009;
          font-weight: bold;
      }
  
      /* 设置标签页内容的样式 */
      .tab-content {
          display: none;
          padding: 16px;
          background-color: #fff;
      }
  
      .content {
          margin-top: 50px;
          width: 100%;
      }
  
      .tag {
          border-bottom: 1px solid #E5E5E5;
  
          .main {
              margin: 0 auto;
              width: 81.25rem;
              padding: 36px 0px;
              display: flex;
              justify-content: space-evenly;
              position: relative;
  
              .tab_to {
                  transition: all linear 200ms;
                  position: absolute;
                  width: 40px;
                  height: 5px;
                  background-color: #C70009;
                  border-radius: 49px 21px 0px 0px;
                  bottom: 0;
                  left: 182px ;
              }
          }
      }
  }