html,
body {
  margin: 0;
  padding: 0;
}
#app {
  display: flex;
  overflow: hidden;
  height: 100vh;
}
.leRoot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 201px;
  background: #324256;
  color: #fff;
  height: 100vh;
}
.leRoot > div {
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rtRootItem {
  flex: 1;
  /* padding: 24px; */
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
}
.rtRoot {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f6f6f6;
  flex-wrap: wrap;
  justify-content: space-between;
  display: grid;
  grid: "main main main c1 c2" "main main main c3 c3" "c4 c4 c4 c5 c5";
  overflow-y: scroll;
  grid-gap: 32px 24px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 24px;
  padding: 0 24px 24px;
  box-sizing: border-box;
}
.grid1 {
  grid-area: main;
}
.grid2 {
  grid-area: c1;
}
.grid3 {
  grid-area: c2;
}
.grid4 {
  grid-area: c3;
}
.grid5 {
  grid-area: c4;
}
.grid6 {
  grid-area: c5;
}
.tableItem {
  background: #ffffff;
  border-radius: 8px 8px 8px 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.tableItem > .content {
  margin-top: 19px;
  display: flex;
  flex-direction: column;
}
.tableItem > .content > .content_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tableItem > .content > .content_title > div {
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tableItem > .content > .content_title > .l1 {
  width: 30px;
}
.tableItem > .content > .content_title > .l2 {
  width: 117px;
}
.tableItem > .content > .content_title > .l3 {
  width: 52px;
}
.tableItem > .content > .content_title > .l4 {
  width: 50px;
}
.tableItem > .content > .content_title > .l5 {
  width: 50px;
}
.tableItem > .content > .content_title > .l6 {
  width: 60px;
}
.tableItem > .content > .content_title > .l7 {
  width: 60px;
}
.tableItem > .content > .content_title > .l8 {
  width: 40px;
}
.tableItem > .content > .content_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.tableItem > .content > .content_content > div {
  font-size: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tableItem > .content > .content_content > div > .topLine {
  height: 10px;
  border-radius: 2px;
  background: #2987fe;
  position: absolute;
  left: 0;
  max-width: 100%;
}
.tableItem > .content > .content_content > div > .bottomLine {
  width: 100%;
  border-radius: 2px;
  height: 10px;
  background-color: #a8cdff;
}
.tableItem > .content > .content_content > .l1 {
  width: 30px;
}
.tableItem > .content > .content_content > .l2 {
  width: 117px;
}
.tableItem > .content > .content_content > .l3 {
  width: 52px;
}
.tableItem > .content > .content_content > .l4 {
  width: 50px;
}
.tableItem > .content > .content_content > .l5 {
  width: 50px;
}
.tableItem > .content > .content_content > .l6 {
  width: 60px;
}
.tableItem > .content > .content_content > .l7 {
  width: 60px;
}
.tableItem > .content > .content_content > .l8 {
  width: 40px;
}
.table1 {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
}
.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title > span {
  line-height: 20px;
  height: 20px;
  font-family: PingFang SC, PingFang SC;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.title > div {
  display: flex;
  align-items: center;
}
.title > div > span {
  line-height: 14px;
  height: 14px;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 10px;
  color: #c5c5c5;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.retention-table1 {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-spacing: 2px 1px;
}
.retention-table1 th,
td {
  padding: 12px;
  text-align: center;
  font-size: 14px;
}
.retention-table1 th {
  font-weight: 400;
  font-size: 14px;
}
.retention-table {
  width: 100%;
  border-collapse: separate;
  /* 确保边框是分开的 */
  border-spacing: 2px 1px;
  /* 水平间距10px，垂直间距20px */
  margin: 20px 0;
  font-family: Arial, sans-serif;
}
.retention-table th,
.retention-table td {
  padding: 10px;
  text-align: center;
}
.retention-table th {
  font-weight: 400;
}
.retention-rate {
  background-color: #e6f7ff;
}
.item {
  background-color: #3783f7;
  color: #fff;
}
.topstitle {
  display: flex;
  height: 50px;
  align-items: center;
  flex-direction: row-reverse;
  box-sizing: border-box;
  box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.08);
}
.topstitle > .date1 {
  display: flex;
  align-items: center;
  border: 1px solid #d7dae2;
  font-size: 14px;
  margin-right: 20px;
  height: 30px;
  padding: 0 12px;
  border-radius: 7px;
}
.topstitle > .date {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.topstitle > .head {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 50px;
  background: gainsboro;
}
.topstitle > .date {
  height: 40px;
}
.topstitle > .date > div {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  padding: 0 12px;
  box-sizing: border-box;
}
.topstitle > .date > .act {
  border: 1px solid transparent;
  background: #3783f7;
  color: #fff;
}
.topstitle > .date > .no-act {
  border: 1px solid #d7dae2;
  color: #555;
}
