.home {
  width: 100%;
  position: relative;
}
.home .main {
  margin-top: 90px;
  background: #F6F6F6;
  padding: 20px 10%;
}
.home .main .types {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 20px 10px;
  align-items: center;
}
.home .main .types .t {
  width: 80px;
  color: #999999;
  font-size: 14px;
}
.home .main .types .ts {
  width: calc(100% - 80px);
}
.home .main .types .ts a {
  color: #333333;
  font-size: 14px;
  margin-right: 20px;
  padding: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
.home .main .types .ts .active {
  background: #1583E1;
  color: white;
}
.home .main .content {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.home .main .content .list {
  width: calc(69% - 20px);
  background: white;
  padding: 10px;
}
.home .main .content .list .dt {
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 18px;
  border-bottom: 1px solid #F6F6F6;
  padding-bottom: 10px;
}
.home .main .content .list .dt::before {
  content: "";
  display: block;
  width: 3px;
  height: 19px;
  background: #1583E1;
  margin-right: 5px;
}
.home .main .content .list .allItems .item {
  border-bottom: 1px dashed #F6F6F6;
  padding: 20px 0;
}
.home .main .content .list .allItems .item .d1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .main .content .list .allItems .item .d1 .title {
  color: #333333;
  font-size: 18px;
}
.home .main .content .list .allItems .item .d1 .time {
  display: flex;
  align-items: center;
}
.home .main .content .list .allItems .item .d1 .time p {
  color: #999999;
  font-size: 12px;
  margin-left: 5px;
}
.home .main .content .list .allItems .item .d2 {
  margin-top: 10px;
  position: relative;
}
.home .main .content .list .allItems .item .d2 .dd {
  display: flex;
}
.home .main .content .list .allItems .item .d2 .dd p {
  color: #333333;
  font-size: 14px;
  margin-right: 20px;
}
.home .main .content .list .allItems .item .d2 .dd p span {
  color: #B3B3B3;
}
.home .main .content .list .allItems .item .d2 .dd2 {
  margin-top: 5px;
  display: flex;
}
.home .main .content .list .allItems .item .d2 .dd2 p {
  color: #333333;
  font-size: 14px;
  margin-right: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 80%;
}
.home .main .content .list .allItems .item .d2 .dd2 p span {
  color: #B3B3B3;
}
.home .main .content .list .allItems .item .d2 .dd2 .show {
  color: #1583E1;
  font-size: 14px;
  transform: translateX(-20px);
}
.home .main .content .list .allItems .item .d2 .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  padding: 5px 10px;
  background: #1583E1;
  color: white;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}
.home .main .content .list .pager {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 30px 0;
}
.home .main .content .list .pager a {
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: block;
  padding: 8px 15px;
  border-right: none;
  font-family: "PingFang-Regular";
  max-height: 20px;
  color: #000000;
}
.home .main .content .list .pager a:hover {
  background: #000000;
  color: white;
}
.home .main .content .list .pager .active {
  background: #000000;
  color: white;
}
.home .main .content .list .pager a:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.home .main .content .pics {
  width: 30%;
}
.home .main .content .pics .nr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home .main .content .pics .nr a {
  width: 49%;
  display: block;
  margin-bottom: 10px;
}
.home .main .content .pics .nr a img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 100;
}
.home .dialog .content {
  width: 276px;
  height: 238px;
  background: #FFFFFF;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home .dialog .content p {
  color: #333333;
  font-size: 18px;
}
.home .dialog .content .goPay {
  background: #1583E1;
  display: block;
  width: 90%;
  margin: 30px auto 10px auto;
  border-radius: 20px;
  color: white;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
}
.home .dialog .content .cancel {
  color: #999999;
  font-size: 14px;
  cursor: pointer;
}
.home .dialog2 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  display: none;
}
.home .dialog2 .content {
  width: 276px;
  height: 238px;
  background: #FFFFFF;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home .dialog2 .content .p1 {
  color: #333333;
  font-size: 18px;
}
.home .dialog2 .content .p1 span {
  color: #F4543C;
}
.home .dialog2 .content .p2 {
  color: #999999;
  font-size: 14px;
  font-family: "PingFang-Regular";
  margin-top: 10px;
}
.home .dialog2 .content .confirm {
  background: #1583E1;
  display: block;
  width: 90%;
  margin: 30px auto 10px auto;
  border-radius: 20px;
  color: white;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
}
.home .dialog2 .content .cancel {
  color: #999999;
  font-size: 14px;
  cursor: pointer;
}
.home .dialog3 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.home .dialog3 .content {
  width: 60%;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 5px;
  position: relative;
}
.home .dialog3 .content .close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
.home .dialog3 .content .close img {
  display: block;
  width: 20px;
}
.home .dialog3 .content .t {
  color: #333333;
  font-size: 22px;
}
.home .dialog3 .content .icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}
.home .dialog3 .content .icons .l {
  display: flex;
}
.home .dialog3 .content .icons .l .i {
  display: flex;
  align-items: center;
}
.home .dialog3 .content .icons .l .i img {
  display: block;
}
.home .dialog3 .content .icons .l .i p {
  color: #333333;
  font-size: 14px;
  margin-left: 5px;
}
.home .dialog3 .content .icons .time {
  display: flex;
  align-items: center;
}
.home .dialog3 .content .icons .time p {
  color: #999999;
  font-size: 12px;
  margin-left: 5px;
}
.home .dialog3 .content .nr {
  background: #F2F4F5;
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  border-radius: 5px;
  min-height: 300px;
}
.home .dialog3 .content .nr span {
  color: #999999;
}
.home .dialog4 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  display: none;
}
.home .dialog4 .content {
  width: 60%;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 5px;
  position: relative;
}
.home .dialog4 .content .close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
.home .dialog4 .content .close img {
  display: block;
  width: 20px;
}
.home .dialog4 .content .info {
  display: flex;
  align-items: center;
}
.home .dialog4 .content .info .avator img {
  display: block;
}
.home .dialog4 .content .info p {
  color: #616161;
  margin-left: 10px;
}
.home .dialog4 .content .info p span {
  color: #FF0000;
}
.home .dialog4 .content .chose {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.home .dialog4 .content .chose .item {
  width: 24%;
  border: 1px solid #D1D1D1;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.home .dialog4 .content .chose .item .tag {
  display: inline-block;
  padding: 5px 10px;
  background: #1583E1;
  color: white;
  font-size: 14px;
  font-family: "PingFang-Regular";
  position: absolute;
  left: -1px;
  top: -12px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.home .dialog4 .content .chose .item .num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 0;
}
.home .dialog4 .content .chose .item .num p {
  color: #333333;
  font-size: 36px;
  font-family: "PingFang-Regular";
}
.home .dialog4 .content .chose .item .num span {
  color: #999999;
  font-size: 14px;
  transform: translateY(-10px);
  margin-left: 5px;
  font-family: "PingFang-Regular";
}
.home .dialog4 .content .chose .item .st {
  color: #999999;
  font-size: 14px;
  font-family: "PingFang-Regular";
  padding: 10px 0;
  border-top: 1px dashed #F0F0F0;
}
.home .dialog4 .content .chose .active {
  border-color: #1583E1;
}
.home .dialog4 .content .chose .active .num p {
  color: #1583E1;
}
.home .dialog4 .content .chose .active .st {
  color: #1583E1;
}
.home .dialog4 .content .pay {
  background: #F2F4F5;
  text-align: center;
  padding: 30px 0;
}
.home .dialog4 .content .pay .p1 {
  color: #F4543C;
  font-size: 24px;
}
.home .dialog4 .content .pay .p2 {
  color: #999999;
  font-size: 14px;
  font-family: "PingFang-Regular";
  margin: 10px 0;
}
.home .dialog4 .content .pay .code {
  width: 169px;
  height: 170px;
  border: 1px solid #1583E1;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.home .dialog4 .content .pay .way {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.home .dialog4 .content .pay .way p {
  margin-left: 5px;
  font-family: "PingFang-Regular";
}
@media screen and (max-width: 1440px) {
  .home .main {
    padding: 20px 5%;
  }
}
@media screen and (max-width: 1200px) {
  .home .main {
    margin-top: 60px;
  }
  .home .main .types {
    flex-direction: column;
  }
  .home .main .types .ts {
    width: 100%;
    margin-top: 10px;
  }
  .home .main .content .list {
    width: 100%;
  }
  .home .main .content .pics {
    display: none;
  }
  .home .dialog3 .content {
    width: 80%;
    padding: 15px 5%;
  }
  .home .dialog3 .content .t {
    font-size: 15px;
  }
  .home .dialog3 .content .icons {
    flex-direction: column;
  }
  .home .dialog3 .content .icons .time {
    margin-top: 15px;
  }
  .home .dialog3 .content .nr {
    max-height: 200px;
    overflow-y: scroll;
  }
  .home .dialog4 .content {
    width: 80%;
    padding: 15px 5%;
  }
  .home .dialog4 .content .chose .item .num {
    padding: 20px 0 10px 0;
  }
  .home .dialog4 .content .chose .item .num p {
    font-size: 18px;
  }
  .home .dialog4 .content .chose .item .st {
    font-size: 12px;
  }
  .home .dialog4 .content .pay {
    padding: 10px 0;
  }
}

/*# sourceMappingURL=message.css.map */
