@import './reset.css';


.page-wrap{
  padding-top: 150px;
}
/* 头部 */
.header-fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 4px rgba(0,0,0,0.1);
  z-index: 9;
}
.header{
  position: relative;
  display: flex;
  align-items: center;
  height: 92px;
  width: 1007px;
  margin: 0 auto;
}
.img-logo{
  height: 57px;
  width: 276px;
  object-fit: contain;
}
.header-des{
  position: relative;
  line-height: 24px;
  font-size: 15px;
  font-weight: bold;
  color: #666;
  padding-left: 20px;
}
.header-des::before{
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 1px;
  height: 50px;
  background: #F6F6F6;
}
/* 导航栏 */
.nav-list{
  background: #f6f6f6;
}
.nav-list-wrap{
  display: flex;
  align-items: center;
  width: 1007px;
  margin: 0 auto;
}
.nav-item{
  margin: 0 20px;
  width: 100px;
  height: 100%;
  line-height: 56px;
  text-align: center;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  border-bottom: 2px solid #f6f6f6;
}
.nav-item a{
  display: block;
  width: 100%;
  height: 100%;
}
.nav-item:hover{
  color: #0d56aa;
  border-bottom: 2px solid #0f4991;
}
.nav-item a.nav-english{
  display: none;
}
.nav-item:hover a.nav-english{
  display: block;
}
.nav-item:hover a.nav-chinese{
  display: none;
}
.nav-item-act{
  color: #0d56aa;
  border-bottom: 2px solid #0f4991;
}
/* 页脚 */
.footer{
  text-align: center;
  height: 72px;
  line-height: 72px;
  font-size: 14px;
  color: #fff;
  background: #383838;
}
/* 联系我们 */
.connect-box{
  padding: 120px 0;
  background: #2A2D37;
}
.connect-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}
.connect-left{
  width: 400px;
}
.company-name{
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: rgb(229, 229, 229);
}
.company-24{
  margin-top: 30px;
  font-size: 14px;
  line-height: 42px;
  color: rgb(217, 217, 217);
  text-align: center;
}
.company-phone{
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  color: rgb(7, 108, 224);
}
.connect-right{
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  margin-left: 100px;
}
.connect-item{
  width: 50%;
  margin-bottom: 60px;
}
.connect-item:nth-child(3),
.connect-item:nth-child(4){
  margin-bottom: 0;
}
.connect-name{
  font-size: 14px;
  line-height: 34px;
  color: rgb(158, 158, 158);
}
.connect-detail{
  font-size: 14px;
  line-height: 24px;
  color: rgb(158, 158, 158);
}
/* 子页面模块头部图片 */
.illustrations{

}
.img-illustrations{
  display: block;
  height: 274px;
  margin: 0 auto;
}
/* 控制显隐藏 */
.hide{
  display: none!important;
}
.show{
  display: flex!important;
}