Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
html
/
bdideal
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
f181a51b
authored
Mar 22, 2019
by
hank
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix css
parent
38e8525c
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
384 additions
and
23 deletions
+384
-23
js/tools.js
+9
-9
style/about.css
+51
-0
style/about.less
+52
-0
style/common.css
+3
-4
style/index.css
+36
-1
style/index.less
+36
-2
style/products.css
+52
-1
style/products.less
+52
-2
style/solution.css
+45
-1
style/solution.less
+48
-3
No files found.
js/tools.js
View file @
f181a51b
...
...
@@ -25,15 +25,15 @@ Date.prototype.Format = function(fmt) {
this
.
ideal
=
this
.
ideal
||
{};
(
function
(
window
)
{
window
.
onload
=
function
(
param
)
{
$
(
'#nav-products>a'
).
click
(
function
(
e
)
{
e
.
preventDefault
();
$
(
'#nav-products .dropdown-menu'
).
toggle
(
function
()
{
},
function
()
{
})
})
}
//
window.onload = function (param) {
//
$('#nav-products>a').click(function (e) {
//
e.preventDefault();
//
$('#nav-products .dropdown-menu').toggle(function() {
//
},
//
function() {
//
})
//
})
//
}
function
GetRequest
(
key
)
{
var
url
=
location
.
search
;
//获取url中"?"符后的字串
var
theRequest
=
new
Object
();
...
...
style/about.css
View file @
f181a51b
...
...
@@ -474,6 +474,57 @@ ul {
z-index
:
555
;
width
:
80%
;
}
body
.main-container
.word-box
{
position
:
absolute
;
padding-left
:
20px
;
padding-top
:
1.5rem
;
z-index
:
555
;
width
:
80%
;
}
body
.main-container
.word-box
p
.line1
{
width
:
28px
;
height
:
1px
;
background
:
#333333
;
margin-bottom
:
0.3rem
;
}
body
.main-container
.word-box
p
.line2
{
width
:
147px
;
height
:
1px
;
background
:
#333333
;
margin-top
:
0.5rem
;
}
body
.main-container
.word-box
p
.btword
{
font-size
:
0.28rem
;
color
:
#333333
;
/* font-weight: bold; */
margin-bottom
:
0.15rem
;
}
body
.main-container
.word-box
p
.btworden
{
font-size
:
0.125rem
;
color
:
#333333
;
}
body
.main-container
.word-box
p
.conword
{
font-size
:
0.16rem
;
color
:
#333333
;
line-height
:
0.26rem
;
margin-top
:
0.15rem
;
max-width
:
466px
;
text-align
:
justify
;
}
body
.main-container
.word-box
a
.linkword
{
width
:
140px
;
height
:
43px
;
border
:
1px
solid
#ffffff
;
text-align
:
center
;
color
:
#ffffff
;
line-height
:
40px
;
font-size
:
16px
;
display
:
block
;
margin-top
:
35px
;
position
:
relative
;
-webkit-transition
:
all
0.2s
ease
;
transition
:
all
0.2s
ease
;
}
.our-products
{
position
:
relative
;
background-size
:
100%
;
...
...
style/about.less
View file @
f181a51b
...
...
@@ -500,6 +500,58 @@ ul {
z-index: 555;
width: 80%;
}
.word-box {
position: absolute;
padding-left: 20px;
padding-top: 1.5rem;
z-index: 555;
width: 80%;
p.line1 {
width: 28px;
height: 1px;
background: #333333;
margin-bottom: 0.3rem;
}
p.line2 {
width:147px;
height:1px;
background:#333333;
margin-top: 0.5rem;
}
p.btword {
font-size: 0.28rem;
color: #333333;
/* font-weight: bold; */
margin-bottom: 0.15rem;
}
p.btworden {
font-size: 0.125rem;
color: #333333;
// margin-top: 21px;
}
p.conword {
font-size: 0.16rem;
color: #333333;
line-height: 0.26rem;
margin-top: 0.15rem;
max-width: 466px;
text-align: justify;
}
a.linkword {
width: 140px;
height: 43px;
border: 1px solid #ffffff;
text-align: center;
color: #ffffff;
line-height: 40px;
font-size: 16px;
display: block;
margin-top: 35px;
position: relative;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
}
}
.our-products {
...
...
style/common.css
View file @
f181a51b
...
...
@@ -1816,6 +1816,7 @@ margin-top: 0.1rem;
height
:
420px
;
margin-top
:
50px
;
}
body
.main-container
.navbar-container
{
max-width
:
100vw
;
position
:
fixed
;
...
...
@@ -1825,6 +1826,7 @@ margin-top: 0.1rem;
position
:
fixed
;
top
:
0
;
}
body
.main-container
.navbar-brand
{
padding
:
10px
15px
;
}
...
...
@@ -1832,10 +1834,7 @@ margin-top: 0.1rem;
width
:
1.62rem
;
/* height:1.04rem; */
}
body
.main-container
.swiper-container
.word-box
p
.btword
{
font-size
:
28px
;
}
body
.navbar-container
{
position
:
relative
;
}
...
...
style/index.css
View file @
f181a51b
...
...
@@ -982,8 +982,43 @@ ul {
background
:
white
;
z-index
:
9999
;
}
.main-container
.swiper-container
.word-box
{
padding-left
:
20px
;
padding-top
:
2rem
;
top
:
1.5rem
;
left
:
15%
;
z-index
:
555
;
width
:
80%
;
}
.main-container
.swiper-container
.word-box
p
.line1
{
width
:
40px
;
height
:
2px
;
background
:
#ffffff
;
margin-bottom
:
0.5rem
;
}
.main-container
.swiper-container
.word-box
p
.line2
{
width
:
211px
;
height
:
2px
;
background
:
#ffffff
;
margin-top
:
0.5rem
;
}
.main-container
.swiper-container
.word-box
p
.btword
{
font-size
:
28px
;
font-size
:
0.28rem
;
color
:
#ffffff
;
/* font-weight: bold; */
}
.main-container
.swiper-container
.word-box
p
.btworden
{
font-size
:
0.125rem
;
color
:
#ffffff
;
margin-top
:
0.15rem
;
}
.main-container
.swiper-container
.word-box
p
.conword
{
font-size
:
0.16rem
;
color
:
#ffffff
;
line-height
:
0.2rem
;
margin-top
:
0.4rem
;
max-width
:
530px
;
text-align
:
justify
;
}
.navbar-brand
{
padding
:
7px
15px
;
...
...
style/index.less
View file @
f181a51b
...
...
@@ -1057,9 +1057,43 @@ ul {
background: white;
z-index: 9999;
}
.swiper-container .word-box {
.swiper-container .word-box {
// position: absolute;
padding-left: 20px;
padding-top: 2rem;
top: 1.5rem;
left: 15%;
z-index: 555;
width: 80%;
p.line1 {
width: 40px;
height: 2px;
background:rgba(255,255,255,1);
margin-bottom: 0.5rem;
}
p.line2 {
width: 211px;
height: 2px;
background:rgba(255,255,255,1);
margin-top: 0.5rem;
}
p.btword {
font-size: 28px;
font-size: 0.28rem;
color: #ffffff;
/* font-weight: bold; */
}
p.btworden {
font-size: 0.125rem;
color: #ffffff;
margin-top: 0.15rem;
}
p.conword {
font-size: 0.16rem ;
color: #ffffff;
line-height: 0.2rem;
margin-top: 0.4rem;
max-width: 530px;
text-align: justify;
}
}
}
...
...
style/products.css
View file @
f181a51b
...
...
@@ -641,8 +641,59 @@ ul {
}
}
@media
(
max-width
:
768px
)
{
.main-container
.qiu
{
display
:
none
!important
;
}
.main-container
#banner
.word-box
{
position
:
absolute
;
padding-left
:
20px
;
padding-top
:
1.5rem
;
z-index
:
555
;
width
:
80%
;
}
.main-container
#banner
.word-box
p
.line1
{
width
:
28px
;
height
:
1px
;
background
:
#333333
;
margin-bottom
:
0.3rem
;
}
.main-container
#banner
.word-box
p
.line2
{
width
:
147px
;
height
:
1px
;
background
:
#333333
;
margin-top
:
0.5rem
;
}
.main-container
#banner
.word-box
p
.btword
{
font-size
:
0.5rem
;
font-size
:
0.28rem
;
color
:
#333333
;
/* font-weight: bold; */
margin-bottom
:
0.15rem
;
}
.main-container
#banner
.word-box
p
.btworden
{
font-size
:
0.125rem
;
color
:
#333333
;
}
.main-container
#banner
.word-box
p
.conword
{
font-size
:
0.16rem
;
color
:
#333333
;
line-height
:
0.26rem
;
margin-top
:
0.15rem
;
max-width
:
466px
;
text-align
:
justify
;
}
.main-container
#banner
.word-box
a
.linkword
{
width
:
140px
;
height
:
43px
;
border
:
1px
solid
#ffffff
;
text-align
:
center
;
color
:
#ffffff
;
line-height
:
40px
;
font-size
:
16px
;
display
:
block
;
margin-top
:
35px
;
position
:
relative
;
-webkit-transition
:
all
0.2s
ease
;
transition
:
all
0.2s
ease
;
}
.our-products
{
position
:
relative
;
...
...
style/products.less
View file @
f181a51b
...
...
@@ -695,9 +695,59 @@ ul {
}
@media (max-width: 768px) {
.main-container {
#banner .word-box {
.qiu {
display: none !important;
}
#banner .word-box {
position: absolute;
padding-left: 20px;
padding-top: 1.5rem;
z-index: 555;
width: 80%;
p.line1 {
width: 28px;
height: 1px;
background: #333333;
margin-bottom: 0.3rem;
}
p.line2 {
width:147px;
height:1px;
background:#333333;
margin-top: 0.5rem;
}
p.btword {
font-size: 0.5rem;
font-size: 0.28rem;
color: #333333;
/* font-weight: bold; */
margin-bottom: 0.15rem;
}
p.btworden {
font-size: 0.125rem;
color: #333333;
// margin-top: 21px;
}
p.conword {
font-size: 0.16rem;
color: #333333;
line-height: 0.26rem;
margin-top: 0.15rem;
max-width: 466px;
text-align: justify;
}
a.linkword {
width: 140px;
height: 43px;
border: 1px solid #ffffff;
text-align: center;
color: #ffffff;
line-height: 40px;
font-size: 16px;
display: block;
margin-top: 35px;
position: relative;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
}
}
...
...
style/solution.css
View file @
f181a51b
...
...
@@ -942,10 +942,54 @@ ul {
body
.main-container
.word-box
{
position
:
absolute
;
padding-left
:
20px
;
padding-top
:
1
0%
;
padding-top
:
1
.5rem
;
z-index
:
555
;
width
:
80%
;
}
body
.main-container
.word-box
p
.line1
{
width
:
28px
;
height
:
1px
;
background
:
#333333
;
margin-bottom
:
0.3rem
;
}
body
.main-container
.word-box
p
.line2
{
width
:
147px
;
height
:
1px
;
background
:
#333333
;
margin-top
:
0.5rem
;
}
body
.main-container
.word-box
p
.btword
{
font-size
:
0.28rem
;
color
:
#333333
;
/* font-weight: bold; */
margin-bottom
:
0.15rem
;
}
body
.main-container
.word-box
p
.btworden
{
font-size
:
0.125rem
;
color
:
#333333
;
}
body
.main-container
.word-box
p
.conword
{
font-size
:
0.16rem
;
color
:
#333333
;
line-height
:
0.26rem
;
margin-top
:
0.15rem
;
max-width
:
466px
;
text-align
:
justify
;
}
body
.main-container
.word-box
a
.linkword
{
width
:
140px
;
height
:
43px
;
border
:
1px
solid
#ffffff
;
text-align
:
center
;
color
:
#ffffff
;
line-height
:
40px
;
font-size
:
16px
;
display
:
block
;
margin-top
:
35px
;
position
:
relative
;
-webkit-transition
:
all
0.2s
ease
;
transition
:
all
0.2s
ease
;
}
.solution
{
padding-top
:
1rem
;
padding-bottom
:
0
;
...
...
style/solution.less
View file @
f181a51b
...
...
@@ -1000,13 +1000,58 @@ ul {
body .main-container {
height: 240px;
margin-top: 50px;
.word-box {
.word-box {
position: absolute;
padding-left: 20px;
padding-top: 1
0%
;
padding-top: 1
.5rem
;
z-index: 555;
width: 80%;
}
p.line1 {
width: 28px;
height: 1px;
background: #333333;
margin-bottom: 0.3rem;
}
p.line2 {
width:147px;
height:1px;
background:#333333;
margin-top: 0.5rem;
}
p.btword {
font-size: 0.28rem;
color: #333333;
/* font-weight: bold; */
margin-bottom: 0.15rem;
}
p.btworden {
font-size: 0.125rem;
color: #333333;
// margin-top: 21px;
}
p.conword {
font-size: 0.16rem;
color: #333333;
line-height: 0.26rem;
margin-top: 0.15rem;
max-width: 466px;
text-align: justify;
}
a.linkword {
width: 140px;
height: 43px;
border: 1px solid #ffffff;
text-align: center;
color: #ffffff;
line-height: 40px;
font-size: 16px;
display: block;
margin-top: 35px;
position: relative;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
}
}
.solution {
padding-top: 1rem;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment