@charset "utf-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
body {
  padding: 0;
  margin: 0;
  color: #c5d0e6;
  font-family: -apple-system, "Microsoft YaHei", sans-serif;
}
body {
  background: #03081e url(../images/bg.jpg) center top no-repeat;
  background-size: cover;
  color: #c5d0e6;
  font-size: 0.75rem;
  min-height: 100vh;
  overflow-x: hidden;
}
li {
  list-style-type: none;
}
i {
  margin: 0;
  padding: 0;
  text-indent: 0;
}
img {
  border: none;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: #5b9bd5;
}
a.active,
a:focus {
  outline: none !important;
  text-decoration: none;
}
ol,
ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

.clearfix:after,
.clearfix:before {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 0.1875rem;
  height: 0.1875rem;
}
::-webkit-scrollbar-thumb {
  background: rgba(100, 160, 220, 0.4);
  border-radius: 0.1875rem;
}
::-webkit-scrollbar-track {
  background: transparent;
}

/* 主流布局 - 全屏铺满 */
/* clamp(50px, 4rem, 75px) → 4rem */
.mainbox {
  padding: 0rem 0.8rem 0.6rem;
  height: calc(100vh - 4rem);
  position: relative;
  z-index: 1;
}
.mainbox-grid {
  display: grid;
  grid-template-columns: 24% 52% 24%;
  gap: 0.6rem;
  height: 100%;
  min-height: 0;
}
.mainbox-grid > .col {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 0;
}
/* gap:0.6rem → margin 替代 */
.mainbox-grid > .col > * + * {
  margin-top: 0.6rem;
}

/* 容器面板 */
.boxall {
  border: 0.0625rem solid rgba(100, 160, 220, 0.12);
  padding: 0 0.9rem 0.6rem;
  background: -webkit-linear-gradient(
    top,
    rgba(5, 12, 45, 0.7) 0%,
    rgba(8, 18, 50, 0.6) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(5, 12, 45, 0.7) 0%,
    rgba(8, 18, 50, 0.6) 100%
  );
  position: relative;
  z-index: 10;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
/* 四角装饰线 */
.boxall:before,
.boxall:after {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  border-top: 0.125rem solid rgba(100, 160, 220, 0.35);
  top: -0.0625rem;
}
.boxall:before {
  border-left: 0.125rem solid rgba(100, 160, 220, 0.35);
  left: -0.0625rem;
}
.boxall:after {
  border-right: 0.125rem solid rgba(100, 160, 220, 0.35);
  right: -0.0625rem;
}
.boxfoot {
  position: absolute;
  bottom: -0.0625rem;
  width: 100%;
  left: 0;
}
.boxfoot:before,
.boxfoot:after {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  border-bottom: 0.125rem solid rgba(100, 160, 220, 0.35);
  bottom: 0;
}
.boxfoot:before {
  border-left: 0.125rem solid rgba(100, 160, 220, 0.35);
  left: -0.0625rem;
}
.boxfoot:after {
  border-right: 0.125rem solid rgba(100, 160, 220, 0.35);
  right: -0.0625rem;
}

.alltitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 2.5rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-bottom: 0.0625rem solid rgba(100, 160, 220, 0.1);
  margin-bottom: 0.4rem;
  letter-spacing: 0.0625rem;
}

.multi_row_ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mobile-layout body {
  overflow-y: auto;
}
.mobile-layout .mainbox {
  height: auto;
  min-height: calc(100vh - 4.375rem);
  padding: 0.5rem 0.25rem;
  overflow: hidden;
}
.mobile-layout .mainbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.mobile-layout .mainbox-grid > .col {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.mobile-layout .mainbox-grid > .col > * + * {
  margin-top: 0;
}
.mobile-layout .mainbox-grid > .col + .col {
  margin-top: 0;
}
.mobile-layout .alltitle {
  font-size: 0.875rem;
  line-height: 2rem;
  padding-left: 0.5rem;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.4);
}
.mobile-layout .alltitle::before {
  height: 1rem;
  top: 0.625rem;
}
.mobile-layout .boxall,
.mobile-layout .bar {
  width: 100%;
  padding: 0.5rem 0.5rem 0.625rem;
  overflow: visible;
  background: rgba(12, 24, 52, 0.85) !important;
  border: 0.0625rem solid rgba(80, 160, 255, 0.4) !important;
  -webkit-box-shadow:
    0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.5),
    inset 0 0 1.25rem rgba(0, 80, 200, 0.2) !important;
  box-shadow:
    0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.5),
    inset 0 0 1.25rem rgba(0, 80, 200, 0.2) !important;
  border-radius: 0.25rem;
  margin-bottom: 0.875rem;
  position: relative;
  overflow: hidden;
}
.mobile-layout .boxall:before,
.mobile-layout .boxall:after,
.mobile-layout .boxfoot:before,
.mobile-layout .boxfoot:after {
  border-color: rgba(80, 160, 255, 0.6);
  border-width: 0.1875rem;
  border-radius: 0.125rem;
}

@font-face {
  font-family: "STSongti-Latin";
  src: local("STSongti-SC-Light");
  unicode-range: U+0041-005A, U+0061-007A;
}
* {
  font-family:
  "STSongti-Latin", "PingFang SC", "Microsoft YaHei", sans-serif !important;
}

.empty-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.empty-placeholder-icon {
  width: 3.5rem;
  height: 3.5rem;
}
.empty-placeholder-text {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
