@charset "utf-8";

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

:root {
  /* ====== Transition ====== */
  --tran-03: all 0.3s ease;
  --tran-04: all 0.4s ease;
  --tran-05: all 0.5s ease;
  --tran-06: all 0.6s ease;
}

body {
  font-family: "Gotham", "Microsoft YaHei", "PingFang SC", "Calibri", "opensans",
    "GothicArial", "Arial", "San Francisco", "Hiragino Sans GB",
    "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  background: #ffffff;
}

body.hd {
  overflow: hidden;
}

input,
textarea,
select,
button {
  border: none;
  outline: none;
  resize: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: "Gotham", "Microsoft YaHei", "PingFang SC", "Calibri", "opensans",
    "GothicArial", "Arial", "San Francisco", "Hiragino Sans GB",
    "Helvetica Neue", Helvetica, sans-serif;
}

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

i,
b {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

/* 引入字体 */
@font-face {
  font-family: "Gotham";
  src: url(../font/Gotham.otf);
}
@font-face {
  font-family: "Gotham Pro";
  src: url(../font/GothamPro.ttf);
}
@font-face {
  font-family: "GothamRegular";
  src: url(../font/GothamRegular.otf);
}

/* 清除默认样式 */
.swiper-button-next,
.swiper-button-prev {
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 14px;
  color: #b7b7b7;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px;
  color: #b7b7b7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 14px;
  color: #b7b7b7;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  font-size: 14px;
  color: #b7b7b7;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

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

::-webkit-scrollbar-track:vertical {
  background-color: #ffffff;
}

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

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

/* 浮动 */
.fl {
  float: left;
}

.fr {
  float: right;
}

/* 清除 */
.ov {
  overflow: hidden;
}

/* 隐藏 */
.op0 {
  opacity: 0;
  visibility: hidden;
}

.op1 {
  opacity: 1;
  visibility: visible;
}

/* flex布局 */
.fl-f {
  display: flex;
  display: -webkit-flex;
}

/* flex上下布局 */
.fl-ac {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.fl-as {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
}

.fl-ae {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
}

/* flex左右布局 */
.fl-jc {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}

.fl-jb {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}

.fl-ja {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
}

.fl-js {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
}

.fl-je {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}

/* flex上下左右布局 */
.fl-cc {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

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

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

.fl-cs {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}

.fl-ce {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
}

.fl-sa {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-around;
}

.fl-sb {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-between;
}

.fl-ss {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.fl-se {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.fl-ea {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: space-around;
}

.fl-eb {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: space-between;
}

.fl-es {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.fl-ee {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* flex自适应布局 */
.fl-fw {
  display: flex;
  flex-wrap: wrap;
}

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

/* 手机端按钮 */
.toggle {
  display: none;
  padding: 0 0;
  background: transparent;
  border: none !important;
  z-index: 120;
}

.toggle .line-top,
.toggle .line-middle,
.toggle .line-bottom {
  display: block;
  width: 24px;
  height: 3px;
  background: #ad3133;
  margin: 5px 0;
  transition: 0.4s;
}

.open.toggle .line-top,
.open.toggle .line-middle,
.open.toggle .line-bottom {
  background: #ad3133;
}
.open .line-top {
  -webkit-transform: rotate(45deg) translate(4px, 9px);
  transform: rotate(45deg) translate(4px, 9px);
}

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

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

.zw {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

.zw::after,
.zw::before {
  display: none !important;
}

.container {
  width: 100%;
}

.wrap {
  width: 100%;
}

.row {
  width: 100%;
}
.main {
  width: 100%;
  position: relative;
}
.tit {
  width: 100%;
  text-align: center;
}
.tit h1 {
  font-size: 2.917vw;
  font-family: "Gotham";
  font-weight: bold;
  line-height: 3.542vw;
  color: #111111;
  text-transform: capitalize;
}
.download {
  width: 10.677vw;
  height: 2.604vw;
  background: #e8e8e8;
  border-radius: 12px;
}
.download span {
  font-size: 0.938vw;
  font-family: "Open Sans";
  font-weight: bold;
  color: #ad3133;
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  padding: 1.042vw 0;
  background: #ffffff;
  transition: all ease 0.5s;
}

[data-page="home"] .header {
  background: transparent;
}
.header.on,
[data-page="home"] .header.on {
  padding: 0.781vw 0;
  background: #ffffff;
}
.header .row {
  padding: 0 2.083vw;
}
.header .logo img {
  width: 5.208vw;
  transition: all ease 0.3s;
}
.header .before {
  display: none;
}
.header .after {
  display: block;
}
[data-page="home"] .header .before {
  display: block;
}
[data-page="home"] .header .after {
  display: none;
}
.header.on .before,
[data-page="home"] .header.on .before {
  display: none;
}
.header.on .after,
[data-page="home"] .header.on .after {
  display: block;
}
.header .link {
  margin-left: 3.646vw;
}
.header .link > a {
  font-size: 0.833vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #111111;
  transition: all ease 0.3s;
}
[data-page="home"] .header .link > a {
  color: #ffffff;
}
.header.on .link > a,
[data-page="home"] .header.on .link > a {
  color: #111111;
}
.home1 {
  width: 100%;
}
.home1 .row {
  position: relative;
}
.home1 .video video,
.home1 .video img {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.home1 .video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.home1 .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 100%;
  padding: 0 13.542vw;
  text-align: center;
}

.home1 .intr h1 {
  font-size: 2.917vw;
  font-family: "GothamRegular";
  font-weight: normal;
  line-height: 3.125vw;
  color: #ffffff;
}
.home1 .intr b {
  font-family: "Gotham";
  font-weight: bold;
}
.home1 .intr p {
  max-width: 41.667vw;
  width: 100%;
  margin: 1.302vw auto 0;
  font-size: 0.938vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.watermark {
  width: 100%;
  background-image: url(../img/watermark.svg);
  background-repeat: repeat-y;
  background-size: 100%;
}
.home2 {
  width: 100%;
  padding: 6.25vw 18.75vw;
}
.home2 .row {
  margin: 2.604vw 0 0;
}
.home2 .times_box {
  position: relative;
}

.home2 .times_box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
  width: 0.26vw;
  height: calc(100% + 5.208vw);
  background: linear-gradient(180deg, rgba(173, 49, 51, 0) 0%, #ad3133 100%);
}
.home2 .times_box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6.25vw;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-block;
  border: 0.521vw solid transparent;
  border-top-color: #ad3133;
}
.home2 .times_box li {
  width: 100%;
  position: relative;
  text-align: center;
}
.home2 .times_box .lefts {
  padding-right: calc(50% + 3.125vw);
}
.home2 .times_box .rights {
  padding-left: calc(50% + 3.125vw);
}
.home2 .times_box .box {
  width: 100%;
  position: relative;
  padding: 2.083vw;
  background: #ffffff;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  transition: all ease 0.3s;
}
.home2 .times_box .dots {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 0.729vw;
  height: 0.729vw;
  background: #ad3133;
  border-radius: 50%;
  display: inline-block;
  z-index: 10;
}
.home2 .box .dots:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.25vw;
  height: 1.25vw;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: inline-block;
}
.home2 .box .dots::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.729vw;
  height: 0.729vw;
  background: #ad3133;
  border-radius: 50%;
  display: inline-block;
}
.home2 .lefts .dots {
  right: -3.49vw;
}
.home2 .rights .dots {
  left: -3.49vw;
}
.home2 .box img {
  width: 4.01vw;
  height: 4.01vw;
  margin: 0 auto;
  transition: all ease 0.3s;
}
.home2 .box .after {
  display: none;
}
.home2 .box h4 {
  font-size: 1.25vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #111111;
  margin: 0.781vw 0 1.042vw;
  transition: all ease 0.3s;
}
.home2 .box p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #b7b7b7;
  transition: all ease 0.3s;
}
.home2 .box:hover {
  background: #5a5a5a;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.16);
}
.home2 .box:hover .before {
  display: none;
}
.home2 .box:hover .after {
  display: block;
}
.home2 .box:hover h4,
.home2 .box:hover p {
  color: #ffffff;
}

.home3 {
  width: 100%;
  padding: 6.25vw 13.542vw;
  position: relative;
}
.home3 .col {
  width: 100%;
  position: relative;
  margin: 2.083vw 0 0;
  transition: all ease 0.3s;
}
.home3 .pic {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.home3 .pic::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all ease 0.3s;
}
.home3 .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.6s;
}
.home3 .col:hover .pic img {
  transform: scale(1.1);
}
.home3 .intr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  padding: 0 5.208vw;
}
.home3 .intr h1 {
  font-size: 2.917vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #ffffff;
}
.home3 .curr {
  position: sticky;
  position: -webkit-sticky;
  top: 6.25vw;
  z-index: 20;
  margin: 2.604vw 0 0;
}
.curr {
  width: 100%;
}
.curr .sub {
  padding: 1.042vw 1.563vw;
  background: transparent;
  transition: all ease 0.3s;
}
.curr .sub.on {
  background: #e8e8e8;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}
.curr .sub span {
  font-size: 1.25vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #b7b7b7;
  transition: all ease 0.3s;
}
.curr .sub.on span {
  color: #ad3133;
}

.home4 {
  width: 100%;
  padding: 0 7.292vw 6.25vw;
  position: relative;
  background: #ffffff;
}
.home4 .row {
  margin: 3.125vw 0 0;
  position: relative;
}
.home4 .map {
  width: 100%;
}
.home4 .map img {
  max-width: 100%;
  width: 100%;
}
.home4 .ev {
  position: absolute;
  z-index: 6;
  width: 15.625vw;
}
.home4 .ev1 {
  top: -0.781vw;
  left: 9.896vw;
}
.home4 .ev2 {
  top: 5.99vw;
  left: 35.417vw;
}
.home4 .ev3 {
  bottom: 6.51vw;
  right: 7.813vw;
}
.home4 .ev p {
  font-size: 1.25vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #111111;
  margin: 0 auto 2.083vw;
  text-align: center;
}
.home4 .ev .pic {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}
.home4 .ev .img {
  width: 50%;
  margin: 0.208vw 0;
}
.home4 .ev .img img {
  max-width: 100%;
  width: 100%;
}
.home5 {
  width: 100%;
  padding: 6.25vw 13.542vw;
  position: relative;
  background: #f7f7f7;
}
.home5 .bj {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 39.583vw;
}
.home5 .bj img {
  max-width: 100%;
  width: 100%;
}
.home5 .tit {
  width: 40%;
  text-align: left;
}
.home5 .intr {
  width: 59%;
  padding-right: 5.208vw;
  z-index: 6;
}
.home5 .intr p {
  max-width: 43.75vw;
  font-size: 0.938vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #3c3c3c;
}
.home5 .download {
  margin: 3.125vw 0 0;
}

.home6 {
  width: 100%;
  padding: 6.25vw 13.542vw 0;
}
.home6 .row {
  position: relative;
}
.home6 .intr {
  position: absolute;
  left: 50%;
  top: 10.417vw;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 5;
}
.home6 .intr h4 {
  font-size: 1.25vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #111111;
  margin: 0 0 0.781vw;
}
.home6 .intr p {
  font-size: 0.938vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #3c3c3c;
}
.home6 .download {
  margin: 4.688vw auto 0;
}
.pri {
  width: 100%;
  padding: 10.417vw 13.542vw 6.25vw;
  min-height: 90vh;
}
.pro1 {
  width: 100%;
  padding: 0 13.542vw;
  margin: 1.823vw 0 2.604vw;
  position: sticky;
  position: -webkit-sticky;
  top: 6.25vw;
  z-index: 20;
}

.pro2 {
  width: 100%;
  padding: 6.25vw 0;
}
.pro2 .pic,
.pro2 .intr {
  width: 48%;
}
.pro2 .img {
  width: 32%;
  margin: 0 0 1.042vw;
}
.pro2.on .img {
  width: 49%;
  margin: 0 0 1.042vw;
}
.pro2 .img img {
  max-width: 100%;
  width: 100%;
}
.pro2 .intr {
  padding: 0 7.292vw 0 3.125vw;
}
.pro2 .intr h1 {
  font-size: 2.917vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #111111;
}
.pro2 .intr p {
  font-size: 0.938vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  margin: 2.604vw 0 4.167vw;
}

.pro3 {
  width: 100%;
  padding: 0 13.542vw;
}
.pro3 .row {
  position: relative;
}
.pro3 .video {
  width: 100%;
  position: relative;
}
/* .pro3 .video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.pro3 .video video {
  max-width: 100%;
  width: 100%;
} */
.pro3 .video iframe{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100% !important;
  height: 100% !important;
  z-index: 9;
}
.pro3 .pic {
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.pro3 .pic img {
  max-width: 100%;
  width: 100%;
}

.pro3 .play {
  position: absolute;
  right: 5.208vw;
  bottom: 3.906vw;
  z-index: 3;
  cursor: pointer;
}
.pro3 .play span {
  font-size: 1.25vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #ffffff;
  margin-right: 1.302vw;
}
.pro3 .play img {
  width: 3.646vw;
}

.contact {
  width: 100%;
  padding: 6.25vw 13.542vw 1.563vw;
  position: relative;
  background: #ffffff;
}

.contact .intr {
  width: 64%;
}
.contact .intr h2 {
  font-size: 2.188vw;
  font-family: "Gotham";
  font-weight: normal;
  color: #111111;
}
.contact .intr h2:nth-child(2) {
  font-family: "GothamRegular";
}

.contact .intr h6 {
  font-size: 0.938vw;
  font-family: "Gotham";
  font-weight: 400;
  color: #111111;
  padding: 0 0 0.26vw;
}
.contact .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #111111;
  margin: 0.781vw 0 0;
}
.contact .inputb {
  width: 31%;
  padding-right: 5.208vw;
}
.contact .inputb .form {
  width: 100%;
}
.contact .form input {
  width: 100%;
  height: 2.604vw;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 0 1.042vw;
  margin: 0 0 1.042vw;
}
.captcha {
  margin: 0 0 1.042vw;
}
.captcha img {
  max-width: 100%;
  cursor: pointer;
}
.captcha span {
  font-size: 14px;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #111111;
  cursor: pointer;
  margin: 0 0 0 0.781vw;
}
.contact .btn {
  width: 100%;
  height: 2.604vw;
  background: #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  margin: 1.042vw 0 0;
  transition: all ease 0.3s;
}

.contact .btn span {
  font-size: 0.938vw;
  font-family: "Open Sans";
  font-weight: bold;
  color: #ad3133;
  transition: all ease 0.3s;
}

.footer {
  width: 100%;
  padding: 2.604vw 13.542vw;
  position: relative;
  background: #ffffff;
}
.copyright span,
.copyright a {
  font-size: 0.729vw;
  font-family: "Open Sans";
  font-weight: 400;
  color: #111111;
}
.copyright span {
  margin-right: 2.344vw;
}
.copyright a {
  margin-right: 0.781vw;
}

.welcome {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 120;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}
.welcome.on {
  opacity: 1;
  visibility: visible;
}
.welcome .close {
  position: absolute;
  top: 1.302vw;
  right: 1.302vw;
  width: 1.042vw;
  height: 1.042vw;
  cursor: pointer;
}
.welcome .pic,
.welcome .intr {
  width: 50%;
}
.welcome .pic img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome .intr {
  padding: 4.167vw;
}
.welcome .txt {
  text-align: center;
}
.welcome .intr h3 {
  font-size: 1.875vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #111111;
}
.welcome .intr p {
  font-size: 1.042vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  margin: 0.521vw 1.563vw 1.302vw;
}
.welcome .form input {
  width: 100%;
  height: 2.604vw;
  background: #ffffff;
  border: 2px solid #111111;
  border-radius: 12px;
  padding: 0 1.25vw;
}
.welcome .btn {
  width: 100%;
  height: 2.604vw;
  background: #e8e8e8;
  border-radius: 12px;
  margin: 0.781vw 0 0;
  cursor: pointer;
  transition: all ease 0.3s;
}
.welcome .btn span {
  font-size: 0.938vw;
  font-family: "Open Sans";
  font-weight: bold;
  color: #ad3133;
  transition: all ease 0.3s;
}
.cookies {
  position: fixed;
  left: 0;
  bottom: -20%;
  z-index: 99;
  width: 100%;
  padding: 3.125vw 13.542vw;
  background: #111111;
  transition: all ease 0.5s;
}
.cookies.on {
  bottom: 0;
}
.cookies .intr {
  width: 70%;
}

.cookies .intr p {
  font-size: 0.833vw;
  font-family: "Apple SD Gothic Neo";
  font-weight: 300;
  line-height: 1.5;
  color: #ffffff;
}
.cookies .accept {
  width: 8.073vw;
  height: 2.604vw;
  background: #ffffff;
  border-radius: 12px;
  cursor: pointer;
  transition: all ease 0.3s;
}
.cookies .accept span {
  font-size: 0.833vw;
  font-family: "Apple SD Gothic Neo";
  font-weight: 300;
  color: #111111;
  transition: all ease 0.3s;
}
.gray {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.8);
  display: none;
}
.gray .row {
  max-width: 1200px;
  width: 90%;
  height: 90vh;
  margin: 0 auto;
  background: #ffffff;
  padding: 3.125vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-x: hidden;
  overflow-y: scroll;
}
.gray .row::-webkit-scrollbar-track-piece {
  background: #ffffff;
}
.gray .row::-webkit-scrollbar-thumb:vertical {
  background-color: #111111;
  border-radius: 30px;
}
.gray .close {
  position: absolute;
  top: 1.302vw;
  right: 1.302vw;
  width: 1.042vw;
  height: 1.042vw;
  cursor: pointer;
}
.gray .formb {
  width: 100%;
  padding: 0 5.208vw;
}
.gray .formb h3 {
  font-size: 1.875vw;
  font-family: "Gotham";
  font-weight: bold;
  color: #111111;
  text-align: center;
}
.gray .formb p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #111111;
  text-align: center;
  margin: 1.563vw 0 2.083vw;
}
.gray .form input {
  width: 24%;
  height: 2.344vw;
  background: #ffffff;
  border: 1px solid #111111;
  border-radius: 12px;
  padding: 0 0.781vw;
}
.gray .btn {
  width: 100%;
  height: 2.344vw;
  background: #e8e8e8;
  border-radius: 12px;
  margin: 0.781vw 0 0;
  cursor: pointer;
  transition: all ease 0.3s;
}
.gray .btn span {
  font-size: 0.938vw;
  font-family: "Open Sans";
  font-weight: bold;
  color: #ad3133;
  transition: all ease 0.3s;
}
.gray .pdfb {
  width: 100%;
}
/* .gray .pdfb .after {
  display: none;
}
.gray .pdfb.on .before {
  display: none;
}
.gray .pdfb.on .after {
  display: block;
} */
.gray .pdfb .col {
  width: 30%;
  margin: 3.125vw 0 0;
  transition: all ease 0.3s;
}
.gray .pdfb .pic,
.gray .pdfb .intr {
  width: 48%;
}
.gray .pic img {
  max-width: 100%;
  width: 100%;
  transition: all ease 0.3s;
}
.gray .txt p {
  font-size: 0.938vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #111111;
  transition: all ease 0.3s;
}
.gray .pdf img {
  width: 3.125vw;
  transition: all ease 0.3s;
}
.gray .pdf span {
  font-size: 0.729vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #111111;
  margin-left: 0.521vw;
  transition: all ease 0.3s;
}

.bullet-frame {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 120;
}

.bullet-frame .frame {
  width: 12.5vw;
  padding: 1.302vw;
  background: #ffffff;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  text-align: center;
}

.bullet-frame .frame.success {
  display: none;
}

.bullet-frame .frame.error {
  display: none;
}

.bullet-frame .frame img {
  width: 3.385vw;
  height: 3.385vw;
  display: block;
  margin: 0 auto;
}

.bullet-frame .frame p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  margin: 1.042vw 0 0;
}

.err-input {
  border: 1px solid #ad3133 !important;
}
