html{
  scroll-behavior: smooth;
}
.header-container{
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}
.header-wrap{
  height: 64px;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.header-logo{
  margin-left: 9px;
  width: 138px;
  height: 32px;
}
.header-nav{
  display: flex;
  margin-left: 110px;
}
.header-nav li{
  height: 40px;
  width: 104px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  position: relative;
  cursor: pointer;
}
.header-nav li.active,
.header-nav li .header-product-item.header-product-active{
  color: #268BFF;
}
.header-product{
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
  width: 160px;
  padding: 12px 0;
  display: none;
}
.header-product-item{
  font-size: 14px;
  color: #666;
  height: 40px;
  line-height: 40px;
}
.header-product-item:hover{
  background: rgba(0, 0, 0, .06);
}
.header-nav li:hover .header-product{
  display: block;
}

.index-banner-wrap {
  max-width: 1200px;
  width: 90%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index-banner-title {
  font-size: 44px;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  line-height: 62px;
  text-shadow: 5px 5px 15px rgba(0, 0, 255, 0.5);
}

.index-banner-desc {
  font-size: 28px;
  color: #FFFFFF;
  margin: 40px 0 46px;
  line-height: 46px;
  text-align: center;
}

.index-banner-try {
  margin: 0 auto;
  display: flex;
  height: 44px;
  align-items: center;
}

.index-banner-try input {
  width: 180px;
  border: 1px solid #fff;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: transparent;
  height: 42px;
  padding: 0 24px;
  color: #268BFF;
  font-size: 18px;
  transition: background 2s;
  display: none;
}

.index-banner-try input::-webkit-input-placeholder {
  color: #fff;
}

.index-banner-try input::-moz-input-placeholder {
  color: #fff;
}

.index-banner-try input::-ms-input-placeholder {
  color: #fff;
}

.index-banner-try input::-o-input-placeholder {
  color: #fff;
}

.index-banner-try input::input-placeholder {
  color: #fff;
}

.index-banner-try button {
  width: 124px;
  height: 100%;
  font-size: 18px;
  color: #fff;
  border-radius: 4px;
  /* border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; */
  background: #268BFF;
}

.index-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #333;
  color: #fff;
  padding: 88px 0;
}

.index-footer-qrcode {
  display: flex;
  /* max-width: 800px; */
  width: 70%;
  justify-content: space-between;
  /* margin-bottom: 40px; */
  padding-bottom: 40px;
  border-bottom: 1px dashed #979797;
}

.index-footer-qrcode li {
  /* width: 100px; */
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.index-footer-qrcode li img {
  /* width: 100%; */
  width: 100px;
  margin-bottom: 12px;
}

.index-footer-qrcode li p {
  /* font-size: 24px; */
  font-size: 20px;
  color: #fff;
  line-height: 32px;
  font-weight: 500;
  text-align: center;
}

.oa-box {
  flex: 2;
}
.oa-box .footer-tit,
.about-box .footer-tit,
.code-box .footer-tit {
  font-size: 28px;
  font-weight: 500;
  padding-bottom: 36px;
}
.oa-box .footer-con,
.about-box .footer-con {
  font-size: 18px;
  font-weight: 400;
}
.oa-box .footer-con > a,
.about-box .footer-con > p {
  display: block;
  padding-bottom: 32px;
}
.code-box .footer-con {
  display: flex;
  justify-content: center;
  align-items: center;
}
.code-box-img {
  width: 136px;
  height: 136px;
}
.about-box {
  flex: 6;
}
.code-box {
  flex: 2;
}
.center {
  text-align: center;
}

.index-footer-beian {
  width: 70%;
  padding-top: 32px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.index-footer-beian > a {
  text-decoration: underline;
}

@media (max-width: 900px){
  .index-footer-qrcode {
    display: flex;
    max-width: 800px;
    width: 98%;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .index-footer-qrcode li {
    /* width: 100px; */
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .index-footer-qrcode li img {
    /* width: 100%; */
    width: 80px;
    margin-bottom: 12px;
  }
  
  .index-footer-qrcode li p {
    /* font-size: 24px; */
    width: 95px;
    font-size: 14px!important;
    color: #fff;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.index-footer-ads {
  margin-top: 24px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.index-module,.index-module-other{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.index-module-content{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-column{
  flex-direction: column;
}
.index-digit-logo{
  width: 120px;
  height: 120px;
}

.dom-center{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dom-max-width{
  width: 90%;
  max-width: 1200px;
}


.hover-zoom:hover {
  transform: scale(1.05);
  transition: all 0.5s;
}
.hover-zoom-shadow:hover {
  transform: scale(1.05);
  transition: all 0.5s;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.common-module{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 184px 0;
}

.common-module-default{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.common-module-bottom{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding-bottom: 184px;
}


.pop-box {
  position: fixed;
  bottom: 0;
  right: 100px;
  width: 420px;
  height: 540px;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
  border-radius: 12px;
  border: 1px solid #E3E3E3;
  display: none;
  z-index: 101;
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}
.pop-box .close {
  position: absolute;
  right: 20px;
  top:16px;
  width: 15px;
  height: 15px;
  background: url('../images/icon-close.png') no-repeat;
  background-size: 100% 100%;
  opacity: 0.5;
  cursor: pointer;
}
.pop-box .pop-tab {
  display: flex;
  margin: 48px 28px 18px;
  padding-bottom: 18px;
  height: 24px;
  font-size: 16px;
  border-bottom: 1px solid #D8D8D8;
}
.pop-box .pop-tab a {
  display: block;
  flex: 1;
  text-align: center;
  color: #666;
  position: relative;
}
.pop-box .pop-tab .cur {
  color: #5DADFF;
  font-weight: bold;
}
.pop-box .pop-tab .tab:after {
  position: absolute;
  right: 0;
  content: '';
  display: inline-block;
  width: 1px;
  height: 24px;
  background: #D8D8D8;
  border-radius: 4px;
}
.pop-box .box {
  display: none;
  text-align: center;
  font-size: 16px;
  color: #666;
}
.pop-box .selected {
  display: block;
}
.pop-item {
  margin: 0 28px 16px 28px;
  font-size: 14px;
  text-align: left;
}
.pop-item  input {
  padding: 0 12px;
  margin-top: 12px;
  width: 334px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #D8D8D8;
  font-size: 14px;
}
.pop-item .required {
  color:#F97575;
  padding-right: 5px;
}
.pop-box img {
  width: 200px;
  margin: 0 auto;
  margin-top: 80px;
}
.pop-button {
  margin: 32px auto 0;
  width: 364px;
  height: 44px;
  line-height: 44px;
  background: #5DADFF;
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}
.error-tip {
  margin-top: 5px;
  font-size: 12px;
  color: #f00;
}
.join-toast {
  display: none;
  position: absolute;
  top: 50px;
  left: 50%;
  margin-left: -120px;
  width: 240px;
  height: 100px;
  line-height: 100px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}
@media (max-width:900px){
  .header-container {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 99;
  }
  .header-logo {
    width: 69px;
    height: 16px;
  }
  .header-nav {
    margin-left: 10px;
  }
  .header-nav li {
    width: 76px;
  }
  .index-footer-qrcode li p {
    font-size: 20px;
  }
  .index-footer-ads {
    width: 90%;
    font-size: 16px;
  }
  .pop-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 540px;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.2);
    border-radius: 6px;
  }
  .pop-item input {
    width: 100%;
    box-sizing: border-box;
  }
  .privacy-tabs{
    margin-top: 50px;
  }
}