@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%;
}

.lb {
  width: 100%;
  height: 150px;
  background-color: #fff;
}

.lb .p1 {
  text-align: center;
  color: #DC2626;
  font-size: 18px;
  font-weight: bold;
}

.lb .p2 {
  text-align: center;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.lb_box {
  width: 93%;
  height: 80px;
  margin: 10px auto;
  display: grid;
  grid-template-rows: 50% 50%;
  overflow: hidden;
}

.lb_box ul {
  list-style: none;
}

.box1 {
  width: 1040px;
  height: 35px;
  white-space: nowrap;
  animation: marquee 8s linear infinite;
}

.box2 {
  width: 2000px;
  box-sizing: border-box;
  padding-left: 20px;
  height: 35px;
  margin-top: 5px;
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 6s linear infinite both;
}

.lb_box li {
  color: #fff;
  height: 30px;
  line-height: 25px;
  font-size: 13px;
  text-align: center;
  padding: 2px 5px;
  box-sizing: border-box;
  display: inline-block;
  margin-right: 10px;
  border-radius: 10px;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0)
  }
}


.s1 {
  background-color: #FF3F3B;
}

.s2 {
  background-color: #FF7018;
}

.main .bd {
  width: 100%;
  height: 270px;
  background-color: #ff2d2a;
}

.main .bd .p1 {
  font-size: 30px;
  font-weight: bold;
  color: white;
  text-align: center;
  padding: 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;
}


.main .dbxf {
  display: none;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  margin: 0 auto;
}

.main .mfzx {
  width: 700px;
  height: 50px;
  line-height: 50px;
  margin: 5px auto;
  background-color: rgb(230, 50, 46);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .main .mfzx {
    width: 90%;
  }
}



.main .foot {
  text-align: center;
  height: 180px;
  line-height: 20px;
  font-size: 14px;
  color: #fff;
  background-color: #FF3E3C;
}

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

/* 变大变小动画 */
.animated {
  animation: pluse 1s both alternate infinite;
  -webkit-animation: pluse 1s 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);
  }
}