-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (96 loc) · 1.79 KB
/
style.css
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
section{
width:100%;
height: 100vh;
background-image:url(image/bg.png) ;
background-position: center;
background-size: cover;
}
section nav{
width: 100%;
display: flex;
align-items: center;
justify-content: space-around;
box-shadow: 0 0 10px #089da1;
background: #fff;
position:fixed;
left: 0;
z-index: 100;
}
section nav .logo img{
width: 100px;
cursor: pointer;
margin: 8px 0;
}
section nav ul{
list-style:none;
}
section nav li{
display: inline-block;
padding: 0 10px;
}
section nav li a{
text-decoration: none;
color: #000;
}
section nav li a:hover{
color:#089da1;
cursor: pointer;
}
section .main{
display: flex;
align-items: center;
justify-content: space-around;
position: relative;
top:10%;
}
section .main h1{
position: relative;
font-size: 50px;
top: 80px;
right: 10px;
}
section .main h1 span{
color: #089da1;
}
section .main p{
width: 650px;
text-align: justify;
line-height: 22px;
position: relative;
top: 125px;
left: 25px;
}
section .main .main_tag .main_btn{
background: #089da1;
padding: 10px 20px;
position: relative;
top:200px;
left: 25px;
color:#fff;
text-decoration: none;
}
section .main .main_img img{
width: 780px;
position: relative;
top: 90px;
left: 29px;
}
/* service */
.services{
width: 100%;
height: auto;
margin: 35px 0;
}
.services .services_Box{
width: 95%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-around;
}