@charset "UTF-8";

.swiper-slide {
    float: left;
}
.arrow-left,.arrow-right {
    display: none;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 48px;
    line-height: 48px;
    padding: 0;
    margin: 0;
    text-align: center;
    border: 0;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 20;
    top: 50%;
    margin-top: -40px;
    opacity: 1;
    font-size: 24px;
}

.arrow-left {
    left: 12px;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg)
}
.arrow-right {
    right: 12px
}
.button-prev, .button-next {
  width: 3.125vw;
  height: 3.125vw;
  text-align: center;
  background-color: #8733FF;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25vw;
  z-index: 99;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.button-prev {
  left: 60px;
}
.button-next {
  right: 60px;
}
.button-prev i, .button-next i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 36px;
  line-height: 1;
}
.swiper-pagination-bullet {
  border-radius: 0;
  border: 1px solid #000000;
  background: #FFFFFF;
  opacity: 1;
  box-sizing: border-box;
}
.swiper-pagination-bullet-active {
  background-color: #8733FF;
  border-color: #8733FF;
}
.page-title {
  font-size: 42px;
  line-height: 1.2;
  padding: 6.25vw 0 3.125vw;
  font-weight: 600;
  text-align: center;
}
.nav-bar {
  font-size: 0;
  white-space: nowrap;
  overflow-x: auto;
  margin-bottom: 3.125vw;
  text-align: center;
  line-height: 70px;
  background-color: #fff;
  padding: 0 60px;
}
.nav-bar.sticky {
  position: sticky;
  top: 0;
  background-color: #000;
  transition: all 0.5s;
  z-index: 999;
}
.nav-bar.sticky a {
  color: #fff;
}
.nav-bar::-webkit-scrollbar {
  display: none
}
.nav-bar li {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
}
.nav-bar a {
  padding: 0 30px;
  display: block;
  color: #121212;
  font-weight: 600;
}
.nav-bar a:hover {
  color: #8733FF;
}
.nav-bar a.focus {
  color: #8733FF;
}

@media (max-width: 1200px) {
  .arrow-left,.arrow-right {
    display: none !important;
  }
  .button-prev, .button-next {
    display: none !important;
  }
  .page-title {
    padding: 90px 0 60px;
  }
  .nav-bar li {
    font-size: 24px;
  }
  .swiper-container-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
  }
  .page-title {
    font-size: 32px;
    padding: 60px 24px 24px;
    text-align: left;
  }
  .nav-bar {
    padding: 0 12px;
    line-height: 52px;
    margin-bottom: 18px;
    text-align: left;
  }
  .nav-bar a {
    padding: 0 12px;
  }
  .nav-bar li {
    font-size: 14px;
  }
}

/* 全站图片视差效果 */
.base-image-container {
  overflow: hidden;
}
.base-image-container .inner-image-container {
  overflow: hidden;
  transform: translateY(100%);
  transition: all 1s;
}
.base-image-container .image-medium {
  overflow: hidden;
  position: relative;
  transform: translateY(-100%);
  transition: all 1s;
}
.base-image-container .image-medium:before {
  content: "";
  display: block;
  /* padding-top: ; 由于图片比例不统一，根据实际图片宽高比例计算 */
}
.base-image-container .parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: calc(100% + 80px);
  transition: all 1s;
}
.base-image-container .parallax-container img,
.base-image-container .parallax-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.base-image-container:hover .inner-image-container {
  transform: translateY(0) !important;
}
.base-image-container:hover .image-medium {
  transform: translateY(0) scale(1.15) !important;
}
/* 全站图片视差效果 */


/* 消除自动填充表单的背景色 */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

.inputgroup {
  position: relative;
}
.inputgroup:after{
  content: '';
  display: block;
  position: absolute;
  top:0;
  left:0;
  right: 0;
  height:48px;
  /* background: #fff; */
  z-index: 0;
}

