@charset "UTF-8";
.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex.column.column-center {
  align-content: center;
}
.flex.column.column-space-between {
  align-content: space-between;
}
.flex.column.column-start {
  align-content: flex-start;
}
.flex.column.column-end {
  align-content: flex-end;
}
.flex.center {
  justify-content: center;
}
.flex.start {
  justify-content: flex-start;
}
.flex.end {
  justify-content: flex-end;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.flex.middle {
  align-items: center;
}
.flex.stretch {
  align-items: stretch;
}
.flex.top {
  align-items: flex-start;
}
.flex.bottom {
  align-items: flex-end;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.grow {
  flex-grow: 1;
}

.flex-one {
  flex: 1;
}

.flex-two {
  flex: 2;
}

body, html {
  width: 100%;
  height: 100%;
}

body {
  height: 100vh;
  font-family: "PingFang-Regular";
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  color: #303133;
}
body .page-top {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  padding-left: 0.05rem;
  margin-bottom: 0.15rem;
}
body .page-top .page-top-left {
  color: #303133;
  font-size: 0.18rem;
  font-weight: 400;
}
body .page-top .page-top-left img {
  height: 0.16rem;
  margin-right: 0.2rem;
}
body .page-top .page-top-right .page-top-btn {
  margin-right: 0.12rem;
  position: relative;
  width: 0.18rem;
  height: 0.18rem;
}
body .page-top .page-top-right .page-top-btn .red-dot {
  position: absolute;
  top: -0.04rem;
  right: -0.04rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #f56c6c;
}
body .page-top .page-top-right .page-top-btn .icon-nofitication, body .page-top .page-top-right .page-top-btn .icon-filter {
  width: 0.17rem;
}

.bk-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus-visible {
  outline: none;
}

input[type=text], textarea {
  background-color: transparent;
  border: none;
}
input[type=text]::-webkit-input-placeholder, textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #909399;
}
input[type=text]:-moz-placeholder, textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #909399;
}
input[type=text]::-moz-placeholder, textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #909399;
}
input[type=text]:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #909399;
}

/*checkbox*/
.checkbox-group {
  width: 0.14rem;
  height: 0.14rem;
  position: relative;
}
.checkbox-group input[type=checkbox] + label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.015rem solid #dcdfe6;
}
.checkbox-group input[type=checkbox]:checked + label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 0.015rem solid #545dff;
  background-color: #545dff;
  background-image: url(../image/checked.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.checkbox-group input[type=checkbox] {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  margin: 0;
  cursor: pointer;
}

.btn {
  font-size: 0.14rem;
  text-align: center;
  margin-left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 2.85rem;
  line-height: 0.44rem;
  border-radius: 0.22rem;
  background: #545dff;
  color: #ffffff;
  box-shadow: 0 0.02rem 0.16rem rgba(84, 93, 255, 0.36);
}
.btn.no {
  font-size: 0.14rem;
  text-align: center;
  margin-left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 2.85rem;
  line-height: 0.44rem;
  border-radius: 0.22rem;
  background: #999;
  color: #ffffff;
  box-shadow: 0 0.02rem 0.16rem rgba(84, 93, 255, 0.36);
}

.tabs {
  border-radius: 0.06rem;
  background: #ffffff;
  box-shadow: 0 0 0.1rem rgba(230, 162, 60, 0.21);
  padding: 0.11rem 0.15rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.tabs .tab {
  font-size: 0.14rem;
  font-weight: 400;
}
.tabs .tab.active .tab-text {
  color: #E6A23C;
}
.tabs .tab .account {
  color: #F56C6C;
}

.item-empty {
  display: none;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
  height: 100%;
  padding:0.15rem;
}
.item-empty .empty {
  width: 1.35rem;
  height: 1.4538rem;
}
.item-empty .text {
  color: #606266;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
  text-align: center;
  width: 1.17rem;
  margin-top: 0.1rem;
}

.modal {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.82rem;
  border-top-left-radius: 0.08rem;
  border-top-right-radius: 0.08rem;
  background: #ffffff;
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  display: none;
  z-index: 112;
}
.modal .page-top .page-top-left img {
  height: 0.114rem;
  margin-left: 0.1rem;
  position: relative;
  top: unset;
  right: unset;
}
.modal .icon-x {
  height: 0.1rem;
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
}
.modal .modal-content {
  height: 100%;
}

.bk-cover-options {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 666;
}

.options-modal {
  display: none;
  position: absolute;
  top: 50vh;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  overflow-y: auto;
  z-index: 666;
}
.options-modal .option {
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 1;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  text-align: center;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.2);
}
.options-modal .option:hover, .options-modal .option.active {
  background: rgba(112, 152, 255, 0.8);
  color: #ffffff;
}

.toast {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.toast .toast-wrap {
  width: 100%;
  height: 100%;
}
.toast .toast-box {
  width: 80%;
  border-radius: 0.1rem;
  padding: 0.2rem;
  background: #545dff;
  box-shadow: 0px 0.05rem 0.15rem rgba(84, 93, 255, 0.5);
  position: relative;
  text-align: center;
}
.toast .toast-box p {
  position: relative;
  z-index: 3;
  font-size: 0.2rem;
  color: #FFFFFF;
}
.toast .toast-box::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 0.1rem;
  box-shadow: 0.1rem 0.1rem 0.1rem rgba(35, 24, 21, 0.2);
}

@font-face {
  font-family: "PingFang-Regular";
  src: url(../fonts/PingFang-Regular.otf) format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SF-Pro-Text-Semibold";
  src: url(../fonts/SF-Pro-Text-Semibold.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*src: url("SourceHanSansCN-Bold.woff2") format("woff2"),
url("SourceHanSansCN-Bold.woff") format("woff"),
url("SourceHanSansCN-Bold.ttf") format("truetype"),
url("SourceHanSansCN-Bold.eot") format("embedded-opentype"),
url("SourceHanSansCN-Bold.svg") format("svg"),
url(./fonts/Lato-Regular.otf) format('opentype')
;*/
body.index {
  padding-top: 0.9rem;
  padding-bottom: 0.4rem;
}
body.index .diwen {
  width: calc(100% - 0.3rem);
  bottom: 0.4rem;
  position: absolute;
}
body.index .logo {
  height: 1.1714rem;
  display: block;
  margin-bottom: 0.3rem;
  margin-left: 0.15rem;
}
body.index .form .input-group {
  position: relative;
}
body.index .form .input-group input {
  height: 0.5rem;
  padding-left: 0.05rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(84, 93, 255, 0.8);
  font-size: 0.14rem;
  font-weight: 400;
  display: block;
}
body.index .form .input-group input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #b9c3c9;
}
body.index .form .input-group input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #b9c3c9;
}
body.index .form .input-group input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #b9c3c9;
}
body.index .form .input-group input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b9c3c9;
}
body.index .form .input-group.input-group-2 .eye {
  position: absolute;
  width: 0.16rem;
  right: 0.2rem;
  top: 0.2rem;
}
body.index .form .input-group.input-group-2 .eye.open {
  display: none;
}
body.index .form .forget {
  padding-left: 0.1rem;
  color: #232994;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
  margin-bottom: 0.7rem;
  margin-top: 0.25rem;
  display: block;
}
body.index .form .btn {
  display: block;
  width: 3.2rem;
  background: linear-gradient(159deg, #060a53 0%, #545dff 99.63%, #000000 100%);
  box-shadow: 0 0.05rem 0.15rem rgba(84, 93, 255, 0.5);
}
body.index .brand {
  width: 1.1429rem;
  height: 0.24rem;
  opacity: 0.5;
}

body.shezhi .main {
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
  margin-bottom: 0.15rem;
  flex-grow: 1;
  border-radius: 0.06rem;
}
body.shezhi .main .main-top .card {
  width: 3.43rem;
  border-radius: 0.06rem;
  background: #545dff;
  box-shadow: 0px 0px 0.15rem rgba(84, 93, 255, 0.2);
  padding: 0.15rem;
}
body.shezhi .main .main-top .card .card-left .image {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.55rem;
  background: #909399;
  margin-right: 0.15rem;
}
body.shezhi .main .main-top .card .card-left .card-left-2 .card-left-2-1 .name {
  color: #ffffff;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 0.03rem;
  margin-bottom: 0.03rem;
}
body.shezhi .main .main-top .card .card-left .card-left-2 .card-left-2-1 img.gender {
  width: 0.08rem;
  height: 0.0804rem;
}
body.shezhi .main .main-top .card .card-left .card-left-2 .card-left-2-1 img.gender.female {
  display: none;
}
body.shezhi .main .main-top .card .card-left .card-left-2 .card-left-2-2 {
  color: #ffffff;
  font-size: 0.12rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 0.05rem;
  margin-bottom: 0.05rem;
}
body.shezhi .main .main-top .card .card-right .arrow {
  width: 0.06rem;
  height: 0.12rem;
}
body.shezhi .main .main-top .item {
  font-family: "SF-Pro-Text-Semibold";
  font-size: 0.17rem;
  font-weight: 400;
  line-height: 0.5rem;
  height: 0.5rem;
  padding: 0 0.05rem;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.2);
  margin: 0 0.15rem;
}
body.shezhi .main .main-top .item .arrow {
  width: 0.06rem;
  height: 0.12rem;
}
body.shezhi .main .main-top .item.item-1 {
  margin-top: 0.4rem;
}
body.shezhi .main .main-bottom {
  font-size: 0.14rem;
  font-weight: 400;
  text-align: center;
  width: 1.73rem;
  height: 0.1867rem;
  margin-bottom: 0.5rem;
}

