@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;
  height: auto;
  margin: 0 auto;
  background-color: #fff;
}

img {
  display: block;
}

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

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

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

.main .bd {
  width: 100%;
  margin-top: 20px;
}

.main .bd .p1 {
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-align: center;
  margin: 10px auto;
}

.main .bd .bdnr {
  width: 90%;
  margin: 0 auto;
}

.main .bd .bdnr .p2 {
  font-size: 16px;
  line-height: 30px;
  margin-top: 15px;
}

.main .bd .bdnr input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  font-size: 15px;
  padding-left: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
}

.main .bd .bdnr input::-moz-placeholder {
  color: #999;
}

.main .bd .bdnr input::placeholder {
  color: #999;
}

.main .bd .bdnr .btn {
  width: 90%;
  height: 48px;
  line-height: 48px;
  margin: 15px auto;
  background: #B61D20;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}

.tjwx {
  width: 80%;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background-color: #26B331;
  margin: 15px auto;
  text-align: center;
  border-radius: 30px;
  letter-spacing: 3px;
  cursor: pointer;
}

.p1 {
  font-size: 14px;
  text-align: center;
  margin: 15px auto;
}

.main .foot {
  text-align: center;
  height: 130px;
  line-height: 20px;
  font-size: 14px;
  color: #858585;
  background-color: #FAFAFA;
}

.main .foot .fxts {
  font-size: 15px;
  color: #b8b8b8;
}

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

/* 动起来动画 */
@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);
  }
}