@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: "微软雅黑";
}

/* layer调整 */
.layui-layer-hui .layui-layer-content {
  padding: 15px 25px !important
}

.layui-layer-dialog .layui-layer-content {
  font-size: 25px !important;
  line-height: 50px !important;
}

/* 媒体查询限制最大屏幕小于750px*/
@media screen and (max-width: 750px) {

  /* layer调整 */
  .layui-layer-hui .layui-layer-content {
    padding: 12px 15px !important
  }

  .layui-layer-dialog .layui-layer-content {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}

.main {
  width: 750px;
  min-width: 750px;
  margin: 0 auto;
}

img {
  display: block;
}

.main .content {
  width: 100%;
  position: relative;
  background-color: rgb(1, 67, 155);
}

.main .content img {
  width: 100%;
}

.main .content .head {
  width: 100%;
  height: auto;
  position: relative;
}

.main .content .head .zz {
  position: absolute;
  z-index: 9;
  width: 52%;
  top: 70%;
  left: 50%;
  margin: 0 auto;
  transform: translate(-50% 50%);
  -webkit-transform: translate(-50% 50%);
  animation: xz 3s linear infinite;
  -webkit-animation: xz 3s linear infinite;
}

@keyframes xz {
  from {
    transform: translate(-50%, -50%) rotate(0);
    -webkit-transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes xz {
  from {
    transform: translate(-50%, -50%) rotate(0);
    -webkit-transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
  }
}


.box {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 1rem;
}

.bdtj {
  position: absolute;
  top: 17%;
  width: 100%;
  height: 77%;
}

.bdtj input {
  width: 80%;
  height: 15%;
  display: block;
  margin: 0 auto;
  outline: none;
  border: 0;
  text-indent: 1rem;
  color: #fff;
  background: none;
  font-size: 1.5rem;
}

.code {
  margin-top: 2% !important;
}

.phone {
  margin-top: 4% !important;

}

.btn {
  width: 70%;
  height: 2em;
  line-height: 2em;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  margin-top: 9%;
  color: #ff2121;
  background: linear-gradient(0deg, #fbe71d, #eeb400);
  border-radius: 1rem;
  cursor: pointer;
}

.rollBox {
  width: 75%;
  height: 3.2rem;
  line-height: 3.2rem;
  color: #fff;
  /* background-color: #eeb400; */
  margin: 0 auto;
  margin-top: 19%;
  font-size: 1.2rem;
  overflow: hidden;
  transform: translate(-50%, 0, -50%);

}

.rollBox ul {
  list-style: none;
}

.rollBox ul li {
  width: 100%;
  height: 3.2rem;
  line-height: 3.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

/* 动起来动画 */
@keyframes pluse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

@-webkit-keyframes pluse {
  from {
    -webkit-transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.1);
  }
}

/* 变大变小动画 */
.animated {
  animation: pluse .5s both alternate infinite;
  -webkit-animation: pluse .5s both alternate infinite;
}

.foot {
  width: 100%;
  height: 6rem;
  color: #fff;
  background-color: rgb(0, 19, 60);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
  margin: 1rem auto 0;
}

.fxts {
  font-size: 0.9rem;
}

/* 媒体查询限制最大屏幕小于750px*/
@media screen and (max-width: 750px) {
  .main {
    width: 100%;
    min-width: 100%;
  }

  .btn {
    height: 3rem;
    line-height: 3rem;
  }

  .rollBox {
    height: 1.9rem;
    line-height: 1.9rem;
    margin-top: 16%;
  }

  .rollBox ul li {
    height: 1.9rem;
    line-height: 1.9rem;
  }
}