You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
1.2 KiB
87 lines
1.2 KiB
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background: #f2f8fc;
|
|
}
|
|
|
|
.rumbs {
|
|
width: 100%;
|
|
height: 60px;
|
|
background: #fff;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0px 0px 3px rgb(68 68 68 / 44%)
|
|
}
|
|
|
|
.rumbs .rumbs_box {
|
|
width: 1200px;
|
|
margin: 0px auto;
|
|
line-height: 60px;
|
|
font-size: 16px;
|
|
color: #444;
|
|
display: flex;
|
|
}
|
|
|
|
.content-box {
|
|
width: 1200px;
|
|
height: 620px;
|
|
margin: 0px auto;
|
|
box-sizing: border-box;
|
|
border: 1px solid #eee;
|
|
margin-bottom: 20px;
|
|
padding: 30px;
|
|
background-color: #fff;
|
|
display: flex;
|
|
}
|
|
|
|
.content-map {
|
|
width: 650px;
|
|
height: 560px;
|
|
/* border: 1px solid #aaa; */
|
|
}
|
|
|
|
.content-map>div {
|
|
width: 100%;
|
|
height: 49%;
|
|
}
|
|
|
|
.content-map>div:nth-child(1) {
|
|
border: 1px solid #aaa;
|
|
}
|
|
|
|
.content-map>div:nth-child(2) {
|
|
margin-top: calc(2% - 2px);
|
|
border: 1px solid #aaa;
|
|
}
|
|
|
|
.content-address {
|
|
margin-left: 20px;
|
|
flex: 1;
|
|
height: 560px;
|
|
}
|
|
|
|
.address-top {
|
|
height: 49%;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.address-top:nth-child(2) {
|
|
height: 49%;
|
|
margin-top: 2%;
|
|
}
|
|
|
|
.address-top div,
|
|
.address-bottom div {
|
|
font-size: 16px;
|
|
line-height: 33px;
|
|
color: #444;
|
|
}
|
|
|
|
.address-top .address-title,
|
|
.address-bottom .address-title {
|
|
height: 44px;
|
|
font-size: 33px;
|
|
}
|
|
|