a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.contrary h3 {
  color: #222;
}

.nav {
  position: relative;
  margin: 20px 0;
}

.nav ul {
  margin: 0;
  padding: 0;
}

.nav li {
  margin: 5px 10px 10px 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.nav a {
  padding: 3px 12px;
  text-decoration: none;
  color: #999;
  line-height: 100%;
}

nav .current a {
  background: #e1e1e1;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
}

.nav.right ul {
  text-align: right;
}

.nav.center ul {
  text-align: center;
}

@media screen and (max-width: 600px) {
  .nav {
    position: relative;
    min-height: 40px;
  }

  .nav ul {
    padding: 5px 0;
    position: absolute;
    top: -15;
    right: 0;
    border-radius: 5px;
  }

  .nav li {
    display: none; /* hide all <li> items */
    margin: 0;
  }

  .nav .current {
    display: block; /* show only current <li> item */
  }

  .nav a {
    display: block;
    padding: 5px 5px 5px 32px;
    text-align: left;
  }

  .nav .current a {
    background: none;
    color: #666;
  }

  /* on nav hover */
  .nav ul:hover {
    background-image: none;
  }

  .nav ul:hover li {
    display: block;
    margin: 0 0 5px;
  }

  .nav ul:hover .current {
    /* background: url(images/icon-check.png) no-repeat 10px 7px;*/
  }

  /* right nav */
  .nav.right ul {
    left: auto;
    right: 0;
  }

  /* center nav */
  .nav.center ul {
    left: 50%;
    margin-left: -90px;
  }
}

.index-header{
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}
.index-header__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.index-header__logo{
  box-sizing: border-box;
}
.index-header__logo img{
  
}
.index-header__link{
  display: flex;
  align-items: center;
}
.index-header__link a{
  color: #333;
  margin-left: 48px;
  font-size: 18px;
}
.index-header__link a:hover{
  color: #333;
  /* text-decoration:underline; */
}
.index-header__menu{
  display: none;
}
.index-main{
  background-color: #eee;
  position: relative;
}
.index-main__inner{
  height: calc(100vh - 80px - 278px);
  position: relative;
}
.index-box__logo{
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translate(0,-50%);
  max-height: 100%;
}
.index-box__logo img{
  object-fit: contain;
  max-height: 100%;
}
.index-box{
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translate(0,-50%);
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 20px;
  padding: 34px 42px;
  width: 480px;
  box-shadow: 0 2px 4px 0 rgba(3, 27, 80, 0.06);
}
.index-box__title{
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-align: center;
}
.index-box__form{
  box-sizing: border-box;
  margin-top: 12px;
  /* border-top: 1px solid rgb(241,241,241); */
  padding-top: 36px;
  padding-bottom: 36px;
}
.index-box__item{
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
.index-box__item:last-child{
  margin-bottom: 0;
}
.index-box__icon{
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0,-50%);
  width: 20px;
  object-fit: contain;
}
.index-box__item input{
  color: #333;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  height: 46px;
  line-height: 44px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding-left: 36px;
}
.index-box__item input:focus{
  outline: none;
  border-color: #008b00;
}
.index-box__checkbox{
  color: #666;
  cursor: pointer;
  margin-top: 20px;
}
.index-footer__btn{
  position: relative;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  margin: 0;
  margin-top: 28px;
  border-radius: 8px;
  background-color: #00b700;
  color: #fff;
  font-size: 16px;
  border: 0;
}
.index-footer__btn:active{
  background-color: #008b00;
}
.index-box__error{
  color: red;
  font-size: 12px;
  position: absolute;
  left: 42px;
  bottom: 140px;
  line-height: 1.2;
}
.index-footer{
  background-color: #fff;
}
.index-footer__inner{
  box-sizing: border-box;
  padding-top: 66px;
  text-align: left;
  position: relative;
  height: 278px;
}
.index-footer__inner p{
  font-size: 14px;
  color: #828282;
  line-height: 26px;
}
.index-footer__inner p a{
  color: #828282;
}
.index-footer__inner p a:hover{
  color: #008b00;
}
.index-footer__title{
  color: #444 !important;
  font-size: 16px !important;
  margin-bottom: 12px;
}
.index-footer__code{
  position: absolute;
  right: 172px;
  top: 50%;
  transform: translate(0,-50%);
}
.index-footer__code img{
  width: 120px;
  height: 120px;
}
.index-footer__name{
  color: #666666;
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
}
.index-footer__logo{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
}
@media screen and (min-width: 768px) {
  .index-box__logo{
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .index-box{
    right: 20px;
    width: 420px;
    padding: 30px 32px;
  }
  .index-box__logo{
    display: block;
    left: 20px;
  }
  .index-box__logo img{
    height: 423px;
    width: 418px;
  }
}
@media screen and (min-width: 1200px) {
  .index-box{
    right: 80px;
    width: 480px;
    padding: 34px 42px;
  }
  .index-box__logo{
    left: 80px;
    display: block;
  }
  .index-box__logo img{
    height: 463px;
    width: 458px;
  }
}
@media screen and (max-height: 810px) {
  .index-main__inner{
    height: calc(100vh - 80px - 220px);
  }
  .index-footer__inner{
    height: 220px;
    padding-top: 42px;
  }
   
}
@media screen and (max-height: 740px) {
  .index-box{
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .index-box__logo img{
    height: 360px;
  }
  .index-box__form{
    margin-top: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .index-box__item{
    margin-bottom: 24px;
  }
  .index-footer__btn{
    margin-top: 20px;
    height: 42px;
    line-height: 42px;
  }
    .index-box__error {
        bottom: 120px;
    }
}
@media screen and (max-width: 768px) {
  .index-main{
    padding: 12px 0;
  }
  .index-box{
    right: auto;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .index-box__logo{
    display: none;
  }
  .index-main__inner{
    height: 480px;
  }
  .index-footer__inner{
    padding: 20px 0;
    text-align: center;
    height: auto;
  }
  .index-footer__inner p{
    font-size: 14px;
    margin-bottom: 4px;
  }
  .index-footer__code{
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0,0);
  }
  .index-footer__logo{
    position: relative;
    top: auto;
    transform: translate(0,0);
    margin-top: 16px;
  }
  .index-header__inner{
    height:60px;
  }
  .index-header__logo img{
    height: 32px;
  }
  .index-header__link>a{
    display: none;
  }
  .index-header__menu{
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
  }
  .index-header__menu.is-avtive .index-header__menus{
    display: block;
  }
  .index-header__menu-line1{
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
  }
  .index-header__menu-line2{
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
  }
  .index-header__menu-line3{
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
  }
  .index-header__menus{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 4px;
    padding: 8px 16px;
    display: none;
    box-shadow: 0 -2px 10px 0 rgba(3, 27, 80, 0.06);
  }
  .index-header__menus>a{
    white-space: nowrap;
    margin-left: 0;
    margin-bottom: 14px;
  }
  .index-header__menus>a:last-child{
    margin-bottom: 0;
  }
}
.index-main__bg{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgb(68,181,73);
}
.index-main__bg img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}