@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: 12px;
  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: 3px;
  height: 3px;
}
::-webkit-scrollbar-thumb {
  background: rgba(100, 160, 220, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-track {
  background: transparent;
}

/* 加载 */
.loading {
  position: fixed;
  left: 0;
  top: 0;
  font-size: 16px;
  z-index: 100000000;
  width: 100%;
  height: 100%;
  background: #03081e;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.loadbox {
  color: #5b9bd5;
  text-align: center;
}
.loadbox img {
  margin: 10px auto;
  display: block;
  width: 40px;
}

/* 浮动粒子动画层 */
.dashuju-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.dashuju-particles .p {
  position: absolute;
  border-radius: 50%;
  background: rgba(100, 180, 255, 0.3);
  -webkit-animation: particleFloat linear infinite;
  animation: particleFloat linear infinite;
}
.dashuju-particles .p:nth-child(1) {
  width: 3px;
  height: 3px;
  left: 10%;
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.dashuju-particles .p:nth-child(2) {
  width: 2px;
  height: 2px;
  left: 25%;
  -webkit-animation-duration: 22s;
  animation-duration: 22s;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.dashuju-particles .p:nth-child(3) {
  width: 4px;
  height: 4px;
  left: 40%;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.dashuju-particles .p:nth-child(4) {
  width: 2px;
  height: 2px;
  left: 55%;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.dashuju-particles .p:nth-child(5) {
  width: 3px;
  height: 3px;
  left: 70%;
  -webkit-animation-duration: 17s;
  animation-duration: 17s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.dashuju-particles .p:nth-child(6) {
  width: 2px;
  height: 2px;
  left: 85%;
  -webkit-animation-duration: 25s;
  animation-duration: 25s;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.dashuju-particles .p:nth-child(7) {
  width: 3px;
  height: 3px;
  left: 15%;
  -webkit-animation-duration: 19s;
  animation-duration: 19s;
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.dashuju-particles .p:nth-child(8) {
  width: 2px;
  height: 2px;
  left: 60%;
  -webkit-animation-duration: 21s;
  animation-duration: 21s;
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

@-webkit-keyframes particleFloat {
  0% {
    bottom: -5%;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    bottom: 105%;
    opacity: 0;
  }
}
@keyframes particleFloat {
  0% {
    bottom: -5%;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    bottom: 105%;
    opacity: 0;
  }
}

/* 头部 */
/* clamp(50px, 4vw, 75px) → 4vw 回退 60px */
.head {
  height: 60px;
  height: 4vw;
  background: url(../images/head_bg.png) no-repeat center center;
  background-size: 100% 100%;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 1;
}
.head h1 {
  color: #e8edf5;
  text-align: center;
  font-size: 20px;
  font-size: 1.4vw;
  line-height: 60px;
  line-height: 4vw;
  letter-spacing: 3px;
  font-weight: 500;
}
.head h1 img {
  height: 36px;
  height: 2.5vw;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
}
.weather {
  position: absolute;
  right: 1.5vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
/* gap:12px → margin 替代 */
.weather > * + * {
  margin-left: 12px;
}
.weather span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-size: 0.9vw;
}
.weather .currentTime {
  color: #7eb8f0;
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.1vw;
}

/* 主流布局 - 全屏铺满 */
/* clamp(50px, 4vw, 75px) → 4vw */
.mainbox {
  padding: 0vw 0.8vw 0.6vw;
  height: calc(100vh - 4vw);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
/* gap:0.6vw → margin 替代 */
.mainbox > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  -webkit-align-items: stretch;
  align-items: stretch;
  min-height: 0;
}
.mainbox > ul > li {
  margin-left: 0.6vw;
}
.mainbox > ul > li:first-child {
  margin-left: 0;
}
.mainbox > ul > li {
  width: 24%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 0;
}
/* gap:0.6vw → margin 替代 */
.mainbox > ul > li > * + * {
  margin-top: 0.6vw;
}
.mainbox > ul > li:nth-child(2) {
  width: 52%;
}

/* 容器面板 */
.boxall {
  border: 1px solid rgba(100, 160, 220, 0.12);
  padding: 0 0.9vw 0.6vw;
  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: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid rgba(100, 160, 220, 0.35);
  top: -1px;
}
.boxall:before {
  border-left: 2px solid rgba(100, 160, 220, 0.35);
  left: -1px;
}
.boxall:after {
  border-right: 2px solid rgba(100, 160, 220, 0.35);
  right: -1px;
}
.boxfoot {
  position: absolute;
  bottom: -1px;
  width: 100%;
  left: 0;
}
.boxfoot:before,
.boxfoot:after {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  border-bottom: 2px solid rgba(100, 160, 220, 0.35);
  bottom: 0;
}
.boxfoot:before {
  border-left: 2px solid rgba(100, 160, 220, 0.35);
  left: -1px;
}
.boxfoot:after {
  border-right: 2px solid rgba(100, 160, 220, 0.35);
  right: -1px;
}

/* 针对数据资产等内容较少的模块，取消均匀伸缩，收紧高度 */
.order-asset {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-bottom: 20px;
}

/* 内容发布占比（经过Top 5优化后不需要过多空间） */
.order-pie1 {
  -webkit-flex: 1.3;
  flex: 1.3;
  overflow: visible;
}

/* 压缩当月访问地区分布，给饼图腾出空间 */
.order-bar-chart {
  -webkit-flex: 0 0 20%;
  flex: 0 0 20%;
}

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

/* 中间列顶部数据 Bar */
.bar {
  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%
  );
  padding: 0.5vw 0.8vw;
  border: 1px solid rgba(100, 160, 220, 0.12);
  position: relative;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.bar-grid {
  display: -webkit-flex;
  display: flex;
}
.bar-item {
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0.3vw 0;
}
.bar-item + .bar-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(100, 160, 220, 0.2);
}
/* clamp(16px, min(1.3vw, 2.2vh), 24px) → 取较小值 1.3vw，固定回退 18px */
.bar-val {
  font-size: 18px;
  font-size: 1.3vw;
  color: #e8edf5;
  font-family: "Courier New", monospace;
  font-weight: bold;
  line-height: 1.2;
}
.color-red {
  color: #f56c6c !important;
  text-shadow: 0 0 10px rgba(245, 108, 108, 0.5);
}
.color-yellow {
  color: #e6a23c !important;
  text-shadow: 0 0 10px rgba(230, 162, 60, 0.5);
}
.color-blue {
  color: #409eff !important;
  text-shadow: 0 0 10px rgba(64, 158, 255, 0.5);
}
/* clamp(11px, min(0.65vw, 1.2vh), 13px) → 取较小值 0.65vw，固定回退 12px */
.bar-label {
  font-size: 12px;
  font-size: 0.65vw;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2vw;
  letter-spacing: 1px;
}

/* 中心地图区域 */
.map {
  position: relative;
  -webkit-flex: 3;
  flex: 3;
  z-index: 9;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 0;
}
.map4 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
.map1,
.map2,
.map3 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.map1 img {
  width: 32vw;
  -webkit-animation: myfirst2 15s infinite linear;
  animation: myfirst2 15s infinite linear;
  opacity: 0.5;
}
.map2 img {
  width: 28vw;
  opacity: 0.15;
  -webkit-animation: myfirst 10s infinite linear;
  animation: myfirst 10s infinite linear;
}
.map3 img {
  width: 26vw;
  opacity: 0.7;
}

/* Echarts 容器 */
.echarts-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  width: 100%;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  min-height: 0;
}
.echarts-row-column {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.sy {
  -webkit-flex: 1;
  flex: 1;
  height: 100%;
  min-height: 0;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.tit02 {
  text-align: center;
  margin: 0.5vw 0;
  position: relative;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.tit02 span {
  border: 1px solid rgba(100, 160, 220, 0.2);
  letter-spacing: 2px;
  padding: 2px 10px;
  background: rgba(20, 35, 65, 0.6);
  font-size: 14px;
  font-size: 0.9vw;
  color: rgba(255, 255, 255, 0.7);
}
.tit02:before,
.tit02:after {
  position: absolute;
  width: 20%;
  height: 1px;
  background: rgba(100, 160, 220, 0.15);
  content: "";
  top: 50%;
}
.tit02:after {
  right: 0;
}
.tit02:before {
  left: 0;
}

/* 实时访问记录 */
.wrap {
  -webkit-flex: 1;
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-top: 0.4vw;
  min-height: 0;
}
.wrap ul {
  position: absolute;
  width: 100%;
}
.wrap li {
  height: 32px;
  margin-bottom: 4px;
}
/* gap:6px → margin 替代 */
.wrap li p {
  border: 1px solid rgba(100, 160, 220, 0.08);
  background: rgba(10, 18, 40, 0.5);
  border-left: 2px solid rgba(100, 160, 220, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0.5vw;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.wrap li p > * + * {
  margin-left: 6px;
}
.vlog-time {
  color: rgba(100, 180, 255, 0.7);
  font-family: "Courier New", monospace;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-size: 13px;
  font-size: 0.75vw;
}
.vlog-city {
  background: rgba(100, 160, 220, 0.15);
  padding: 1px 6px;
  border-radius: 2px;
  color: #7eb8f0;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-size: 12px;
  font-size: 0.7vw;
}
.vlog-text {
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-size: 0.75vw;
}
.vlog-path {
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-size: 0.7vw;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}

/* 新增会员列表 */
.adduser {
  -webkit-flex: 1;
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-top: 0.4vw;
  min-height: 0;
}
.adduser ul {
  position: absolute;
  width: 100%;
}
.adduser li {
  height: 36px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid rgba(100, 160, 220, 0.06);
  padding: 0 5px;
}
/* gap:6px → margin 替代 */
.adduser-info {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  -webkit-flex: 1;
  flex: 1;
}
.adduser-info > * + * {
  margin-left: 6px;
}
.adduser-info img {
  width: 1.4vw;
  height: 1.4vw;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(100, 160, 220, 0.2);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.adduser-info em {
  font-style: normal;
  font-size: 14px;
  font-size: 0.8vw;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adduser-time {
  font-size: 12px;
  font-size: 0.7vw;
  color: rgba(100, 180, 255, 0.5);
  font-family: "Courier New", monospace;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding-left: 8px;
}

/* 生意参谋 */
.sycm {
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
  min-height: 0;
}
.sycm-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
  min-height: 0;
}
.sycm-item {
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 4px;
  min-width: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.sycm-item + .sycm-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(100, 160, 220, 0.12);
}
.sycm-main h2 {
  color: #7eb8f0;
}
/* clamp(16px, min(1.3vw, 2.2vh), 24px) → 1.3vw，回退 18px */
.sycm-item h2 {
  font-size: 16px;
  font-size: 1.1vw;
  color: #e8edf5;
  font-family: "Courier New", monospace;
  font-weight: bold;
  margin-bottom: 2px;
  white-space: nowrap;
  letter-spacing: -0.5px;
  overflow: hidden;
  text-overflow: clip;
  line-height: 1.1;
}
/* clamp(11px, min(0.65vw, 1.2vh), 13px) → 0.65vw，回退 12px */
.sycm-item span {
  display: block;
  font-size: 12px;
  font-size: 0.65vw;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.sycm-divider {
  height: 1px;
  background: -webkit-linear-gradient(
    left,
    transparent,
    rgba(100, 160, 220, 0.15),
    transparent
  );
  background: linear-gradient(
    90deg,
    transparent,
    rgba(100, 160, 220, 0.15),
    transparent
  );
  margin: 0 10%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

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

@-webkit-keyframes myfirst2 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes myfirst2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-webkit-keyframes myfirst {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-359deg);
  }
}
@keyframes myfirst {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}

#echarts4 {
  -webkit-flex: 1;
  flex: 1;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .order-bar {
    order: 0 !important;
  }
}
/* 平板 & 窄屏 */
@media screen and (max-width: 992px) {
  #echarts4 {
    min-height: 400px;
  }
  .mainbox > ul > li:nth-child(2) {
    width: 100%;
  }
  body {
    overflow-y: auto;
  }
  .head {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
    padding: 12px 15px;
  }
  .head h1 {
    font-size: 24px;
    font-size: 4vw;
    letter-spacing: 0;
    line-height: 1.4;
    -webkit-flex: none;
    flex: none;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    white-space: normal;
    overflow: visible;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .head h1 img {
    height: 34px;
    height: 5vw;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin-right: 8px;
  }
  .weather {
    position: static;
    -webkit-transform: none;
    transform: none;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding-top: 0;
    width: auto;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .weather span {
    font-size: 16px;
    font-size: 2.5vw;
    margin-right: 4px;
  }
  .weather .currentTime {
    font-size: 18px;
    font-size: 3vw;
  }

  .mainbox {
    height: auto;
    min-height: calc(100vh - 70px);
    padding: 10px;
    overflow: hidden;
  }
  /* display:contents → 展平替代方案：width:100% + flex-direction:column */
  .mainbox > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .mainbox > ul > li {
    margin-left: 0;
  }
  .mainbox > ul > li + li {
    margin-top: 0;
  }
  .mainbox > ul > li > * + * {
    margin-top: 0;
  }
  /* gap:15px → margin 替代 */
  .mainbox > ul > * + * {
    /* margin-top: 15px; */
  }
  .mainbox > ul > li {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .mainbox > ul > li > * + * {
    /* margin-top: 15px; */
  }

  /* ======== 移动端按业务核心优先级全盘重塑 ======== */
  .order-sycm {
    -webkit-order: 1;
    order: 1;
    min-height: auto;
    padding-bottom: 20px;
  }
  .order-asset {
    -webkit-order: 2;
    order: 2;
    min-height: auto;
    padding-bottom: 20px;
  }
  .order-bar {
    -webkit-order: 3;
    order: 3;
  }
  .order-map {
    -webkit-order: 10;
    order: 10;
    margin: 20px 0;
  }
  .order-pie2 {
    -webkit-order: 5;
    order: 5;
    min-height: 260px;
  }
  .order-pie1 {
    -webkit-order: 6;
    order: 6;
    -webkit-flex: 1.6;
    flex: 1.6;
    min-height: 450px;
  }
  .order-bar-chart {
    -webkit-order: 7;
    order: 7;
  }
  .order-cloud {
    -webkit-order: 8;
    order: 8;
  }
  .order-adduser {
    -webkit-order: 9;
    order: 9;
  }
  .order-visitlogs {
    -webkit-order: 11;
    order: 11;
  }

  .bar {
    padding: 10px 6px;
  }
  .bar-grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .bar-item {
    -webkit-flex: 1;
    flex: 1;
    padding: 12px 6px;
  }
  .bar-item::before {
    display: block !important;
  }
  .bar-item::after {
    display: none;
  }
  .bar-val {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .bar-label {
    font-size: 11px;
  }

  .alltitle {
    font-size: 14px;
    line-height: 32px;
    padding-left: 8px;
    margin-bottom: 4px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  }
  .alltitle::before {
    height: 16px;
    top: 10px;
  }

  .boxall,
  .bar {
    padding: 10px 14px 12px;
    overflow: visible;
    background: rgba(12, 24, 52, 0.85) !important;
    border: 1px solid rgba(80, 160, 255, 0.4) !important;
    -webkit-box-shadow:
      0 5px 15px rgba(0, 0, 0, 0.5),
      inset 0 0 20px rgba(0, 80, 200, 0.2) !important;
    box-shadow:
      0 5px 15px rgba(0, 0, 0, 0.5),
      inset 0 0 20px rgba(0, 80, 200, 0.2) !important;
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
  }

  .boxall:before,
  .boxall:after,
  .boxfoot:before,
  .boxfoot:after {
    border-color: rgba(80, 160, 255, 0.6);
    border-width: 3px;
    border-radius: 2px;
  }
  .sycm-row {
    padding: 10px 0;
  }
  .map {
    min-height: 150vw;
  }
  .map1 img {
    width: 90vw;
  }
  .map2 img {
    width: 78vw;
  }
  .map3 img {
    width: 70vw;
  }

  .sycm-item h2 {
    font-size: 14px;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
  }
  .sycm-item span {
    font-size: 10px;
  }
  .sy {
    min-height: 240px;
  }
  .sy::after {
    font-size: 20px;
  }
  .wrap {
    min-height: 300px;
  }
  .wrap li {
    height: 32px;
    font-size: 12px;
  }
  /* gap:8px → margin 替代 */
  .wrap li p {
    padding: 0 14px;
  }
  .wrap li p > * + * {
    margin-left: 8px;
  }
  .vlog-time {
    font-size: 12px;
  }
  .vlog-city {
    font-size: 12px;
  }
  .vlog-text {
    font-size: 12px;
  }
  .vlog-path {
    font-size: 12px;
  }
  .adduser {
    min-height: 350px;
  }
  .adduser li {
    height: 36px;
  }
  .adduser-info img {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
  }
  .adduser-info em {
    font-size: 11px;
  }
  .adduser-time {
    font-size: 10px;
  }
}

/* 手机竖屏 */
@media screen and (max-width: 576px) {
  .head {
    padding: 10px 12px;
  }
  .head h1 {
    font-size: 20px;
    font-size: 4vw;
  }
  .head h1 img {
    height: 30px;
    height: 6vw;
  }
  /* gap:4px → margin 替代 */
  .weather > * + * {
    margin-left: 4px;
  }
  .weather span {
    font-size: 14px;
    font-size: 3.5vw;
    margin: 0;
  }
  .weather .currentTime {
    font-size: 16px;
    font-size: 3vw;
  }

  .mainbox > ul > li {
    width: 100%;
  }
  .boxall {
    min-height: 240px;
  }
  .order-pie1 {
    min-height: 450px;
  }
  .order-sycm,
  .order-asset {
    min-height: auto;
    padding-bottom: 20px;
  }
  .sycm-row {
    padding: 8px 0;
  }

  .alltitle {
    font-size: 18px;
    line-height: 28px;
    padding-left: 6px;
    margin-bottom: 3px;
  }
  .alltitle::before {
    height: 14px;
    top: 8px;
  }
  .sycm-item h2 {
    font-size: 26px;
  }
  .sycm-item span {
    font-size: 14px;
    padding: 0 4px;
  }
  .bar-val {
    font-size: 22px;
  }
  .bar-label {
    font-size: 15px;
  }
  .map {
    min-height: 80vw;
  }
  .map1 img {
    width: 70vw;
  }
  .map2 img {
    width: 60vw;
  }
  .map3 img {
    width: 54vw;
  }
  .sy {
    min-height: 200px;
  }
  .sy::after {
    display: none;
  }
  .wrap li {
    height: 28px;
  }
  /* gap:6px → margin 替代 */
  .wrap li p > * + * {
    margin-left: 6px;
  }
  .vlog-time {
    font-size: 11px;
  }
  .vlog-city {
    font-size: 11px;
  }
  .vlog-text {
    font-size: 11px;
  }
  .vlog-path {
    font-size: 11px;
  }
  .adduser li {
    height: 36px;
  }
  .adduser-info img {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }
  .adduser-info em {
    font-size: 12px;
  }
  .adduser-time {
    font-size: 11px;
  }
  .wrap {
    min-height: 240px;
  }
  .adduser {
    min-height: 350px;
  }
}
@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;
}

/* 底部反馈控制栏 CSS */
.report {
    height: auto;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a7a0a0;
    padding:0 5px;
    flex-wrap: wrap;
    order: 99999; /* 无论后端动态排版传来的 order 是多少，确保始终垫底 */
}
/* 移动端专属页面垫底 */
@media screen and (max-width: 992px) {
    .report.report-mobile {
        order: 99999 !important; /* 迫使它在移动端 flex 排版下沉降到所有图表的最底部 */
        margin-top: 15px;
        padding-bottom: 20px;
    }
}

@font-face {
    font-family: 'iconfont-copyright';
    src: url("https://static.ltdcdn.com/assets/share/css/copyRightIcons/iconfont.woff2?t=1763715647802&amp;_v=202604011727") format('woff2'),
    url("https://static.ltdcdn.com/assets/share/css/copyRightIcons/iconfont.woff?t=1763715647802&amp;_v=202604011727") format('woff'),
    url("https://static.ltdcdn.com/assets/share/css/copyRightIcons/iconfont.ttf?t=1763715647802&amp;_v=202604011727") format('truetype');
}

.report .iconfont-copyright {
    font-family: "iconfont-copyright" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 1px;
}

.report .font-size-24 {
    font-size: 24px;
}

.report .icon-ltd-copyright-notify-iconfont-line:before {
    content: "\e611";
}

.report .icon-ltd-copyright-logo-iconfont-line-new:before {
    content: "\e607";
}

.report .icon-ltd-copyright-feedback-iconfont-line-new:before {
    content: "\e608";
}

.report .icon-ltd-copyright-chart-iconfont-line-new:before {
    content: "\e609";
}

.report .icon-a-ltd-copyright-logo-iconfont-line1:before {
    content: "\e605";
}

.report .icon-ltd-copyright-logo-line:before {
    content: "\e604";
}

.report .icon-ltd-copyright-iconfont-logo:before {
    content: "\e600";
}

.report .icon-ltd-copyright-logo-transparent:before {
    content: "\e603";
}

.report .icon-ltd-copyright-iconfont-feedback:before {
    content: "\e601";
}

.report .icon-ltd-copyright-iconfont-chart:before {
    content: "\e602";
}

.report > * {
    line-height: 100%;
}

.report a {
    margin: 0 4px;
    color: #a7a0a0;
}

.report a span {
    font-size: 12px;
    line-height: 1.3;
}

.report .flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 3px;
}
