@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 #1989FA;
  background-color: #1989FA;
  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);
}

.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%;
}
.item-empty .empty {
  width: 1.35rem;
}
.item-empty .text {
  color: #606266;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
  text-align: center;
  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;
}
@font-face {
  font-family: "PingFang-SC-Semibold";
  src: url(../fonts/PingFang-SC-Semibold.otf) format("opentype");
  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.62rem;
  padding-left: 0.05rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(84, 93, 255, 0.2);
  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.9rem;
  margin-top: 0.2rem;
  display: block;
}
body.index .form .btn {
  display: block;
  width: 3.2rem;
  background: linear-gradient(159deg, #060a53 0%, #545dff 100%, #000000 100%);
  box-shadow: 0 0.05rem 0.15rem rgba(84, 93, 255, 0.5);
  height: 0.52rem;
  line-height: 0.52rem;
}
body.index .brand {
  width: 1.1429rem;
  height: 0.24rem;
  opacity: 0.5;
}

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;
  background: #7098ff;
}
body.renwu .card[data-done=true] .dong, body.renwu .card[data-done=true] .card-right .clock-dong {
  display: none;
}
body.renwu .card[data-done=true] .done, body.renwu .card[data-done=true] .card-right .clock-done {
  display: block;
  opacity: 1;
  width: 0.75rem;
}
body.renwu .card[data-done=false] .dong, body.renwu .card[data-done=false] .card-right .clock-dong {
  display: block;
}
body.renwu .card[data-done=false] .done, body.renwu .card[data-done=false] .card-right .clock-done {
  display: none;
}
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.5012rem;
  height: 0.5012rem;
  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;
  text-align: center;
}
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;
  margin-bottom: 0.15rem;
}
body.renwu .main .flag {
  width: 1.1rem;
  height: 0.24rem;
  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.24rem;
  text-align: center;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}
body.renwu .main .list {
  padding-bottom: 0.2rem;
  padding-top: 0.24rem;
}
body.renwu .main .list .item {
  margin-top: 0.2rem;
  padding-left: 0.15rem;
  padding-right: 0.23rem;
  margin-left: 0.4rem;
  position: relative;
  box-shadow: 0 0 0.06rem rgba(84, 93, 255, 0.1);
  border-radius: 0.06rem;
}
body.renwu .main .list .item:last-of-type:after {
  height: calc(50% + 0.2rem);
}
body.renwu .main .list .item:after {
  position: absolute;
  content: "";
  width: 0.01rem;
  height: calc(100% + 0.2rem);
  left: -0.275rem;
  top: -0.2rem;
  background: rgba(84, 93, 255, 0.3);
}
body.renwu .main .list .item .item-1 {
  padding-bottom: 0.1rem;
  padding-top: 0.1rem;
}
body.renwu .main .list .item .item-1:before {
  position: absolute;
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  display: block;
  top: calc(50% - 0.1rem);
  left: -0.37rem;
  z-index: 3;
  background: rgba(84, 93, 255, 0.2);
}
body.renwu .main .list .item .item-1:after {
  position: absolute;
  content: "";
  display: block;
  width: 0.14rem;
  height: 0.14rem;
  top: calc(50% - 0.07rem);
  left: -0.34rem;
  border-radius: 50%;
  z-index: 3;
  background: #545dff;
}
body.renwu .main .list .item .item-1 .item-1-1 {
  font-size: 0.16rem;
  font-weight: 400;
  padding-bottom: 0.05rem;
}
body.renwu .main .list .item .item-1 .item-1-2 {
  color: #737b91;
  font-size: 0.13rem;
}
body.renwu .main .list .item .pdf {
  width: 0.293rem;
}
body.renwu .modal-yanshou[data-finish=false] .modal-content.not-finish {
  display: flex;
}
body.renwu .modal-yanshou[data-finish=false] .modal-content.finished {
  display: none;
}
body.renwu .modal-yanshou[data-finish=true] {
  height: 4.43rem;
}
body.renwu .modal-yanshou[data-finish=true] .modal-content.not-finish {
  display: none;
}
body.renwu .modal-yanshou[data-finish=true] .modal-content.finished {
  display: flex;
}
body.renwu .modal-yanshou .modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body.renwu .modal-yanshou .modal-content .btn-ok {
  width: 1.85rem;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}