body.xiaoxi .items .item {
  padding-top: 0.16rem;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.2);
}
body.xiaoxi .items .item .line-1 {
  color: #737b91;
  font-size: 0.12rem;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
  text-align: center;
  width: 1.4rem;
  height: 0.21rem;
  line-height: 0.21rem;
  border-radius: 0.04rem;
  background: rgba(48, 49, 51, 0.06);
  margin-bottom: 0.3rem;
}
body.xiaoxi .items .item .line-2 {
  color: #303133;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.15rem;
}
body.xiaoxi .items .item .line-3 {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.17rem;
}

body.jindu {
  height: 100vh;
  padding-bottom: 0.15rem;
}
body.jindu .card {
  border-radius: 0.06rem;
  background: #545dff;
  box-shadow: 0 0.05rem 0.15rem rgba(84, 93, 255, 0.5);
  margin-bottom: 0.2rem;
  padding: 0.15rem;
}
body.jindu .card .image {
  width: 0.2rem;
}
body.jindu .card .text {
  padding-left: 0.15rem;
  padding-right: 0.1rem;
  color: #ffffff;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.jindu .main {
  flex-grow: 1;
  width: 100%;
  border-radius: 0.06rem;
  background: #ffffff;
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
  overflow: hidden;
}
body.jindu .main .content {
  height: 100%;
  overflow-y: auto;
}
body.jindu .main .content .items {
  height: auto;
  padding: 0.15rem;
  overflow-y: auto;
}
body.jindu .main .content .items .item {
  margin-bottom: 0.15rem;
}
body.jindu .main .content .items .item .line-1 {
  color: #303133;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
  margin-bottom: 0.1rem;
}
body.jindu .main .content .items .item .line-2 .line-2-item {
  width: calc((100% - 0.3rem) / 3);
  margin-bottom: 0.05rem;
}
body.jindu .main .content .items .item .line-2 .line-2-item:nth-of-type(3n+ 1), body.jindu .main .content .items .item .line-2 .line-2-item:nth-of-type(3n+ 2) {
  margin-right: 0.15rem;
}
body.jindu .main .content .items .item .line-2 .line-2-item .line-2-item-image {
  width: 100%;
  height: 25vw;
  overflow: hidden;
}
body.jindu .main .content .items .item .line-2 .line-2-item .line-2-item-image img {
  height: 100%;width:100%;
}
body.jindu .main .content .items .item .line-2 .line-2-item .line-2-item-title {
  color: #b9c3c9;
  font-size: 0.12rem;
  font-weight: 400;
  line-height: 1;
  padding-top: 0.04rem;
  padding-bottom: 0.04rem;
  padding-left: 0.05rem;
  padding-right: 0.05rem;
  text-align: left;
  width: 100%;
}
body.jindu .modal {
  height: 100%;
  background: #ffffff;
  border-radius: 0;
}
body.jindu .modal .items {
  margin: 0 0.15rem;
}
body.jindu .modal .items .item {
  width: calc((100% - 0.3rem) / 3);
  overflow: hidden;
  position: relative;
  margin-bottom: 0.15rem;
}
body.jindu .modal .items .item:nth-of-type(3n+ 1), body.jindu .modal .items .item:nth-of-type(3n+ 2) {
  margin-right: 0.15rem;
}
body.jindu .modal .items .item .image-group {
  height: 25vw;
}
body.jindu .modal .items .item .image-group .image {
  height: inherit;
}
body.jindu .modal .items .item .image-group .delete {
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
body.jindu .modal .items .item.btn-upload {
  border: 0.0125rem solid #dcdfe6;
  background: #f8f8f8;
  position: relative;
}
body.jindu .modal .items .item.btn-upload .updoad-group {
  height: 25vw;
}
body.jindu .modal .items .item.btn-upload .updoad-group .camera {
  width: 0.14rem;
}
body.jindu .modal .items .item.btn-upload .updoad-group .text {
  margin-top: 0.1rem;
  color: #303133;
  font-size: 0.1rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.jindu .modal .items .item.btn-upload .updoad-group input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
body.piaoju .card {
  background: #e6a23c;
  box-shadow: 0 0.05rem 0.15rem rgba(230, 162, 60, 0.5);
}
body.piaoju .main {
  position: relative;
  padding-top: 0.36rem;
  box-shadow: 0 0 0.15rem rgba(230, 162, 60, 0.21);
}
body.piaoju .main .content .item-empty .text {
  text-align: center;
}
body.piaoju .main .content .items .item .line-2 .line-2-item .line-2-item-title {
  color: #303133;
  font-size: 0.12rem;
  padding-top: 0.06rem;
  padding-bottom: 0.06rem;
}
body.piaoju .modal {
  overflow-y: auto;
  padding-bottom: 0.7rem;
}
body.piaoju .modal .items .item .image {
  height: inherit;
}
body.piaoju .modal .items .item input {
  font-size: 0.12rem;
  font-weight: 400;
  line-height: 1;
  padding-top: 0.04rem;
  padding-bottom: 0.04rem;
  padding-left: 0.07rem;
  padding-right: 0.07rem;
  text-align: left;
  width: 100%;
}
body.piaoju .modal .label {
  margin-left: 0.15rem;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1;
}
body.piaoju .modal .label img {
  width: 0.0485rem;
  margin-left: 0.15rem;
}
body.piaoju .modal .radio-groups {
  margin-left: 0.15rem;
  margin-bottom: 0.15rem;
}
body.piaoju .modal .radio-groups .radio-group {
  position: relative;
}
body.piaoju .modal .radio-groups .radio-group input[type=radio] + label {
  display: block;
  cursor: pointer;
  border-radius: 0.17rem;
  padding: 0.1rem 0.2rem;
  border: 0.01rem solid rgba(147, 152, 167, 0.3993699);
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 0.15rem;
  color: #b3b6c1;
}
body.piaoju .modal .radio-groups .radio-group input[type=radio]:checked + label {
  background: #545dff;
  color: #ffffff;
}
body.piaoju .modal .radio-groups .radio-group input[type=radio] {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  margin: 0;
  cursor: pointer;
}
body.piaoju .modal .remark {
  margin-left: 0.15rem;
  margin-right: 0.15rem;
  margin-top: -0.1rem;
  padding: 0.1rem;
  height: 0.52rem;
  border: none;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.20170085);
  font-size: 0.14rem;
  line-height: 1.2;
  display: block;
  width: calc(100% - 0.3rem);
}
body.piaoju .modal .remark::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #b3b6c1;
}
body.piaoju .modal .remark:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #b3b6c1;
}
body.piaoju .modal .remark::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #b3b6c1;
}
body.piaoju .modal .remark:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b3b6c1;
}

