/* 初始化 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
li {
  list-style: none;
}
.container{
  width: 68%;
  margin:0 auto;
}
.container-fluid{
  width: 100%;
}

/* 头部 */
header{
  width: 100%;
  height: 450px;
  background: url(../images/1.jpg) no-repeat 0 -80px;
  background-size: cover;
}
/* 头部导航 */
.top-nav{
  color: white;
  height: 60px;
  position: relative;
}
.top-nav ul{
  height: 100%;
  position: absolute;
  display:flex;
  right: 50px;
}
.top-nav ul li{
  width: 120px;
  text-align: center;
  font-size: 16px;
  line-height: 60px;
  margin-left: 20px;
}
.top-nav ul li:hover{
  cursor: pointer;
}
.current{
  background-color: #d84366;
}
/* 头部内容 */
.top-content{
  height: 390px;
  position: relative;
}
.top-content h1{
  font-size: 42px;
  letter-spacing:8px;
  color: white;
  position: absolute;
  top: 100px;
}
.top-content h1 span{
  font-size: 26px;
  margin-left: 10px;
  color: rgb(216, 216, 216);
}
.top-content p{
  width: 650px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 40px;
  letter-spacing:8px;
  color: white;
  position: absolute;
  top: 170px;
  background:rgba(255,39,90,0.5) ;
}

/* 侧边栏 */
.sidebar{
  width: 90px;
  height: 120px;
  position: absolute;
  right: 10%;
  top:450px;
  border: 1px #dad9d9 solid;
  border-radius: 4px;
  background-color: rgba(red, green, blue, 1);
  z-index: 99;
}
.sidebar ul li{
  text-align: center;
  line-height: 60px;
  width: 100%;
  height: 60px;
}
.sidebar ul li:first-of-type{
  border-bottom: 1px #dad9d9 solid;
}
.sidebar_1:hover{
  cursor: pointer;
}
.sidebar-flex{
  position: fixed;
  right: 10%;
  top:10px;
}

/* 中间公司简介-标题 */
.center-nav{
  height: 100px;
  position: relative;
  margin-bottom: 30px;
}
.center-nav ul{
  height: 100%;
  display: flex;
  font-size: 36px;
  color: #2f2f2f;
}
.center-nav ul li{
  height: 100%;
  text-align: center;
  width: 160px;
  line-height: 100px;  
}
.center-nav-current{
  border-bottom: rgb(194, 59, 59) solid 2px;
}
/* 中间公司简介-内容 */
.center-content{
  padding-right: 10px;
  text-align: left;
  padding-bottom: 38px;
  line-height: 1.8;
  color: #808080;
}
.center-content p{
  text-indent: 30px;
  margin-top: 30px;
}

/* 公司地址 */
.address{
  margin-bottom: 48px;
}
.address p{
  height: 100px;
  font-size: 36px;
  color: #2f2f2f;
  border-bottom: rgb(194, 59, 59) solid 2px;
  text-align: center;
  width: 160px;
  line-height: 100px; 
  margin-bottom: 30px;
}
/* 
.map{
  width: 100%;
  height: 760px;
  position: relative;
  background: url(../images/2.jpg) no-repeat 0 0;
  background-size: contain;
  padding-top: 10%;
  padding-left: 30%;

}
.map-tips{
  width: 420px;
  height: 200px;
  
  background: url(../images/3.png) no-repeat center;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-tips ul{
  margin:0 auto;
  text-align: left;
  line-height: 1.8;
  font-size: 20px;
  color: #808080;
  padding-bottom: 38px;
} */

/* 底部 */
footer{
  height: 140px;
  background-color: #363d43;
  padding-top: 35px;
}
.footer-content .icon{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.footer-content .icon .common{
  width: 25px;
  height: 25px;
  background-color: lightcoral;
  margin-left: 10px;
  border-radius: 50%;
}
.footer-content .icon .icon-1{
  background: url(../images/icon1.jpg) no-repeat center;
  background-size: cover;
}
.footer-content .icon .icon-2{
  background: url(../images/icon2.jpg) no-repeat center;
  background-size: cover;
}

.footer-content p{
  color: rgb(156, 156, 156);
  font-size: 12px;
  text-align: center;
  margin-bottom: 5px;
}