/* 定义思源宋体 */
@font-face {
  font-family: 'Source Han Serif SC Regular';
  src: url('./fonts/SourceHanSerifSC-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Source Han Serif SC Bold';
  src: url('./fonts/SourceHanSerifSC-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
/* 定义思源黑体 */
@font-face {
  font-family: 'Source Han Sans SC Regular';
  src: url('./fonts/SourceHanSansSC-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Source Han Sans SC Bold';
  src: url('./fonts/SourceHanSansSC-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  width: 100%;
  height: 100%;
}
* {
  box-sizing: border-box;
}
#app {
  width: 100%;
  height: 100%;
  background-image: url('./imgs/banner.png');
  background-size: 100% 100%;
}
.app-header {
  font-family: 'Source Han Sans SC Bold';
  height: 98px;
  line-height: 98px;
  margin: 0 auto;
  color: #1C417F;
  font-size: 30px;
  padding-left: 30%;

}
.app-content {
  height: calc(100% - 98px);
  overflow: hidden;
}
.banner {
  width: 100%;
  height: 490px;
  /* background-image: url('./imgs/banner.png');
  background-size: 100% 100%; */
  position: relative;
}
img {
  max-width: 100%;
  object-fit: cover;
  border: none !important;
  vertical-align: middle;
}
.banner-l {
  position: absolute;
  width: 197px;
  height: 309px;
  left: 0;
  top: 96px;
}
.banner-r {
  position: absolute;
  width: 197px;
  height: 309px;
  right: 0;
  top: 96px;
}
.container {
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.app-form {
  font-family: 'Source Han Serif SC Regular';
  width: 562px;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #1768a9;
  background: linear-gradient(180deg, #edf7ff 0%, #fff 27.87%)
}
.form-title {
  font-size: 18px;
  color: rgb(23, 104, 169);
  opacity: 1;
  font-weight: 700;
  margin-bottom: 28px;
}
.result {
  text-align: center;
}
#imageCanvas {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0 auto;
}