style.css 2.01 KB
:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

html, body {
  position: absolute;
  padding: 0;
  margin: 0;
  min-height: 100%;
  width: 100%;
}

body {
  background-color: #ffffff;
  min-height: 100%;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

#app {
  min-height: 100%;
}

@media (prefers-color-scheme: light) {
}
#app-header {
  padding: 0;
  position: fixed;
  width: 100%;
  z-index: 99;
}
#app-main {
  width: 100%;
  min-width: 1200px;
  padding: 60px 0 0 0;
  min-height: calc(100vh - 75px);
}
#app-footer {
  padding: 0;
}

.body_wrap {
  background-color: #FAFAFA;
  padding: 20px 0;
}

.w80 {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  min-width: 1200px;
}

.primary-btn {
  background: linear-gradient(91deg, #546AD2, #727BFF);
}
.primary-btn.reverse {
  color: #475EE3;
  background: #FFFFFF;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.common_con {
  padding: 20px;
  background-color: #ffffff;
  position: relative;
}
.table_wrap {
  min-height: 400px;
}
:focus-visible {
  outline: none;
}
.loader_warp {
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  padding-top: 200px;
  min-height: 400px;
  background-color: rgba(255,255,255,0.5);
}
.loader {
  border: 4px solid rgba(0, 0, 0, 0.1); /* 轻颜色的边框 */
  border-radius: 50%; /* 圆形 */
  border-top: 4px solid #3498db; /* 蓝色边框 */
  width: 40px; /* 加载器的宽度 */
  height: 40px; /* 加载器的高度 */
  animation: spin 2s linear infinite; /* 应用加载动画 */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}