.inputgroup input {
  position: relative;
  background: transparent;
  z-index: 2;
  width: 100%;
  height: 42px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.inputgroup select {
  -webkit-appearance:none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
  background: transparent;
  z-index: 2;
  width: 100%;
  height: 42px;
  border-radius: 2px;
}
.inputgroup textarea {
  position: relative;
  width: 100%;
  height: 48px;
  line-height: 24px;
  z-index: 2;
  resize: vertical;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.inner-title {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 48px;
  font-weight: 600;
}
.inner-pagebox {
  padding-top: 9.6875vw;
}

@media (max-width: 1024px) {
  .inner-pagebox {
    padding-top: 60px !important;
  }
}
@media (max-width: 768px) {
  .inner-pagebox {
    padding-top: 48px !important;
  }
  .inner-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .inner-title {
    font-size: 26px;
    line-height: 1.2;
  }
  .inner-pagebox {
    padding-top: 32px !important;
  }
  .inner-title {
    margin-bottom: 24px;
  }
}

.innerresize-l .searchable-select-holder {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 48px;
  line-height: 48px;
  border-radius: 2px;
  color: #757575;
  padding:0 0 0 16px;
  box-shadow: none;
}

.innerresize-l .searchable-select-dropdown{
  top: 47px;
  padding: 8px;
  border: 1px solid #e5e5e5;
}

.searchable-select .icon-arrow-down {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #757575;
}

.innerresize-l .searchable-select-input{
  height: 36px;
  line-height: 36px;
}

.innerresize-l .searchable-select-item{
  padding:8px;
  transition:none;
}
.inputgroup .icon-arrow-down {
  position: absolute;
  right: 12px;
  top:16px;
  color:#333;
  z-index: 2;
}
@media (max-width:767px) {
  .innerresize-body > div {
    display: block;
    width: 100%;
    padding: 0
  }
  .innerresize-l{
    border-right: 0;
  }
  .innerresize-l ul{
    width: 100%;
  }
}
/*---unsubscribe---*/
.unsubscribe {
  width: 680px;
  text-align: center;
  display: table;
  margin:100px auto 200px auto;
}

.unsubscribe .title {
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: bold;
  color: #000000;
}

.unsubscribe .des {
  font-size: 16px;
  margin-bottom: 40px;
}
.unsubscribe-iconbox {
  display: table;
  width: 100%;
}
.unsubscribe-iconbox li{
  display: table-cell;
  width: 33.33333%;
  text-align: center;
}

.unsubscribe-iconbox i{
  font-size: 48px;
  color:#121212;
}

.unsubscribe-iconbox p{
  margin-top: 20px;
}

.unsubscribe-select {
  font-size: 18px;
  margin-top: 48px;
}

.unsubscribe-btngroup {
  display: table;
  margin:0 auto;
}
.unsubscribe .icon-check{
  color:#059922;
  font-size: 48px;
  margin:32px auto;
  display: block;
}
.unsubscribe-btngroup [class^='btn']{
  display: block;
  width: 160px;
  margin-top: 32px;
  height:48px;
  line-height: 48px;
  float: left;
  border-radius: 2px;
  border: 0;
  background: linear-gradient(138deg, #FFB720 0%, #FF840F 100%);
}

.unsubscribe-btngroup a:first-child {
  margin-right: 20px;
  background: #000;
  color:#fff;
}

@media (max-width:820px) {
  .unsubscribe {
    margin:80px auto 120px auto;
  }
}

@media (max-width:767px) {
  .unsubscribe {
    width: 100%;
    margin:60px auto;
  }
  .unsubscribe .title{
    font-size: 26px;
  }
  .unsubscribe-iconbox p{
    font-size: 13px;
  }
  .unsubscribe-iconbox i{
    font-size: 36px;
  }
  .unsubscribe-btngroup {
    display: block;
  }
  .unsubscribe-btngroup [class^='btn']{
    width:calc(50% - 10px);
    margin-top: 24px;
  }
  .unsubscribe .icon-check{
    font-size:32px;
  }
}

/*---404page---*/
.nofind {
  display: table;
  margin: 120px auto 140px auto;
  text-align: center;
}

.nofind img{
  margin: 0 auto 40px auto;
}

.nofind p{
  margin-bottom: 16px;
}

.nofind .btn{
  width: 160px;
  margin-top: 24px;
}