@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 0.16rem;
  font-family: "雅黑", "宋体", arial, verdana, sans-serif;
}

img {
  max-width: 100%;
  border: 0;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

p {
  margin: 0;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.w-100 {
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

ul, li {
  list-style: none;
}

.flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-center {
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.two-lines-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w-1200 {
  max-width: 12rem;
  margin: 0 auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
.banner img{
    width: 100%;
}
.nav {
  width: 100%;
  height: 0.66rem;
  background-color: #e21616;
  display: flex;
  align-items: center;
}
.nav a {
  font-size: 0.2rem;
  color: #ffffff;
}

.footer {
  background: #a90000;
  height: 1.05rem;
  overflow: hidden;
}
.footer .ft-content {
  position: relative;
  text-align: center;
  width: 6rem;
  margin: 0 auto;
  line-height: 0.2rem;
}
.footer .ft-content p {
  font-size: 0.14rem;
  color: #FFF;
}
.footer .ft-content p a {
  display: inline-block;
}
.footer .ft-content p span {
  display: inline-block;
  margin-left: 0.15rem;
}
.footer .ft-content .beian {
  position: absolute;
  left: -1rem;
  top: 0rem;
  width: 0.4rem;
}
.footer .ft-content .beian img {
  width: 100%;
}/*# sourceMappingURL=main.css.map */