@charset 'utf-8';
/* Removed CSS variables as they're not supported in IE10/11 */
.top {
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-image: url(banner2.png);
}

.top .titBox {
  line-height: 50px;
  background-color: #0152a9; /* Replaced var(--web-bule) */
  color: white;
  font-size: 16px; /* Replaced var(--web-fontsize-s) */
}

.top .titBox .content {
  width: 1370px; /* Replaced var(--web-mainwidth) */
  margin: auto;
  display: -ms-flexbox; /* Added IE prefix */
  display: flex;
  -ms-flex-pack: justify; /* IE equivalent */
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 30px;
}

.top .titBox .content .right {
  /* Ensure IE flexbox compatibility */
  -ms-flex-item-align: center;
}
.top .logo {
  background-image: url(logo.png);
}
.top .logo {
  height: 360px;
  background-color: rgba(255, 255, 255, 0.8);
  background-repeat: no-repeat;
  background-position: center;
}

.top .navBox {
  height: 90px;
  line-height: 88px;
  background-color: #0152a9; /* Replaced var(--web-bule) */
}

.top .navBox .nav {
  width: 1370px; /* Replaced var(--web-mainwidth) */
  margin: auto;
  display: -ms-flexbox; /* Added IE prefix */
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: distribute; /* IE equivalent */
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center;
}

.top .navBox .nav a {
  font-size: 24px; /* Replaced var(--web-fontsize-xx) */
  color: white;
  letter-spacing: 1px;
  position: relative;
  font-weight: 300; /* Replace 'lighter' with numeric value */
}

.top .navBox .nav a:hover {
  /* Added for IE compatibility */
  zoom: 1;
}

.top .navBox .nav a:hover:after {
  content: "";
  position: absolute;
  left: 60%;
  bottom: -15px;
  width: 40%;
  height: 5px;
  margin-left: -30%;
  background: #fff;
  border-radius: 2px;
}

#footer {
  background: #0152a9; /* Replaced var(--web-bule) */
  color: white;
  font-size: 16px; /* Replaced var(--web-fontsize-s) */
  font-weight: 300; /* Replace 'lighter' with numeric value */
}

#footer .p1 {
  width: 1370px; /* Replaced var(--web-mainwidth) */
  margin: auto;
  display: -ms-flexbox; /* Added IE prefix */
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#footer .p1 span {
  padding: 0 15px;
  color: white;
}

#footer .p2 {
  display: -ms-flexbox; /* Added IE prefix */
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}

#footer .p2 span {
  padding: 0 5px;
  color: white;
}
