html,
body {
  -webkit-tap-highlight-color: transparent;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}
.header.active,
.header:hover {
  background: #FFF;
  box-shadow: 0px 9px 32px 0px rgba(102, 102, 102, 0.1);
}
.header .container {
  height: 100%;
}
.header .container .logo {
  margin-right: 170px;
}
.header .container .logo .name {
  color: #010101;
  font-size: 30px;
  vertical-align: middle;
}
.header .container .nav .first {
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  float: left;
  position: relative;
  height: 80px;
  line-height: 80px;
  margin-right: 66px;
}
.header .container .nav .first.active::after {
  content: " ";
  width: 90%;
  height: 4px;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%);
  background: #910e25;
}
.header .container .nav .first:last-child {
  margin-right: 0;
}
.header .container .nav .first:hover::after {
  content: " ";
  width: 90%;
  height: 4px;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%);
  background: #910e25;
}
.header .container .nav .first:hover ul {
  display: block;
}
.header .container .nav .first ul {
  display: none;
  width: 200px;
  font-size: 20px;
  border-radius: 0px 0px 4px 4px;
  background: #FFF;
  box-shadow: 0px 9px 32px 0px rgba(102, 102, 102, 0.1);
  position: absolute;
  top: 80px;
  left: -50%;
}
.header .container .nav .first ul li {
  height: 62px;
  line-height: 62px;
  padding-left: 36px;
}
.header .container .nav .first ul li:hover {
  color: #FFF;
  background: #910e25;
}
.y-header {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .header .container .logo {
    margin-right: 95px;
  }
  .header .container .nav .first {
    margin-right: 58px;
  }
}
@media only screen and (max-width: 992px) {
  .header {
    display: none;
  }
  .y-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #FFF;
  }
  .y-header > .y-header-logo {
    width: 30px;
    height: 20px;
    background-image: url('/images/logo.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .y-header > .y-header-bar {
    width: 25px;
    height: 25px;
    background-image: url('/images/icon_bar.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .y-header .y-nav {
    height: 250px;
    background: #FFF;
    box-shadow: 0px 10px 20px 0px rgba(72, 121, 249, 0.1);
    border-radius: 6px;
    position: absolute;
    right: 20px;
    top: 52px;
    padding: 22px 34px;
    display: none;
  }
  .y-header .y-nav .y-nav-item {
    width: 64px;
    height: 20px;
    line-height: 1;
    display: block;
    font-size: 15px;
    color: #333;
    margin-top: 25px;
    letter-spacing: 1px;
  }
  .y-header .y-nav .y-nav-item:first-child {
    margin-top: 0;
  }
  .y-header .y-nav .y-nav-item.y-nav-item-active {
    font-weight: bold;
    color: #4b7bfa;
  }
}
.footer {
  background: #910e25;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 200px;
  color: #fff;
}
.footer .container .left {
  width: 385px;
  height: 120px;
  letter-spacing: 2px;
}
.footer .container .left p {
  margin-top: 10px;
}
.footer .container .left p.title {
  font-size: 18px;
  margin-top: 0;
}
.footer .container .left p:nth-child(2) {
  line-height: 28px;
}
.footer .container .left p:nth-child(3) {
  margin-top: 4px;
}
.footer .container .center {
  width: 150px;
  height: 110px;
  position: relative;
}
.footer .container .center::after {
  content: "";
  position: absolute;
  height: 100px;
  width: 1px;
  background: #FFF;
  top: 4px;
  right: 0;
}
.footer .container .center > .code {
  padding: 5px;
}
.footer .container .center > .code > img {
  width: 100px;
  height: 100px;
}
.footer .container .right {
  width: 550px;
  height: 120px;
}
.footer .container .right p.title {
  font-size: 18px;
}
.footer .container .right .link {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 1px;
  margin-top: 10px;
  cursor: pointer;
  line-height: 24px;
}
.footer .container .right .link a {
  margin-right: 10px;
  margin-bottom: 5px;
}
.footer .container .right .contentList {
  padding-top: 10px;
}
.footer .container .right .contentList .item {
  font-size: 16px;
  cursor: pointer;
  padding-right: 5px;
  border-right: 1px solid #fff;
  margin-right: 5px;
}
.footer .container .right .contentList .item:first-child {
  margin-right: 0;
  padding-right: 0;
}
.footer .container .right .contentList .item:first-child,
.footer .container .right .contentList .item:last-child {
  border: none;
}
.footer .copyright {
  height: 80px;
  line-height: 80px;
  background-color: #fff;
  color: rgba(10, 10, 10, 0.8);
  text-align: center;
  letter-spacing: 1px;
  font-size: 18px;
}
.footer .copyright a {
  display: inline-block;
  color: rgba(10, 10, 10, 0.8);
  margin-left: 20px;
}
@media only screen and (max-width: 992px) {
  .footer .container {
    align-items: initial;
    justify-content: initial;
    height: auto;
    flex-wrap: wrap;
  }
  .footer .container .left {
    width: auto;
    height: auto;
    padding: 20px;
  }
  .footer .container .right {
    display: none;
  }
  .footer .container .center {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
  .footer .container .center::after {
    content: " ";
    height: 0;
    width: 0;
    top: 0;
  }
  .footer .container .center .code {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  .footer .container .center .code img {
    width: 150px;
    height: 150px;
  }
  .footer .copyright {
    height: auto;
    line-height: 24px;
    font-size: 14px;
    padding: 20px 0;
  }
}
.top-wrap {
  width: 100%;
  height: 540px;
  position: relative;
  overflow: hidden;
}
.top-wrap .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.top-wrap .base-info {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 190px;
  transform: translate(-50%);
  text-align: center;
  color: #FFF;
  width: 1280px;
  height: 540px;
}
.top-wrap .base-info .title {
  font-size: 60px;
  margin-bottom: 10px;
}
.top-wrap .base-info .english {
  font-size: 30px;
}
@media only screen and (max-width: 992px) {
  .top-wrap {
    height: 400px;
  }
  .top-wrap .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .top-wrap .base-info {
    top: 110px;
    width: 100%;
    height: 400px;
  }
  .top-wrap .base-info .title {
    font-size: 40px;
  }
  .top-wrap .base-info .english {
    font-size: 24px;
    padding: 0 24px;
  }
}
.tab-bar {
  height: 80px;
  background: #FFF;
  overflow-x: hidden;
  box-shadow: 0px 3px 7px 0px rgba(204, 204, 204, 0.35);
}
.tab-bar .container {
  display: flex;
  flex-wrap: nowrap;
}
.tab-bar .tab-item {
  min-width: 64px;
  display: inline-block;
  font-size: 20px;
  line-height: 80px;
  position: relative;
  cursor: pointer;
  margin-right: 30px;
}
.tab-bar .tab-item.active {
  color: #990033;
}
.tab-bar .tab-item.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  clear: both;
  width: 90%;
  height: 3px;
  background-color: #990033;
}
.tab-bar .tab-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 992px) {
  .tab-bar {
    height: 60px;
    overflow-y: auto;
  }
  .tab-bar .container {
    overflow-y: auto;
    margin: 0 16px;
  }
  .tab-bar .tab-item {
    display: block;
    line-height: 0;
    line-height: 60px;
    font-size: 16px;
  }
}

