body{
  color: #000000;
  font-size: 14px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
.bold{
  font-weight: bold;
}
/* head */
#header_fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  z-index: 99;
  background-color: rgba(255, 255, 255, .8);
  /* background-color: rgba(240, 91, 198, 0.8); */
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#header_fixed .logo_img{
  width: 180px;
  height: 40px;
  margin: 0 28px 0 50px;
}
#header_fixed .logo_img img{
  width: 100%;
  height: 100%;
}
#header_fixed .logo_txt{
  letter-spacing: .5px;
  font-size: 16px;
} 
#header_fixed .logo_en{
  font-family: georgia;
}
#header_fixed.logo_cn{}
#menuBar{
  height: 70px;
  line-height: 70px;
  position: absolute;
  top: 0;
  right: 50px;
  color: #1f2376;
  letter-spacing: 2px;
  cursor: pointer;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}
#menuBar:hover{
  text-decoration: underline;
}
/* menu */
#menuList{
  width: 410px;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  font-size: 16px;
  transition: all .4s;
}
#menuList.showMenu{
  right: 0px;
}
#menuList .nav_close{
  width: 30px;
  height: 30px;
  position: absolute;
  top: 30px;
  right: 35px;
  cursor: pointer;
  transition: all .4s;
}
#menuList .nav_close:hover{
  transform: rotate(180deg);
}
#menuList .nav_list{
  width: 300px;
  margin: 0 auto;
}
#menuList .nav_itm{
  width: 100%;
  height: 85px;
  cursor: pointer;
}
#menuList .nav_bar{
  display: block;
  width: 100%;
  height: 85px;
  line-height: 85px;
  text-align: center;
  text-decoration: none;
  color: #333333;
  border-bottom: 1px solid #000000;
  font-style: italic;
  font-weight: 400;
}
#menuList .nav_bar:hover{
  text-decoration: none;
  color: #000000;
}
#menuList .nav_bar.active{
  background-color: #000000;
  color: #ffffff;
}

.footer_auto{
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 50px;
  margin-top: 20px;
  box-sizing: border-box;
}
.footer_img1{
  width: 158px;
  height: 42px;
  margin-right: 30px;
}
.footer_img2{
  width: 74px;
  height: 80px;
}
.footer_auto.contact{
  display: flex;
  justify-content: space-between;
}
.footer_auto.contact .contact_l{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Microsoft YaHei", sans-serif;
  margin-left: 60px;
}
.contact_img2{
  width: 56px;
  height: 56px;
  margin-right: 10px;
}
.footer_auto.contact .contact_r{}
/* banner */
#myCarousel,#myCarousel .carousel-inner,#myCarousel .carousel-inner .item,#myCarousel .carousel-inner .item img{
  width: 100%;
  height: 100%;
}

/* PC端 */
@media all and (min-width: 769px) {
  
}
/* 移动端  */
@media all and (max-width: 768px) {
  #header_fixed .logo_img{
    margin-left: 5%;
  }
  #header_fixed .logo_txt{
    display: none;
  } 
  #menuBar{
    right: 5%;
  }
  #menuList{
    width: 100%;
  }
  #menuList .nav_list{
    width: 80%;
  }
  .footer_auto{
    padding-right: 5%;
  }
}