@import 'global.css';

.btn {
  background: var(--main-color);
  color: white;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

h1.title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.main {
  min-width: var(--min-width);
}

.container {
  width: var(--min-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}
.logo {
  height: 30px;
  width: 45px;
}

.content {
  padding: 60px 0;
}

.content.dark {
  background: #2a2d47;
}

.header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner {
  background: url('banner.png') center center no-repeat;
  background-size: auto 100%;
  height: 520px;
  background-color: f3f7ff;
}

.banner .text-box {
  /* width: 420px; */
  padding-top: 130px;
}

.banner .title {
  color: black;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1em;
}
.banner .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #999999;
  line-height: 25px;
  margin-top: 23px;
  margin-bottom: 57px;
}

.banner p {
  font-size: 16px;
  line-height: 2;
}

.dark h2,
.dark .sub-title {
  color: white;
}

h2,
.sub-title {
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 36px;
  line-height: 1;
}

h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 12px;
}

.sub-title {
  font-size: 14px;
}

.section1 .box {
  display: flex;
  padding-top: 80px;
  flex-wrap: wrap;
  align-content: space-between;
  gap: 80px 200px;
}
.box .item {
  display: inline-flex;
  height: 50px;
  width: 400px;
  align-items: center;
}
.box .item img {
  height: 48px;
  width: 48px;
  margin-right: 10px;
}

.box .item .txt > :first-child {
  font-size: 24px;
  font-weight: 500;
  color: #333333;
  line-height: 16px;
}
.box .item .txt > :last-child {
  margin-top: 12px;
  height: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  line-height: 16px;
}

.section1 .subTitle {
  height: 21px;
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  line-height: 19px;
  text-align: center;
}

.classify {
  display: flex;
  gap: 24px;
  justify-content: center;
  position: relative;
  bottom: 48px;
}
.classify .wrapper {
  width: 384px;
  height: 96px;
  background: linear-gradient(180deg, #f1f4f7 0%, #fefefe 100%);
  box-shadow: 4px 6px 13px 0px rgba(0, 0, 0, 0.09);
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: 2px solid #ffffff;
  padding: 20px;
  display: flex;
}
.classify .wrapper img {
  height: 48px;
  width: 48px;
  margin-right: 10px;
}
.classify .wrapper .txt > :first-child {
  height: 16px;
  font-size: 22px;
  color: #333333;
  line-height: 16px;
  /* -webkit-text-fill-color: transparent; */
}
.classify .wrapper .txt > :last-child {
  margin-top: 12px;
  height: 16px;
  font-size: 16px;
  color: #999999;
  line-height: 16px;
}
