@charset "utf-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  color: #000;
  background: #fff;
  padding: 0;
  font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", "Tahoma",
    "Arial", "sans-serif";
  font-size: 16px;
  line-height: 1.4;
  width: 100%;
  height: 100%;
}

input,
textarea,
button {
  outline: none;
  font-family: "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", "Tahoma",
    "Arial", "sans-serif";
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: ease 0.4s ease;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

img {
  border: 0;
  vertical-align: middle;
}

select {
  background: none;
}

button {
  cursor: pointer;
}

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

.flex-xc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-xb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-xend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.flex-yc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

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

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

.swiper-button-next,
.swiper-button-prev {
  outline: none;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-button:vertical {
  display: none;
}

::-webkit-scrollbar-track:vertical {
  background-color: black;
}

::-webkit-scrollbar-track-piece {
  background: #e3e3e3;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: #3b3b3b;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #c11920;
}

::-webkit-scrollbar-corner:vertical {
  background-color: #535353;
}

::-webkit-scrollbar-resizer:vertical {
  background-color: #c11920;
}

::selection {
  background-color: #c11920;
  color: #fff;
}

-webkit-::selection {
  background-color: #c11920;
  color: #fff;
}

::-moz-selection {
  background-color: #c11920;
  color: #fff;
}

.navbar-toggle {
  padding: 0 0;
  margin: 0;
  background-color: transparent;
  border: none !important;
  position: relative;
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.navbar-toggle .line-top,
.navbar-toggle .line-middle,
.navbar-toggle .line-bottom {
  display: block;
  height: 2px;
  background-color: #040000;
  transition: 0.4s;
}

.open.navbar-toggle .line-top,
.open.navbar-toggle .line-middle,
.open.navbar-toggle .line-bottom {
  background-color: #fff;
}

.open .line-top {
  -webkit-transform: rotate(45deg) translate(0px, 0px);
  transform: rotate(45deg) translate(0px, 0px);
}

.open .line-middle {
  opacity: 0;
}

.open .line-bottom {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  transform: rotate(-45deg) translate(6px, -6px);
}

.xs-show {
  display: none;
}

@media screen and (max-width: 991px) {
  .xs-hide {
    display: none;
  }

  .xs-show {
    display: flex;
  }
}
