@charset "UTF-8";:root {
  --primary-color: #1b65b9;
}.u-short-flex-between[data-v-1d12a3b9] {
  margin-bottom: 0;
  line-height: 50px;
}
.u-short-flex-between .nav-item[data-v-1d12a3b9],
.u-short-flex-between .nav-item-after[data-v-1d12a3b9] {
  align-items: center;
}
.u-short-flex-between .nav-item[data-v-1d12a3b9]::before,
.u-short-flex-between .nav-item-after[data-v-1d12a3b9]::before {
  margin-top: 0;
}
.nav-item[data-v-1d12a3b9] {
  display: flex;
  color: rgba(0, 0, 0, 0.8509803922);
}
.nav-item[data-v-1d12a3b9]::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8509803922);
  content: "";
  margin: 3px 5px 0 0;
}
.nav-item-after[data-v-1d12a3b9] {
  display: flex;
  color: var(--primary-color);
}
.nav-item-after[data-v-1d12a3b9]::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  content: "";
  margin: 3px 5px 0 5px;
}.change-password-popup-overlay[data-v-1a8d04d2] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1002;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 60px;
}
.change-password-popup[data-v-1a8d04d2] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  width: 320px;
  height: calc(100vh - 60px);
  margin-right: 340px;
  padding: 14px;
  animation: slideInLeft-1a8d04d2 0.3s ease-out;
  display: flex;
  flex-direction: column;
}
@keyframes slideInLeft-1a8d04d2 {
from {
    transform: translateX(-100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
.popup-header[data-v-1a8d04d2] {
  text-align: center;
  margin-bottom: 24px;
}
.security-icon[data-v-1a8d04d2] {
  margin-bottom: 12px;
}
.shield-icon[data-v-1a8d04d2] {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.lock-icon[data-v-1a8d04d2] {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 4px;
  position: relative;
}
.lock-icon[data-v-1a8d04d2]::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 10px;
  border: 2px solid white;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
.lock-icon[data-v-1a8d04d2]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}
.form-title[data-v-1a8d04d2] {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.form-content[data-v-1a8d04d2] {
  padding-bottom: 24px;
}
.form-item[data-v-1a8d04d2] {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-label[data-v-1a8d04d2] {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.required[data-v-1a8d04d2] {
  color: #ff4d4f;
  margin-right: 4px;
}
.form-input[data-v-1a8d04d2] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-input[data-v-1a8d04d2]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(7, 193, 96, 0.2);
}
.error-input[data-v-1a8d04d2] {
  border-color: #ff4d4f !important;
}
.error-input[data-v-1a8d04d2]:focus {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2) !important;
}
.error-message[data-v-1a8d04d2] {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}
.action-buttons[data-v-1a8d04d2] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.action-btn[data-v-1a8d04d2] {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cancel-btn[data-v-1a8d04d2] {
  background-color: #f5f5f5;
  color: #666;
}
.cancel-btn[data-v-1a8d04d2]:hover {
  background-color: #e6e6e6;
}
.confirm-btn[data-v-1a8d04d2] {
  background-color: #e8f5e8;
  color: var(--primary-color);
}
.confirm-btn[data-v-1a8d04d2]:hover:not(:disabled) {
  background-color: #d4f1d4;
}
.confirm-btn[data-v-1a8d04d2]:disabled {
  background-color: #d9d9d9;
  color: #999;
  cursor: not-allowed;
}.platform-account-popup-overlay[data-v-737f87ad] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1002;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 60px;
}
.platform-account-popup[data-v-737f87ad] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  width: 320px;
  height: calc(100vh - 60px);
  margin-right: 340px;
  padding: 14px;
  animation: slideInLeft-737f87ad 0.3s ease-out;
  display: flex;
  flex-direction: column;
}
@keyframes slideInLeft-737f87ad {
from {
    transform: translateX(-100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
.popup-header[data-v-737f87ad] {
  text-align: center;
  margin-bottom: 24px;
}
.platform-icon[data-v-737f87ad] {
  margin-bottom: 12px;
}
.connection-icon[data-v-737f87ad] {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.link-icon[data-v-737f87ad] {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 4px;
  position: relative;
}
.link-icon[data-v-737f87ad]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: white;
  border-radius: 1px;
}
.link-icon[data-v-737f87ad]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: white;
  border-radius: 1px;
}
.form-title[data-v-737f87ad] {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.form-content[data-v-737f87ad] {
  padding-bottom: 24px;
}
.form-item[data-v-737f87ad] {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-label[data-v-737f87ad] {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.required[data-v-737f87ad] {
  color: #ff4d4f;
  margin-right: 4px;
}
.form-input[data-v-737f87ad] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-input[data-v-737f87ad]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(7, 193, 96, 0.2);
}
.error-input[data-v-737f87ad] {
  border-color: #ff4d4f !important;
}
.error-input[data-v-737f87ad]:focus {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2) !important;
}
.error-message[data-v-737f87ad] {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}
.action-buttons[data-v-737f87ad] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.action-btn[data-v-737f87ad] {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cancel-btn[data-v-737f87ad] {
  background-color: #f5f5f5;
  color: #666;
}
.cancel-btn[data-v-737f87ad]:hover {
  background-color: #e6e6e6;
}
.confirm-btn[data-v-737f87ad] {
  background-color: #e8f5e8;
  color: var(--primary-color);
}
.confirm-btn[data-v-737f87ad]:hover:not(:disabled) {
  background-color: #d4f1d4;
}
.confirm-btn[data-v-737f87ad]:disabled {
  background-color: #d9d9d9;
  color: #999;
  cursor: not-allowed;
}.user-profile-popup-overlay[data-v-c18159c3] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 60px;
  pointer-events: auto;
}
.user-profile-popup[data-v-c18159c3] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  width: 320px;
  height: calc(100vh - 60px);
  margin-right: 10px;
  padding: 14px;
  animation: slideInRight-c18159c3 0.3s ease-out;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}
@keyframes slideInRight-c18159c3 {
from {
    transform: translateX(100%);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}
.popup-header[data-v-c18159c3] {
  text-align: center;
  margin-bottom: 24px;
}
.user-avatar[data-v-c18159c3] {
  margin-bottom: 12px;
}
.user-name[data-v-c18159c3] {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.user-info[data-v-c18159c3] {
  margin-bottom: 0;
  padding-bottom: 0;
}
.info-item[data-v-c18159c3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
}
.info-label[data-v-c18159c3] {
  font-size: 14px;
  color: #666;
}
.info-value[data-v-c18159c3] {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.action-buttons[data-v-c18159c3] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.action-btn[data-v-c18159c3] {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.change-password-btn[data-v-c18159c3] {
  background-color: #e8f5e8;
  color: var(--primary-color);
}
.change-password-btn[data-v-c18159c3]:hover {
  background-color: #d4f1d4;
}
.platform-account-btn[data-v-c18159c3] {
  background-color: #e8f5e8;
  color: var(--primary-color);
}
.platform-account-btn[data-v-c18159c3]:hover {
  background-color: #d4f1d4;
}
.logout-btn[data-v-c18159c3] {
  background-color: #e8f5e8;
  color: var(--primary-color);
}
.logout-btn[data-v-c18159c3]:hover {
  background-color: #d4f1d4;
}.active[data-v-12c51567] {
  background-color: var(--primary-color);
  border-radius: 70px;
}.title-logo {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  letter-spacing: 1px;
  color: #337dff;
  align-items: center;
  padding-left: 2%;
}
.sideBar-bg-color {
  background-color: #0a2c51 !important;
}
.big-menu .sys-logo {
  justify-content: flex-start;
  padding-left: 10px;
}
.sideBar-position {
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  background-color: #0a2c51 !important;
}
.sideBar-position > .overflow-y-auto::-webkit-scrollbar {
  display: none;
}
.layout-height-width {
  height: 100%;
  width: 100%;
}
.layout-header {
  width: 100%;
  height: 50px !important;
  background: #ffffff !important;
  display: flex;
  justify-content: space-between;
  padding-left: 12px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 99;
}
.menu-level1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 !important;
  min-height: 50px;
}
.menu-level1 .menu-level1-icon {
  -webkit-mask-size: 15px 15px;
  mask-size: 15px 15px;
  width: 15px;
  height: 15px;
  background-color: #fff;
}
.menu-level1 .menu-level1-text {
  color: white;
  font-size: 12px;
  margin-top: 4px;
}
.menu-level2-container {
  overflow-y: auto;
  max-height: 600px;
}
.menu-level2 {
  width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 6px 24px;
  cursor: pointer;
}
.menu-level2 .menu-level2-dot {
  width: 8px;
  height: 8px;
  background-color: #d4dffa;
  border-radius: 9999px;
  margin-right: 8px;
}
.menu-level2 .menu-level2-text {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  color: white;
  padding-left: 12px;
  font-size: 15px;
}
.menu-level2_active {
  background-color: #ccf6e3;
  border-radius: 9999px;
}
.menu-level2_active .menu-level2-dot {
  background-color: var(--primary-color);
}
.menu-level2_active .menu-level2-text {
  color: var(--primary-color);
}
.menu-level1_active .menu-level1-icon {
  background-color: var(--primary-color);
}
.icon-xtgl {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2016.81%2015.75'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%20-0.01)'%3e%3crect%20class='cls-1'%20width='16.82'%20height='15.78'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2071系统%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M8.4,4.49a3.39,3.39,0,1,0,0,6.78A3.69,3.69,0,0,0,9,11.21a.64.64,0,0,0,.52-.74A.65.65,0,0,0,8.9,10H8.79a3.43,3.43,0,0,1-.39,0,2.12,2.12,0,1,1,2.14-2.12,1.76,1.76,0,0,1,0,.38A.63.63,0,0,0,11,9h.11a.65.65,0,0,0,.64-.52,3.29,3.29,0,0,0-.95-3,3.4,3.4,0,0,0-2.42-1Zm8.25,1.84a.57.57,0,0,0-.43-.45,2.91,2.91,0,0,1-2.16-3.69.55.55,0,0,0-.17-.59A8.43,8.43,0,0,0,11.16,0,.58.58,0,0,0,11,0a.56.56,0,0,0-.42.18,2.9,2.9,0,0,1-2.15.93A2.94,2.94,0,0,1,6.25.19.59.59,0,0,0,5.64,0,8.33,8.33,0,0,0,2.91,1.6a.57.57,0,0,0-.17.59A2.88,2.88,0,0,1,2.48,4.5,2.91,2.91,0,0,1,.59,5.88a.57.57,0,0,0-.44.45A8.22,8.22,0,0,0,0,7.88,8.32,8.32,0,0,0,.15,9.44a.55.55,0,0,0,.44.44,3,3,0,0,1,1.89,1.38,2.88,2.88,0,0,1,.26,2.31.59.59,0,0,0,.17.6,8.73,8.73,0,0,0,2.73,1.56.59.59,0,0,0,.61-.15,3,3,0,0,1,4.3,0,.6.6,0,0,0,.42.18.58.58,0,0,0,.19,0,8.43,8.43,0,0,0,2.73-1.56.57.57,0,0,0,.17-.6,2.81,2.81,0,0,1,.27-2.3,2.87,2.87,0,0,1,1.89-1.38.57.57,0,0,0,.43-.45,7.58,7.58,0,0,0,.16-1.56,7.49,7.49,0,0,0-.16-1.55Zm-4,6.88a6.91,6.91,0,0,1-1.65.94,3.89,3.89,0,0,0-5.12,0,7.11,7.11,0,0,1-1.65-.94,3.72,3.72,0,0,0-.43-2.67A3.91,3.91,0,0,0,1.63,8.82a7.43,7.43,0,0,1-.07-.94,7.57,7.57,0,0,1,.07-.94A3.89,3.89,0,0,0,3.76,5.23a3.78,3.78,0,0,0,.43-2.67,6.76,6.76,0,0,1,1.65-.94,3.89,3.89,0,0,0,2.56,1,3.87,3.87,0,0,0,2.56-1,6.58,6.58,0,0,1,1.65.94,3.72,3.72,0,0,0,.44,2.67,3.83,3.83,0,0,0,2.12,1.71,6.35,6.35,0,0,1,0,1.88,3.85,3.85,0,0,0-2.12,1.72,3.76,3.76,0,0,0-.44,2.67Z'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2016.81%2015.75'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%20-0.01)'%3e%3crect%20class='cls-1'%20width='16.82'%20height='15.78'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2071系统%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M8.4,4.49a3.39,3.39,0,1,0,0,6.78A3.69,3.69,0,0,0,9,11.21a.64.64,0,0,0,.52-.74A.65.65,0,0,0,8.9,10H8.79a3.43,3.43,0,0,1-.39,0,2.12,2.12,0,1,1,2.14-2.12,1.76,1.76,0,0,1,0,.38A.63.63,0,0,0,11,9h.11a.65.65,0,0,0,.64-.52,3.29,3.29,0,0,0-.95-3,3.4,3.4,0,0,0-2.42-1Zm8.25,1.84a.57.57,0,0,0-.43-.45,2.91,2.91,0,0,1-2.16-3.69.55.55,0,0,0-.17-.59A8.43,8.43,0,0,0,11.16,0,.58.58,0,0,0,11,0a.56.56,0,0,0-.42.18,2.9,2.9,0,0,1-2.15.93A2.94,2.94,0,0,1,6.25.19.59.59,0,0,0,5.64,0,8.33,8.33,0,0,0,2.91,1.6a.57.57,0,0,0-.17.59A2.88,2.88,0,0,1,2.48,4.5,2.91,2.91,0,0,1,.59,5.88a.57.57,0,0,0-.44.45A8.22,8.22,0,0,0,0,7.88,8.32,8.32,0,0,0,.15,9.44a.55.55,0,0,0,.44.44,3,3,0,0,1,1.89,1.38,2.88,2.88,0,0,1,.26,2.31.59.59,0,0,0,.17.6,8.73,8.73,0,0,0,2.73,1.56.59.59,0,0,0,.61-.15,3,3,0,0,1,4.3,0,.6.6,0,0,0,.42.18.58.58,0,0,0,.19,0,8.43,8.43,0,0,0,2.73-1.56.57.57,0,0,0,.17-.6,2.81,2.81,0,0,1,.27-2.3,2.87,2.87,0,0,1,1.89-1.38.57.57,0,0,0,.43-.45,7.58,7.58,0,0,0,.16-1.56,7.49,7.49,0,0,0-.16-1.55Zm-4,6.88a6.91,6.91,0,0,1-1.65.94,3.89,3.89,0,0,0-5.12,0,7.11,7.11,0,0,1-1.65-.94,3.72,3.72,0,0,0-.43-2.67A3.91,3.91,0,0,0,1.63,8.82a7.43,7.43,0,0,1-.07-.94,7.57,7.57,0,0,1,.07-.94A3.89,3.89,0,0,0,3.76,5.23a3.78,3.78,0,0,0,.43-2.67,6.76,6.76,0,0,1,1.65-.94,3.89,3.89,0,0,0,2.56,1,3.87,3.87,0,0,0,2.56-1,6.58,6.58,0,0,1,1.65.94,3.72,3.72,0,0,0,.44,2.67,3.83,3.83,0,0,0,2.12,1.71,6.35,6.35,0,0,1,0,1.88,3.85,3.85,0,0,0-2.12,1.72,3.76,3.76,0,0,0-.44,2.67Z'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-task {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2017.7%2017.69'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%23fff;}%3c/style%3e%3c/defs%3e%3ctitle%3e资源%2076任务管理%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cpath%20class='cls-1'%20d='M10.21,16.2H17.7v1.49H10.21Zm0-2.56H17.7V15.1H10.21Zm0-2.56H17.7v1.48H10.21Z'/%3e%3cpath%20class='cls-1'%20d='M8.78.13l6.48,2.74a1.5,1.5,0,0,1,1,1.39V10h-1.6V5.7L9.18,8v8.73l-.4.15a1.63,1.63,0,0,1-1.3,0L1,14.14a1.53,1.53,0,0,1-1-1.39V4.26A1.51,1.51,0,0,1,1,2.87L7.47.13a1.72,1.72,0,0,1,1.3,0ZM1.58,5.51V12.8l6.07,2.57V7.9ZM8.13,1.39,1.91,4l6.62,2.6,6-2.47L8.14,1.39Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2017.7%2017.69'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%23fff;}%3c/style%3e%3c/defs%3e%3ctitle%3e资源%2076任务管理%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cpath%20class='cls-1'%20d='M10.21,16.2H17.7v1.49H10.21Zm0-2.56H17.7V15.1H10.21Zm0-2.56H17.7v1.48H10.21Z'/%3e%3cpath%20class='cls-1'%20d='M8.78.13l6.48,2.74a1.5,1.5,0,0,1,1,1.39V10h-1.6V5.7L9.18,8v8.73l-.4.15a1.63,1.63,0,0,1-1.3,0L1,14.14a1.53,1.53,0,0,1-1-1.39V4.26A1.51,1.51,0,0,1,1,2.87L7.47.13a1.72,1.72,0,0,1,1.3,0ZM1.58,5.51V12.8l6.07,2.57V7.9ZM8.13,1.39,1.91,4l6.62,2.6,6-2.47L8.14,1.39Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-yhgl {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2018.73%2016.22'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%20-0.01)'%3e%3crect%20class='cls-1'%20width='18.74'%20height='16.24'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2080人员%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M10.06,4.43h4V3.21h-4V4.32s0,.11,0,.11Zm4.67,0h1s.06,0,.06-.11v-1c0-.08,0-.13-.06-.13h-1s-.06,0-.06.13v1c0,.07,0,.12.06.12ZM10,6.64v.11h4V5.54H10.06v.12Zm4.66,0c0,.06,0,.11.06.11h1s.06,0,.06-.11v-1c0-.06,0-.11-.06-.11h-1s-.06,0-.06.11ZM10,8.94v.12h4V7.84H10.06V8Zm4.66,0s0,.11.06.11h1s.06,0,.06-.11v-1c0-.06,0-.11-.06-.11h-1s-.06,0-.06.11Zm-9.4.28a2.82,2.82,0,1,0-2-.82,2.88,2.88,0,0,0,2,.85Zm0-4.46A1.61,1.61,0,1,1,3.66,6.37,1.61,1.61,0,0,1,5.27,4.76Zm2.3,5H3a3,3,0,0,0-3,3.07v3.4H1.25v-3.4A1.83,1.83,0,0,1,3,11H4.66l.13.13-.3,2,.83.85.9-.84-.37-2L6,11H7.63a1.83,1.83,0,0,1,1.85,1.84v3.4h1.24v-3.4a3,3,0,0,0-3-3Z'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3cpath%20class='cls-3'%20d='M1.73,0a.53.53,0,0,0-.51.54V2.8a.54.54,0,0,0,.51.55h.33a.55.55,0,0,0,.51-.55V1.43H17.36V14.85H13.62a.53.53,0,0,0-.51.55v.27a.53.53,0,0,0,.51.55h4.59a.53.53,0,0,0,.51-.55V.6A.57.57,0,0,0,18.6.19.53.53,0,0,0,18.21,0'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2018.73%2016.22'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%20-0.01)'%3e%3crect%20class='cls-1'%20width='18.74'%20height='16.24'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2080人员%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M10.06,4.43h4V3.21h-4V4.32s0,.11,0,.11Zm4.67,0h1s.06,0,.06-.11v-1c0-.08,0-.13-.06-.13h-1s-.06,0-.06.13v1c0,.07,0,.12.06.12ZM10,6.64v.11h4V5.54H10.06v.12Zm4.66,0c0,.06,0,.11.06.11h1s.06,0,.06-.11v-1c0-.06,0-.11-.06-.11h-1s-.06,0-.06.11ZM10,8.94v.12h4V7.84H10.06V8Zm4.66,0s0,.11.06.11h1s.06,0,.06-.11v-1c0-.06,0-.11-.06-.11h-1s-.06,0-.06.11Zm-9.4.28a2.82,2.82,0,1,0-2-.82,2.88,2.88,0,0,0,2,.85Zm0-4.46A1.61,1.61,0,1,1,3.66,6.37,1.61,1.61,0,0,1,5.27,4.76Zm2.3,5H3a3,3,0,0,0-3,3.07v3.4H1.25v-3.4A1.83,1.83,0,0,1,3,11H4.66l.13.13-.3,2,.83.85.9-.84-.37-2L6,11H7.63a1.83,1.83,0,0,1,1.85,1.84v3.4h1.24v-3.4a3,3,0,0,0-3-3Z'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3cpath%20class='cls-3'%20d='M1.73,0a.53.53,0,0,0-.51.54V2.8a.54.54,0,0,0,.51.55h.33a.55.55,0,0,0,.51-.55V1.43H17.36V14.85H13.62a.53.53,0,0,0-.51.55v.27a.53.53,0,0,0,.51.55h4.59a.53.53,0,0,0,.51-.55V.6A.57.57,0,0,0,18.6.19.53.53,0,0,0,18.21,0'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-jixiaokaohebumengangweihebiaozhun,
.icon-jxgl {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2016.55%2016.55'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%20-0.01)'%3e%3crect%20class='cls-1'%20width='16.56'%20height='16.58'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2074绩效%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M14.89,5V14.9H13.24V5h1.65m0-1.66H13.24a1.62,1.62,0,0,0-1.17.49A1.66,1.66,0,0,0,11.58,5V14.9a1.7,1.7,0,0,0,.49,1.18,1.65,1.65,0,0,0,1.17.48h1.65a1.65,1.65,0,0,0,1.17-.48,1.7,1.7,0,0,0,.49-1.18V5a1.66,1.66,0,0,0-.49-1.17,1.62,1.62,0,0,0-1.17-.49ZM9.1,9.94v5H7.44v-5H9.1m0-1.65H7.44a1.67,1.67,0,0,0-1.17.48,1.65,1.65,0,0,0-.48,1.17v5a1.69,1.69,0,0,0,.48,1.18,1.67,1.67,0,0,0,1.17.48H9.1a1.65,1.65,0,0,0,1.17-.48,1.69,1.69,0,0,0,.48-1.18v-5A1.64,1.64,0,0,0,9.1,8.29Zm-5.79,5V14.9H1.65V13.25H3.31m0-1.66H1.65A1.66,1.66,0,0,0,0,13.25V14.9a1.69,1.69,0,0,0,.48,1.18,1.65,1.65,0,0,0,1.17.48H3.31A1.65,1.65,0,0,0,5,14.9V13.25a1.66,1.66,0,0,0-1.65-1.66ZM1.42,8.15,6.73,2.84v.48a.83.83,0,1,0,1.66,0V.84A.83.83,0,0,0,8.27.4a.45.45,0,0,0-.1-.13A.69.69,0,0,0,8,.16.83.83,0,0,0,7.56,0H5.08a.83.83,0,0,0,0,1.66h.48L.25,7A.83.83,0,0,0,0,7.57a.79.79,0,0,0,.25.58.79.79,0,0,0,.58.25.83.83,0,0,0,.59-.25Z'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2016.55%2016.55'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%20-0.01)'%3e%3crect%20class='cls-1'%20width='16.56'%20height='16.58'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2074绩效%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M14.89,5V14.9H13.24V5h1.65m0-1.66H13.24a1.62,1.62,0,0,0-1.17.49A1.66,1.66,0,0,0,11.58,5V14.9a1.7,1.7,0,0,0,.49,1.18,1.65,1.65,0,0,0,1.17.48h1.65a1.65,1.65,0,0,0,1.17-.48,1.7,1.7,0,0,0,.49-1.18V5a1.66,1.66,0,0,0-.49-1.17,1.62,1.62,0,0,0-1.17-.49ZM9.1,9.94v5H7.44v-5H9.1m0-1.65H7.44a1.67,1.67,0,0,0-1.17.48,1.65,1.65,0,0,0-.48,1.17v5a1.69,1.69,0,0,0,.48,1.18,1.67,1.67,0,0,0,1.17.48H9.1a1.65,1.65,0,0,0,1.17-.48,1.69,1.69,0,0,0,.48-1.18v-5A1.64,1.64,0,0,0,9.1,8.29Zm-5.79,5V14.9H1.65V13.25H3.31m0-1.66H1.65A1.66,1.66,0,0,0,0,13.25V14.9a1.69,1.69,0,0,0,.48,1.18,1.65,1.65,0,0,0,1.17.48H3.31A1.65,1.65,0,0,0,5,14.9V13.25a1.66,1.66,0,0,0-1.65-1.66ZM1.42,8.15,6.73,2.84v.48a.83.83,0,1,0,1.66,0V.84A.83.83,0,0,0,8.27.4a.45.45,0,0,0-.1-.13A.69.69,0,0,0,8,.16.83.83,0,0,0,7.56,0H5.08a.83.83,0,0,0,0,1.66h.48L.25,7A.83.83,0,0,0,0,7.57a.79.79,0,0,0,.25.58.79.79,0,0,0,.58.25.83.83,0,0,0,.59-.25Z'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-a-jiankangjiaoyuziyuan116 {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2042.16%2042.16'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{fill:%23fff;}.cls-3{clip-path:url(%23clip-path);}.cls-4{fill:%231b65b9;}%3c/style%3e%3cclipPath%20id='clip-path'%3e%3crect%20class='cls-1'%20x='12.89'%20y='11.65'%20width='16.37'%20height='18.85'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2064健康教育%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3ccircle%20class='cls-2'%20cx='21.08'%20cy='21.08'%20r='21.08'/%3e%3cg%20class='cls-3'%3e%3cpath%20class='cls-4'%20d='M23.91,19.45l0,0,0,0Z'/%3e%3cpath%20class='cls-4'%20d='M29.26,22.33a.64.64,0,0,0-.63-.64h-1.9a6.43,6.43,0,0,0-.34-1.05,5.76,5.76,0,0,0-3.11-3,3.32,3.32,0,0,0,1.15-2,3.68,3.68,0,0,0,.06-.58v0a3.35,3.35,0,0,0-.61-1.89,3.55,3.55,0,0,0-1.66-1.27,3.39,3.39,0,0,0-3.7,1,3.45,3.45,0,0,0-.8,2,3.39,3.39,0,0,0,.47,2,3.5,3.5,0,0,0,.78.89,5.7,5.7,0,0,0-3.35,4h-.37V19.48a2.9,2.9,0,0,1,.14-.48,1.64,1.64,0,0,1,.16-.29s0-.08.07-.09l.14-.15.12-.1c-.17.15,0,0,0,0a.64.64,0,0,0,.2-.2h.1a1,1,0,1,0-1-1v.06A2.92,2.92,0,0,0,14,19.59c0,.54,0,1.09,0,1.63v.47h-.44a.64.64,0,1,0,0,1.27H14v5.6a1.94,1.94,0,0,0,1.88,1.92H26.27a2,2,0,0,0,1.5-.83,2.24,2.24,0,0,0,.34-1.34V23h.52a.63.63,0,0,0,.63-.63ZM19,14.76a2,2,0,0,1,.35-.92l.07-.09a1.12,1.12,0,0,1,.18-.2c0-.06.12-.11.18-.17l.09-.06a2.46,2.46,0,0,1,.39-.22A2.39,2.39,0,0,1,20.8,13a2.62,2.62,0,0,1,.56,0,2.21,2.21,0,0,1,.93.36l.09.07a1.54,1.54,0,0,1,.19.17l.17.19.06.09a1.87,1.87,0,0,1,.22.39,2.39,2.39,0,0,1,.15.54,3.93,3.93,0,0,1,0,.56,2,2,0,0,1-.36.92l-.06.1-.18.19a1.54,1.54,0,0,1-.19.17l-.08.06a3.11,3.11,0,0,1-.4.22,2.46,2.46,0,0,1-.53.15,2.71,2.71,0,0,1-.57,0,2.17,2.17,0,0,1-.92-.36l-.09-.06-.2-.18-.17-.19-.06-.08a3.11,3.11,0,0,1-.22-.4,2.46,2.46,0,0,1-.15-.53,3.62,3.62,0,0,1,0-.57ZM17.09,21.2a6.36,6.36,0,0,1,.3-.58l.21-.31.06-.08,0,0c0-.06-.06.08-.06.07a1,1,0,0,1,.13-.16,4.34,4.34,0,0,1,.52-.53l.13-.12.06,0a1.61,1.61,0,0,1,.3-.21,4.4,4.4,0,0,1,3-.68,5.31,5.31,0,0,1,1.12.31,5.65,5.65,0,0,1,.6.31l.31.21.05,0h0a.44.44,0,0,1,.15.12,6.63,6.63,0,0,1,.54.52l.12.14,0,0,.21.3a4.52,4.52,0,0,1,.36.69,3.39,3.39,0,0,1,.17.48h-8.5a4,4,0,0,1,.17-.49Zm-1.55-2.52.05-.05,0,.06Zm0,10.4,0,0h0ZM26.65,29l-.06.06-.14.08-.16.05H15.79l-.16-.05-.14-.07s0,0,0,0L15.42,29,15.36,29a.57.57,0,0,1-.08-.13l0-.17c0-.21,0-.43,0-.64V23h11.6v4.91c0,.25,0,.52,0,.77a.84.84,0,0,1,0,.17.91.91,0,0,1-.07.14l0,0,0,.05Zm.06-.06,0,0Z'/%3e%3c/g%3e%3cpath%20class='cls-4'%20d='M22.86,25.47H21.78V24.41a.64.64,0,0,0-.63-.64.64.64,0,0,0-.64.64v1.06h-1a.64.64,0,1,0,0,1.27h1v1a.64.64,0,0,0,1.28,0v-1h1.07a.64.64,0,1,0,0-1.27Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2042.16%2042.16'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{fill:%23fff;}.cls-3{clip-path:url(%23clip-path);}.cls-4{fill:%231b65b9;}%3c/style%3e%3cclipPath%20id='clip-path'%3e%3crect%20class='cls-1'%20x='12.89'%20y='11.65'%20width='16.37'%20height='18.85'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2064健康教育%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3ccircle%20class='cls-2'%20cx='21.08'%20cy='21.08'%20r='21.08'/%3e%3cg%20class='cls-3'%3e%3cpath%20class='cls-4'%20d='M23.91,19.45l0,0,0,0Z'/%3e%3cpath%20class='cls-4'%20d='M29.26,22.33a.64.64,0,0,0-.63-.64h-1.9a6.43,6.43,0,0,0-.34-1.05,5.76,5.76,0,0,0-3.11-3,3.32,3.32,0,0,0,1.15-2,3.68,3.68,0,0,0,.06-.58v0a3.35,3.35,0,0,0-.61-1.89,3.55,3.55,0,0,0-1.66-1.27,3.39,3.39,0,0,0-3.7,1,3.45,3.45,0,0,0-.8,2,3.39,3.39,0,0,0,.47,2,3.5,3.5,0,0,0,.78.89,5.7,5.7,0,0,0-3.35,4h-.37V19.48a2.9,2.9,0,0,1,.14-.48,1.64,1.64,0,0,1,.16-.29s0-.08.07-.09l.14-.15.12-.1c-.17.15,0,0,0,0a.64.64,0,0,0,.2-.2h.1a1,1,0,1,0-1-1v.06A2.92,2.92,0,0,0,14,19.59c0,.54,0,1.09,0,1.63v.47h-.44a.64.64,0,1,0,0,1.27H14v5.6a1.94,1.94,0,0,0,1.88,1.92H26.27a2,2,0,0,0,1.5-.83,2.24,2.24,0,0,0,.34-1.34V23h.52a.63.63,0,0,0,.63-.63ZM19,14.76a2,2,0,0,1,.35-.92l.07-.09a1.12,1.12,0,0,1,.18-.2c0-.06.12-.11.18-.17l.09-.06a2.46,2.46,0,0,1,.39-.22A2.39,2.39,0,0,1,20.8,13a2.62,2.62,0,0,1,.56,0,2.21,2.21,0,0,1,.93.36l.09.07a1.54,1.54,0,0,1,.19.17l.17.19.06.09a1.87,1.87,0,0,1,.22.39,2.39,2.39,0,0,1,.15.54,3.93,3.93,0,0,1,0,.56,2,2,0,0,1-.36.92l-.06.1-.18.19a1.54,1.54,0,0,1-.19.17l-.08.06a3.11,3.11,0,0,1-.4.22,2.46,2.46,0,0,1-.53.15,2.71,2.71,0,0,1-.57,0,2.17,2.17,0,0,1-.92-.36l-.09-.06-.2-.18-.17-.19-.06-.08a3.11,3.11,0,0,1-.22-.4,2.46,2.46,0,0,1-.15-.53,3.62,3.62,0,0,1,0-.57ZM17.09,21.2a6.36,6.36,0,0,1,.3-.58l.21-.31.06-.08,0,0c0-.06-.06.08-.06.07a1,1,0,0,1,.13-.16,4.34,4.34,0,0,1,.52-.53l.13-.12.06,0a1.61,1.61,0,0,1,.3-.21,4.4,4.4,0,0,1,3-.68,5.31,5.31,0,0,1,1.12.31,5.65,5.65,0,0,1,.6.31l.31.21.05,0h0a.44.44,0,0,1,.15.12,6.63,6.63,0,0,1,.54.52l.12.14,0,0,.21.3a4.52,4.52,0,0,1,.36.69,3.39,3.39,0,0,1,.17.48h-8.5a4,4,0,0,1,.17-.49Zm-1.55-2.52.05-.05,0,.06Zm0,10.4,0,0h0ZM26.65,29l-.06.06-.14.08-.16.05H15.79l-.16-.05-.14-.07s0,0,0,0L15.42,29,15.36,29a.57.57,0,0,1-.08-.13l0-.17c0-.21,0-.43,0-.64V23h11.6v4.91c0,.25,0,.52,0,.77a.84.84,0,0,1,0,.17.91.91,0,0,1-.07.14l0,0,0,.05Zm.06-.06,0,0Z'/%3e%3c/g%3e%3cpath%20class='cls-4'%20d='M22.86,25.47H21.78V24.41a.64.64,0,0,0-.63-.64.64.64,0,0,0-.64.64v1.06h-1a.64.64,0,1,0,0,1.27h1v1a.64.64,0,0,0,1.28,0v-1h1.07a.64.64,0,1,0,0-1.27Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-xmzlgl {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2016.03%2014.89'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%200)'%3e%3crect%20class='cls-1'%20width='16.04'%20height='14.91'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2073项目%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M4.58,13.74H2.63a.34.34,0,0,1-.34-.34v-.8h-2A.33.33,0,0,1,0,12.25V2.64a.33.33,0,0,1,.31-.35h2v-.8a.31.31,0,0,1,.1-.24.31.31,0,0,1,.24-.1h2V.35A.33.33,0,0,1,4.68.1.35.35,0,0,1,4.92,0H15.68a.37.37,0,0,1,.25.1.37.37,0,0,1,.1.25V14.54a.34.34,0,0,1-.35.35H4.92a.35.35,0,0,1-.24-.1.33.33,0,0,1-.1-.25Zm0-1.14V2.29H3.43V12.6ZM2.29,3.44H1.14v8H2.29ZM5.72,1.15V13.74h9.16V1.15ZM7.21,2.29H10a.35.35,0,0,1,.24.1.33.33,0,0,1,.1.25V5.38a.34.34,0,0,1-.34.35H7.21a.34.34,0,0,1-.34-.35V2.64A.33.33,0,0,1,7,2.39a.35.35,0,0,1,.24-.1ZM8,4.58H9.16V3.44H8ZM7.44,6.87h5.73a.58.58,0,0,1,0,1.15H7.44a.58.58,0,0,1,0-1.15Zm0,2.29h5.73a.56.56,0,0,1,.49.29.58.58,0,0,1,0,.57.56.56,0,0,1-.49.29H7.44a.58.58,0,0,1,0-1.15Zm0,2.29h5.73a.56.56,0,0,1,.49.29.58.58,0,0,1,0,.57.56.56,0,0,1-.49.29H7.44a.59.59,0,0,1-.5-.29.58.58,0,0,1,0-.57.59.59,0,0,1,.5-.29Z'%20transform='translate(0%200)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2016.03%2014.89'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%200)'%3e%3crect%20class='cls-1'%20width='16.04'%20height='14.91'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2073项目%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M4.58,13.74H2.63a.34.34,0,0,1-.34-.34v-.8h-2A.33.33,0,0,1,0,12.25V2.64a.33.33,0,0,1,.31-.35h2v-.8a.31.31,0,0,1,.1-.24.31.31,0,0,1,.24-.1h2V.35A.33.33,0,0,1,4.68.1.35.35,0,0,1,4.92,0H15.68a.37.37,0,0,1,.25.1.37.37,0,0,1,.1.25V14.54a.34.34,0,0,1-.35.35H4.92a.35.35,0,0,1-.24-.1.33.33,0,0,1-.1-.25Zm0-1.14V2.29H3.43V12.6ZM2.29,3.44H1.14v8H2.29ZM5.72,1.15V13.74h9.16V1.15ZM7.21,2.29H10a.35.35,0,0,1,.24.1.33.33,0,0,1,.1.25V5.38a.34.34,0,0,1-.34.35H7.21a.34.34,0,0,1-.34-.35V2.64A.33.33,0,0,1,7,2.39a.35.35,0,0,1,.24-.1ZM8,4.58H9.16V3.44H8ZM7.44,6.87h5.73a.58.58,0,0,1,0,1.15H7.44a.58.58,0,0,1,0-1.15Zm0,2.29h5.73a.56.56,0,0,1,.49.29.58.58,0,0,1,0,.57.56.56,0,0,1-.49.29H7.44a.58.58,0,0,1,0-1.15Zm0,2.29h5.73a.56.56,0,0,1,.49.29.58.58,0,0,1,0,.57.56.56,0,0,1-.49.29H7.44a.59.59,0,0,1-.5-.29.58.58,0,0,1,0-.57.59.59,0,0,1,.5-.29Z'%20transform='translate(0%200)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-gwxmzl {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2018.98%2015.86'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%20-0.01)'%3e%3crect%20class='cls-1'%20width='19'%20height='15.9'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2075公卫资料%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M7.34,3.33a.7.7,0,0,1,.44.16l.08.06L8.94,4.68l-1,1L7,4.76H4.55L2.39,7H3.48a.71.71,0,0,1,.71.62v6.79H7.64V13.23L9,14.44h1l1.34-1.21v1.21h3.44V7.74A.73.73,0,0,1,15.39,7h1.2L14.42,4.76H11.94l-.89.94-1-1,1.08-1.13a.73.73,0,0,1,.42-.21h3.19a.75.75,0,0,1,.45.16l.07.06,3.53,3.7a.7.7,0,0,1,.16.73.71.71,0,0,1-.58.47H16.21v6.7a.72.72,0,0,1-.62.71H3.48a.72.72,0,0,1-.71-.61V8.46H.71a.7.7,0,0,1-.63-.39.72.72,0,0,1,.05-.75l.06-.07,3.54-3.7a.73.73,0,0,1,.42-.21H7.34Zm3.23,7.58,0,0,.78.79a.19.19,0,0,1,.07.13.31.31,0,0,1-.09.22l0,0-1,1c-.13.2-.26.14-.45,0s-.45-.26-.72,0c-.12.14-.25.2-.45,0s-.65-.65-1.1-1a.41.41,0,0,1,0-.46l0-.06L8.28,11c.06,0,.06-.07.13-.07s.06,0,.06.09v.7c0,.1.09.17.2.19h1.55c.18,0,.25,0,.26-.19V11c0-.06,0-.17.09-.11Zm1.29-3.36c.07,0,.13.07.2.13.32.39.71.66,1,1.05.13.19.13.32-.13.52s-.26.33,0,.72a.43.43,0,0,1,0,.46l0,.06-1,1a.31.31,0,0,1-.39.05l-.06-.05-.65-.66s-.13-.06-.06-.13a.18.18,0,0,1,.14-.06h.76c.17,0,.24,0,.26-.2V8.86c0-.17-.05-.25-.19-.26H11c-.06,0-.16,0-.1-.09l0,0,.77-.86a.22.22,0,0,1,.13-.06Zm-4.6.11.06,0L8,8.43c.07.07.13.07.07.13S8,8.63,8,8.63H7.25c-.17,0-.24,0-.25.19v1.51c0,.17,0,.24.2.26H8c.09,0,.18,0,.12.09l0,0-.78.79a.2.2,0,0,1-.13.06.31.31,0,0,1-.19-.13c-.33-.39-.72-.65-1-1a.18.18,0,0,1,0-.32c.32-.33.32-.39,0-.79-.13-.26-.13-.39,0-.52.32-.39.71-.65,1-1a.23.23,0,0,1,.33,0Zm3-1.63c.32.26.65.66,1.1,1a.41.41,0,0,1,.05.46l-.05.07-.65.65c-.06,0-.06.07-.13.07s-.06-.07-.06-.13V7.47c0-.11-.09-.17-.2-.19H8.76c-.17,0-.24.06-.25.2v.75c0,.06,0,.13-.09.07l0,0-.78-.79a.2.2,0,0,1-.06-.13.31.31,0,0,1,.09-.22l0,0,1-1c.13-.19.26-.13.46,0s.45.27.71,0,.26-.19.46,0Zm.14-4.75a.48.48,0,0,1,.47.47V3.11a.48.48,0,0,1-.14.34.45.45,0,0,1-.33.14H9a.48.48,0,0,1-.48-.48V1.75a.47.47,0,0,1,.14-.33A.48.48,0,0,1,9,1.28ZM6.7,0A.48.48,0,0,1,7,.15a.47.47,0,0,1,.14.33V2.31A.47.47,0,0,1,7,2.64a.48.48,0,0,1-.34.14H4.88a.47.47,0,0,1-.47-.47V.48A.47.47,0,0,1,4.88,0Zm7.39,0a.48.48,0,0,1,.34.14.47.47,0,0,1,.14.33V2.31a.47.47,0,0,1-.14.33.48.48,0,0,1-.34.14H12.27a.45.45,0,0,1-.33-.14.47.47,0,0,1-.14-.33V.48a.47.47,0,0,1,.14-.33A.45.45,0,0,1,12.27,0Z'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2018.98%2015.86'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;}.cls-2{clip-path:url(%23clip-path);}.cls-3{fill:%23fff;}%3c/style%3e%3cclipPath%20id='clip-path'%20transform='translate(0%20-0.01)'%3e%3crect%20class='cls-1'%20width='19'%20height='15.9'/%3e%3c/clipPath%3e%3c/defs%3e%3ctitle%3e资源%2075公卫资料%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cg%20class='cls-2'%3e%3cpath%20class='cls-3'%20d='M7.34,3.33a.7.7,0,0,1,.44.16l.08.06L8.94,4.68l-1,1L7,4.76H4.55L2.39,7H3.48a.71.71,0,0,1,.71.62v6.79H7.64V13.23L9,14.44h1l1.34-1.21v1.21h3.44V7.74A.73.73,0,0,1,15.39,7h1.2L14.42,4.76H11.94l-.89.94-1-1,1.08-1.13a.73.73,0,0,1,.42-.21h3.19a.75.75,0,0,1,.45.16l.07.06,3.53,3.7a.7.7,0,0,1,.16.73.71.71,0,0,1-.58.47H16.21v6.7a.72.72,0,0,1-.62.71H3.48a.72.72,0,0,1-.71-.61V8.46H.71a.7.7,0,0,1-.63-.39.72.72,0,0,1,.05-.75l.06-.07,3.54-3.7a.73.73,0,0,1,.42-.21H7.34Zm3.23,7.58,0,0,.78.79a.19.19,0,0,1,.07.13.31.31,0,0,1-.09.22l0,0-1,1c-.13.2-.26.14-.45,0s-.45-.26-.72,0c-.12.14-.25.2-.45,0s-.65-.65-1.1-1a.41.41,0,0,1,0-.46l0-.06L8.28,11c.06,0,.06-.07.13-.07s.06,0,.06.09v.7c0,.1.09.17.2.19h1.55c.18,0,.25,0,.26-.19V11c0-.06,0-.17.09-.11Zm1.29-3.36c.07,0,.13.07.2.13.32.39.71.66,1,1.05.13.19.13.32-.13.52s-.26.33,0,.72a.43.43,0,0,1,0,.46l0,.06-1,1a.31.31,0,0,1-.39.05l-.06-.05-.65-.66s-.13-.06-.06-.13a.18.18,0,0,1,.14-.06h.76c.17,0,.24,0,.26-.2V8.86c0-.17-.05-.25-.19-.26H11c-.06,0-.16,0-.1-.09l0,0,.77-.86a.22.22,0,0,1,.13-.06Zm-4.6.11.06,0L8,8.43c.07.07.13.07.07.13S8,8.63,8,8.63H7.25c-.17,0-.24,0-.25.19v1.51c0,.17,0,.24.2.26H8c.09,0,.18,0,.12.09l0,0-.78.79a.2.2,0,0,1-.13.06.31.31,0,0,1-.19-.13c-.33-.39-.72-.65-1-1a.18.18,0,0,1,0-.32c.32-.33.32-.39,0-.79-.13-.26-.13-.39,0-.52.32-.39.71-.65,1-1a.23.23,0,0,1,.33,0Zm3-1.63c.32.26.65.66,1.1,1a.41.41,0,0,1,.05.46l-.05.07-.65.65c-.06,0-.06.07-.13.07s-.06-.07-.06-.13V7.47c0-.11-.09-.17-.2-.19H8.76c-.17,0-.24.06-.25.2v.75c0,.06,0,.13-.09.07l0,0-.78-.79a.2.2,0,0,1-.06-.13.31.31,0,0,1,.09-.22l0,0,1-1c.13-.19.26-.13.46,0s.45.27.71,0,.26-.19.46,0Zm.14-4.75a.48.48,0,0,1,.47.47V3.11a.48.48,0,0,1-.14.34.45.45,0,0,1-.33.14H9a.48.48,0,0,1-.48-.48V1.75a.47.47,0,0,1,.14-.33A.48.48,0,0,1,9,1.28ZM6.7,0A.48.48,0,0,1,7,.15a.47.47,0,0,1,.14.33V2.31A.47.47,0,0,1,7,2.64a.48.48,0,0,1-.34.14H4.88a.47.47,0,0,1-.47-.47V.48A.47.47,0,0,1,4.88,0Zm7.39,0a.48.48,0,0,1,.34.14.47.47,0,0,1,.14.33V2.31a.47.47,0,0,1-.14.33.48.48,0,0,1-.34.14H12.27a.45.45,0,0,1-.33-.14.47.47,0,0,1-.14-.33V.48a.47.47,0,0,1,.14-.33A.45.45,0,0,1,12.27,0Z'%20transform='translate(0%20-0.01)'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-tj {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016.46%2016.47'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%23fff;}%3c/style%3e%3c/defs%3e%3ctitle%3e资源%2081统计%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cpath%20class='cls-1'%20d='M15.47,9.41h0v-.2l0,0v0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0h0l0,0,0,0H7.84v-7l0,0v0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0h0l0,0H7V1H6.9L6.55,1l-.34.06-.34.08-.33.09-.33.11-.33.12-.32.13-.31.15L3.94,2a2.38,2.38,0,0,0-.3.18l-.29.19a2.83,2.83,0,0,0-.28.2,2.88,2.88,0,0,0-.27.22L2.53,3l-.25.24L2,3.45c-.08.09-.15.18-.23.26s-.15.18-.22.28a2.83,2.83,0,0,0-.2.28,2.9,2.9,0,0,0-.19.29A1.75,1.75,0,0,0,1,4.85l-.17.31L.7,5.47c0,.11-.09.22-.14.32l-.12.33c0,.11-.08.22-.11.33l-.09.33c0,.12-.06.23-.08.34L.1,7.46c0,.12,0,.23,0,.35l0,.35c0,.11,0,.23,0,.34H0v.21C0,8.83,0,9,0,9.07s0,.23,0,.35,0,.24,0,.35l.06.36c0,.11,0,.23.07.35l.09.34a3.37,3.37,0,0,0,.1.34l.12.34c0,.11.09.22.14.33a2.3,2.3,0,0,0,.15.32l.16.32.18.3.19.3.21.29c.07.1.15.19.22.28a3.23,3.23,0,0,0,.23.27,3.07,3.07,0,0,0,.25.26l.25.25.27.23.28.23.29.21.3.19.3.19.32.16.32.16.33.14.33.12.34.11.34.09.35.07.35.06.36.05.19,0H8.49l.19,0,.19,0,.18,0,.19,0,.19,0,.18,0,.19-.05.18-.05.18-.06.18-.06.18-.07.18-.07.17-.07.18-.08.17-.08.17-.09.17-.09.16-.1.16-.1.16-.1a.91.91,0,0,0,.16-.11l.16-.11.15-.11.15-.12.14-.12.15-.13.14-.13.13-.13.14-.14.13-.13.12-.15a.86.86,0,0,0,.13-.14l.12-.15.11-.15.12-.15c0-.06.07-.11.1-.16l.11-.16.1-.16.1-.17.09-.16.09-.17c0-.06.05-.12.08-.17a1.42,1.42,0,0,0,.08-.18c0-.05.05-.11.08-.17l.07-.18a1.34,1.34,0,0,1,.07-.18l.06-.18.06-.18a1.21,1.21,0,0,1,.05-.18c0-.06,0-.12,0-.18s0-.13,0-.19a1.06,1.06,0,0,0,0-.19,1.16,1.16,0,0,0,0-.18l0-.19a1.23,1.23,0,0,0,0-.19l0-.19ZM1.71,8.71V8.46c0-.08,0-.16,0-.24a2.29,2.29,0,0,1,0-.25,2,2,0,0,1,0-.24c0-.08,0-.16,0-.24l.06-.24L2,7c0-.08.05-.15.07-.23l.09-.23.09-.23a1.47,1.47,0,0,1,.1-.22l.11-.22.12-.22a2.39,2.39,0,0,1,.13-.21,1.43,1.43,0,0,1,.14-.2,1.43,1.43,0,0,1,.14-.2l.15-.19c.05-.07.11-.13.16-.19l.17-.18.18-.17.18-.17L4,4l.19-.15.2-.14.21-.13.21-.13L5,3.33a1.51,1.51,0,0,1,.22-.11l.22-.1L5.67,3,5.9,3l.24-.07v6.6a.85.85,0,0,0,.85.85h6.59a2.17,2.17,0,0,1-.07.24c0,.07,0,.15-.08.23l-.09.23a2.14,2.14,0,0,1-.1.22c0,.08-.07.15-.1.22l-.12.22-.12.21-.14.21a2.43,2.43,0,0,1-.14.2l-.15.2-.16.18c-.05.07-.11.13-.16.19l-.18.17-.17.17-.19.16-.19.15-.2.15-.21.13-.21.13-.21.12-.22.11-.22.11-.23.09-.23.08-.24.07-.24.07L9,14.64l-.24,0-.24,0-.25,0H7.15l-.15,0-.14,0-.15,0-.15,0-.14,0-.15,0-.14,0-.14,0-.14,0-.14-.05-.14-.05-.14,0-.14-.06-.13-.06L5,14.12l-.13-.07L4.76,14l-.12-.08-.13-.07-.12-.09a.57.57,0,0,1-.13-.08l-.12-.09L4,13.48l-.12-.09a.52.52,0,0,1-.11-.1.52.52,0,0,1-.11-.1.52.52,0,0,1-.11-.1L3.47,13l-.1-.11-.1-.1-.1-.11-.09-.11L3,12.44l-.09-.11-.09-.12-.08-.12L2.65,12l-.08-.13-.07-.12-.07-.13s-.05-.08-.07-.13l-.06-.13-.06-.13-.06-.13-.06-.14a1.21,1.21,0,0,0-.05-.14s0-.09,0-.13,0-.09,0-.14a.74.74,0,0,1,0-.14.74.74,0,0,1,0-.14.57.57,0,0,0,0-.14l0-.15a.59.59,0,0,1,0-.14l0-.14c0-.05,0-.1,0-.15s0-.09,0-.14,0-.1,0-.15a.61.61,0,0,1,0-.14c0-.05,0-.1,0-.15V8.8h0Z'/%3e%3cpath%20class='cls-1'%20d='M10.11,6.2a.86.86,0,0,0,.61.25h5.13l0,0H16l0,0h0l0,0,0,0h0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0V6l0,0V6l0,0V5.87h0V5.8a1.21,1.21,0,0,0,0-.2V5.51a2.09,2.09,0,0,0,0-.25,2.53,2.53,0,0,0,0-.28c0-.09,0-.18,0-.28a2.51,2.51,0,0,0,0-.27,2.56,2.56,0,0,0-.05-.27l-.06-.27c0-.09-.05-.18-.08-.26l-.09-.26L16,3.11l-.12-.25-.13-.24-.15-.23-.15-.23-.17-.22-.18-.21-.19-.2-.2-.19-.21-.18L14.28,1,14.05.84,13.81.7,13.57.57,13.32.45,13.06.34,12.8.25,12.54.18,12.27.11,12,.06l-.27,0-.28,0H10.9l-.28,0h-.19l0,0h0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0V.61l0,0V5.42s0,.06,0,.09,0,0,0,.08v.29l0,0V6l0,0,0,0,0,0,0,0,0,0,0,0Zm4.6-1.46H11.57v-3l.15,0,.14,0,.15,0,.14,0,.14,0,.14.05.13.05L12.7,2l.13.07.13.07.12.07.12.08.12.09.12.09.11.09.11.1.1.1.1.11L14,3a.47.47,0,0,1,.09.12l.09.12.08.12a.54.54,0,0,1,.07.13.75.75,0,0,1,.07.12.91.91,0,0,1,.07.14l.06.13,0,.14s0,.09.05.13,0,.1,0,.15,0,.09,0,.14l0,.14A.78.78,0,0,1,14.71,4.74Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016.46%2016.47'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%23fff;}%3c/style%3e%3c/defs%3e%3ctitle%3e资源%2081统计%3c/title%3e%3cg%20id='图层_2'%20data-name='图层%202'%3e%3cg%20id='图层_1-2'%20data-name='图层%201'%3e%3cpath%20class='cls-1'%20d='M15.47,9.41h0v-.2l0,0v0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0h0l0,0,0,0H7.84v-7l0,0v0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0h0l0,0H7V1H6.9L6.55,1l-.34.06-.34.08-.33.09-.33.11-.33.12-.32.13-.31.15L3.94,2a2.38,2.38,0,0,0-.3.18l-.29.19a2.83,2.83,0,0,0-.28.2,2.88,2.88,0,0,0-.27.22L2.53,3l-.25.24L2,3.45c-.08.09-.15.18-.23.26s-.15.18-.22.28a2.83,2.83,0,0,0-.2.28,2.9,2.9,0,0,0-.19.29A1.75,1.75,0,0,0,1,4.85l-.17.31L.7,5.47c0,.11-.09.22-.14.32l-.12.33c0,.11-.08.22-.11.33l-.09.33c0,.12-.06.23-.08.34L.1,7.46c0,.12,0,.23,0,.35l0,.35c0,.11,0,.23,0,.34H0v.21C0,8.83,0,9,0,9.07s0,.23,0,.35,0,.24,0,.35l.06.36c0,.11,0,.23.07.35l.09.34a3.37,3.37,0,0,0,.1.34l.12.34c0,.11.09.22.14.33a2.3,2.3,0,0,0,.15.32l.16.32.18.3.19.3.21.29c.07.1.15.19.22.28a3.23,3.23,0,0,0,.23.27,3.07,3.07,0,0,0,.25.26l.25.25.27.23.28.23.29.21.3.19.3.19.32.16.32.16.33.14.33.12.34.11.34.09.35.07.35.06.36.05.19,0H8.49l.19,0,.19,0,.18,0,.19,0,.19,0,.18,0,.19-.05.18-.05.18-.06.18-.06.18-.07.18-.07.17-.07.18-.08.17-.08.17-.09.17-.09.16-.1.16-.1.16-.1a.91.91,0,0,0,.16-.11l.16-.11.15-.11.15-.12.14-.12.15-.13.14-.13.13-.13.14-.14.13-.13.12-.15a.86.86,0,0,0,.13-.14l.12-.15.11-.15.12-.15c0-.06.07-.11.1-.16l.11-.16.1-.16.1-.17.09-.16.09-.17c0-.06.05-.12.08-.17a1.42,1.42,0,0,0,.08-.18c0-.05.05-.11.08-.17l.07-.18a1.34,1.34,0,0,1,.07-.18l.06-.18.06-.18a1.21,1.21,0,0,1,.05-.18c0-.06,0-.12,0-.18s0-.13,0-.19a1.06,1.06,0,0,0,0-.19,1.16,1.16,0,0,0,0-.18l0-.19a1.23,1.23,0,0,0,0-.19l0-.19ZM1.71,8.71V8.46c0-.08,0-.16,0-.24a2.29,2.29,0,0,1,0-.25,2,2,0,0,1,0-.24c0-.08,0-.16,0-.24l.06-.24L2,7c0-.08.05-.15.07-.23l.09-.23.09-.23a1.47,1.47,0,0,1,.1-.22l.11-.22.12-.22a2.39,2.39,0,0,1,.13-.21,1.43,1.43,0,0,1,.14-.2,1.43,1.43,0,0,1,.14-.2l.15-.19c.05-.07.11-.13.16-.19l.17-.18.18-.17.18-.17L4,4l.19-.15.2-.14.21-.13.21-.13L5,3.33a1.51,1.51,0,0,1,.22-.11l.22-.1L5.67,3,5.9,3l.24-.07v6.6a.85.85,0,0,0,.85.85h6.59a2.17,2.17,0,0,1-.07.24c0,.07,0,.15-.08.23l-.09.23a2.14,2.14,0,0,1-.1.22c0,.08-.07.15-.1.22l-.12.22-.12.21-.14.21a2.43,2.43,0,0,1-.14.2l-.15.2-.16.18c-.05.07-.11.13-.16.19l-.18.17-.17.17-.19.16-.19.15-.2.15-.21.13-.21.13-.21.12-.22.11-.22.11-.23.09-.23.08-.24.07-.24.07L9,14.64l-.24,0-.24,0-.25,0H7.15l-.15,0-.14,0-.15,0-.15,0-.14,0-.15,0-.14,0-.14,0-.14,0-.14-.05-.14-.05-.14,0-.14-.06-.13-.06L5,14.12l-.13-.07L4.76,14l-.12-.08-.13-.07-.12-.09a.57.57,0,0,1-.13-.08l-.12-.09L4,13.48l-.12-.09a.52.52,0,0,1-.11-.1.52.52,0,0,1-.11-.1.52.52,0,0,1-.11-.1L3.47,13l-.1-.11-.1-.1-.1-.11-.09-.11L3,12.44l-.09-.11-.09-.12-.08-.12L2.65,12l-.08-.13-.07-.12-.07-.13s-.05-.08-.07-.13l-.06-.13-.06-.13-.06-.13-.06-.14a1.21,1.21,0,0,0-.05-.14s0-.09,0-.13,0-.09,0-.14a.74.74,0,0,1,0-.14.74.74,0,0,1,0-.14.57.57,0,0,0,0-.14l0-.15a.59.59,0,0,1,0-.14l0-.14c0-.05,0-.1,0-.15s0-.09,0-.14,0-.1,0-.15a.61.61,0,0,1,0-.14c0-.05,0-.1,0-.15V8.8h0Z'/%3e%3cpath%20class='cls-1'%20d='M10.11,6.2a.86.86,0,0,0,.61.25h5.13l0,0H16l0,0h0l0,0,0,0h0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0V6l0,0V6l0,0V5.87h0V5.8a1.21,1.21,0,0,0,0-.2V5.51a2.09,2.09,0,0,0,0-.25,2.53,2.53,0,0,0,0-.28c0-.09,0-.18,0-.28a2.51,2.51,0,0,0,0-.27,2.56,2.56,0,0,0-.05-.27l-.06-.27c0-.09-.05-.18-.08-.26l-.09-.26L16,3.11l-.12-.25-.13-.24-.15-.23-.15-.23-.17-.22-.18-.21-.19-.2-.2-.19-.21-.18L14.28,1,14.05.84,13.81.7,13.57.57,13.32.45,13.06.34,12.8.25,12.54.18,12.27.11,12,.06l-.27,0-.28,0H10.9l-.28,0h-.19l0,0h0l0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0V.61l0,0V5.42s0,.06,0,.09,0,0,0,.08v.29l0,0V6l0,0,0,0,0,0,0,0,0,0,0,0Zm4.6-1.46H11.57v-3l.15,0,.14,0,.15,0,.14,0,.14,0,.14.05.13.05L12.7,2l.13.07.13.07.12.07.12.08.12.09.12.09.11.09.11.1.1.1.1.11L14,3a.47.47,0,0,1,.09.12l.09.12.08.12a.54.54,0,0,1,.07.13.75.75,0,0,1,.07.12.91.91,0,0,1,.07.14l.06.13,0,.14s0,.09.05.13,0,.1,0,.15,0,.09,0,.14l0,.14A.78.78,0,0,1,14.71,4.74Z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-tzbs {
  -webkit-mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='11.539794921875'%20height='13.96923828125'%20viewBox='0%200%2011.539794921875%2013.96923828125'%20fill='none'%3e%3cpath%20d='M4.73261%209.37917C4.74023%209.37917%204.74739%209.37917%204.75505%209.37978L4.9123%209.37978L4.9123%209.37917C5.17622%209.37917%205.39523%209.17712%205.43411%208.91398C5.43453%208.91223%205.43453%208.90998%205.43492%208.90756L5.43972%208.85344L5.74658%205.31205C5.74658%204.84428%205.38198%204.46539%204.93195%204.46539L0.815031%204.46539C0.365%204.46539%200%204.84427%200%205.31205L0.304828%208.82731L0.313672%208.93289C0.360172%209.1867%200.574828%209.37914%200.832672%209.37914L0.832672%209.37975L0.992359%209.37975C0.999578%209.37914%201.00756%209.37914%201.01478%209.37914C1.02284%209.37914%201.03002%209.37914%201.03723%209.37975C1.20487%209.39078%201.34048%209.52303%201.36333%209.69281C1.36619%209.70906%201.36692%209.72469%201.36773%209.741L1.65014%2013.4239L1.65655%2013.5063C1.6963%2013.7683%201.91486%2013.9692%202.17797%2013.9692L3.57058%2013.9692C3.82969%2013.9692%204.04548%2013.7745%204.08964%2013.5179L4.09767%2013.4117L4.38006%209.73534C4.38006%209.72311%204.38163%209.71128%204.38322%209.69963C4.40411%209.52619%204.5413%209.39077%204.70977%209.37973C4.71775%209.37917%204.72497%209.37917%204.73261%209.37917ZM2.87353%203.74823C3.86905%203.74823%204.67683%202.90902%204.67683%201.87431C4.67683%200.839391%203.869%200%202.87353%200C1.87795%200%201.07097%200.839422%201.07097%201.87431C1.07097%202.90902%201.87797%203.74823%202.87353%203.74823ZM7.80227%204.06464C7.15887%204.06464%206.55344%204.22722%206.02481%204.51352C6.02481%204.51352%206.26648%204.75967%206.21639%205.27736C6.68198%204.98273%207.23387%204.81217%207.82561%204.81217C9.48989%204.81217%2010.8391%206.16134%2010.8391%207.82562C10.8391%209.48991%209.48989%2010.8391%207.82561%2010.8391C6.8733%2010.8391%206.02414%2010.3973%205.47191%209.70753C5.47191%209.70753%205.39272%209.89948%204.70805%209.89948C5.38036%2010.8895%206.51536%2011.5399%207.80225%2011.5399C9.86647%2011.5399%2011.5398%209.86648%2011.5398%207.80227C11.5399%205.73803%209.86648%204.06464%207.80227%204.06464ZM8.22275%205.88672L7.70884%205.88672C7.45081%205.88672%207.24164%206.09587%207.24164%206.35392L7.24164%207.14816L6.49412%207.14816C6.23609%207.14816%206.02692%207.35733%206.02692%207.61536L6.02692%208.12928C6.02692%208.38731%206.23609%208.59648%206.49412%208.59648L7.24164%208.59648L7.24164%209.29728C7.24164%209.55531%207.45081%209.76448%207.70884%209.76448L8.22275%209.76448C8.48078%209.76448%208.68994%209.5553%208.68994%209.29728L8.68994%208.59648L9.43745%208.59648C9.69548%208.59648%209.90466%208.38731%209.90466%208.12928L9.90466%207.61536C9.90466%207.35733%209.69548%207.14816%209.43745%207.14816L8.68994%207.14816L8.68994%206.35392C8.68994%206.09587%208.48077%205.88672%208.22275%205.88672Z'%20fill='%2307C160'%20%3e%3c/path%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='11.539794921875'%20height='13.96923828125'%20viewBox='0%200%2011.539794921875%2013.96923828125'%20fill='none'%3e%3cpath%20d='M4.73261%209.37917C4.74023%209.37917%204.74739%209.37917%204.75505%209.37978L4.9123%209.37978L4.9123%209.37917C5.17622%209.37917%205.39523%209.17712%205.43411%208.91398C5.43453%208.91223%205.43453%208.90998%205.43492%208.90756L5.43972%208.85344L5.74658%205.31205C5.74658%204.84428%205.38198%204.46539%204.93195%204.46539L0.815031%204.46539C0.365%204.46539%200%204.84427%200%205.31205L0.304828%208.82731L0.313672%208.93289C0.360172%209.1867%200.574828%209.37914%200.832672%209.37914L0.832672%209.37975L0.992359%209.37975C0.999578%209.37914%201.00756%209.37914%201.01478%209.37914C1.02284%209.37914%201.03002%209.37914%201.03723%209.37975C1.20487%209.39078%201.34048%209.52303%201.36333%209.69281C1.36619%209.70906%201.36692%209.72469%201.36773%209.741L1.65014%2013.4239L1.65655%2013.5063C1.6963%2013.7683%201.91486%2013.9692%202.17797%2013.9692L3.57058%2013.9692C3.82969%2013.9692%204.04548%2013.7745%204.08964%2013.5179L4.09767%2013.4117L4.38006%209.73534C4.38006%209.72311%204.38163%209.71128%204.38322%209.69963C4.40411%209.52619%204.5413%209.39077%204.70977%209.37973C4.71775%209.37917%204.72497%209.37917%204.73261%209.37917ZM2.87353%203.74823C3.86905%203.74823%204.67683%202.90902%204.67683%201.87431C4.67683%200.839391%203.869%200%202.87353%200C1.87795%200%201.07097%200.839422%201.07097%201.87431C1.07097%202.90902%201.87797%203.74823%202.87353%203.74823ZM7.80227%204.06464C7.15887%204.06464%206.55344%204.22722%206.02481%204.51352C6.02481%204.51352%206.26648%204.75967%206.21639%205.27736C6.68198%204.98273%207.23387%204.81217%207.82561%204.81217C9.48989%204.81217%2010.8391%206.16134%2010.8391%207.82562C10.8391%209.48991%209.48989%2010.8391%207.82561%2010.8391C6.8733%2010.8391%206.02414%2010.3973%205.47191%209.70753C5.47191%209.70753%205.39272%209.89948%204.70805%209.89948C5.38036%2010.8895%206.51536%2011.5399%207.80225%2011.5399C9.86647%2011.5399%2011.5398%209.86648%2011.5398%207.80227C11.5399%205.73803%209.86648%204.06464%207.80227%204.06464ZM8.22275%205.88672L7.70884%205.88672C7.45081%205.88672%207.24164%206.09587%207.24164%206.35392L7.24164%207.14816L6.49412%207.14816C6.23609%207.14816%206.02692%207.35733%206.02692%207.61536L6.02692%208.12928C6.02692%208.38731%206.23609%208.59648%206.49412%208.59648L7.24164%208.59648L7.24164%209.29728C7.24164%209.55531%207.45081%209.76448%207.70884%209.76448L8.22275%209.76448C8.48078%209.76448%208.68994%209.5553%208.68994%209.29728L8.68994%208.59648L9.43745%208.59648C9.69548%208.59648%209.90466%208.38731%209.90466%208.12928L9.90466%207.61536C9.90466%207.35733%209.69548%207.14816%209.43745%207.14816L8.68994%207.14816L8.68994%206.35392C8.68994%206.09587%208.48077%205.88672%208.22275%205.88672Z'%20fill='%2307C160'%20%3e%3c/path%3e%3c/svg%3e");
}*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.u-short-card{margin-top:0.625rem;width:100%;border-radius:0.25rem;--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity)) /* #fff */;}.u-short-flex-between{margin-bottom:0.5rem;display:flex;flex-wrap:nowrap;align-items:center;justify-content:space-between;}.u-short-col-16{width:16.66%;max-width:16.66%;height:30px;display:flex;align-items:center;justify-content:flex-start;}.u-short-institution-fiter-region{width:85%;display:flex;flex-direction:column;gap:8px;font-size:0.75rem;line-height:1rem;}.u-short-search-between{width:100%;display:flex;flex-wrap:nowrap;align-items:flex-start;justify-content:space-between;border-radius:0.25rem;--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity)) /* #fff */;padding:0.625rem;}.u-short-search-more-item-one{max-width:16.66%;height:30px;display:flex;flex-basis:16.6666666667%;align-items:center;justify-content:flex-start;}.u-short-search-more-item-two{width:95%;height:100%;display:flex;align-items:center;white-space:nowrap;border-width:1px;--un-border-opacity:1;border-color:rgb(216 216 217 / var(--un-border-opacity));border-style:solid;}.u-short-fiter-region{display:flex;flex-direction:column;padding-right:0.625rem;}.u-short-flex-center-nowrap{display:flex;flex-wrap:nowrap;align-items:center;justify-content:center;}.u-short-show-than-more{display:flex;flex-wrap:nowrap;align-items:center;justify-content:flex-start;}.pointer-events-auto{pointer-events:auto;}.pointer-events-none,[pointer-events-none=""]{pointer-events:none;}.visible,[visible=""]{visibility:visible;}[open~="visible"][open]{visibility:visible;}.absolute,[absolute=""]{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.sticky{position:sticky;}.bottom-50px{bottom:50px;}.left-0,[left-0=""]{left:0;}.left-1\/2{left:50%;}.right-0{right:0;}.top-\[5\.5rem\]{top:5.5rem;}.top-0{top:0;}.top-1\/2{top:50%;}.top-4{top:1rem;}[left-1=""]{left:0.25rem;}[top-1=""]{top:0.25rem;}.line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;}.z-10{z-index:10;}.z-100{z-index:100;}.grid{display:grid;}.grid-cols-2,[cols~="\32 "]{grid-template-columns:repeat(2,minmax(0,1fr));}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}[rows~="\31 "]{grid-template-rows:repeat(1,minmax(0,1fr));}[rows~="\32 "]{grid-template-rows:repeat(2,minmax(0,1fr));}[rows~="\33 "]{grid-template-rows:repeat(3,minmax(0,1fr));}[rows~="\34 "]{grid-template-rows:repeat(4,minmax(0,1fr));}[rows~="\36 "]{grid-template-rows:repeat(6,minmax(0,1fr));}[m6=""]{margin:1.5rem;}.mx-\[12px\],.mx-12px{margin-left:12px;margin-right:12px;}.mx-\[20px\]{margin-left:20px;margin-right:20px;}.mx-\[2px\]{margin-left:2px;margin-right:2px;}.mx-\[4mm\]{margin-left:4mm;margin-right:4mm;}.mx-2{margin-left:0.5rem;margin-right:0.5rem;}.mx-50px{margin-left:50px;margin-right:50px;}.mx-6px{margin-left:6px;margin-right:6px;}.mx-auto{margin-left:auto;margin-right:auto;}.my-\[10px\]{margin-top:10px;margin-bottom:10px;}.my-\[20px\]{margin-top:20px;margin-bottom:20px;}.my-\[2px\]{margin-top:2px;margin-bottom:2px;}.my-\[5px\]{margin-top:5px;margin-bottom:5px;}.my-\[8px\]{margin-top:8px;margin-bottom:8px;}.my-1{margin-top:0.25rem;margin-bottom:0.25rem;}.my-2\.5{margin-top:0.625rem;margin-bottom:0.625rem;}.my-4{margin-top:1rem;margin-bottom:1rem;}.my-4px{margin-top:4px;margin-bottom:4px;}.mb-\[12px\]{margin-bottom:12px;}.mb-\[28px\!important\]{margin-bottom:28px!important;}.mb-\[40px\]{margin-bottom:40px;}.mb-\[4px\]{margin-bottom:4px;}.mb-\[5px\]{margin-bottom:5px;}.mb-\[60px\]{margin-bottom:60px;}.mb-\[8px\]{margin-bottom:8px;}.mb-0{margin-bottom:0;}.mb-1{margin-bottom:0.25rem;}.mb-2{margin-bottom:0.5rem;}.mb-2\.5{margin-bottom:0.625rem;}.mb-4{margin-bottom:1rem;}.mb-6{margin-bottom:1.5rem;}.ml,.ml-4{margin-left:1rem;}.ml-\[10px\]{margin-left:10px;}.ml-\[12px\],.ml-12px{margin-left:12px;}.ml-\[20px\]{margin-left:20px;}.ml-\[24px\]{margin-left:24px;}.ml-\[4px\]{margin-left:4px;}.ml-\[6px\]{margin-left:6px;}.ml-\[8px\]{margin-left:8px;}.ml-1{margin-left:0.25rem;}.ml-6{margin-left:1.5rem;}.mr-\[10px\]{margin-right:10px;}.mr-\[12px\]{margin-right:12px;}.mr-\[20px\]{margin-right:20px;}.mr-\[3\%\]{margin-right:3%;}.mr-\[5\%\]{margin-right:5%;}.mr-\[5px\],.mr\[5px\]{margin-right:5px;}.mr-\[8px\]{margin-right:8px;}.mr-1{margin-right:0.25rem;}.mr-2,[mr-2=""]{margin-right:0.5rem;}.mr-2\.5{margin-right:0.625rem;}.mr-4,[mr=""]{margin-right:1rem;}.mr-4px,.mr\[4px\]{margin-right:4px;}.mr-5{margin-right:1.25rem;}.mr-50px{margin-right:50px;}.mr-6{margin-right:1.5rem;}.mr-8{margin-right:2rem;}.mt-\[-12px\]{margin-top:-12px;}.mt-\[10px\]{margin-top:10px;}.mt-\[20px\],.mt-20px{margin-top:20px;}.mt-\[30px\]{margin-top:30px;}.mt-\[4px\]{margin-top:4px;}.mt-\[6px\]{margin-top:6px;}.mt-\[auto\],.mt-auto{margin-top:auto;}.mt-0{margin-top:0;}.mt-1{margin-top:0.25rem;}.mt-1\.2{margin-top:0.3rem;}.mt-1\.5{margin-top:0.375rem;}.mt-12px{margin-top:12px;}.mt-150px{margin-top:150px;}.mt-2{margin-top:0.5rem;}.mt-2\.5{margin-top:0.625rem;}.mt-200px{margin-top:200px;}.mt-3{margin-top:0.75rem;}.mt-5{margin-top:1.25rem;}[default~="mr-1"]:default{margin-right:0.25rem;}.inline{display:inline;}.block,[block=""]{display:block;}.inline-block{display:inline-block;}.contents{display:contents;}.hidden{display:none;}.h-\[100\%\],.h-full{height:100%;}.h-\[100px\]{height:100px;}.h-\[130px\]{height:130px;}.h-\[15px\]{height:15px;}.h-\[23\.5rem\]{height:23.5rem;}.h-\[230px\]{height:230px;}.h-\[250px\]{height:250px;}.h-\[270px\]{height:270px;}.h-\[276px\]{height:276px;}.h-\[30px\]{height:30px;}.h-\[32px\]{height:32px;}.h-\[35px\]{height:35px;}.h-\[3em\]{height:3em;}.h-\[3px\]{height:3px;}.h-\[50px\]{height:50px;}.h-\[60px\]{height:60px;}.h-\[70vh\]{height:70vh;}.h-\[80px\]{height:80px;}.h-\[99\%\]{height:99%;}.h-1\/3{height:33.3333333333%;}.h-20px{height:20px;}.h-min{height:-moz-min-content;height:min-content;}.h-px{height:1px;}.h\[13px\]{height:13px;}.h1,[h1=""]{height:0.25rem;}.h2{height:0.5rem;}.h3{height:0.75rem;}.h4{height:1rem;}.max-h-\[calc\(100vh-64px\)\]{max-height:calc(100vh - 64px);}.max-w-\[16\.66\%\]{max-width:16.66%;}.max-w-\[58\.33\%\]{max-width:58.33%;}.min-h-\[300px\]{min-height:300px;}.min-h-\[3em\]{min-height:3em;}.min-h-\[4em\]{min-height:4em;}.min-w-\[120px\]{min-width:120px;}.min-w-\[17\%\]{min-width:17%;}.min-w-\[8em\]{min-width:8em;}.w-\[1\/5\]{width:1/5;}.w-\[10\%\]{width:10%;}.w-\[100\%\],.w-full,[w-full=""]{width:100%;}.w-\[100px\]{width:100px;}.w-\[120px\]{width:120px;}.w-\[12rem\]{width:12rem;}.w-\[15\%\]{width:15%;}.w-\[150px\]{width:150px;}.w-\[15px\]{width:15px;}.w-\[165px\]{width:165px;}.w-\[18\%\]{width:18%;}.w-\[2\%\]{width:2%;}.w-\[20\%\]{width:20%;}.w-\[200px\]{width:200px;}.w-\[22\%\]{width:22%;}.w-\[22rem\]{width:22rem;}.w-\[250px\]{width:250px;}.w-\[280px\]{width:280px;}.w-\[30\%\]{width:30%;}.w-\[300px\]{width:300px;}.w-\[30px\]{width:30px;}.w-\[35\%\]{width:35%;}.w-\[350px\]{width:350px;}.w-\[35px\]{width:35px;}.w-\[38\%\]{width:38%;}.w-\[4\%\]{width:4%;}.w-\[40\%\],.w-2\/5{width:40%;}.w-\[41\.66\%\]{width:41.66%;}.w-\[42\%\]{width:42%;}.w-\[450px\]{width:450px;}.w-\[49\%\]{width:49%;}.w-\[50\%\],.w-1\/2{width:50%;}.w-\[50px\]{width:50px;}.w-\[58\.33\%\]{width:58.33%;}.w-\[60px\]{width:60px;}.w-\[63px\]{width:63px;}.w-\[70\%\]{width:70%;}.w-\[80\%\]{width:80%;}.w-\[95\%\]{width:95%;}.w-\[98\%\]{width:98%;}.w-\[calc\(100\%-210px\)\]{width:calc(100% - 210px);}.w-16,[w-16=""]{width:4rem;}.w-20px{width:20px;}.w-auto{width:auto;}.w-max{width:-moz-max-content;width:max-content;}.w\[14px\]{width:14px;}[w-1=""]{width:0.25rem;}[w-2=""]{width:0.5rem;}[w-full~="default\:"]:default{width:100%;}[w-full~="disabled\:"]:disabled{width:100%;}.flex,[flex=""]{display:flex;}.inline-flex{display:inline-flex;}.flex-\[55\%\]{flex:55%;}.flex-1{flex:1 1 0%;}[flex-1~="disabled\:"]:disabled{flex:1 1 0%;}.flex-shrink{flex-shrink:1;}.shrink-0{flex-shrink:0;}.basis-\[20\.83\%\]{flex-basis:20.83%;}.basis-\[25\%\],.basis-1\/4{flex-basis:25%;}.basis-\[41\.66\%\]{flex-basis:41.66%;}.basis-1\/12{flex-basis:8.3333333333%;}.basis-1\/2{flex-basis:50%;}.basis-1\/5{flex-basis:20%;}.basis-1\/6{flex-basis:16.6666666667%;}.basis-5\/12{flex-basis:41.6666666667%;}.basis-5\/6{flex-basis:83.3333333333%;}.basis-7\/12{flex-basis:58.3333333333%;}[basis-5=""]{flex-basis:1.25rem;}[basis-7=""]{flex-basis:1.75rem;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.flex-wrap{flex-wrap:wrap;}.flex-nowrap{flex-wrap:nowrap;}.table,[table=""]{display:table;}.border-collapse{border-collapse:collapse;}.-translate-x-1\/2{--un-translate-x:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.-translate-y-1\/2{--un-translate-y:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}[-translate-x-1=""]{--un-translate-x:-0.25rem;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}[-translate-y-1=""]{--un-translate-y:-0.25rem;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.cursor-pointer,[cursor-pointer=""]{cursor:pointer;}.cursor-not-allowed{cursor:not-allowed;}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none;}.resize{resize:both;}.items-start{align-items:flex-start;}.items-end{align-items:flex-end;}.items-center,[items-center=""]{align-items:center;}.items-stretch,[items-stretch=""]{align-items:stretch;}.justify-start{justify-content:flex-start;}.justify-end{justify-content:flex-end;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.justify-around,[justify-around=""]{justify-content:space-around;}.gap-\[12px\]{gap:12px;}.gap-\[24px\]{gap:24px;}.gap-\[2px\]{gap:2px;}.gap-\[4px\]{gap:4px;}.gap-\[8px\]{gap:8px;}.gap-2{gap:0.5rem;}.gap-4{gap:1rem;}.gap-x-\[32px\]{-moz-column-gap:32px;column-gap:32px;}.gap-x-\[50px\]{-moz-column-gap:50px;column-gap:50px;}.gap-y-\[12px\]{row-gap:12px;}.space-y-1>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.25rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.25rem * var(--un-space-y-reverse));}.overflow-auto,[overflow-auto=""]{overflow:auto;}.overflow-hidden{overflow:hidden;}.overflow-y-auto{overflow-y:auto;}.overflow-y-scroll{overflow-y:scroll;}.text-ellipsis{text-overflow:ellipsis;}.whitespace-nowrap{white-space:nowrap;}.b,.border,.border-\[1px\],.border-1px,[border=""],[border~="\31 "]{border-width:1px;}.border-b-\[0px\]{border-bottom-width:0px;}.border-b-2px{border-bottom-width:2px;}.border-l-\[0px\]{border-left-width:0px;}.border-r-\[0px\]{border-right-width:0px;}.border-\[\#d8d8d9\]{--un-border-opacity:1;border-color:rgb(216 216 217 / var(--un-border-opacity));}.border-\[black\]{border-color:black;}.border-black{--un-border-opacity:1;border-color:rgb(0 0 0 / var(--un-border-opacity));}.border-gray-300,[border-gray-300=""]{--un-border-opacity:1;border-color:rgb(209 213 219 / var(--un-border-opacity));}.rounded{border-radius:0.25rem;}.rounded-\[4px\],.rounded-4px{border-radius:4px;}.rounded-\[8px\]{border-radius:8px;}.rounded-full{border-radius:9999px;}.border-none{border-style:none;}.border-solid{border-style:solid;}.border-style-double{border-style:double;}.border-l-none{border-left-style:none;}.border-r-none{border-right-style:none;}.border-t-none{border-top-style:none;}.bg-\[\#2dabd2\]{--un-bg-opacity:1;background-color:rgb(45 171 210 / var(--un-bg-opacity)) /* #2dabd2 */;}.bg-\[\#80b04d\]{--un-bg-opacity:1;background-color:rgb(128 176 77 / var(--un-bg-opacity)) /* #80b04d */;}.bg-\[\#ed4343\]{--un-bg-opacity:1;background-color:rgb(237 67 67 / var(--un-bg-opacity)) /* #ed4343 */;}.bg-\[\#f0f2f5\]{--un-bg-opacity:1;background-color:rgb(240 242 245 / var(--un-bg-opacity)) /* #f0f2f5 */;}.bg-\[\#ffffff\]{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity)) /* #ffffff */;}.bg-coolgray-100,.bg-gray-100{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity)) /* #f3f4f6 */;}.bg-gray-200,[bg-gray-200=""]{--un-bg-opacity:1;background-color:rgb(229 231 235 / var(--un-bg-opacity)) /* #e5e7eb */;}.bg-gray-400{--un-bg-opacity:1;background-color:rgb(156 163 175 / var(--un-bg-opacity)) /* #9ca3af */;}.bg-gray-50{--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity)) /* #f9fafb */;}.bg-slate-400{--un-bg-opacity:1;background-color:rgb(148 163 184 / var(--un-bg-opacity)) /* #94a3b8 */;}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity)) /* #fff */;}.hover\:bg-gray-100:hover{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity)) /* #f3f4f6 */;}.hover\:bg-gray-50:hover{--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity)) /* #f9fafb */;}.p-\[12px\]{padding:12px;}.p-\[15px\]{padding:15px;}.p-\[1cm\]{padding:1cm;}.p-\[20px\]{padding:20px;}.p-\[2mm\]{padding:2mm;}.p-\[4px\],.p-4{padding:4px;}.p-\[8px\]{padding:8px;}.p-2\.5{padding:0.625rem;}.px,[px=""]{padding-left:1rem;padding-right:1rem;}.px-\[12px\]{padding-left:12px;padding-right:12px;}.px-\[5px\]{padding-left:5px;padding-right:5px;}.px-\[8px\]{padding-left:8px;padding-right:8px;}.px-2,[px~="\32 "]{padding-left:0.5rem;padding-right:0.5rem;}.px-2\.5{padding-left:0.625rem;padding-right:0.625rem;}.py-\[10px\]{padding-top:10px;padding-bottom:10px;}.py-\[12px\]{padding-top:12px;padding-bottom:12px;}.py-\[20px\]{padding-top:20px;padding-bottom:20px;}.py-\[2mm\]{padding-top:2mm;padding-bottom:2mm;}.py-\[4px\]{padding-top:4px;padding-bottom:4px;}.py-\[5px\]{padding-top:5px;padding-bottom:5px;}.py-\[8px\],.py-8px{padding-top:8px;padding-bottom:8px;}.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}.py-3{padding-top:0.75rem;padding-bottom:0.75rem;}.py-8{padding-top:2rem;padding-bottom:2rem;}[px~="\30 "],[px~="none"]{padding-left:0;padding-right:0;}[px~="\31 "]{padding-left:0.25rem;padding-right:0.25rem;}[px~="default\:"]:default{padding-left:1rem;padding-right:1rem;}[px~="disabled\:"]:disabled{padding-left:1rem;padding-right:1rem;}.pb-\[15px\]{padding-bottom:15px;}.pb-\[1mm\]{padding-bottom:1mm;}.pb-\[20px\]{padding-bottom:20px;}.pb-\[6px\]{padding-bottom:6px;}.pb-\[8px\]{padding-bottom:8px;}.pl-\[12px\]{padding-left:12px;}.pl-\[20px\]{padding-left:20px;}.pl-\[32px\]{padding-left:32px;}.pl-\[4px\]{padding-left:4px;}.pl-4{padding-left:1rem;}.pr-\[15px\]{padding-right:15px;}.pr-\[20px\]{padding-right:20px;}.pr-2{padding-right:0.5rem;}.pr-2\.5{padding-right:0.625rem;}.pr-4{padding-right:1rem;}.pt-\[10px\]{padding-top:10px;}.pt-\[12px\]{padding-top:12px;}.pt-\[50px\]{padding-top:50px;}.pt-\[8px\]{padding-top:8px;}.pt-2{padding-top:0.5rem;}.pt-20px{padding-top:20px;}.pt\[4px\]{padding-top:4px;}[pt=""]{padding-top:1rem;}.text-align-center,.text-center,[text-center=""]{text-align:center;}.text-left{text-align:left;}.text-right{text-align:right;}.indent{text-indent:1.5rem;}.indent-\[2em\]{text-indent:2em;}.indent-8{text-indent:2rem;}[align~="middle"]{vertical-align:middle;}.text-\[12px\],.text-12px{font-size:12px;}.text-\[13px\]{font-size:13px;}.text-\[14px\]{font-size:14px;}.text-\[16px\],.text-16px{font-size:16px;}.text-\[18px\]{font-size:18px;}.text-\[20px\],.text-20px{font-size:20px;}.text-\[24px\],.text-24px{font-size:24px;}.text-28px{font-size:28px;}.text-32px{font-size:32px;}.text-sm{font-size:0.875rem;line-height:1.25rem;}.text-xl,[text-xl=""]{font-size:1.25rem;line-height:1.75rem;}.text-xs,[text-xs=""]{font-size:0.75rem;line-height:1rem;}.text-\[\#000000\]{--un-text-opacity:1;color:rgb(0 0 0 / var(--un-text-opacity)) /* #000000 */;}.text-\[\#07C160\]{--un-text-opacity:1;color:rgb(7 193 96 / var(--un-text-opacity)) /* #07C160 */;}.text-\[\#0a0eff\]{--un-text-opacity:1;color:rgb(10 14 255 / var(--un-text-opacity)) /* #0a0eff */;}.text-\[\#1cc1b5\]{--un-text-opacity:1;color:rgb(28 193 181 / var(--un-text-opacity)) /* #1cc1b5 */;}.text-\[\#858585\]{--un-text-opacity:1;color:rgb(133 133 133 / var(--un-text-opacity)) /* #858585 */;}.text-\[\#b3b3b3\]{--un-text-opacity:1;color:rgb(179 179 179 / var(--un-text-opacity)) /* #b3b3b3 */;}.text-\[\#BCBABB\]{--un-text-opacity:1;color:rgb(188 186 187 / var(--un-text-opacity)) /* #BCBABB */;}.text-\[\#e00\]{--un-text-opacity:1;color:rgb(238 0 0 / var(--un-text-opacity)) /* #e00 */;}.text-\[\#e90007\]{--un-text-opacity:1;color:rgb(233 0 7 / var(--un-text-opacity)) /* #e90007 */;}.text-\[gray\]{color:gray /* gray */;}.text-\[red\]{color:red /* red */;}.text-\[var\(--primary-color\)\]{color:var(--primary-color) /* var(--primary-color) */;}.text-black{--un-text-opacity:1;color:rgb(0 0 0 / var(--un-text-opacity)) /* #000 */;}.color-blue,.text-blue,[color~="blue"]{--un-text-opacity:1;color:rgb(96 165 250 / var(--un-text-opacity)) /* #60a5fa */;}.text-blue-500,[text-blue-500=""]{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity)) /* #3b82f6 */;}.text-cyan-500{--un-text-opacity:1;color:rgb(6 182 212 / var(--un-text-opacity)) /* #06b6d4 */;}.text-gray-400{--un-text-opacity:1;color:rgb(156 163 175 / var(--un-text-opacity)) /* #9ca3af */;}.text-gray-500{--un-text-opacity:1;color:rgb(107 114 128 / var(--un-text-opacity)) /* #6b7280 */;}.text-gray-600{--un-text-opacity:1;color:rgb(75 85 99 / var(--un-text-opacity)) /* #4b5563 */;}.text-green-600{--un-text-opacity:1;color:rgb(22 163 74 / var(--un-text-opacity)) /* #16a34a */;}.text-orange-500{--un-text-opacity:1;color:rgb(249 115 22 / var(--un-text-opacity)) /* #f97316 */;}.text-orange-600{--un-text-opacity:1;color:rgb(234 88 12 / var(--un-text-opacity)) /* #ea580c */;}.color-red,.text-red,[color-red=""],[color~="red"]{--un-text-opacity:1;color:rgb(248 113 113 / var(--un-text-opacity)) /* #f87171 */;}.text-red-500,[text-red-500=""]{--un-text-opacity:1;color:rgb(239 68 68 / var(--un-text-opacity)) /* #ef4444 */;}.text-white{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity)) /* #fff */;}.hover\:text-\[\#07C160\]:hover{--un-text-opacity:1;color:rgb(7 193 96 / var(--un-text-opacity)) /* #07C160 */;}.hover\:text-\[\#1cc1b5\]:hover{--un-text-opacity:1;color:rgb(28 193 181 / var(--un-text-opacity)) /* #1cc1b5 */;}.hover\:text-\[\#e90007\]:hover{--un-text-opacity:1;color:rgb(233 0 7 / var(--un-text-opacity)) /* #e90007 */;}.hover\:text-\[gray\]:hover{color:gray /* gray */;}.hover\:text-blue-600:hover{--un-text-opacity:1;color:rgb(37 99 235 / var(--un-text-opacity)) /* #2563eb */;}.hover\:text-cyan-600:hover{--un-text-opacity:1;color:rgb(8 145 178 / var(--un-text-opacity)) /* #0891b2 */;}.hover\:text-orange-600:hover{--un-text-opacity:1;color:rgb(234 88 12 / var(--un-text-opacity)) /* #ea580c */;}.hover\:text-red-600:hover{--un-text-opacity:1;color:rgb(220 38 38 / var(--un-text-opacity)) /* #dc2626 */;}[hover\:text-blue-600=""]:hover{--un-text-opacity:1;color:rgb(37 99 235 / var(--un-text-opacity)) /* #2563eb */;}[color~="\#0a2c51"]{--un-text-opacity:1;color:rgb(10 44 81 / var(--un-text-opacity)) /* #0a2c51 */;}[color~="green"]{--un-text-opacity:1;color:rgb(74 222 128 / var(--un-text-opacity)) /* #4ade80 */;}[color~="orange"]{--un-text-opacity:1;color:rgb(251 146 60 / var(--un-text-opacity)) /* #fb923c */;}.font-bold,[font-bold=""]{font-weight:700;}.font-medium{font-weight:500;}.font-normal{font-weight:400;}.font-semibold,[font-semibold=""]{font-weight:600;}.leading-\[1\.1rem\]{line-height:1.1rem;}.leading-\[1\.2\]{line-height:1.2;}.leading-\[1\.8\]{line-height:1.8;}.leading-none{line-height:1;}.leading-tight{line-height:1.25;}.tracking-12px{letter-spacing:12px;}.tracking-4px{letter-spacing:4px;}.tracking-6px{letter-spacing:6px;}.tracking-8px{letter-spacing:8px;}.italic{font-style:italic;}.underline{text-decoration-line:underline;}.hover\:underline:hover{text-decoration-line:underline;}.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.outline{outline-style:solid;}.blur{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="required\:"]:required{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.filter,[filter=""]{filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.ease{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);}.ease-out{transition-timing-function:cubic-bezier(0, 0, 0.2, 1);}.p-1,[p-1=""]{padding:1px;}.p-2,[p-2=""]{padding:2px;}
/* 自定义全局message样式 */
.custom-message-success .ant-message-notice-content {
  background-color: #c3edda;
  color: #65c37e;
}

.custom-message-error .ant-message-notice-content {
  background-color: #fae0df;
  color: #d92f22;
}

.custom-message-warning .ant-message-notice-content {
  background-color: #faedcd;
  color: #e6b94a;
}

.ant-table {
  font-size: 12px !important;
  white-space: nowrap !important;
}
.ant-table .ant-table-thead > tr > th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #cffce8 !important;
  font-weight: bold !important;
  padding: 0 4px !important;
  height: 40px !important;
  font-size: 12px !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.ant-table-small .ant-table-tbody > tr:nth-child(even) {
  background-color: #fafafa;
}

.flutter-mode {
  background-color: #f5f5f5 !important;
}
.flutter-mode .ant-layout-sider, .flutter-mode .ant-layout-header {
  display: none;
}

.list-filter .ant-input, .u-short-show-than-more .ant-input {
  border: unset !important;
}
.list-filter .ant-picker, .u-short-show-than-more .ant-picker {
  border: unset !important;
}
.list-filter .ant-select .ant-select-selector, .u-short-show-than-more .ant-select .ant-select-selector {
  border: unset !important;
}