@charset "utf-8";
@import url(//at.alicdn.com/t/c/font_4794035_pxr13jiwkq.css);

:root {
  --hometitlefont: 36px;
  --color1: #2A292B;
  --color2: #092556;
  --fontcolor: #444444;
  --titlecolor: #fff;
  --headercolor: #ffffff;
  --footercolor: #999999;
  --fontsize12: 12px;
  --fontsize13: 13px;
  --fontsize14: 14px;
  --fontsize15: 15px;
  --fontsize16: 16px;
  --fontsize17: 17px;
  --fontsize18: 18px;
  --fontsize20: 20px;
  --fontsize22: 22px;
  --fontsize24: 24px;
  --fontsize26: 26px;
  --fontsize28: 28px;
  --fontsize30: 30px;
  --fontsize32: 32px;
  --fontsize34: 34px;
  --fontsize36: 36px;
  --fontsize38: 38px;
  --fontsize40: 40px;
  --fontsize42: 42px;
  --fontsize44: 44px;
  --fontsize46: 46px;
  --fontbold5: 500;
  --fontbold6: 600;
  --fontbold7: 700;
  --borderradius: 5px;
  --backgroundcolor: linear-gradient(90deg, #696767, var(--color2));
  --fontfamily: "LXGWWenKai", "Titillium Web", "Lato", "Open Sans", "Roboto", "Poppins", "Oswald", "Noto Sans", "Montserrat", sans-serif
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .1s linear
}


ul li {
  list-style: none;
}

input,
textarea,
select,
button {
  outline: none;
  border: none;
}

body {
  overflow-y: scroll;
  font-family: var(--fontfamily);
  max-width: 1920px;
  margin: 0 auto;
  background: #ffffff;
  font-size: var(--fontsize16);
  line-height: 1.8;
  color: #d2d2d2;
  overflow-x: hidden;
}

.l-wrap {
  max-width: 1600px;
  padding: 0 70px;
  margin: 0 auto;
}

.home-title {
  font-size: var(--hometitlefont);
  font-weight: var(--fontbold6);
  font-family: var(--fontfamily);
  line-height: 1.3;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}

.home-des {
  font-size: var(--fontsize18);
  font-weight: var(--fontbold5);
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
}

.home-des-into {
  width: 40px;
  height: 15px;
  margin-right: 10px;
  box-sizing: border-box;
  display: inline-block;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.home-btn {
  background: var(--backgroundcolor);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 150px;
  height: 48px;
  position: relative;
  z-index: 1;
  border-radius: var(--borderradius);
}

.home-btn::after {
  content: "";
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  z-index: 0;
  background-color: rgba(0, 0, 0, .2);
  transition: all .2s ease;
}

.home-btn span {
  position: relative;
  z-index: 10;
}

.home-btn:hover::after {
  width: 100%;
}

@media(max-width:1024px) {
  .home-title {
    font-size: var(--fontsize26);
  }
}

@media(max-width:768px) {
  .home-title {
    font-size: var(--fontsize22);
  }
}