@charset "UTF-8";
/* ---- 常规 Style---- */
body {
  min-height:100%;
  position: relative;
  background: #f8f8f8;
}

html {
  height:100%;
  font-family: "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

textarea:focus,
input:focus {
  outline: none;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

/* ------ 字体设计 Style----- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

h1 {
  font-size: 40px;
}

h4 {
  font-size: 22px;
}

a,
p,
li,
input,
textarea {
  font-family: "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  border: 0;
  outline: 0;
}

/* ------ Section Header Style ------ */
.sn-section-wrapper {
  padding: 100px 0;
  overflow: hidden;
}
.sn-section-wrapper .sn-section-header {
  margin-bottom: 44px;
  text-align: center;
}
.sn-section-wrapper .sn-section-header h1 {
  color: #b91111;
}
.sn-section-wrapper .sn-section-header p {
  padding-top: 10px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  color: #333;
  text-align: center;
}

/* ----- 菜单 Style ---- */
.sn-main-menu {
  position: fixed;
  z-index: 10;
  width: 100%;
  padding: 4px 0;
  background-color: #151212;
  border: none;
  border-radius: 0;
  transition: all 0.35s;
  backface-visibility: hidden;
}
.sn-main-menu .container .navbar-brand {
  display: flex;
  align-items: center;
}
.sn-main-menu .container .navbar-brand span {
  padding-left: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
}
.sn-main-menu .container .navbar-toggler {
  font-size: 1rem;
  background: #fff;
}
.sn-main-menu .container .sn-menu-wrapper li > a {
  padding: 8px 55px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.3s;
}
.sn-main-menu .container .sn-menu-wrapper li > a:hover {
  font-weight: 700;
}
.sn-main-menu .container .sn-menu-wrapper li > a.active {
  font-weight: 700;
}

/* ---- Banner Style ---- */
.banner-swiper {
  padding-top: 66px;
}

/* ---- Footer Style ---- */
.footer {
  position: relative; 
  margin-top: -140px;/*等于footer的高度*/ 
  width: 100%;
  height:140px;
  padding: 15px 0;
  color: #383838;
  text-align: center;
  background-color: #272727;
}
.footer .logo {
  width: 96px;
  height: 103px;
}
.footer .qrcode {
  width: 109px;
  height: 109px;
}
.footer p {
  font-size: 14px;
  font-weight: 300;
  color: #dbdbdb;
}
.footer p a {
  padding: 0 4px;
  cursor: pointer;
}
.footer h6 {
  display: flex;
  font-size: 14px;
  font-weight: 300;
  color: #dbdbdb;
}
.footer h6 img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

/*# sourceMappingURL=style.css.map */
/* ------ 协议弹窗 Style ------ */
.modal-agreement {
  top:50%;
  left:50%;
  transform: translate(-50%,-35%);
}

.modal-dialog-agreement {
  width: 950px;
  height: 550px;
  max-width: 950px;
  max-height: 550px;
  min-height: 550px;
}

.agreement-btn {
  display: flex;
  width: 270px;
  height: 40px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #ccc;
  border: none;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}

/* ------ alert弹窗 Style ------ */
.alert{
	padding: 8px 50px 8px 30px;
}
.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 12px 16px;
}