body.renwu .modal-yanshou .modal-content .title {
  font-family: "PingFang-SC-Semibold";
  font-size: 0.16rem;
  font-weight: 400;
  margin-top: 0.3rem;
}
body.renwu .modal-yanshou .modal-content.not-finish .icon {
  width: 0.5rem;
  margin-top: 0.5rem;
}
body.renwu .modal-yanshou .modal-content.not-finish .title {
  margin-top: 0.3rem;
}
body.renwu .modal-yanshou .modal-content.not-finish .btn-ok {
  width: 1.85rem;
}
body.renwu .modal-yanshou .modal-content.finished .title {
  margin-top: 0.5rem;
}
body.renwu .modal-yanshou .modal-content.finished .radio-groups {
  margin-top: 0.5rem;
}
body.renwu .modal-yanshou .modal-content.finished .radio-groups .radio-group {
  position: relative;
}
body.renwu .modal-yanshou .modal-content.finished .radio-groups .radio-group input[type=radio] + label {
  display: block;
  cursor: pointer;
  border-radius: 0.17rem;
  padding: 0.1rem 0.3rem;
  border: 0.01rem solid rgba(115, 123, 145, 0.3993699);
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 0.15rem;
  color: #b3b6c1;
}
body.renwu .modal-yanshou .modal-content.finished .radio-groups .radio-group input[type=radio]:checked + label {
  background: #545dff;
  color: #ffffff;
}
body.renwu .modal-yanshou .modal-content.finished .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.renwu .modal-yanshou .modal-content.finished input.remark {
  margin-top: 0.25rem;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.64rem;
  border: none;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.20170085);
  width: 3.2rem;
}
body.renwu .modal-yanshou .modal-content.finished input.remark::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #b9c3c9;
}
body.renwu .modal-yanshou .modal-content.finished input.remark:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #b9c3c9;
}
body.renwu .modal-yanshou .modal-content.finished input.remark::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #b9c3c9;
}
body.renwu .modal-yanshou .modal-content.finished input.remark:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b9c3c9;
}
body.renwu .modal-yanshou .modal-content.finished .btn-ok {
  width: 1.85rem;
}


body.renwu .modal-pingjia[data-finish=false] .modal-content.not-finish {
  display: flex;
}
body.renwu .modal-pingjia[data-finish=false] .modal-content.finished {
  display: none;
}
body.renwu .modal-pingjia[data-finish=true] {
  height: 4.43rem;
}
body.renwu .modal-pingjia[data-finish=true] .modal-content.not-finish {
  display: none;
}
body.renwu .modal-pingjia[data-finish=true] .modal-content.finished {
  display: flex;
}
body.renwu .modal-pingjia .modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body.renwu .modal-pingjia .modal-content .btn-ok {
  width: 1.85rem;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}
body.renwu .modal-pingjia .modal-content .title {
  font-family: "PingFang-SC-Semibold";
  font-size: 0.16rem;
  font-weight: 400;
  margin-top: 0.3rem;
}
body.renwu .modal-pingjia .modal-content.not-finish .icon {
  width: 0.5rem;
  margin-top: 0.5rem;
}
body.renwu .modal-pingjia .modal-content.not-finish .title {
  margin-top: 0.3rem;
}
body.renwu .modal-pingjia .modal-content.not-finish .btn-ok {
  width: 1.85rem;
}
body.renwu .modal-pingjia .modal-content.finished .title {
  margin-top: 0.5rem;
}
body.renwu .modal-pingjia .modal-content.finished .btn-ok {
  width: 1.85rem;
}

