Blame view

app/static/css/system/system.scss 3.82 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
  .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: 33.5%;
          }
      }
  }
  // 分类区域
  .fen{
      width: 81.25rem;
      margin: 0 auto;
      // title区域
      .title{
          // float: left;
          font-size: 30px;
          font-family: Source Han Sans, Source Han Sans;
          font-weight: 900;
          color: #3D3D3D;
          line-height: 56px;
          display: flex;
          align-items: center;
          margin-top: 46px;
          &::before{
              content: "";
              display: inline-block;
              width: 6px;
              height: 56px;
              margin-right: 20px;
              background-color: #C70009;
          }
      }
      .two{
          width: 70rem;
          margin-left: 20px;
          font-size: 18px;
          font-family: Source Han Sans, Source Han Sans;
          font-weight: 400;
          color: #787878;
          line-height: 30px;
          margin-top: 21px;
      }
      // 下方分类框
       // 下方六个介绍框
       .info{
          width: 100%;
          // height: 550px;
          // margin-top: 28px;
          display: flex;
          justify-content: space-between;
          align-content: space-between;
          flex-wrap: wrap;
          div{
              width: 32.3%;
              height: 261.1px;
              // background-color: green;
              margin-top: 20px;
              display: flex;
              flex-direction: column;
              justify-content: space-evenly;
              transition: linear all 500ms;
              border: 1px solid rgba(30,43,95,0.2);
              border-radius: 10px 10px 10px 10px;
              &:hover{
                  background: url(../../imgs/system/bg.jpg) center center no-repeat ; 
                  background-size: 100% 100%;
                  box-shadow: 27px 21px 44px 0px rgba(24,35,80,0.18);
                  background-blend-mode: multiply;
                  span{
                      color: #FFFFFF;
                      &::before{
                          content: '';
                          display: inline-block;
                          width: 18px;
                          height: 18px;
                          background: url('../../imgs/home/info_new.png') center center no-repeat;
                          background-size: 100% 100%;
                          position: absolute;
                          left: -30px;
                          top: 50%;
                          transform: translateY(-50%);
                      }
                  }
                  p{
                      color: #FFFFFF;
                  }
                  div{
                      background: url('../../imgs/home/info_to_yellow.png') center center no-repeat;
                      background-size: 100% 100%;
                  }
              }
              div{
                  margin-left: 46px;
                  width: 25px;
                  height: 15px;
                  background: url('../../imgs/home/info_to.png') center center no-repeat;
                  background-size: 100%;
                  border: none;
              }
              span{
                  position: relative;
                  margin-left: 46px;
                  font-size: 24px;
                  font-family: Source Han Sans, Source Han Sans;
                  font-weight: 700;
                  color: #000000;
                  line-height: 46px;
                 
              }
              p{
                  margin-left: 46px;
                  width: 316.21px;
                  // height: 92px;
                  font-size: 18px;
                  font-family: Source Han Sans, Source Han Sans;
                  font-weight: 500;
                  color: #000000;
                  line-height: 30px;
                  margin-top: 30px;
              }
          }
      }
  }