<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background: #f5f6f8;
  margin: 0;
  font-size: 15px;
  background-image: url(./img/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 28vw;
}
.remark{
  font-size: 14px;
  color: red;
  margin-left:16px;
}
form {
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px 10px;
  margin: 0 10px 10px;
}
input {
  text-align: end;
  font-size: 15px;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
  padding: 0;
  flex: 1;
  width: 150px;
}
label {
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-right: 10px;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}
select {
  font-size: 15px;
  border: none;
  -webkit-appearance: none;
  background: #fff;
  direction: rtl;
  flex: 1;
  outline: none;
  padding-right: 20px;
}
.submit {
  width: 90%;
  margin: 20px auto;
  height: 32px;
  border-radius: 4px;
  color: #fff;
  background-image: linear-gradient(to right, #1989fa, #44aaff);
  text-align: center;
  line-height: 32px;
  display: block;
}
.head-img {
  opacity: 0;
  position: absolute;
  top: 28vw;
  width: 25vw;
  height: 25vw;
  left: 50%;
  margin-left: -12vw;
}
.foot {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  left: 0;
  text-align: center;
  border-top: 1px solid #eee;
}
.foot &gt; div {
  flex: 1;
}
.head-msg {
  text-align: center;
  font-size: 14px;
  margin: 10px 0 20px;
}
.icon {
  width: 14px;
  margin-right: 8px;
}
/* .arrow {
  position: relative;
}
.arrow::after {
  content: url("img/back.png");
  position: absolute;
  right: 8px;
  top: 13px;
  transform: scale(0.7);
} */
input[type="date"],
input[type="time"] {
  direction: rtl;
  -webkit-appearance: none;
  margin-right: -18px;
  background: #fff;
}
.foot-msg {
  font-size: 12px;
  position: relative;
  bottom: 2px;
}
.foot .iconfont {
  margin-top: 6px;
  display: inline-block;
  font-size: 24px;
}
.is-active,
.iconrili,
.blue {
  color: #1289ff;
}
.red {
  color: #ff382d;
}
.green {
  color: #22ac38;
}
.add-person {
  color: #1289ff;
  flex: 1;
  direction: rtl;
}
.add-person &gt; span {
  display: inline-block;
  border: 1px solid #1289ff;
  border-radius: 4px;
  padding: 1px 4px;
  margin-left: 4px;
}
.iconrili {
  margin-right: 6px;
}
.menu {
  display: flex;
  text-align: center;
  background: #fff;
  height: 36px;
  line-height: 36px;
  border-radius: 10px 10px 0 0;
  color: gray;
}
.menu &gt; div {
  flex: 1;
}
.m-active {
  color: #1289ff;
  text-decoration: underline;
}
.list {
  min-height: 80vw;
  background: #f5f6f8;
  padding: 10px;
  font-size: 12px;
  margin-bottom: 60px;
  background-size: cover;
}
.item {
  background: #fff;
  margin: 0 auto 10px;
  display: flex;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #ddd;
  align-items: center;
  padding: 16px 14px;
}
.img-box {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.head-box {
  overflow: hidden;
  width: 25vw;
  margin: auto;
  height: 25vw;
  border-radius: 50%;
  box-shadow: 0px 1px 6px #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail {
  margin-left: 20px;
  position: relative;
}
.img-box &gt; img,
.head-box &gt; img {
  width: 100%;
}
.detail &gt; div {
  margin-top: 4px;
}

.cimg {
  position: absolute;
  right: -15vw;
  top: -4vw;
  width: 20vw;
  height: 17vw;
}

.agree,
.disagree {
  background-image: linear-gradient(to right, #1989fa, #44aaff);
  height: 24px;
  border-radius: 4px;
  color: #fff;
  background-image: linear-gradient(to right, #1989fa, #44aaff);
  text-align: center;
  line-height: 24px;
  width: 70px;
  display: inline-block;
  margin-right: 10px;
}
.disagree {
  background-image: linear-gradient(to right, #ff392e, #ff6960);
}
.van-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  color: #fff;
  background-color: rgba(50, 50, 51, 0.88);
  border-radius: 8px;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
  width: fit-content;
  min-width: 96px;
  min-height: 0;
  padding: 8px 12px;
  max-width: 70%;
  z-index: 99;
}
.fade-in-active {
  animation: 0.3s fade-in both ease-out;
}
.fade-out-active {
  animation: 0.3s fade-out both ease-in;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.dialog-content{
  height: 600px;
  overflow: auto;
}
.dialog-out {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-body {
  max-height: 75vh;
  overflow: auto;
  position: relative;
}

.dialog-body &gt; label {
  justify-content: initial;
  height: 36px;
}
.dialog-body div {
  width: 36%;
  min-width: 92px;
}
.dialog-body .Aimg {
  width: 35vw;
  height: 30vw;
  position: absolute;
  right: 5vw;
  top: 42vw;
}
.dialog-body .Aimg img {
  width: 100%;
}
.dialog {
  margin: 0 22px;
  width: 100%;
  position: relative;
}
.dialog::before,
.dialog::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
  right: 8px;
  top: 15px;
  position: absolute;
  transform: rotate(45deg);
}
.dialog::after {
  transform: rotate(-45deg);
}
.dialog &gt; .close {
  display: inline-block;
  width: 40px;
  height: 50px;
  position: absolute;
  right: -2px;
  top: -6px;
  z-index: 9;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}
.hidden {
  display: none;
}
.back {
  background-image: url("img/back1.png");
}
@keyframes weuiLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
label &gt; div {
  min-width: 92px;
}
.weui-loading {
  width: 38px;
  height: 38px;
  display: inline-block;
  animation: weuiLoading 1s steps(12, end) infinite;
  background: transparent
    url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=)
    no-repeat;
  background-size: 100%;
  margin-top: 30px;
}
.weui-toast {
  width: 120px;
  height: 120px;
  background: hsla(0, 0%, 7%, 0.7);
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.weui-toast__content {
  margin-top: 2px;
}
.loading {
  background: none;
}
@media screen and (max-height: 150vw) {
  .foot {
    display: none;
  }
}
.sukangma {
  flex: 1;
  position: relative;
  text-align: center;
  min-width: 20vw;
  /* margin-right: 14px; */
}
body .su-box {
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 16vw;
  padding-top: 2vw;
  width: 13vw;
  /* background-image: url('img/test.jpg'); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-width: auto;
  display: inline-block;
}
.su-text {
  font-size: 8px;
  margin-top: 1vw;
}
.su-box &gt; span {
  font-size: 22px;
}
.box-file {
  position: absolute;
  height: 30vw;
  width: 14vw;
  right: 11%;
  opacity: 0;
}

.prompt-box {
  background-color: #fff;
  margin: 22px;
  width: 100%;
  border-radius: 6px;
  text-align: center;
}
.prompt-title {
  font-size: 16px;
  margin: 14px;
  color: #666;
}
.prompt-text {
  text-align: left;
  background: #eee;
  width: 80%;
  padding: 4px;
  margin-bottom: 16px;
  height: 28px;
}
.prompt-confirm {
  display: flex;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-top: 1px solid #eee;
}
.prompt-confirm &gt; div {
  flex: 1;
}
.dialog-pic {
  max-height: 90%;
  max-width: 90%;
}
.box-list {
  width: 150px !important;
  display: flex;
  justify-content: space-between;
}
.icon-hesuan::before {
  content: "\e653";
}

.approvel-single{
  padding: 10px;
  margin: 10px;
  border: 1px solid rgba(189, 187, 187, 0.5);
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(189, 187, 187, 0.5),
    -1px -1px 2px rgba(189, 187, 187, 0.5);
}
</pre></body></html>