body.qingjia .main .content .items {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}
body.qingjia .main .content .items .item {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.2);
}
body.qingjia .main .content .items .item .icon {
  width: 0.3rem;
  margin-right: 0.2rem;
  opacity: 0.3;
}
body.qingjia .main .content .items .item .item-right{
  width: calc(100% - 0.5rem);
}
body.qingjia .main .content .items .item .item-right .item-right-1 {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
}
body.qingjia .main .content .items .item .item-right .item-right-2 {
  color: #545dff;
  font-size: 0.14rem;
  font-weight: 400;
  padding-top: 0.05rem;
  padding-bottom: 0.05rem;
}

body.qingjia .main .content .items .item .item-right .item-right-2 .left {
  color: #545dff;
  font-size: 0.14rem;
  font-weight: 400;
}
body.qingjia .main .content .items .item .item-right .item-right-2 .right {
  color: #67c23a;
  font-size: 0.14rem;
  font-weight: 400;
  text-align: right;
  margin-top: -0.2rem;
}
body.qingjia .main .content .items .item .item-right .item-right-2 .right.reject {
  color: #dc0000;
}
body.qingjia .main .content .items .item .item-right .item-right-2 .review {
  color: #666;
}
body.qingjia .main .content .items .item .item-right .item-right-3 {
  font-size: 0.14rem;
  font-weight: 400;
}
body.qingjia .modal .card {
  background: rgba(112, 152, 255, 0.8);
  box-shadow: 0 0.05rem 0.15rem rgba(84, 93, 255, 0.1);
  border-radius: 0.06rem;
}
body.qingjia .modal .card .card-1 {
  width: calc((100% - 1.11rem) / 2);
}
body.qingjia .modal .card .card-1 .line-1 .clock {
  width: 0.16rem;
  margin-right: 0.05rem;
}
body.qingjia .modal .card .card-1 .line-1 .line-1-text {
  color: #ffffff;
  font-size: 0.14rem;
  font-weight: 400;
}
body.qingjia .modal .card .card-1 .line-2 {
  font-size: 0.18rem;
  font-weight: 400;
  margin-top: 0.05rem;
  color: #ffffff;
}
body.qingjia .modal .card .card-2 {
  width: 0.51rem;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  margin-top: 0.1rem;
}
body.qingjia .modal .leibie, body.qingjia .modal .reason {
  width: 100%;
  height: 0.7rem;
  color: #b9c3c9;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.14rem;
  border: none;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.2);
  margin: 0;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
}
body.qingjia .modal .leibie .text.active, body.qingjia .modal .reason .text.active {
  color: #303133;
}
body.qingjia .modal .leibie .arrow, body.qingjia .modal .reason .arrow {
  height: 0.12rem;
}
body.qingjia .modal .reason {
  color: #303133;
  display: block;
}
body.qingjia .modal .reason::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #b9c3c9;
}
body.qingjia .modal .reason:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #b9c3c9;
}
body.qingjia .modal .reason::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #b9c3c9;
}
body.qingjia .modal .reason:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b9c3c9;
}

