body {
  background-color: var(--page-bg-color);
}
.ui-container {
  width: 100%;
  max-width: 1200px;
}
.ui-column-banner {
  position: relative;
  height: 320px;
  margin-bottom: 40px;
}
.ui-column-banner .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-size: 1440px 320px;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #0f0f0f;
}
.ui-column-banner .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.ui-column-banner .container {
  padding-top: 40px;
}
.ui-column-banner .columnName {
  text-align: center;
  font-weight: normal;
  font-size: 52px;
  color: #FFFFFF;
  line-height: 56px;
  margin-bottom: 20px;
}
.ui-column-banner .desc {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 20px;
}
.main-container {
  width: 100%;
}
.content-container {
  padding-top: 0;
}
.f-sec {
  background-color: transparent;
}
.columnContainer {
  display: flex;
  flex-direction: row;
  gap: 44px;
  overflow: hidden;
  box-sizing: border-box;
}
.columnContainer * {
  box-sizing: border-box;
}
.columnContainer .columnLeft {
  flex: 1 0 0;
}
.columnContainer .columnRight {
  flex: 0 0 295px;
}
@media (max-width: 800px) {
  .columnContainer {
    display: block;
  }
  .columnContainer .columnLeft {
    width: 100%;
  }
}
