.loginBox {
  width: 100%;
  height: 100vh;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.loginBox .bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.loginBox .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.loginBox .masks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.loginBox .masks .box {
  background: #fff;
  width: 6.2rem;
  height: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.7rem 1.4rem 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.loginBox .masks .box .head {
  display: flex;
  align-items: center;
}

.loginBox .masks .box .head .logo {
  width: 1.18rem;
  height: 0.5rem;
}

.loginBox .masks .box .head h1 {
  font-size: 0.26rem;
  margin-left: 0.1rem;
}

.loginBox .masks .box .formData .title {
  width: 100%;
  font-size: 0.24rem;
  margin: 0.46rem 0 0.1rem;
  font-weight: bold;
}

.loginBox .masks .box .formData .ground {
  margin-top: 0.2rem;
  width: 100%;
  height: 0.42rem;
  background: url(../img/inpBg.png) no-repeat center;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0 0.25rem;
}

.loginBox .masks .box .formData .ground .icon {
  width: 0.2rem;
  height: 0.2rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.loginBox .masks .box .formData .ground .icon img {
  object-fit: contain;
}

.loginBox .masks .box .formData .ground input {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 0.16rem;
}

.loginBox .masks .box .formData .code {
  padding: 0.1rem 0.1rem 0.1rem 0.25rem;
}

.loginBox .masks .box .formData .getCode {
  color: #00bfa5;
  flex-shrink: 0;
  font-size: 0.16rem;
  padding-left: 0.1rem;
  border-left: 2px solid #00bfa5;
}

.loginBox .masks .box .formData .loginBtn {
  display: block;
  width: 100%;
  height: 0.42rem;
  background: #ffa300;
  color: #fff;
  border-radius: 0.1rem;
  font-size: 0.16rem;
  margin-top: 0.2rem;
  text-align: center;
  line-height: 0.42rem;
  cursor: pointer;
}

.loginBox .foot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.2rem;
  font-size: 0.16rem;
}

.loginBox .foot input[type='checkbox'] {
  display: none;
}

.loginBox .foot label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #767676;
  font-size: 0.16rem;
  user-select: none;
}

.loginBox .foot label::before {
  content: '\e69e';
  font-family: 'iconfont';
  font-size: 0.18rem;
  margin-right: 0.05rem;
  color: #ccc;
}

.loginBox .foot input[type='checkbox']:checked+label::before {
  color: #007bff;
}

.header {
  padding: 0.1rem 0;
}

.header .header_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.header .logo {
  width: 1.4rem;
  height: 0.6rem;
}

.header .right {
  display: flex;
  align-items: center;
}

.header .right .search {
  display: flex;
  align-items: center;
  background: url(../img/inpBg.png) no-repeat;
  background-size: 100% 100%;
  width: 2.6rem;
  height: 0.36rem;
  padding-right: 0.15rem;
}

.header .right .search input {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 0.14rem;
  padding-left: 0.1rem;
}

.header .right .search .icons {
  margin-left: 0.1rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6%;
  height: 100%;
}

.header .right .search .icons img {
  width: 0.2rem;
  height: 0.2rem;
}

.header .right .quit a {
  padding: 0.06rem 0.12rem;
  background: #ffa300;
  border-radius: 5px;
  color: #fff;
  margin-left: 0.15rem;
  font-size: 0.2rem;
}

nav .navList {
  background: url(../img/bg1.png) no-repeat center;
  background-size: 100% 100%;
  width: 100%;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .navList .left {
  display: flex;
  align-items: center;
}

nav .navList .left li {
  margin: 0 0.1rem;
}

nav .navList .left li a {
  font-size: 0.18rem;
  color: #fff;
  padding: 0.14rem 0.15rem;
  display: block;
  transition: all 0.3s;
}

nav .navList .left li a:hover {
  background: #6bdd88;
}

nav .navList .left li.active {
  background: #6bdd88;
}

nav .navList .right {
  display: flex;
  align-items: center;
}

nav .navList .right a {
  color: #fff;
  font-size: 0.18rem;
  padding: 0 0.2rem;
}

.dialog {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.dialog .popup {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.1rem;
}

.dialog .popup form {
  display: block;
  width: 100%;
}

.dialog .popup .formData {
  padding: 0.12rem 0.2rem;
  font-size: 0.15rem;
  min-height: 2.4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dialog .popup .formData .formBox {
  margin-bottom: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}

.dialog .popup .formData .formBox2 {
  display: block;
}

.dialog .popup .formData .formBox3 {
  display: block;
}

.dialog .popup .formData .formBox3 .formItem {
  width: 6.6rem;
  display: block;
}

.dialog .popup .formData .formBox3 .formItem .label {
  margin-bottom: 0.15rem;
}

.dialog .popup .formData .formBox3 .formItem .value {
  width: 100%;
}

.dialog .popup .formData .formBox3 .formItem .value .canvas {
  width: 100%;
  height: 2.2rem;
}

.dialog .popup .formData .formBox3 .formItem .value .canvas .testInfo {
  width: 100%;
  height: 100%;
}

.dialog .popup .formData .formBox3 .formItem .value .canvas .testInfo canvas {
  width: 100%;
  height: 100%;
}

.dialog .popup .formData .formItem {
  margin-top: 0.2rem;
  width: 3.4rem;
  display: flex;
  align-items: center;
  font-size: 0.14rem;
}

.dialog .popup .formData .formItem .label {
  flex-shrink: 0;
  min-width: 1rem;
}

.dialog .popup .formData .formItem .value {
  width: 100%;
  border: 1px solid #ccc;
}

.dialog .popup .formData .formItem .value input {
  width: 100%;
  height: 0.36rem;
  display: block;
  border: none;
  padding: 0 0.15rem;
  font-size: 0.14rem;
}

.dialog .popup .formData .formItem .value select {
  height: 0.36rem;
  width: 100%;
  border: none;
  padding: 0 0.2rem;
  font-size: 0.14rem;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url('../img/icon/down.png') 97% center no-repeat #fff;
}

.dialog .popup .formData .btnBox {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 0.25rem 0 0.2rem;
}

.dialog .popup .formData .btnBox .btn {
  padding: 0.08rem 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #eeeeee;
  margin-left: 0.2rem;
  font-size: 0.14rem;
  color: #999;
  cursor: pointer;
  transition: all 0.3s;
}

.dialog .popup .formData .btnBox .btn:hover {
  background: #f5f5f5;
  border-color: #dcdcdc;
  color: #666;
}

.dialog .popup .formData .btnBox .btn:last-child {
  background: #00bfa5;
  color: #fff;
}

.dialog .popup .formData .btnBox .btn:last-child:hover {
  background: #007bff;
  border-color: #0056b3;
}

.dialog .popup .docu {
  width: 4.7rem;
  font-size: 0.16rem;
}

.dialog .popup .docu .head {
  display: flex;
  align-items: center;
  font-size: 0.32rem;
}

.dialog .popup .docu .head .icon {
  flex-shrink: 0;
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
}

.dialog .popup .docu .head .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog .popup .docu .file {
  display: flex;
}

.dialog .popup .docu .file .icon {
  width: 0.24rem;
  height: 0.24rem;
  flex-shrink: 0;
  margin-right: 5px;
}

.dialog .popup .docu .file .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dialog .popup .docu .file .icon.ppt img:not(.ppt) {
  display: none;
}

.dialog .popup .docu .file .icon.word img:not(.word) {
  display: none;
}

.dialog .popup .docu .file .icon.excel img:not(.excel) {
  display: none;
}

.dialog .popup .docu .file .icon.text img:not(.text) {
  display: none;
}

.dialog .popup .docu .file .name {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.dialog .popup .docu .file .size {
  margin-left: 0.1rem;
}

.dialog2 .popup {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  min-height: 7rem;
}

.dialog2 .popup .formData {
  padding: 0.2rem 0.4rem;
}

.dialog2 .popup .formData .inner {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}

.dialog2 .popup .formData .inner .label {
  min-width: 1rem;
  text-align: left;
  margin-right: 0.2rem;
  font-size: 0.14rem;
}

.dialog2 .popup .formData .inner .value {
  width: 7.6rem;
  height: 0.36rem;
  font-size: 0.14rem;
  color: #333333;
  position: relative;
}

.dialog2 .popup .formData .inner .value .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.dialog2 .popup .formData .inner .value>input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.15rem;
  border: 1px solid #eeeeee;
}

.dialog2 .popup .formData .inner .value select {
  display: block;
  height: 0.36rem;
  width: 100%;
  border: 1px solid #eeeeee;
  padding: 0 0.2rem;
  font-size: 0.14rem;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url('../img/icon/down.png') 97% center no-repeat #fff;
}

.dialog2 .popup .formData .inner .value textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 0.9rem;
  resize: none;
  padding: 0.1rem;
  border: 1px solid #eeeeee;
  outline: none;
}

.dialog2 .popup .formData .inner .value .tip {
  font-size: 0.13rem;
  color: #999;
}

.dialog2 .popup .formData .inner .values {
  font-size: 0.14rem;
  margin-left: 0.3rem;
}

.dialog2 .popup .formData .inner .newGroup {
  color: #00bfa5;
  font-size: 0.14rem;
  margin-left: 0.2rem;
  cursor: pointer;
}

.dialog2 .popup .formData .inner .newGroup:hover {
  text-decoration: underline;
}

.dialog2 .popup .formData .inner .btnBox {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 1rem 0 0.2rem;
}

.dialog2 .popup .formData .inner .btnBox .btn {
  padding: 0.1rem 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #eeeeee;
  margin-left: 0.2rem;
  font-size: 0.14rem;
  color: #999;
  cursor: pointer;
}

.dialog2 .popup .formData .inner .btnBox .btn:last-child {
  background: #00bfa5;
  color: #fff;
}

.dialog2 .popup .formData .inner .btnBox a .btn {
  background: transparent !important;
  color: #999 !important;
}

.dialog2 .popup .formData .upBox {
  align-items: flex-start;
  width: 100%;
}

.dialog2 .popup .formData .upBox .value {
  height: auto;
  width: 100%;
}

.dialog2 .popup .formData .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.14rem;
  padding-right: 0.75rem;
  margin-bottom: 0.2rem;
}

.dialog2 .popup .formData .box .inner {
  margin-bottom: 0;
}

.dialog2 .popup .formData .box .inner .value {
  width: 2.8rem;
}

.dialog2 .popup .formData .box .inner .value input {
  width: 100%;
}

.dialog2 .popup .formData .btnBox {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 1.4rem 0 0.2rem;
}

.dialog2 .popup .formData .btnBox .btn {
  padding: 0.1rem 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #eeeeee;
  margin-left: 0.2rem;
  font-size: 0.14rem;
  color: #999;
  cursor: pointer;
}

.dialog2 .popup .formData .btnBox .btn:last-child {
  background: #00bfa5;
  color: #fff;
}

.dialog2 .popup .formData .btnBox a .btn {
  background: transparent !important;
  color: #999 !important;
}

.dialog2 .popup .multi-select {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 4px 8px;
  min-height: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  cursor: text;
}

.dialog2 .popup .multi-select .tag {
  background: #f0f0f0;
  padding: 2px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

.dialog2 .popup .multi-select .tag .close {
  cursor: pointer;
  font-size: 14px;
  color: #999;
}

.dialog2 .popup .multi-select .tag .close:hover {
  color: #666;
}

.dialog2 .popup .options {
  display: none;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  margin-top: 4px;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  background: #fff;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dialog2 .popup .options .option {
  padding: 6px 8px;
  cursor: pointer;
  user-select: none;
}

.dialog2 .popup .options .option:hover {
  background: #f5f5f5;
}

.dialog2 .popup .options.show {
  display: block;
}