:root {
  --main-color: #1389D3;
  --font-size: 14px;
  --border: 0.5px rgba(0, 0, 0, 0.1) solid;
  --main-bgcolor: #ffffff;
  --main-hgcolor: rgba(0, 0, 0, 0.15);
  --main-vgcolor: rgba(0, 0, 0, 0.1);
  --main-border: rgba(0, 0, 0, 0.1);
  --input-height: 34px;
  --btn-height: 34px;
  --rgb-r: 0;
  --rgb-g: 0;
  --rgb-b: 0;
}

.qh-btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  font-size: 14px;
  color: #ffffff;
  background-color: #1389D3;
}
.qh-btn:hover, .qh-btn:active {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  text-decoration: none;
}
.qh-btn:disabled {
  background-color: #dddddd;
  color: #888888;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}
.qh-btn {
  padding: 6px 10px;
  border-radius: 5px;
  height: var(--btn-height);
}
.qh-btn--sm {
  padding: 3px 5px;
  font-size: 12px;
  height: 26px;
}
.qh-btn--lg {
  padding: 10px 20px;
  height: 44px;
  font-size: 16px;
}
.qh-btn--block {
  width: 100%;
  display: block;
}
.qh-btn--danger {
  color: #ffffff;
  background-color: #d9534f;
}
.qh-btn--danger:hover, .qh-btn--danger:active {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  text-decoration: none;
}
.qh-btn--danger:disabled {
  background-color: #dddddd;
  color: #888888;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}
.qh-btn--success {
  color: #ffffff;
  background-color: #449D44;
}
.qh-btn--success:hover, .qh-btn--success:active {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  text-decoration: none;
}
.qh-btn--success:disabled {
  background-color: #dddddd;
  color: #888888;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}
.qh-btn--default {
  color: #222222;
  background-color: #ffffff;
}
.qh-btn--default:hover, .qh-btn--default:active {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  text-decoration: none;
}
.qh-btn--default:disabled {
  background-color: #dddddd;
  color: #888888;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}
.qh-btn--default {
  border: 0.5px rgba(0, 0, 0, 0.1) solid;
}
.qh-btn--outline {
  background-color: #ffffff;
  color: #222222;
  border: 0.5px var(--main-color) solid;
}
.qh-btn--outline:hover {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}
.qh-btn__icon {
  margin-right: 4px;
  vertical-align: middle;
}

.webbtn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  font-size: 14px;
  color: #ffffff;
  background-color: var(--main-color);
}
.webbtn:hover, .webbtn:active {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  text-decoration: none;
}
.webbtn:disabled {
  background-color: #dddddd;
  color: #888888;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}
.webbtn {
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.webbtn:link, .webbtn:visited {
  color: #ffffff;
  background-color: var(--main-color);
}
.webbtn-mini {
  font-size: 12px;
  padding: 3px 5px;
}
.webbtn-red {
  background-color: #d9534f;
}
.webbtn-white, .webbtn-white:link, .webbtn-white:visited {
  background-color: #ffffff;
  color: #222222;
  border: 1px #cccccc solid;
}
.webbtn-default, .webbtn-default:link, .webbtn-default:visited {
  background-color: #ffffff;
  color: #222222;
  border: 0.5px rgba(0, 0, 0, 0.1) solid;
}
.webbtn-main, .webbtn-main:link, .webbtn-main:visited {
  background-color: #ffffff;
  color: #222222;
  border: 0.5px var(--main-color) solid;
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  font-size: 14px;
  color: #ffffff;
  background-color: var(--main-color);
}
.btn:hover, .btn:active {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  text-decoration: none;
}
.btn:disabled {
  background-color: #dddddd;
  color: #888888;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}
.btn {
  padding: 6px 10px;
  border-radius: 5px;
  height: var(--btn-height);
}
.btn:link, .btn:visited {
  color: #ffffff;
  background-color: var(--main-color);
}
.btn-danger {
  background-color: #d9534f;
}
.btn-default {
  background-color: #ffffff;
  color: #222222;
  border: 0.5px rgba(0, 0, 0, 0.1) solid;
}
.btn-xs, .btn-xs:link, .btn-xs:visited {
  padding: 3px 5px;
  font-size: 12px;
  height: 26px;
}

.btn-group {
  display: flex;
  align-items: stretch;
}
.btn-group .webbtn,
.btn-group .btn {
  padding: 0 6px;
  height: var(--btn-height);
  line-height: calc(var(--btn-height) - 2px);
}
.btn-group .btn {
  float: left;
}
.btn-group > .active {
  box-shadow: inset 0 3px 5px rgba(var(--rgb-r), var(--rgb-g), var(--rgb-b), 0.125);
}
.btn-group :first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group :last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group :not(:last-child):not(:first-child) {
  border-radius: 0;
}
.btn-group :not(:first-child) {
  border-left-width: 0;
}

.qh-action-btn, a.btn-action {
  color: #ffffff;
  font-size: 12px;
  padding: 1px 3px;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
}
.qh-action-btn--view, a.btn-view, .qh-action-btn--view:hover, .qh-action-btn--view:link, .qh-action-btn--view:visited {
  background: #16BAAA !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.qh-action-btn--edit, a.btn-edit, .qh-action-btn--edit:hover, .qh-action-btn--edit:link, .qh-action-btn--edit:visited {
  background: #1e9fff !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.qh-action-btn--delete, a.btn-delete, .qh-action-btn--delete:hover, .qh-action-btn--delete:link, .qh-action-btn--delete:visited {
  background: #8f3501 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.qh-action-btn--add, a.btn-add, .qh-action-btn--add:hover, .qh-action-btn--add:link, .qh-action-btn--add:visited {
  background: #ff0000 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.floating-section-title {
  font-size: 14px;
  font-weight: bold;
  color: #888888;
  padding-bottom: 8px;
  border-bottom: 0.5px rgba(0, 0, 0, 0.1) solid;
  margin-bottom: 5px;
  background: transparent;
}

.ys1 {
  padding: 2px 5px;
  color: #909399;
  font-size: 14px;
  vertical-align: middle;
  white-space: nowrap;
}

.ys2 {
  vertical-align: middle;
}

.xiang-top {
  margin-bottom: 10px;
  table-layout: fixed;
}
.xiang-top td.ys1 {
  width: 6em;
  padding: 4px 8px;
  color: #909399;
  font-size: 14px;
  white-space: nowrap;
  text-align: right;
  vertical-align: middle;
  background: #fafafa;
  border: 1px var(--main-border) solid;
}
.xiang-top td.ys0 {
  padding: 4px 8px;
  vertical-align: middle;
  color: #5F5F5F;
  border: 1px var(--main-border) solid;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xiang-tabs-wrap {
  margin-top: 10px;
}
.xiang-tabs-wrap .r-tabs {
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fafafa;
  overflow: visible;
  height: auto;
  min-height: 36px;
  border: 1px solid var(--main-border);
  border-radius: 5px 5px 0 0;
}
.xiang-tabs-wrap .r-tabs-item {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.xiang-tabs-wrap .r-tabs-item--active, .xiang-tabs-wrap .r-tabs-item.active {
  background: #ffffff;
  color: #333333;
  position: relative;
  margin-bottom: -1px;
  border-bottom: 1px solid #ffffff;
  border-left-color: var(--main-border);
  border-right-color: var(--main-border);
}
.xiang-tabs-wrap [tabitem] {
  padding: 8px 0px 0px;
  border: 1px var(--main-border) solid;
  border-top: none;
}
.xiang-tabs-wrap [tabitem] .createtable {
  border: none;
}
.xiang-tabs-wrap [tabitem] .createtable td.ys1 {
  background: #fafafa;
}

.repairuser-wrap {
  position: relative;
  padding: 12px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  margin-bottom: 10px;
}
.repairuser-tabs {
  display: flex;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 12px;
}
.repairuser-tab {
  padding: 8px 20px;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
}
.repairuser-tab:hover {
  color: #3b7cff;
}
.repairuser-tab.active {
  color: #3b7cff;
  border-bottom-color: #3b7cff;
  font-weight: 600;
}
.repairuser-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.repairuser-toolbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.repairuser-toolbar-item label {
  margin: 0;
  font-weight: normal;
  color: #555555;
  white-space: nowrap;
}
.repairuser-search-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.repairuser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-height: 30px;
  align-items: center;
}
.repairuser-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 20px;
}
.repairuser-tag a {
  margin-left: 4px;
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
  font-size: 14px;
}
.repairuser-tag a:hover {
  opacity: 1;
}
.repairuser-tag-assign {
  background: #e8f0fe;
  color: #3b7cff;
  border: 1px solid #b8d4fe;
}
.repairuser-tag-collab {
  background: #eaf6ea;
  color: #5cb85c;
  border: 1px solid #b8e6b8;
}
.repairuser-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.repairuser-card {
  position: relative;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 12px;
  background: #fafafa;
  transition: box-shadow 0.2s ease;
}
.repairuser-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.repairuser-card-assigned {
  border-color: #3b7cff;
  background: #f5f9ff;
}
.repairuser-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.repairuser-card-info {
  flex: 1;
  overflow: hidden;
}
.repairuser-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.repairuser-card-meta {
  font-size: 12px;
  color: #999999;
  margin-top: 2px;
}
.repairuser-card-stats {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.repairuser-card-stats span {
  white-space: nowrap;
}
.repairuser-card-stats b {
  color: #3b7cff;
  margin-left: 2px;
}
.repairuser-card-actions {
  display: flex;
  gap: 16px;
  font-size: 13px;
}
.repairuser-card-actions label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-weight: normal;
  color: #555555;
}
.repairuser-card-actions label.disabled {
  color: #cccccc;
  cursor: not-allowed;
}
.repairuser-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #3b7cff;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 0 6px 0 6px;
  line-height: 18px;
}
.repairuser-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.repairuser-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
.repairuser-page-info {
  color: #999999;
}
.repairuser-page-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.repairuser-page-nav a,
.repairuser-page-nav span {
  display: inline-block;
  min-width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 3px;
  color: #555555;
  text-decoration: none;
  font-size: 12px;
}
.repairuser-page-nav a:hover {
  background: #3b7cff;
  color: #ffffff;
  border-color: #3b7cff;
}
.repairuser-page-nav .current {
  background: #3b7cff;
  color: #ffffff;
  border-color: #3b7cff;
}
.repairuser-page-nav .disabled {
  color: #cccccc;
  cursor: not-allowed;
}
.repairuser-page-size select {
  border: 1px solid #dddddd;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 12px;
}
.repairuser-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
}
.repairuser-readonly {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.8;
}
.repairuser-ro-label {
  color: #999999;
  margin-right: 4px;
}
.repairuser-ro-value {
  color: #222222;
  font-weight: 600;
}
.repairuser-pc-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.repairuser-pc-top {
  flex-shrink: 0;
  padding: 6px 16px;
  border-bottom: 1px solid #eeeeee;
}
.repairuser-pc-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.repairuser-pc-search-input {
  position: relative;
  flex-shrink: 0;
}
.repairuser-pc-search-input input {
  padding-right: 28px;
}
.repairuser-pc-search-input .fa {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
}
.repairuser-pc-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}
.repairuser-pc-bottom {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid #eeeeee;
  background: #ffffff;
}
.repairuser-pc-page {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555555;
}
.repairuser-pc-page .repairuser-page-info {
  color: #999999;
}
.repairuser-pc-page .repairuser-page-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.repairuser-pc-page .repairuser-page-nav a,
.repairuser-pc-page .repairuser-page-nav span {
  display: inline-block;
  min-width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 3px;
  color: #555555;
  text-decoration: none;
  font-size: 12px;
}
.repairuser-pc-page .repairuser-page-nav a:hover {
  background: var(--main-color);
  color: #ffffff;
  border-color: var(--main-color);
}
.repairuser-pc-page .repairuser-page-nav .current {
  background: var(--main-color);
  color: #ffffff;
  border-color: var(--main-color);
}
.repairuser-pc-page .repairuser-page-nav .disabled {
  color: #cccccc;
  cursor: not-allowed;
}
.repairuser-pc-btns {
  display: flex;
  gap: 8px;
}
.repairuser-pc-btns .webbtn {
  padding: 6px 20px;
}
.repairuser-title-tabs {
  display: flex;
  gap: 0;
  margin: 0;
  border-bottom: none;
}
.repairuser-title-tabs .repairuser-tab {
  padding: 6px 16px;
  font-size: 14px;
}
.repairuser-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.repairuser-fs-top {
  flex-shrink: 0;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}
.repairuser-fs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  height: 48px;
}
.repairuser-fs-header span {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
}
.repairuser-fs-back {
  font-size: 14px;
  color: var(--main-color);
  text-decoration: none;
  padding: 6px 0;
  min-width: 50px;
}
.repairuser-fs-map-btn {
  font-size: 18px;
  color: var(--main-color);
  text-decoration: none;
  padding: 6px;
  min-width: 30px;
  text-align: right;
}
.repairuser-fs-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
}
.repairuser-fs-search {
  position: relative;
  flex: 1;
  min-width: 0;
}
.repairuser-fs-search input {
  width: 100%;
  padding: 8px 36px 8px 12px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  background: #f5f5f5;
  box-sizing: border-box;
}
.repairuser-fs-search input:focus {
  border-color: var(--main-color);
  background: #ffffff;
}
.repairuser-fs-search .fa {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
}
.repairuser-fs-grade {
  flex-shrink: 0;
  padding: 8px 12px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  font-size: 14px;
  background: #f5f5f5;
  color: #222222;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23888' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 26px;
}
.repairuser-fs-remark {
  padding: 0 12px 8px;
}
.repairuser-fs-remark input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  background: #f5f5f5;
  box-sizing: border-box;
}
.repairuser-fs-remark input:focus {
  border-color: var(--main-color);
  background: #ffffff;
}
.repairuser-fs-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  -webkit-overflow-scrolling: touch;
}
.repairuser-fs-bottom {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #eeeeee;
  background: #ffffff;
}
.repairuser-fs-btn-reset {
  flex: 1;
  padding: 10px 0;
  border: 1px solid #dddddd;
  border-radius: 5px;
  background: #ffffff;
  color: #222222;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
.repairuser-fs-btn-reset:active {
  background: #f5f5f5;
}
.repairuser-fs-btn-ok {
  flex: 2;
  padding: 10px 0;
  border: none;
  border-radius: 5px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
.repairuser-fs-btn-ok:active {
  opacity: 0.8;
}
.repairuser-m-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  padding: 12px;
  margin-bottom: 10px;
}
.repairuser-m-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.repairuser-m-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.repairuser-m-info {
  flex: 1;
  overflow: hidden;
}
.repairuser-m-name {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
}
.repairuser-m-meta {
  font-size: 12px;
  color: #999999;
  margin-top: 2px;
}
.repairuser-m-phone {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f5e9;
  color: #4caf50;
  font-size: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.repairuser-m-stats {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.repairuser-m-stats b {
  color: var(--main-color);
  margin-left: 2px;
}
.repairuser-m-actions {
  display: flex;
  gap: 8px;
}
.repairuser-m-btn {
  flex: 1;
  padding: 8px 0;
  border: 1px solid #dddddd;
  border-radius: 5px;
  background: #ffffff;
  color: #222222;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
.repairuser-m-btn:active {
  background: #f5f5f5;
}
.repairuser-m-btn-active {
  background: var(--main-color);
  color: #ffffff;
  border-color: var(--main-color);
}
.repairuser-m-btn-active:active {
  opacity: 0.8;
}
.repairuser-m-btn-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.repairuser-status-on {
  font-size: 12px;
  color: #4caf50;
  font-weight: normal;
}
.repairuser-status-off {
  font-size: 12px;
  color: #999999;
  font-weight: normal;
}

body#p_login_tpl_login {
  background-color: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.qh-login-wrapper, .login-page-wrapper {
  width: 100%;
  max-width: 440px;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}
.qh-login-title, .login-title {
  font-size: 26px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 50px;
  letter-spacing: 1px;
}
.qh-login-card, .login-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 0 40px 30px 40px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 30px;
}
.qh-login-logo, .login-logo {
  margin-top: -40px;
  margin-bottom: 30px;
  text-align: center;
}
.qh-login-logo img, .login-logo img {
  border-radius: 50%;
  border: 4px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.qh-login-logo img:hover, .login-logo img:hover {
  transform: scale(1.05);
}
.qh-login-form, .login-form {
  text-align: left;
}
.qh-login-input-group, .login-input-group {
  margin-bottom: 22px;
}
.qh-login-input-group .input, .login-input-group .input {
  width: 100%;
  height: 46px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  padding: 0 15px;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background-color: #fcfcfc;
}
.qh-login-input-group .input:focus, .login-input-group .input:focus {
  border-color: #1389D3;
  box-shadow: 0 0 0 3px rgba(19, 137, 211, 0.1);
  background-color: #ffffff;
  outline: none;
}
.qh-login-hint, .login-hint {
  font-size: 12px;
  color: #999999;
  margin-top: 8px;
  margin-left: 2px;
}
.qh-login-options, .login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 25px;
}
.qh-login-options .checkbox, .login-options .checkbox {
  display: flex;
  align-items: center;
  color: #666;
  cursor: pointer;
}
.qh-login-options .checkbox input, .login-options .checkbox input {
  margin-right: 6px;
  cursor: pointer;
}
.qh-login-options .links, .login-options .links {
  display: flex;
  align-items: center;
}
.qh-login-options .links a, .login-options .links a {
  margin-left: 12px;
  color: #1389D3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.qh-login-options .links a:hover, .login-options .links a:hover {
  opacity: 0.8;
}
.qh-login-options .links img, .login-options .links img {
  margin-right: 4px;
  width: 16px;
  height: 16px;
}
.qh-login-btn-wrap button, .login-btn-wrap button {
  width: 100%;
  height: 46px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  background: #1389D3;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(19, 137, 211, 0.2);
}
.qh-login-btn-wrap button:hover, .login-btn-wrap button:hover {
  box-shadow: 0 6px 15px rgba(19, 137, 211, 0.35);
  transform: translateY(-1px);
}
.qh-login-reg-wrap, .login-reg-wrap {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}
.qh-login-footer, .login-footer {
  font-size: 12px;
  color: #a0a0a0;
  line-height: 1.6;
}
.qh-login-footer a, .login-footer a {
  color: #a0a0a0;
  text-decoration: none;
}
.qh-login-footer a:hover, .login-footer a:hover {
  color: #1389D3;
}
.qh-login-yzm-box, .login-yzm-box {
  display: flex;
}
.qh-login-yzm-box .input, .login-yzm-box .input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex: 1;
}
.qh-login-yzm-box .webbtn, .login-yzm-box .webbtn {
  height: 46px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0 20px;
  white-space: nowrap;
  border-radius: 0 6px 6px 0;
  margin: 0;
  box-shadow: none;
}
.qh-login-yzm-box .webbtn:hover, .login-yzm-box .webbtn:hover {
  box-shadow: none;
  background: rgba(19, 137, 211, 0.9);
  transform: none;
}
