:root {
  --mobile-menu: #f5542b;
  --menu: #8fb0f3d4;
  --main: #68a0be69;
  --body: #f8f9fa;
  --font: #333;
  --input: #ededed;
  --a: #fff;
  --logo: rgba(225, 34, 27, 0.7);

  --menu-hover: #fff;
  --footer: #fff;
  --mobile-banner: 320px;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1.6 !important;
  position: relative;
  min-height: 100vh;
  margin: 0;
  color: var(--font);
  background: var(--body);
  background-size: contain;
}
html {
  font-size: 16px;
}
a {
  line-height: 20px;
  text-decoration: none;
  color: var(--a);
}

a:hover,
a:active {
  text-decoration: none;
}

strong {
  font-weight: bolder;
}

.fx-r {
  display: flex;
  flex-direction: row;
}

.fx-h {
  display: flex;
  flex-direction: column;
}

.fx-ac {
  justify-content: center;
}

.fx-bc {
  align-items: center;
}

/* 定义全局滚动条样式 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* 滚动条 */
::-webkit-scrollbar-track {
  border-radius: 4px;
  background: #f1f1f1;
}

/* 滚动条常态 */
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #e3e3e3;
}

/* 滚动条鼠标经过 */
::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}

/* 隐藏滚动条 */
.hide-scrollbar {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

#backToTop.show,
#scrollToBottomBtn.show {
  opacity: 1;
}

/* 首页骨架屏 */
/* 骨架屏样式 */
.skeleton {
  background: #f0f0f0;
  background-image: linear-gradient(90deg, #f0f0f0 0px, #f8f8f8 40px, #f0f0f0 80px);
  background-size: 600px;
  animation: shine 1.6s infinite linear;
}

@keyframes shine {
  0% {
    background-position: -100px;
  }
  40%,
  100% {
    background-position: 200px;
  }
}

.skeleton-header {
  height: 30px;
  width: 100%;
  border-radius: 4px;
}

.skeleton-text {
  height: 16px;
  width: 100%;
  border-radius: 4px;
  margin-top: 8px;
}

.skeleton-card {
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.panel {
  border-left: 3px solid #227df9;
  padding-left: 10px;
}
@media (max-width: 768px) {
}