body.daka {
  height: auto;
  padding-bottom: 0.15rem;
}
body.daka .tips {
  margin-bottom: 0.15rem;
  color: #e6a23c;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.daka .tips .icon {
  width: 0.16rem;
  margin-right: 0.05rem;
}
body.daka .cards {
  margin-bottom: 0.2rem;
}
body.daka .cards .card {
  border-radius: 0.06rem;
  background: #545dff;
  box-shadow: 0px 0.05rem 0.15rem rgba(84, 93, 255, 0.5);
  padding: 0.15rem;
  margin-right: 0.15rem;
}
body.daka .cards .card .icon {
  width: 0.5rem;
  margin-right: 0.15rem;
}
body.daka .cards .card .text {
  color: #ffffff;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.22rem;
  margin-right: 0.05rem;
}
body.daka .arrow-group {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}
body.daka .arrow-group .text {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.21333334rem;
  text-align: center;
}
body.daka .arrow-group .text .not-start {
  display: none;
}
body.daka .arrow-group .text .daka-day .days {
  margin: 0 0.05rem;
}
body.daka .arrow-group .arrow-up {
  width: 0.16rem;
}
body.daka .tabs {
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
}
body.daka .tabs .tab {
  color: rgba(48, 49, 51, 0.5);
}
body.daka .tabs .tab .tab-text {
  color: #303133;
}
body.daka .tabs .tab.active .tab-text {
  color: #545DFF;
}
body.daka .outline {
  flex: 1;
  overflow-y: auto;
  padding-top: 0.15rem;
  border-radius: 0.06rem;
  box-shadow: 0px 0px 0.15rem rgba(84, 93, 255, 0.2);
}
body.daka .main {
  position: relative;
  padding-top: 0.36rem;
  margin-bottom: 0.15rem;
}
body.daka .main .content {
  height: 100%;
}
body.daka .main .content .items {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}
body.daka .main .content .items .item {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.2);
  padding-right: 0.15rem;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
body.daka .main .content .items .item:last-of-type {
  border-bottom: none;
}
body.daka .main .content .items .item .icon {
  width: 0.3rem;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  opacity: 0.3;
}
body.daka .main .content .items .item .icon.car {
  display: none;
}
body.daka .main .content .items .item .item-right {
  flex-grow: 1;
}
body.daka .main .content .items .item .item-right .item-right-1 {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
}
body.daka .main .content .items .item .item-right .item-right-2 {
  width: 100%;
  font-size: 0.14rem;
  font-weight: 400;
  padding-top: 0.05rem;
  padding-bottom: 0.05rem;
  color: #737b91;
}
body.daka .main .content .items .item .item-right .item-right-2 .text {
  font-size: 0.14rem;
  font-weight: 400;
}
body.daka .main .content .items .item .item-right .item-right-2 .date {
  font-size: 0.14rem;
  font-weight: 400;
}

