.chart-detail {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fafafa;
  position: relative;
  padding: 20px 0;
}
.chart-detail > h1 {
  font-family: Noto Sans SC-Bold;
  font-weight: bold;
  font-size: 24px;
  color: #162789;
  text-align: center;
  margin-bottom: 30px;
}
.chart-detail .hr {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin-bottom: 30px;
}
.chart-detail .introduce {
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chart-detail .introduce .item {
  font-family: Noto Sans SC-Regular;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
.chart-detail .introduce .btns {
  display: flex;
}
.chart-detail .introduce .btns .btn {
  width: 100px;
  height: 32px;
  background: #162789;
  border-radius: 4px 4px 4px 4px;
  font-family: Noto Sans SC-Regular;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  cursor: pointer;
  user-select: none;
}
.chart-detail .table-scroll {
  max-width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  padding-bottom: 10px;
}
.chart-detail .table-scroll table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.chart-detail .table-scroll table th,
.chart-detail .table-scroll table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  color: #666666;
  font-family: Noto Sans SC-Regular;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}
.chart-detail .table-scroll table th {
  background-color: #162789;
  color: white;
  font-family: Noto Sans SC-Medium;
  font-weight: 500;
  font-size: 14px;
}
.chart-detail .charts-container {
  margin-top: 20px;
}
.chart-detail .charts-container .chart-box {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 40px;
  padding: 20px 0;
}
.chart-detail .charts-container .chart-box .title {
  font-family: Noto Sans SC-Bold;
  font-weight: bold;
  font-size: 18px;
  color: #162789;
  text-align: center;
  margin-bottom: 20px;
}
.chart-detail .charts-container .pie-box {
  display: flex;
  justify-content: space-between;
  height: 253px;
}
.chart-detail .charts-container .pie-box .chart {
  flex: 1;
  height: 253px;
}
.chart-detail .pagination {
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chart-detail .pagination .btn {
  width: 100px;
  height: 32px;
  background: #162789;
  border-radius: 4px 4px 4px 4px;
  font-family: Noto Sans SC-Regular;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}
.chart-detail .pagination .count {
  font-family: Noto Sans SC-Regular;
  font-size: 14px;
  color: #000;
}
.chart-detail .pagination .disabled {
  opacity: 0.67;
}
.chart-detail .pagination .page-btn {
  padding: 0 10px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: Roboto, Roboto;
}
.chart-detail .pagination .page-btn.current {
  background: #162789;
  color: #fff;
  cursor: default;
}
.chart-detail .pagination .page-btn:disabled {
  background: #f5f5f6;
  color: #ccc;
  cursor: not-allowed;
}
.chart-detail .pagination select {
  height: 32px;
  padding: 0 10px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d9d9d9;
  max-width: 100px;
}
.chart-detail .pagination input {
  width: 50px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px 2px 2px 2px;
  border: 1px solid #d9d9d9;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .chart-detail {
    padding: 10px;
  }
  .chart-detail .introduce {
    flex-direction: column;
  }
  .chart-detail .introduce .item {
    margin-bottom: 20px;
  }
  .chart-detail .chart-box .pie-box {
    flex-direction: column;
    height: 400px;
  }
  .chart-detail .pagination .btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  .layui-laydate {
    width: 272px;
    display: flex;
    flex-direction: column;
  }
}
