::-webkit-scrollbar {
  display: none;
  width: 0;
}

.float-right {
  float: right;
}
.text-right {
  text-align: right;
}
.font-bold {
  font-weight: 700;
}

/* flex */
.flx {
  display: flex;
}
.flx-start {
  display: flex;
  align-items: flex-start;
}
.flx-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flx-between-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flx-end-center {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flx-start-center {
  display: flex;
  align-items: center;
}
.flx-start-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.flx-column {
  display: flex !important;
  flex-direction: column;
}
.flx-row {
  display: flex;
  flex-direction: row;
}
.flx-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header {
  height: 80px;
}

.logo_img {
  width: 182px;
  height: 60px;
}

.geyun-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 26px;
  background: #1d2180;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  border: none;
}
.geyun-btn:hover {
  opacity: 0.8;
  cursor: pointer;
}

.home-img {
  width: 100%;
  object-fit: contain;
}

.home-module-header {
  height: fit-content;
}

.home-module-header img {
  width: 100%;
  height: auto;
  /* height: 700px; */
  /* object-fit: cover; */
}

.home-module-warp {
  /* padding: 0 20.5%; */
  
  width: 58%;
  margin: 0 auto;
  /* min-width: 1120px; */
  min-width: 1120px;
}

.module-title-warp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.module-title-warp .module-title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
}
.module-title-warp .module-title-en {
  font-size: 70px;
  font-weight: 900;
  color: rgba(51, 51, 51, 0.07);
}
.module-title-warp .module-title-desc {
  font-size: 32px;
  font-weight: 500;
  color: #1d2180;
  margin-top: 30px;
}

.home-module-warp .module-content-warp {
  margin-top: 30px;
}

.geyun-crumbs-warp {
  color: #999999;
  font-weight: 500;
  font-size: 24px;
  margin: 70px 0 30px;
}
.back-menu {
  margin-right: 15px;
}
.back-menu:hover {
  opacity: 0.6;
  cursor: pointer;
}
.active-menu {
  color: #333333;
  margin-left: 15px;
}

.server-code-img {
  width: 200px !important;
  height: 200px !important;
  margin: 0 auto;
}

.search-input-warp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 15px;
  padding: 8px 8px 8px 20px;
  width: 100%;
  border: 1px solid #b2b4e2;
}
.search-input {
  border: none !important;
  flex: 1;
  font-size: 18px;
  background-color: transparent;
}

.h-full {
  height: 100% !important;
}
.w-full {
  width: 100%;
}

.mt70 {
  margin-top: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.ml30 {
  margin-left: 30px;
}

.display-none {
  display: none;
}