body.xiangmu {
  background: linear-gradient(100deg, #060a53 0%, #545dff 99.63%, #000000 100%);
}
body.xiangmu .page-top {
  width: 100%;
  margin-bottom: 0;
}
body.xiangmu .page-top .page-top-left {
  color: #ffffff;
  margin-left: 0.15rem;
}
body.xiangmu .items {
  flex-grow: 1;
  margin-left: -0.15rem;
  margin-right: -0.15rem;
  padding: 0.15rem;
  background: #ffffff;
  width: calc(100% + 0.3rem);
}
body.xiangmu .items .item {
  padding: 0.15rem;
  border-radius: 0.06rem;
  box-shadow: 0 0 0.02rem rgba(0, 0, 0, 0.18);
  overflow-y: auto;
  margin-bottom: 0.15rem;
  display: block;
}
body.xiangmu .items .item .line-1 {
  margin-bottom: 0.15rem;
}
body.xiangmu .items .item .line-1 .line-1-left {
  color: #303133;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.xiangmu .items .item .line-1 .line-1-right.blue .number {
  color: #545dff;
}
body.xiangmu .items .item .line-1 .line-1-right.blue .dots {
  background: rgba(84, 93, 255, 0.2);
}
body.xiangmu .items .item .line-1 .line-1-right.blue .dots:after {
  background: #545dff;
}
body.xiangmu .items .item .line-1 .line-1-right.red .number {
  color: #f56c6c;
}
body.xiangmu .items .item .line-1 .line-1-right.red .dots {
  background: rgba(245, 108, 108, 0.2);
}
body.xiangmu .items .item .line-1 .line-1-right.red .dots:after {
  background: #f56c6c;
}
body.xiangmu .items .item .line-1 .line-1-right.green .number {
  color: #67c23a;
}
body.xiangmu .items .item .line-1 .line-1-right.green .dots {
  background: rgba(103, 194, 58, 0.2);
}
body.xiangmu .items .item .line-1 .line-1-right.green .dots:after {
  background: #67c23a;
}
body.xiangmu .items .item .line-1 .line-1-right.grey .number {
  color: #8e9198;
}
body.xiangmu .items .item .line-1 .line-1-right.grey .dots {
  background: rgba(142, 145, 152, 0.2);
}
body.xiangmu .items .item .line-1 .line-1-right.grey .dots:after {
  background: #8e9198;
}
body.xiangmu .items .item .line-1 .line-1-right .number {
  font-size: 0.1rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.xiangmu .items .item .line-1 .line-1-right .dots {
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  margin-left: 0.05rem;
  display: block;
  position: relative;
}
body.xiangmu .items .item .line-1 .line-1-right .dots:after {
  position: absolute;
  content: "";
  display: block;
  width: 0.07rem;
  height: 0.07rem;
  top: 0.015rem;
  left: 0.015rem;
  border-radius: 50%;
}
body.xiangmu .items .item .line-2 .image-left {
  width: 1.1rem;
  height: 0.748rem;
  border-radius: 0.04rem;
  margin-right: 0.1rem;
}
body.xiangmu .items .item .line-2 .line-2-right .line-2-1 .icon {
  width: 0.16rem;
  margin-right: 0.1rem;
}
body.xiangmu .items .item .line-2 .line-2-right .line-2-1 .text {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
}

body.renwu {
  height: 100vh;
}
body.renwu .card {
  border-radius: 0.06rem;
  color: #ffffff;
  padding: 0.1rem 0.2rem;
  box-shadow: 0 0.05rem 0.15rem rgba(162, 162, 162, 0.3);
  position: relative;
  margin-bottom: 0.15rem;
}
body.renwu .card[data-daka=true] {
  background: #7098ff;
}
body.renwu .card[data-daka=false] {
  background: linear-gradient(-56deg, #fb6060 0%, #ff594f 100%);
}
body.renwu .card .card-left .line-1 {
  margin-bottom: 0.05rem;
}
body.renwu .card .card-left .line-1 .icon {
  height: 0.16rem;
  margin-right: 0.05rem;
}
body.renwu .card .card-left .line-1 .text {
  font-size: 0.12rem;
  font-weight: 400;
}
body.renwu .card .card-left .line-2 .line-2-left {
  width: 2.19rem;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.renwu .card .card-right .clock {
  width: 0.58rem;
  height: 0.58rem;
  opacity: 0.2;
  margin-bottom: 0.05rem;
}
body.renwu .card .card-right .line-2-right {
  font-size: 0.08rem;
  font-weight: 400;
  line-height: 0.08rem;
}
body.renwu .items {
  margin-bottom: 0.15rem;
}
body.renwu .items .item {
  padding: 0.1rem 0.175rem;
  position: relative;
  border-radius: 0.06rem;
  box-shadow: 0 0 0.06rem rgba(84, 93, 255, 0.1);
}
body.renwu .items .item:before {
  position: absolute;
  content: "";
  width: 0.08rem;
  height: 0.08rem;
  background: #f56c6c;
  border-radius: 50%;
  top: 0;
  right: 0;
  display: none;
}
body.renwu .items .item[data-dot=true]:before {
  display: block;
}
body.renwu .items .item .icon {
  width: 0.25rem;
  height: 0.25rem;
  margin-bottom: 0.05rem;
}
body.renwu .items .item .text {
  color: #737b91;
  font-size: 0.1rem;
  font-weight: 400;
  line-height: 1;
}
body.renwu .main {
  position: relative;
  padding-top: 0.01rem;
  flex-grow: 1;
  overflow-y: auto;
}
body.renwu .main .flag {
  width: 0.72rem;
  height: 0.16rem;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../image/icon-flag.svg) no-repeat 0 0;
  background-size: 100% 100%;
  color: #ffffff;
  font-size: 0.1rem;
  font-weight: 400;
  line-height: 0.16rem;
  text-align: center;
  z-index: 3;
}
body.renwu .main .list .item {
  margin-top: 0.34rem;
  padding-left: 0.43rem;
  padding-right: 0.23rem;
  position: relative;
}
body.renwu .main .list .item:after {
  position: absolute;
  content: "";
  width: 0.01rem;
  height: calc(100% + 0.34rem);
  left: 0.15rem;
  top: -0.34rem;
  background: rgba(84, 93, 255, 0.3);
}
body.renwu .main .list .item.grey .line-1:before {
  background: rgba(142, 145, 152, 0.2);
}
body.renwu .main .list .item.grey .line-1:after {
  background: #8e9198;
}
body.renwu .main .list .item.grey .line-1 .line-1-2 {
  color: #909399;
}
body.renwu .main .list .item.grey .btn {
  display: none;
}
body.renwu .main .list .item.blue .line-1:before {
  background: rgba(84, 93, 255, 0.2);
}
body.renwu .main .list .item.blue .line-1:after {
  background: #545dff;
}
body.renwu .main .list .item.blue .line-1 .line-1-2 {
  color: #545dff;
}
body.renwu .main .list .item.blue .btn {
  display: none;
}
body.renwu .main .list .item.red .line-1:before {
  background: rgba(245, 108, 108, 0.2);
}
body.renwu .main .list .item.red .line-1:after {
  background: #f56c6c;
}
body.renwu .main .list .item.red .line-1 .line-1-1, body.renwu .main .list .item.red .line-1 .line-1-2 {
  color: #f56c6c;
}
body.renwu .main .list .item.green .line-1:before {
  background: rgba(103, 194, 58, 0.2);
}
body.renwu .main .list .item.green .line-1:after {
  background: #67c23a;
}
body.renwu .main .list .item.green .line-1 .line-1-2 {
  color: #67c23a;
}
body.renwu .main .list .item .line-1 {
  width: 100%;
  position: relative;
}
body.renwu .main .list .item .line-1:before {
  position: absolute;
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  display: block;
  top: 0rem;
  left: -0.37rem;
  z-index: 3;
}
body.renwu .main .list .item .line-1:after {
  position: absolute;
  content: "";
  display: block;
  width: 0.14rem;
  height: 0.14rem;
  top: 0.03rem;
  left: -0.34rem;
  border-radius: 50%;
  z-index: 3;
}
body.renwu .main .list .item .line-1 .line-1-1 {
  color: #303133;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.21333334rem;
  max-width: 80%;
}
body.renwu .main .list .item .line-1 .line-1-2 {
  font-size: 0.12rem;
  font-weight: 400;
  line-height: 0.2rem;
  text-align: center;
}
body.renwu .main .list .item .line-2 {
  color: #737b91;
  font-size: 0.13rem;
  font-weight: 400;
  margin-top: 0.1rem;
}
body.renwu .main .list .item .line-4 {
  padding: 0.05rem;
  margin-top: 0.1rem;
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
  border-radius: 0.06rem;
  background: #ffffff;
  box-shadow: 0 0 0.06rem rgba(84, 93, 255, 0.1);
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.2);
}
body.renwu .main .list .item .line-5 {
  margin-top: 0.1rem;
}
body.renwu .main .list .item .line-5 .warning {
  width: 0.14rem;
  height: 0.14rem;
  margin-right: 0.05rem;
}
body.renwu .main .list .item .line-5 .text {
  color: #e6a23c;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.renwu .main .list .item .line-6 {
  margin-top: 0.15rem;
  width: auto;
  margin-left: 0%;
  transform: unset;
  display: block;
  line-height: 0.34rem;
}
body.renwu .main .more {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.21333334rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  position: relative;
}
body.renwu .main .more:after {
  position: absolute;
  content: "";
  width: 0.01rem;
  height: 100%;
  left: 0.15rem;
  top: 0;
  background: rgba(84, 93, 255, 0.3);
}
body.renwu .main .more .arrow {
  width: 0.16rem;
  margin-left: 0.15rem;
  transform: rotate(180deg);
}
body.renwu .modal-wuliao .card {
  border-radius: 0.06rem;
  background: #545dff;
  box-shadow: 0 0.05rem 0.15rem rgba(84, 93, 255, 0.5);
}
body.renwu .modal-wuliao .card img {
  width: 0.5rem;
  margin-right: 0.15rem;
}
body.renwu .modal-wuliao .card .text {
  color: #ffffff;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.22rem;
}

body.cailiao {
  height: 100vh;
}
body.cailiao .card {
  border-radius: 0.06rem;
  color: #ffffff;
  padding: 0.1rem 0.2rem;
  box-shadow: 0 0.05rem 0.15rem rgba(162, 162, 162, 0.3);
  position: relative;
  margin-bottom: 0.15rem;
  background: #7098ff;
}
body.cailiao .card .card-left .icon {
  width: 0.3rem;
  margin-right: 0.1rem;
}
body.cailiao .card .card-left .text {
  font-size: 0.16rem;
  font-weight: 400;
}
body.cailiao .card .card-right {
  line-height: 0.34rem;
  margin: 0;
  transform: unset;
  width: 0.9rem;
}
body.cailiao .tabs {
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
  position: relative;
}
body.cailiao .tabs .tab {
  color: rgba(48, 49, 51, 0.5);
}
body.cailiao .tabs .tab .tab-text {
  color: #303133;
}
body.cailiao .tabs .tab.active .tab-text {
  color: #545DFF;
}
body.cailiao .main {
  position: relative;
  flex-grow: 1;
  overflow-y: auto;
  width: calc(100% + 0.3rem);
  margin-left: -0.15rem;
}
body.cailiao .main .items {
  margin-bottom: 0.15rem;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
}
body.cailiao .main .items .item {
  border-radius: 0.06rem;
  background: #ffffff;
  padding: 0.15rem 0.1rem;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
}
body.cailiao .main .items .item[data-lingqu=true] .line-1 .line-1-right {
  color: #67c23a;
}
body.cailiao .main .items .item[data-lingqu=true] .btn {
  display: none;
}
body.cailiao .main .items .item .line-1 {
  margin-bottom: 0.1rem;
}
body.cailiao .main .items .item .line-1 .line-1-left {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  display: block;
}
body.cailiao .main .items .item .line-1 .line-1-right {
  color: #909399;
  font-size: 0.12rem;
  font-weight: 400;
  line-height: 0.2rem;
}
body.cailiao .main .items .item .line-2 {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  margin-bottom: 0.1rem;
}
body.cailiao .main .items .item .line-4 {
  border-top: 0.01rem solid rgba(84, 93, 255, 0.2);
}
body.cailiao .main .items .item .line-4 .line-4-item {
  margin-top: 0.15rem;
}
body.cailiao .main .items .item .line-4 .line-4-item .line-4-left {
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.15rem;
}
body.cailiao .main .items .item .line-4 .line-4-item .line-4-right .line-4-right-1 {
  font-family: "SF-Pro-Text-Semibold";
  font-size: 0.17rem;
  line-height: 0.22rem;
}
body.cailiao .main .items .item .line-4 .line-4-item .line-4-right .line-4-right-2 {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  margin-top: 0.05rem;
}
body.cailiao .main .items .item .line-5 {
  margin: 0;
  transform: unset;
  width: 2.85rem;
  line-height: 0.34rem;
  display: block;
  margin-top: 0.15rem;
  margin-left: auto;
  margin-right: auto;
}

body.lingqucailiao {
  height: 100vh;
}
body.lingqucailiao .search {
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.20170085);
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  margin-bottom: 0.15rem;
}
body.lingqucailiao .search .search-left {
  width: calc(100% - 0.8rem);
}
body.lingqucailiao .search .search-left .label {
  color: #b9c3c9;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1;
  width: 0.63rem;
}
body.lingqucailiao .search .search-left .icon {
  width: 0.06rem;
  margin-right: 0.2rem;
}
body.lingqucailiao .search .search-left .input {
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1;
  border: none;
  width: calc(100% - 0.63rem - 0.06rem - 0.2rem);
}
body.lingqucailiao .search .search-left .input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #b9c3c9;
}
body.lingqucailiao .search .search-left .input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #b9c3c9;
}
body.lingqucailiao .search .search-left .input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #b9c3c9;
}
body.lingqucailiao .search .search-left .input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b9c3c9;
}
body.lingqucailiao .search .btn {
  line-height: 0.34rem;
  margin: 0;
  transform: unset;
  width: 0.8rem;
  box-shadow: none;
}
body.lingqucailiao .tabs {
  position: relative;
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
}
body.lingqucailiao .tabs .tab {
  color: rgba(48, 49, 51, 0.5);
}
body.lingqucailiao .tabs .tab .tab-text {
  color: #303133;
}
body.lingqucailiao .main {
  position: relative;
  flex-grow: 1;
  overflow-y: auto;
  border: none;
  overflow-x: hidden;
}
body.lingqucailiao .main:before {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 3.6rem;
  height: 2.835rem;
  opacity: 0.05;
  background: url(../image/logo.png) no-repeat 0 0;
  background-size: contain;
}
body.lingqucailiao .main .items {
  margin-bottom: 0.15rem;
}
body.lingqucailiao .main .items .item {
  background: #ffffff;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
body.lingqucailiao .main .items .item .checkbox-group {
  width: 0.14rem;
  height: 0.14rem;
  margin-right: 0.1rem;
}
body.lingqucailiao .main .items .item .image {
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.1rem;
}
body.lingqucailiao .main .items .item .item-right {
  flex-grow: 1;
}
body.lingqucailiao .main .items .item .item-right .line-1 {
  font-family: "SF-Pro-Text-Semibold";
  font-size: 0.17rem;
  line-height: 0.22rem;
}
body.lingqucailiao .main .items .item .item-right .line-2 {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  margin-top: 0.05rem;
}
body.lingqucailiao .main .items .item .item-right .line-2 .line-2-right.group {
  border-radius: 0.16rem;
  border: 0.01rem solid #dcdfe6;
}
body.lingqucailiao .main .items .item .item-right .line-2 .line-2-right.group .minus, body.lingqucailiao .main .items .item .item-right .line-2 .line-2-right.group .add, body.lingqucailiao .main .items .item .item-right .line-2 .line-2-right.group .number {
  font-size: 0.13rem;
  font-weight: 400;
  line-height: 0.22rem;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}
body.lingqucailiao .modal-chazhao {
  height: calc(100vh - 0.6rem);
  padding-top: 0.4rem;
}
body.lingqucailiao .modal-chazhao .main:before {
  opacity: 0;
  display:none;
}

body.lingqucailiao .modal {
  height: 100%;
  background: #ffffff;
  border-radius: 0;
}
body.lingqucailiao .modal .items {
  margin: 0 0.15rem;
}
body.lingqucailiao .modal .items .item {
  width: calc((100% - 0.3rem) / 3);
  overflow: hidden;
  position: relative;
  margin-bottom: 0.15rem;
}
body.lingqucailiao .modal .items .item:nth-of-type(3n+ 1), body.lingqucailiao .modal .items .item:nth-of-type(3n+ 2) {
  margin-right: 0.15rem;
}
body.lingqucailiao .modal .items .item .image-group {
  height: 25vw;
}
body.lingqucailiao .modal .items .item .image-group .image {
  height: inherit;
}
body.lingqucailiao .modal .items .item .image-group .delete {
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
body.lingqucailiao .modal .items .item.btn-upload {
  border: 0.0125rem solid #dcdfe6;
  background: #f8f8f8;
  position: relative;
}
body.lingqucailiao .modal .items .item.btn-upload .updoad-group {
  height: 25vw;
}
body.lingqucailiao .modal .items .item.btn-upload .updoad-group .camera {
  width: 0.14rem;
}
body.lingqucailiao .modal .items .item.btn-upload .updoad-group .text {
  margin-top: 0.1rem;
  color: #303133;
  font-size: 0.1rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.lingqucailiao .modal .items .item.btn-upload .updoad-group input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

body.gongju .main .items .item[data-shiyong=false] .line-1 .line-1-right {
  color: #67c23a;
}
body.gongju .main .items .item[data-shiyong=false] .line-3-images {
  justify-content: left;
}
body.gongju .main .items .item[data-shiyong=false] .btn {
  display: none;
}
body.gongju .main .items .item .line-1 {
  margin-bottom: 0.05rem;
}
body.gongju .main .items .item .line-1 .line-1-left {
  color: #303133;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.gongju .main .items .item .line-1 .line-1-right {
  color: #5866f6;
  font-size: 0.12rem;
  font-weight: 400;
  line-height: 0.2rem;
  text-align: center;
}
body.gongju .main .items .item .line-2 {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  margin-bottom: 0.1rem;
}
body.gongju .main .items .item .line-3 {
  border-top: 0.01rem solid rgba(84, 93, 255, 0.2);
  padding-top: 0.1rem;
}
body.gongju .main .items .item .line-3 .line-3-item {
  margin-bottom: 0.1rem;
}
body.gongju .main .items .item .line-3 .line-3-item .line-3-item-text {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  margin-bottom: 0.05rem;
}
body.gongju .main .items .item .line-3 .line-3-item .line-3-images .line-3-image {
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.15rem;
  margin-bottom: 0.05rem;
}
body.gongju .main .items .item .line-5 {
  width: 2.85rem;
  line-height: 0.34rem;
  margin: 0;
  transform: unset;
  margin-bottom: 0.1rem;
  margin-top: 0.15rem;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #737b91;
  color: #737b91;
  background-color: #ffffff;
  box-shadow: none;
}

body.jiegongju .tabs {
  box-shadow: 0 0 0.15rem rgba(84, 93, 255, 0.2);
  position: relative;
  width: 100%;
}
body.jiegongju .tabs .select {
  color: #303133;
  font-size: 0.14rem;
  font-weight: 400;
}
body.jiegongju .tabs .select .arrow {
  width: 0.12rem;
  margin-left: 0.1rem;
  transform: rotate(-180deg);
}
body.jiegongju .main:before {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 3.6rem;
  height: 2.835rem;
  background: url(../image/diwen.png) no-repeat 0 0;
  background-size: contain;
  z-index: -1;
}
body.jiegongju .main .items .item {
  box-shadow: none;
  margin-bottom: 0;
  padding: 0.1rem 0.2rem;
}
body.jiegongju .main .items .item .image {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  margin-bottom: 0.1rem;
}
body.jiegongju .main .items .item .line-1 {
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 1;
}
body.jiegongju .main .items .item .line-2, body.jiegongju .main .items .item .line-3 {
  color: #737b91;
  font-family: "PingFang-SC-Regular";
  font-size: 0.14rem;
  font-weight: 400;
}
body.jiegongju .main .items .item .line-4 {
  width: 1.05rem;
  line-height: 0.34rem;
  margin: 0.2rem auto 0;
  transform: unset;
  display: block;
  box-shadow: none;
}

body.gongju .modal {
  height: 100%;
  background: #ffffff;
  border-radius: 0;
}
body.gongju .modal .items {
  margin: 0 0.15rem;
}
body.gongju .modal .items .item {
  width: calc((100% - 0.3rem) / 3);
  overflow: hidden;
  position: relative;
  margin-bottom: 0.15rem;
}
body.gongju .modal .items .item:nth-of-type(3n+ 1), body.gongju .modal .items .item:nth-of-type(3n+ 2) {
  margin-right: 0.15rem;
}
body.gongju .modal .items .item .image-group {
  height: 25vw;
}
body.gongju .modal .items .item .image-group .image {
  height: inherit;
}
body.gongju .modal .items .item .image-group .delete {
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
body.gongju .modal .items .item.btn-upload {
  border: 0.0125rem solid #dcdfe6;
  background: #f8f8f8;
  position: relative;
}
body.gongju .modal .items .item.btn-upload .updoad-group {
  height: 25vw;
}
body.gongju .modal .items .item.btn-upload .updoad-group .camera {
  width: 0.14rem;
}
body.gongju .modal .items .item.btn-upload .updoad-group .text {
  margin-top: 0.1rem;
  color: #303133;
  font-size: 0.1rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.gongju .modal .items .item.btn-upload .updoad-group input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

body.jiegongju .modal {
  height: 100%;
  background: #ffffff;
  border-radius: 0;
}
body.jiegongju .modal .items {
  margin: 0 0.15rem;
}
body.jiegongju .modal .items .item {
  width: calc((100% - 0.3rem) / 3);
  overflow: hidden;
  position: relative;
  margin-bottom: 0.15rem;
}
body.jiegongju .modal .items .item:nth-of-type(3n+ 1), body.jiegongju .modal .items .item:nth-of-type(3n+ 2) {
  margin-right: 0.15rem;
}
body.jiegongju .modal .items .item .image-group {
  height: 25vw;
}
body.jiegongju .modal .items .item .image-group .image {
  height: inherit;
}
body.jiegongju .modal .items .item .image-group .delete {
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
body.jiegongju .modal .items .item.btn-upload {
  border: 0.0125rem solid #dcdfe6;
  background: #f8f8f8;
  position: relative;
}
body.jiegongju .modal .items .item.btn-upload .updoad-group {
  height: 25vw;
}
body.jiegongju .modal .items .item.btn-upload .updoad-group .camera {
  width: 0.14rem;
}
body.jiegongju .modal .items .item.btn-upload .updoad-group .text {
  margin-top: 0.1rem;
  color: #303133;
  font-size: 0.1rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body.jiegongju .modal .items .item.btn-upload .updoad-group input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.week-section[data-expand=false] .month-weeks .week {
  display: none;
}
.week-section[data-expand=false] .month-weeks .week.hasMission {
  display: flex;
}
.week-section .month {
  color: #606266;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.24rem;
  margin-left: 0.15rem;
}
.week-section .month .arrow {
  height: 0.12rem;
  margin-left: 0.15rem;
}
.week-section .weekday {
  width: 14.2857142857%;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  line-height: 0.24rem;
  font-size: 0.16rem;
  font-weight: 400;
  text-align: center;
}
.week-section .week-title .weekday {
  color: #b9c3c9;
}
.week-section .month-weeks .week .weekday.isToday .day {
  color: #545dff;
  font-weight: bold;
}
.week-section .month-weeks .week .weekday.isMiddle .day {
  background: rgba(84, 93, 255, 0.06);
  width: 100%;
}
.week-section .month-weeks .week .weekday.isStart .day, .week-section .month-weeks .week .weekday.isEnd .day {
  color: #ffffff;
  position: relative;
}
.week-section .month-weeks .week .weekday.isStart .day:before, .week-section .month-weeks .week .weekday.isEnd .day:before {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  top: calc(50% - 0.2rem);
  left: calc(50% - 0.2rem);
  background: #545dff;
  border-radius: 50%;
  z-index: -1;
}
.week-section .month-weeks .week .weekday.isStart .day:after, .week-section .month-weeks .week .weekday.isEnd .day:after {
  content: "";
  position: absolute;
  background: rgba(84, 93, 255, 0.06);
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
}
.week-section .month-weeks .week .weekday.isEnd .day:after {
  left: 0;
  right: auto;
}
.week-section .month-weeks .week.hasMission .weekday.isMission .day {
  background: rgba(48, 49, 51, 0.1);
  width: 100%;
}
.week-section .month-weeks .week.hasMission .weekday.isWork .dot.blue {
  display: block;
}
.week-section .month-weeks .week.hasMission .weekday.isUseCar .dot.green {
  display: block;
}
.week-section .month-weeks .week.hasMission .weekday .dots {
  margin-top: 0.05rem;
}
.week-section .month-weeks .week.hasMission .weekday .dots .dot {
  display: none;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  margin: 0 0.01rem;
}
.week-section .month-weeks .week.hasMission .weekday .dots .dot.blue {
  background: #545dff;
}
.week-section .month-weeks .week.hasMission .weekday .dots .dot.green {
  background: #67c23a;
}

.modal-months {
  top: 0;
  height: 100vh;
}
.modal-months .modal-content {
  height: 100vh;
  overflow-y: auto;
}
.modal-months .modal-content .month-option {
  font-size: 0.24rem;
  line-height: 3;
  width: 30vw;
  text-align: center;
}

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

.mt14{margin-top:0.14rem;}


.layui-layer-dialog .layui-layer-content .layui-icon-error{top:19px;color: #ffb800 !important;}

.iziToast>.iziToast-body .iziToast-icon.ico-error{background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNTU1NzcwODczNzUzIiBjbGFzcz0iaWNvbiIgc3R5bGU9IiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjUxMTgiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48L3N0eWxlPjwvZGVmcz48cGF0aCBkPSJNNTEyLjAyMzI3MyAxMDI0Qzc5NC43NjM2MzYgMTAyNCAxMDI0IDc5NC43ODY5MDkgMTAyNCA1MTEuOTc2NzI3IDEwMjQgMjI5LjIzNjM2NCA3OTQuNzg2OTA5LTAuMDIzMjczIDUxMi4wMjMyNzMtMC4wMjMyNzNTMCAyMjkuMjEzMDkxIDAgNTExLjk3NjcyN0MwIDc5NC43ODY5MDkgMjI5LjIzNjM2NCAxMDI0IDUxMi4wMjMyNzMgMTAyNE00NjkuMzQxMDkxIDc2OGMwLTIzLjU1MiAxOC45MjA3MjctNDIuNjU4OTA5IDQyLjcwNTQ1NS00Mi42NTg5MDkgMjMuNTUyIDAgNDIuNjU4OTA5IDE4LjkyMDcyNyA0Mi42NTg5MDkgNDIuNjU4OTA5IDAgMjMuNTc1MjczLTE4LjkyMDcyNyA0Mi43MDU0NTUtNDIuNjU4OTA5IDQyLjcwNTQ1NUM0ODguNDcxMjczIDgxMC43MDU0NTUgNDY5LjM0MTA5MSA3OTEuNzM4MTgyIDQ2OS4zNDEwOTEgNzY4TTQ2OS4zNDEwOTEgMjU1LjgxMzgxOGMwLTIzLjQ1ODkwOSAxOC45MjA3MjctNDIuNDcyNzI3IDQyLjcwNTQ1NS00Mi40NzI3MjcgMjMuNTUyIDAgNDIuNjU4OTA5IDE5LjQzMjcyNyA0Mi42NTg5MDkgNDIuNDcyNzI3bDAgMzQxLjczNjcyN2MwIDIzLjQ1ODkwOS0xOC45MjA3MjcgNDIuNDcyNzI3LTQyLjY1ODkwOSA0Mi40NzI3MjctMjMuNTc1MjczIDAtNDIuNzA1NDU1LTE5LjQzMjcyNy00Mi43MDU0NTUtNDIuNDcyNzI3TDQ2OS4zNDEwOTEgMjU1LjgxMzgxOHoiIHAtaWQ9IjUxMTkiIGZpbGw9IiNmZjk5MDAiPjwvcGF0aD48L3N2Zz4=) 50% 50% no-repeat!important;background-size:85%!important;}



.modal-people {
  display: none;
  position: absolute;
  top: 50vh;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  overflow-y: auto;
  z-index: 666;
  padding-top:0.05rem;
}
.modal-people .modal-title{text-align: center; font-size:0.18rem;}
.modal-people .people {
  display:block;
  width:48%;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.1rem 0;
  text-align: center;
  margin:1%;
  overflow: hidden;
  float: left;
  background:#ececec;
}
.modal-people .people:hover, .modal-people .people.active {
  background: rgba(112, 152, 255, 0.8);
  color: #ffffff;
}