/* 举报 */
.report-container {
  margin-top: 96px;
}
.report-container .report-box {
  /* 举报输入框 */
  margin-bottom:30px;
  /* 表格容器 */
}
.report-container .report-box .title {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}
.report-container .report-box .notice {
  display: flex;
  padding: 10px 16px;
  margin-bottom: 24px;
  background: #fff6e7;
  border: 1px solid #f4daae;
  border-radius: 6px;
  align-items: center;
}
.report-container .report-box .notice span {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #b8997b;
  text-align: left;
}
.report-container .report-box .report-content {
  display: flex;
  height: 100%;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
}
.report-container .report-box .report-content .input-box {
  display: flex;
  width: 100%;
  padding: 70px 0;
  border-bottom: 1px dashed #dad7d7;
  align-items: center;
  justify-content: center;
}
.report-container .report-box .report-content .input-box .report-input {
  width: 530px;
  height: 50px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #ced3e5;
  border-radius: 10px 0 0 10px;
}
.report-container .report-box .report-content .input-box input[type="text"]:focus {
  border: 1px solid #ced3e5;
  outline: 0;
  transition: border-color 0.5s ease-in-out;
}
.report-container .report-box .report-content .input-box .report-button {
  width: 154px;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #fca62d;
  border: none;
  border-radius: 0 10px 10px 0;
}
.report-container .report-box .report-content .report-code {
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.report-container .report-box .report-content .report-code img {
  margin-right: 16px;
}
.report-container .report-box .report-content .report-code span {
  font-size: 18px;
  font-weight: 400;
  color: #e73838;
}
.report-container .report-box .report-content .report-code .report-code-text {
  color: #333;
}
.report-container .report-box .table-container {
  margin: 30px 0 40px;
  overflow-x: auto;
  background-color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  /* 表格样式 */
}
.report-container .report-box .table-container .game-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  /* 表头样式 */
}
.report-container .report-box .table-container .game-table thead {
  background-color: #ffefd8;
}
.report-container .report-box .table-container .game-table thead th {
  padding: 12.75px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #783A1E;
  text-align: center;
  text-transform: uppercase;
}
.report-container .report-box .table-container .game-table tbody {
  /* 悬停效果 */
  /* 斑马线模式 */
  /* 表格内容样式 */
}
.report-container .report-box .table-container .game-table tbody tr {
  transition: background-color 0.2s ease;
}
.report-container .report-box .table-container .game-table tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.05);
}
.report-container .report-box .table-container .game-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
.report-container .report-box .table-container .game-table tbody td {
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  text-align: center;
}
.report-container .report-box .table-container .game-table tbody td .game-name {
  font-weight: 500;
  color: #111827;
}
/*# sourceMappingURL=report.css.map */