/* CSS Document */
:root {
  --bg-color: #f6f6f6;
  --header-bg-color: #FFF;
  --text-color:#1a1919;
  --left-color:#00ae6b;
}

[data-theme='dark'] {
  --bg-color: #1a1919;
  --text-color: #f6f6f6;
  --header-bg-color: #131313;
  --left-color:#131313;
}
  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  
  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  html,body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
}
  html,body {
    margin: 0;
    padding: 0;
    font: 14px "Microsoft Yahei", "Wenquanyi Micro Hei", sans-serif;
    font-style: inherit;
    font-weight: inherit;
    outline: 0;
    vertical-align: baseline;
    overflow-x: hidden;
  }
  html,body{
    position: relative;
  }
  
  button,
  input,
  optgroup,
  select,
  textarea,
  a {
    color: inherit;
    font: inherit;
    margin: 0;
    outline: medium !important;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    color: #333;
  }
  
  a:hover {
    color: #00ae6b;
    text-decoration: none;
  }
  
  h1, h2, h4, h5, h6 {
    font-weight: normal;
    padding: 0;
    margin: 0;
  }
  
  ul, li, dd, dl {
    padding: 0;
    margin: 0;
    list-style: none;
  }
/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
  font-family: 'iconfont';  /* Project id 4382677 */
  src: url('//at.alicdn.com/t/c/font_4382677_ylupndpdm9.woff2?t=1761029930210') format('woff2'),
       url('//at.alicdn.com/t/c/font_4382677_ylupndpdm9.woff?t=1761029930210') format('woff'),
       url('//at.alicdn.com/t/c/font_4382677_ylupndpdm9.ttf?t=1761029930210') format('truetype');
}
.iconfont{
    font-family:"iconfont" !important;
    font-size:16px;font-style:normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
header{
  background-color: var(--header-bg-color);
  padding:15px 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1;
}
header img{
    height: 32px;
}
header .uk-button-primary{
    height: 32px;
    line-height: 24px;
    padding: 0 15px;
    border-radius: 4px;
}
header .Mode{
    height: 32px;
    width: 32px;
    padding: 0;
    border-radius: 32px;
    background-color: var(--text-color);
    color: #FFF;
    transition: background-color 0.5s;
    line-height: 20px;
}
header img{
    float: left;
}
header nav {
    margin-left:120px;
    float: left;
}
header nav ul li{
    display: inline-block;
    padding: 0 26px;
}
header nav ul li a{
    line-height: 32px;
    font-size: 16px;
    color: #666;
    position: relative;
}
header nav ul li.uk-active a{
    color: #00ae6b;
}
header nav ul li.uk-active a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    top:25px;
    background: #00ae6b;
    border-radius: 10px;
}
.mt{
  padding:15px 20px;
  text-align: center;
  background-color: var(--header-bg-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.mt .mtBut{
  height: 32px;
  border: #ccc 1px solid;
  background-color: var(--header-bg-color);
  border-radius: 4px;
  width: 32px;
  cursor: pointer;
}
.menu {
    width: 220px;
    position: fixed;
    left: 0px;
    top: 82px;
    bottom: 20px;
    box-sizing: border-box;
}
.menu .ClaLi {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: auto;
}
.menu .ClaLi::-webkit-scrollbar-track-piece {
    background-color: var(--header-bg-color);
  }
.menu .ClaLi::-webkit-scrollbar-thumb {
    background-color: var(--left-color);
    border-radius: 4px;
  }
.menu .ClaLi::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
.ClaLi ul{
  padding:0 20px;
}
.ClaLi li a{
  padding: 9px 0 9px 15px;
  display: block;
  margin: 6px 0;
}
.ClaLi li i{
  margin-right: 5px;
}
.ClaLi li.uk-active{
  background-color: var(--header-bg-color);
  border-radius: 4px;
}
.ClaLi li.uk-active a{
  color: #00ae6b;
}
.RightLi{
  padding:20px 20px 0 250px;
  overflow: auto;
}
.RightLi::-webkit-scrollbar-track-piece {
    background-color: var(--header-bg-color);
  }
.RightLi::-webkit-scrollbar-thumb {
    background-color: var(--left-color);
    border-radius: 4px;
  }
.RightLi::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  /* .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  grid-template-rows: auto;
} */
.Card{
    background-color: var(--header-bg-color);
    box-shadow: 0px 14px 20px -10px rgba(0, 0, 0, 0.06);
    padding: 20px;
    position: relative;
    top: 0;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}
.Card img{
    width: 34px;
    height: 34px;
    border-radius: 34px;
}
.Card h5{
    padding-bottom: 3px;
    color: var(--text-color);
}
.Card:hover{
    background-color: var(--header-bg-color);
    box-shadow: 0px 18px 24px -15px rgba(0, 0, 0, 0.1);
    top: -2px;
}
.CardDow{
  width: 340px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.CardDow div{
  background-color: var(--header-bg-color);
  box-shadow: 0px 14px 20px -10px rgba(0, 0, 0, 0.06);
  padding: 50px 0;
  border-radius: 5px;
}
.CardDow div span{
  color: #00ae6b;
  font-weight: bold;
  padding: 0 5px;
}
@media only screen and (max-width: 900px) {
  header{
    padding:15px 20px;
  }
  header nav {
    margin-left:30px;
  }
  header nav ul li{
    padding: 0 15px;
  }
  .Card{
    padding: 15px;
  }
  /* .container {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 15px;
  grid-template-rows: auto;
} */
}
@media only screen and (max-width: 720px) {
  header nav {
    margin-left:20px;
  }
  .Card{
    padding: 10px;
  }
  /* .Banner{
    height: 120px;
} */
}
@media only screen and (max-width: 639px) {
  .RightLi{
  padding:20px;
  overflow: auto;
}
/* .container {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  grid-template-rows: auto;
} */
}