body.wendang {
  height: 100vh;
}
body.wendang .main {
  position: relative;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  flex-grow: 1;
  overflow-y: auto;
  margin-bottom: 0.15rem;
  box-shadow: 0 0 0.06rem rgba(84, 93, 255, 0.1);
}
body.wendang .main .item {
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
  position: relative;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.2);
}
body.wendang .main .item .item-1 .item-1-1 {
  font-size: 0.16rem;
  font-weight: 400;
  padding-bottom: 0.05rem;
}
body.wendang .main .item .item-1 .item-1-2 {
  color: #737b91;
  font-size: 0.13rem;
}
body.wendang .main .item .pdf {
  width: 0.293rem;
}

body.jindu {
  height: 100vh;
}
body.jindu[data-shigong=true] .week-section .month-weeks .week {
  display: none;
}
body.jindu[data-shigong=true] .week-section .month-weeks .week.hasMission {
  display: flex;
}

body.jindu[data-shigong=true] .main .arrow-group .text .not-start {
  display: none;
}
body.jindu[data-shigong=true] .main .arrow-group .text .daka-day {
  display: block;
}
body.jindu[data-shigong=true] .main .content .item-empty {
  display: none;
}
body.jindu[data-shigong=true] .main .content .items {
  display: block;
}
body.jindu .main {
  position: relative;
  padding-top: 0.15rem;
  flex-grow: 1;
  margin-bottom: 0.15rem;
  box-shadow: 0 0 0.06rem rgba(84, 93, 255, 0.1);
  border-radius: 0.06rem;
  overflow-y: auto;
}
body.jindu .main .arrow-group {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}
body.jindu .main .arrow-group .text {
  color: #737b91;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.21333334rem;
  text-align: center;
}
body.jindu .main .arrow-group .text .daka-day {
  display: none;
}
body.jindu .main .arrow-group .text .daka-day .days {
  margin: 0 0.05rem;
}
body.jindu .main .arrow-group .arrow-up {
  width: 0.16rem;
}
body.jindu .main .content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 0.15rem;
}
body.jindu .main .content .item-empty {
  display: flex;
}
body.jindu .main .content .items {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  display: none;
}
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%;
}
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.pingjia {
  height: 100vh;
}
body.pingjia .card {
  border-radius: 0.06rem;
  color: #ffffff;
  padding: 0.15rem 0.2rem;
  box-shadow: 0 0.05rem 0.15rem rgba(162, 162, 162, 0.3);
  position: relative;
  margin-bottom: 0.5rem;
  background: #7098ff;
}
body.pingjia .card .card-left {
  font-family: "PingFang-SC-Semibold";
  font-size: 0.16rem;
  font-weight: 400;
}
body.pingjia .card .card-right .clock {
  width: 0.5666rem;
  opacity: 0.2;
}
body.pingjia .main {
  position: relative;
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0.15rem;
  padding: 0 0.2rem;
}
body.pingjia .main .stars-group {
  margin-bottom: 0.5rem;
}
body.pingjia .main .stars-group[data-selected="1"] .star-group:nth-of-type(1) .star.yellow {
  display: block;
}
body.pingjia .main .stars-group[data-selected="1"] .star-group:nth-of-type(1) .star.grey {
  display: none;
}
body.pingjia .main .stars-group[data-selected="2"] .star-group:nth-of-type(1) .star.yellow,
body.pingjia .main .stars-group[data-selected="2"] .star-group:nth-of-type(2) .star.yellow {
  display: block;
}
body.pingjia .main .stars-group[data-selected="2"] .star-group:nth-of-type(1) .star.grey,
body.pingjia .main .stars-group[data-selected="2"] .star-group:nth-of-type(2) .star.grey {
  display: none;
}
body.pingjia .main .stars-group[data-selected="3"] .star-group:nth-of-type(1) .star.yellow,
body.pingjia .main .stars-group[data-selected="3"] .star-group:nth-of-type(2) .star.yellow,
body.pingjia .main .stars-group[data-selected="3"] .star-group:nth-of-type(3) .star.yellow {
  display: block;
}
body.pingjia .main .stars-group[data-selected="3"] .star-group:nth-of-type(1) .star.grey,
body.pingjia .main .stars-group[data-selected="3"] .star-group:nth-of-type(2) .star.grey,
body.pingjia .main .stars-group[data-selected="3"] .star-group:nth-of-type(3) .star.grey {
  display: none;
}
body.pingjia .main .stars-group[data-selected="4"] .star-group:nth-of-type(1) .star.yellow,
body.pingjia .main .stars-group[data-selected="4"] .star-group:nth-of-type(2) .star.yellow,
body.pingjia .main .stars-group[data-selected="4"] .star-group:nth-of-type(3) .star.yellow,
body.pingjia .main .stars-group[data-selected="4"] .star-group:nth-of-type(4) .star.yellow {
  display: block;
}
body.pingjia .main .stars-group[data-selected="4"] .star-group:nth-of-type(1) .star.grey,
body.pingjia .main .stars-group[data-selected="4"] .star-group:nth-of-type(2) .star.grey,
body.pingjia .main .stars-group[data-selected="4"] .star-group:nth-of-type(3) .star.grey,
body.pingjia .main .stars-group[data-selected="4"] .star-group:nth-of-type(4) .star.grey {
  display: none;
}
body.pingjia .main .stars-group[data-selected="5"] .star-group .star.yellow {
  display: block;
}
body.pingjia .main .stars-group[data-selected="5"] .star-group .star.grey {
  display: none;
}
body.pingjia .main .stars-group .star-group .star {
  width: 0.231rem;
  display: block;
  margin: 0 0.05rem;
}
body.pingjia .main .stars-group .star-group .star.yellow {
  display: none;
}
body.pingjia .main .stars-group .star-group .star.grey {
  display: block;
}
body.pingjia .main .check-groups .check-group {
  position: relative;
  margin-bottom: 0.15rem;
}
body.pingjia .main .check-groups .check-group input[type=checkbox] + label {
  display: block;
  cursor: pointer;
  border-radius: 0.17rem;
  padding: 0.1rem 0.18rem;
  background: rgba(84, 93, 255, 0.2);
  color: #545dff;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 0.12rem;
}
body.pingjia .main .check-groups .check-group input[type=checkbox]:checked + label {
  background: #545dff;
  color: #ffffff;
}
body.pingjia .main .check-groups .check-group input[type=checkbox] {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  margin: 0;
  cursor: pointer;
}
body.pingjia .main input.remark {
  margin-top: 0.25rem;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.64rem;
  border: none;
  border-bottom: 0.01rem solid rgba(84, 93, 255, 0.20170085);
  width: 100%;
}
body.pingjia .main input.remark::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #b9c3c9;
}
body.pingjia .main input.remark:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #b9c3c9;
}
body.pingjia .main input.remark::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #b9c3c9;
}
body.pingjia .main input.remark:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b9c3c9;
}
body.pingjia .main .btn-ok {
  width: 1.85rem;
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

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: 0.24rem;
  margin-bottom: 0.17rem;
}

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: #F6F7FB;
  width: calc(100% + 0.3rem);
}
body.xiangmu .items .item {
  padding: 0.15rem;
  border-radius: 0.06rem;
  overflow-y: auto;
  margin-bottom: 0.15rem;
  display: block;
  background: #FFFFFF;
  box-shadow: 0 0.01rem 0.02rem 0 rgba(0,0,0,0.18), 0 0.02rem 0.06rem 0 rgba(0,0,0,0.04);
}
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;
}

.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, .week-section .month-weeks .week .weekday.isStart .day, .week-section .month-weeks .week .weekday.isEnd .day {
  background: rgba(84, 93, 255, 0.3);
  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.55rem;
  height: 0.55rem;
  top: -0.15rem;
  left: -0.025rem;
  background: #545dff;
  border-radius: 50%;
  z-index: -1;
}
.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 */

body.wendang .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;
  width:1.85rem;
}
body.wendang .card .image {
  width: 0.5rem;
}
body.wendang .card .text {
  padding-left: 0.15rem;
  padding-right: 0.1rem;
  color: #ffffff;
  font-size: 0.16rem;
  font-weight: 400;
  line-height: 0.22rem;
}

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

.layui-btn-index{
  background-color: #545dff;
}

.layui-form-label{width:110px;}

.arrow-up.active {
  transform: rotate(-180deg);
}


.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;}