:root {
  --theme-color: #000;
  --theme-color-dark: #252525;
  --theme-color-blue: #192D8D;
  --theme-color-light-blue: #02A1E4;
  --theme-bg-color: #D0D5F3;
  --theme-bg-color-thin: rgba(208, 213, 243, .5);
  --theme-linear-gradient: linear-gradient(180.00deg, rgb(236, 235, 235), rgb(247, 247, 247) 100%), rgb(247, 247, 247);
  --custom-size: 1 / 1920 * 100vw;
  --header-h: 60px;
  --custom-size-20-40: max(20px, 40* var(--custom-size));
  --custom-size-10-20: max(10px, 20* var(--custom-size));
  --main-margin: max(20px, 200* var(--custom-size));
  --main-thin-margin: 20px;
  --section-padding-top: max(30px, 100* var(--custom-size));
  --section-padding-bottom: max(30px, 120* var(--custom-size));
  --font-size-16: max(14px, 16* var(--custom-size));
  --font-size-18: max(16px, 18* var(--custom-size));
  --font-size-20: max(18px, 20* var(--custom-size));
  --font-size-22: max(19px, 22* var(--custom-size));
  --font-size-24: max(20px, 24* var(--custom-size));
  --font-size-26: max(22px, 26* var(--custom-size));
  --font-size-28: max(24px, 28* var(--custom-size));
  --font-size-30: max(26px, 30* var(--custom-size));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* Safari */
  -moz-box-sizing: border-box;
  /* Firefox */
}

@font-face {
  font-family: 'SourceHanSansCN';
  src: url(../fonts/SourceHanSansCN-Regular.otf);
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SourceHanSerifCN';
  src: url(../fonts/SourceHanSerifCN-Bold.otf);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  color: var(--theme-color);
  letter-spacing: 1px;
  font-family: 'SourceHanSansCN';
}

img {
  display: block;
  font-size: 0px;
  max-width: 100%;
  position: relative;
}

video {
  max-width: 100%;
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style: none;
}

.clearfix:after {
  content: "";
  visibility: hidden;
  height: 0;
  display: block;
  clear: both;
  zoom: 1;
}

a {
  text-decoration: none;
  color: var(--theme-color);
  font-weight: 400;
}

a:hover {
  color: var(--theme-color-blue) !important;
}

p {
  line-height: 1.5;
}

/* p+p{
margin-top: clamp(5px, 10* var(--custom-size), 10px);
} */

/* body,
button,
input,
select,
textarea {
  font: 16px/1.5 tahoma, arial, \5b8b\4f53;
} */
input,
select,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  resize: none;
  border: 0;
}

::-webkit-input-placeholder {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
}

:-moz-placeholder {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
}

::-moz-placeholder {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
}

:-ms-input-placeholder {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
}

.flex {
  display: flex;
}

.flex-jcsb {
  display: flex;
  justify-content: space-between;
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-aic {
  display: flex;
  align-items: center;
}

.flex-jcc {
  display: flex;
  justify-content: center;
}

.flex-dir-col {
  display: flex;
  flex-direction: column;
}

.img-lay {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.icon-lay {
  --lay-icon-w: 60px;
  width: var(--lay-icon-w);
  height: var(--lay-icon-w);
  border-radius: 50%;
  background-color: var(--theme-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.banner-lay {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.content_id {
  display: none;
}

.main {
  margin: 0 var(--main-margin);
  height: 100%;
  position: relative;
  z-index: 10;
}

.main-l {
  margin-left: var(--main-margin);
}

.main-r {
  margin-right: var(--main-margin);
}

.main-thin {
  margin: 0 var(--main-thin-margin);
  position: relative;
}

.main-l-thin {
  margin-left: var(--main-thin-margin);
}

.main-r-thin {
  margin-right: var(--main-thin-margin);
}

svg path {
  transition: .3s;
}

.swiper {
  height: 100%;
}

.card-wrap {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  --column: 3;
  --gap: max(10px, 30* var(--custom-size));
  gap: var(--gap);
}

.card-wrap>.item {
  /* min-width: calc((100% - (var(--column) - 1) * var(--gap)) / var(--column)); */
  /* flex: 1; */
  width: calc((100% - (var(--column) - 1)* var(--gap)) / var(--column));
}

:not(html, body)::-webkit-scrollbar-button {
  display: none;
}

:not(html, body)::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
  background-color: #ddd;
}

:not(html, body)::-webkit-scrollbar-thumb {
  background-color: var(--theme-color-blue);
  border-radius: 5px;
}

body:not(.wfEditorMode) object {
  display: none;
}

.pic-txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.pic-txt-wrap .txt {
  padding: var(--custom-size-20-40);
}

.container {
  /* margin-top: max(30px, 130 * var(--custom-size)); */
  position: relative;
}

.container-thin {
  margin-top: max(30px, 70 * var(--custom-size));
  position: relative;
}

section {
  position: relative;
  overflow: hidden;
}