/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
html,
body,
#root,
#app,
app {
  height: 100%;
}
.colorWeak {
  filter: invert(80%);
}
.ant-layout {
  min-height: 100vh;
}
canvas {
  display: block;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul,
ol {
  list-style: none;
}
.action {
  cursor: pointer;
}
@media (max-width: 480px) {
  .ant-table {
    width: 100%;
    overflow-x: auto;
  }
  .ant-table-thead > tr > th,
  .ant-table-tbody > tr > th,
  .ant-table-thead > tr > td,
  .ant-table-tbody > tr > td {
    white-space: pre;
  }
  .ant-table-thead > tr > th > span,
  .ant-table-tbody > tr > th > span,
  .ant-table-thead > tr > td > span,
  .ant-table-tbody > tr > td > span {
    display: block;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body .ant-design-pro > .ant-layout {
    min-height: 100vh;
  }
}



::-webkit-scrollbar {
    width: 1px; /* ���ù������Ŀ��� */
    height: 8px; /* ����ˮƽ�������ĸ߶� */
}

::-webkit-scrollbar-track {
    background: #f5f5f5; /* ���ù���������ı���ɫ */
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1; /* ���ù�����Ĵָ�ı���ɫ�����϶��Ĳ��֣� */
    border-radius: 8px; /* ���ù�����Ĵָ��Բ�� */
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555; /* �����ͣʱ������Ĵָ�ı���ɫ */
    }

/* ������Firefox */
* {
    scrollbar-width: thin; /* ���ù�����Ϊϸ�� */
    scrollbar-color: #ccc #f1f1f1; /* ���ù�����Ĵָ�͹������ɫ */
}

/* 添加企业微信登录页面样式 */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f2f5;
}

.login-card {
    width: 360px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-logo {
    margin-bottom: 24px;
}

.login-logo img {
    width: 120px;
    height: 120px;
}

.login-button-container {
    margin-top: 24px;
}

.login-button {
    width: 100%;
    height: 40px;
    background-color: #1AAD19;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #129611;
}

.error-message {
    color: #f5222d;
    margin-top: 16px;
    font-size: 14px;
}