/*网站通用样式*/
body {
  font-family: "Microsoft Yahei";
}
.flexrow{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.center{
  display: flex;
  justify-content: center;
  align-items: center;
}
/*header头部样式*/
header .header-container {
  width: 100%;
  height: 90px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(204, 204, 204, 0.5);
  -moz-box-shadow: 0 0 20px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 20px rgba(204, 204, 204, 0.5);
  position: fixed;
  z-index: 999;
  top: 0px;
}
header .header-container .nav-box {
  width: 100%;
  min-width: 1200px;
  height: 90px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
header .header-container .nav-box .nav-left span {
  border-right: 2px solid #83838b61;
}
header .header-container .nav-box .nav-left #logo_top {
  width: 160px;
  float: left;
  margin: 14px;
  padding-right: 20px;
  border-right: 2px solid gray;
}
header .header-container .nav-box .log{
  padding: 20px 0;
  font-family: "阿里妈妈数黑体 Bold";
  color: gray;
  font-size: 16px;
  line-height: 25px;
}
header .header-container .nav-box .nav-mid .navbar-nav {
  position: relative;
  display: inline-block;
  padding-inline-start: 30px;
}
header .header-container .nav-box .nav-mid .navbar-nav li {
  margin: 0 40px 0 0;
  text-align: center;
  list-style: none;
}
header .header-container .nav-box .nav-mid .navbar-nav li a {
  min-width: 20px;
  font-size: 16px;
  font-family: "Microsoft YaHei UI";
  color: #898989;
  padding-bottom: 15px;
  margin: 0;
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
}
header .header-container .nav-box .nav-mid .navbar-nav li a::after {
  transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  content: "";
  display: block;
  height: 2px;
  background: #075491;
  position: absolute;
  bottom: 0;
  opacity: 0.3;
  left: -1px;
  width: calc(102%);
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
}
header .header-container .nav-box .nav-mid .navbar-nav li a:hover::after {
  opacity: 1;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
header .header-container .nav-box .nav-mid .navbar-nav li a.active {
  border-bottom: 2px solid #075491;
  box-sizing: border-box;
  color: #434343;
}
header .header-container .nav-box .nav-mid .navbar-nav li a.active:hover::after {
  display: none;
}
header .header-container .nav-box .nav-mid .navbar-nav li.last {
  margin-right: 0;
}
header .header-container .nav-box .nav-mid .navbar-nav li.line-item {
  line-height: 87px;
  color: #999;
}
header .header-container .nav-box .nav-mid .navbar-phone>div:first-child{
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #075491;
  text-align: center;
  line-height: 36px;
}
header .header-container .nav-box .nav-mid .navbar-phone>div:first-child img{
  width: 26px;
}
header .header-container .nav-box .nav-mid .navbar-phone>div:last-child>div:last-child{
  color: #075491;
  font-weight: bold;
  font-size: 18px;
}
header .header-container .nav-box .nav-mid .navbar-phone>div:last-child>div:first-child{
  font-size: 13px;
}

/*footer样式*/
footer {
  width: 100%;
  min-width: 1100px;
  padding: 20px 10%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(204, 204, 204, 0.5); /*透明度绿色高亮*/
  -moz-box-shadow: 0 0 10px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 10px rgba(204, 204, 204, 0.5);
}

footer .footer-box {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

footer .footer-left img{
  width: 130px;
}

footer .footer-left p span{
  margin-right: 15px;
  margin-left: 30px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background-color: #075491;
}

footer .footer-right {
  margin-right: 180px;
}
footer ul {
  float: left;
  list-style: none;
  text-align: left;
}

footer ul li a {
  color: #555;
  font-size: 16px;
  line-height: 40px;
}

footer ul li a:hover {
  color: #075491;
  text-decoration: none;
}

footer ul .footer-contact {
  font-size: 14px;
  line-height: 30px;
  color: #898989;
}

footer ul:last-child {
  padding-top: 4px;
}

/*版权信息样式*/
.copy {
  background-color: #fff;
  width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(204, 204, 204, 0.5); /*透明度绿色高亮*/
  -moz-box-shadow: 0 0 10px rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 10px rgba(204, 204, 204, 0.5);
}
.copyright {
  padding-top: 10px;
  font-size: 12px;
}

/*返回顶部按钮*/
/* .back-to-top{
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-image: url("../img/back2top.png");
  width: 60px;
  height: 112px;
  background-size: cover;
  color: #fff;
  border: none;
  border-radius: 2px;
}

.back-to-top:hover{
  background-color: #000;
} */

/*移动端菜单入口*/
header .header-container .nav-box .nav-mobile-menu {
  margin-top: 30px;
  float: right;
  display: none;
}
header .header-container .nav-box .nav-mobile-menu span {
  display: inline-block;
  width: 40px;
  height: 50px;
  background: url("../img/menu2.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
}

/*移动端菜单sidebar*/
.sidebar {
  position: fixed;
  top: 0px;
  width: 200px;
  background-color: #075491;
  padding: 20px 0px;
  transition: right 0.2s;
  z-index: 1001;
  right: -200px;
}
.sidebar ul {
  margin: 0;
  padding: 0;
}

.sidebar ul li {
  line-height: 40px;
  list-style: none;
  padding: 0px 20px;
  text-align: center;
}

.sidebar ul li a {
  text-decoration: none;
  color: #fff;
}

.sidebar ul li:hover {
  background-color: #174d7d;
}

.sidebar ul li .active {
  color: #ff9900;
}
/*关灯遮罩*/
.mask {
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}
.box-right-mid p {
  font-size: 16px;
  font-family: 宋体;
  letter-spacing: 3px;
  color: #333;
  line-height: 30px;
  //text-indent: 2em;
  margin-bottom: 20px;
}

@font-face {
  font-family: "阿里妈妈数黑体 Bold";
  font-weight: 700;
  src: url("../fonts/3GfIhIUMqBso.woff2") format("woff2"),
    url("../fonts/3GfIhIUMqBso.woff") format("woff");
  font-display: swap;
}
.aside{
  position: fixed;
  top: 50%;
  right: 0;
}
.aside>div{
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  background-color: #075491;
  transition: width 1s,height 1s;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  cursor: pointer;
}
.aside>div:nth-child(1){
  transform: translateY(-150%);
}
.aside>div:nth-child(2){
  transform: translateY(-50%);
}
.aside>div:nth-child(3){
  transform: translateY(25px);
}
.aside>div:last-child{
  border: none;
}
.aside>div>img{
  width: 25px;
}
.aside>div>span{
  display: none;
}
.aside>div:nth-child(2):hover{
  width: 120px;
}
.aside>div:nth-child(2):hover>img{
  display: none;
}
.aside>div:nth-child(2):hover>span{
  display: block;
}
.aside>div:nth-child(3)>img:last-child{
  width: 120px;
  margin: 17px;
}
.aside>div:nth-child(3):hover{
  width: 150px;
  height: 150px;
}
.aside>div:nth-child(3):hover>img:first-child{
  display: none;
}
.aside>div:nth-child(3):hover>img:last-child{
  display: block;
}
.copyright a{
  color:black;
}
