Blame view

app/static/css/contact/contact.scss 5.18 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
  .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: 93.4%;
          }
      }
  }
  .contact_cont {
      width: 100%;
      margin-top: 23px;
  
      .content {
          width: 81.25rem;
          // height: 100px;
          margin: 0 auto;
          overflow: hidden;
  
          div {
              background-color: #F7F7F9;
              border-radius: 10px;
              overflow: hidden;
              margin-top: 22px;
              transition: all linear 800ms;
              // padding-bottom: 20px;
              &:hover {
                  background: url(../../imgs/contact/bg.jpg) center center no-repeat;
                  background-size: 100% 100%;
                  box-shadow: 27px 21px 44px 0px rgba(24, 35, 80, 0.18);
  
                  .one {
                      color: #FCD106;
  
                      &::after {
                          background-color: #FCD106;
                      }
                  }
  
                  .two,
                  .thr,
                  .fou {
                      color: #DFDFDF;
                      span {
                          color: #FCD106;
                      }
                  }
                  .two {
                      margin-top: 30px;
      
                      &::before {
                          content: "";
                          display: inline-block;
                          width: 18px;
                          height: 20px;
                          background: url(../../imgs/contact/addr_yellow.png) center center no-repeat;
                          background-size: 100%;
                          margin-top: 4px;
                          margin-right: 16px;
                      }
                  }
      
                  .thr {
                      &::before {
                          content: "";
                          display: inline-block;
                          width: 16px;
                          height: 20px;
                          background: url(../../imgs/contact/tel_yellow.png) center center no-repeat;
                          background-size: 100%;
                          margin-top: 4px;
                          margin-right: 16px;
                      }
                  }
      
                  .fou {
  
                      &::before {
                          content: "";
                          display: inline-block;
                          width: 20px;
                          height: 19px;
                          background: url(../../imgs/contact/mail_yellow.png) center center no-repeat;
                          background-size: 100%;
                          margin-top: 4px;
                          margin-right: 16px;
                      }
                  }
              }
  
              p {
                  width: 1162.98px;
                  margin: 0 auto;
              }
  
              .one {
                  font-size: 24px;
                  font-family: Source Han Sans, Source Han Sans;
                  font-weight: 700;
                  color: #C70009;
                  line-height: 40px;
                  margin-top: 20px;
  
                  &::after {
                      content: "";
                      width: 73px;
                      height: 2px;
                      display: block;
                      background-color: #C70009;
                      margin-top: 10px;
                  }
              }
  
              .two,
              .thr,
              .fou {
                  font-size: 18px;
                  font-family: Source Han Sans, Source Han Sans;
                  font-weight: 500;
                  color: #787878;
                  line-height: 40px;
  
                  span {
                      font-size: 20px;
                      font-weight: 600;
                      color: #C70009;
                  }
              }
  
              .two {
                  margin-top: 30px;
  
                  &::before {
                      content: "";
                      display: inline-block;
                      width: 18px;
                      height: 20px;
                      background: url(../../imgs/contact/addr_red.png) center center no-repeat;
                      background-size: 100%;
                      margin-top: 4px;
                      margin-right: 16px;
                  }
              }
  
              .thr {
                  &::before {
                      content: "";
                      display: inline-block;
                      width: 16px;
                      height: 20px;
                      background: url(../../imgs/contact/tel_red.png) center center no-repeat;
                      background-size: 100%;
                      margin-top: 4px;
                      margin-right: 16px;
                  }
              }
  
              .fou {
                  padding-bottom: 24px;
                  &::before {
                      content: "";
                      display: inline-block;
                      width: 20px;
                      height: 19px;
                      background: url(../../imgs/contact/mail_red.png) center center no-repeat;
                      background-size: 100%;
                      margin-top: 4px;
                      margin-right: 16px;
                  }
              }
          }
      }
  }