.main {
  max-width: 1366px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.section {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .12);
  padding: 10px;
  width: calc(50% - 10px);
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.section:hover {
  box-shadow: 0px 0px 16px rgba(0, 0, 0, .12);
}

.section > .title {
  text-align: center;
  font-size: 24px;
  padding: 10px;
}

.box {
  display: flex;
}

.img-content {
  width: 200px;
  height: 200px;
  margin-right: 20px;
}

.img-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #ccc;
}

.detail {
  flex: 1;

  line-height: 32px;
  font-size: 16px;
}

.config .label,
.performance .label {
  margin-right: 10px;
  flex-shrink: 0;
  font-weight: bold;
}

.performance {
  margin-top: 10px;
}

.actions {
  margin-top: 20px;
}

.actions a {
  height: 46px;
  line-height: 46px;
  padding: 6px 24px;
  font-size: 18px;
  background-color: #df3033;
  color: #fff;
}

.dialog {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 2%;
}

.dialog .content {
  background-color: #fff;
  height: 70vh;
  width: 500px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
  display: flex;
  flex-direction: column;
}

.dialog .content .title {
  line-height: 40px;
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-end;
  padding: 0 20px;
}

.dialog .content .title i {
  cursor: pointer;
  padding: 8px;
}

.dialog .content .title i:hover {
  color: #df3033;
}

.dialog .content iframe {
  flex: auto;
}

@media screen and (max-width: 1024px) {
  .section {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .box {
    flex-direction: column;
    align-items: center;
  }
  .img-content {
    margin-right: 0px;
  }

  .dialog .content {
    width: 90vw;
  }

}