[v-cloak] {
  display: none;
}

/* header */
.header {
  box-sizing: border-box;
  width: 100%;
	height: 120px;
  font-size: 14px;
	position: sticky;
	top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
	z-index: 100;
	transition: 0.4s all;
  color: #000;
  padding: 36px 16px;
  background-color: #FFF;
  transition: all 0.3s ease;
}
.header-scrolled {
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.header .header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 1200px;
}
.header .header_left {
  display: flex;
  align-items: center;
}
.header .header_logo .logo {
  width: 160px;
}
.header .header_logo .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header .header_logo .logo a img {
  width: 100%;
  height: 100%;
}
.header_menu_wrap {
  margin-left: 30px;
}
.header_menu_wrap .close {
  width: 36px;
  height: 36px;
  background-image: url('../img/header/close.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: fixed;
  top: 10px;
  right: 220px;
  z-index: 100;
  cursor: pointer;
  display: none;
}
.header .header_menu ul {
	text-align: center;
}
.header .header_menu ul li {
	display: inline-block;
  padding: 0 12px;
}
.header .header_menu ul li a {
	display: block;
	padding: 4px;
  /* font-weight: 600; */
	/* opacity: 0.7; */
  transition: all .6s ease;
  border-bottom: 2px solid transparent;
}
.header .header_menu ul li a:hover, .header .header_menu ul li a.active {
  color: #1A63DE;
  border-bottom: 2px solid #1A63DE;
	opacity: 1;
}

/* header_right */
.header .header_right {
  display: flex;
  align-items: center;
}
.header .header_right .icon {
  cursor: pointer;
  margin-right: 20px;
}
.header .header_right .icon img{
  width: 24px;
  height: 24px;
}
.header .mobileMenuBtn {
	display: none;
	transition: 0.4s all;
}
.header .mobileMenuBtn.active {
  display: none;
}

/* main */
.main {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 0 0 0;
  min-height: calc(100vh - 557px);
  background-color: #FBFBFB;
}

.section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.section .content_text {
  font-size: 15px;
  line-height: 1.5;
}

.btn_wrap {
  width: fit-content;
  height: 48px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 18px;
  background-color: #1A63DE;
  color: #FFF;
  cursor: pointer;
  transition: all 0.6s ease;
}
.btn_wrap:hover {
  background-color: #1751b2;
}

/* footer */
.footer {
  box-sizing: border-box;
  width: 100%;
  font-size: .14rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #E8E8E8;
}
.footer .f_section {
  box-sizing: border-box;
  width: 100%;
  max-width: 12rem;
  padding: .84rem .2rem .8rem .2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .f_section .f_section_title {
  display: flex;
}
.footer .f_section .f_section_title .title img {
  width: 2.44rem;
}
.footer .f_section .f_section_title .sub_title {
  font-size: .2rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: .41rem;
  line-height: 1;
}
.footer .f_section .f_section_title .qrcode {
  flex-shrink: 0;
  width: fit-content;
  margin: 0 1.2rem 0 .64rem;
  text-align: center;
}
.footer .f_section .f_section_title .qrcode img {
  width: .82rem;
  height: .82rem;
}
.footer .f_section .f_section_title .qrcode .text {
  margin-top: .04rem;
  line-height: 1.2;
  font-size: .12rem;
  color: rgba(0, 0, 0, 0.6);
}

.footer .f_section .f_section_media {
  padding-left: 1.25rem;
  border-left: .02rem solid #707070;
}
.footer .f_section .f_section_media .f_section_item .title {
  font-size: .3rem;
  color: #000;
  font-weight: 600;
  margin-bottom: .6rem;
  line-height: 1;
}
.footer .f_section .f_section_media .media_item {
  position: relative;
  transition: all 0.6s ease;
  line-height: 1;
  font-size: .2rem;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.6);
}
.footer .f_section .f_section_media .link:hover {
  color: #1A63DE;
}
.footer .f_section .f_section_media .media_item:not(:last-child) {
  margin-right: 1.36rem;
}
.footer .f_section .f_section_media .not_allowed {
  /* cursor: not-allowed; */
  cursor: default;
}
.footer .f_section .f_section_media .media_item:hover::before {
  opacity: 1;
  visibility: visible;
}
.footer .f_section .f_section_media .media_item::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 1.5rem;
  height: 1.5rem;
  border: .015rem solid #E6E6E6;
  border-radius: .12rem;
  background-color: #FFF;
  background-size: 90% 90%;
  background-position:center;
  background-repeat: no-repeat;
  position: absolute;
  top: -1.6rem;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-in-out;
}
/* 小红书 */
.footer .f_section .xiaohongshu::before {
  background-image: url('../img/footer/xiaohongshu.png');
}
/* 视频号 */
.footer .f_section .channels::before {
  background-image: url('../img/footer/channels.png');
}
/* 抖音 */
.footer .f_section .douyin::before {
  background-image: url('../img/footer/douyin.png');
  background-size: 80% 80%;
}
.footer .copyright {
  width: 100%;
  height: .88rem;
  line-height: .88rem;
  text-align: center;
  background-color: #0E1B4D;
  color: #E8E8E8;
  font-size: .15rem;
}

/* 咨询 */
.consult {
  box-sizing: border-box;
  width: 110px;
  height: 45px;
  background-color: #1a63de;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 500;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 50px;
  bottom: 180px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
}
.consult::before {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 112px;
  height: 112px;
  border: 1.5px solid #E6E6E6;
  border-radius: 6px;
  background-color: #FFF;
  background-image: url('https://creator.inibiru.com/sup/qr_code/shunsi.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -124px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-in-out;
}
.consult::after {
  display: block;
  content: '';
  width: 11px;
  height: 8px;
  background-color: #1a63de;
  border-radius: 4px;
  position: absolute;
  right: 0;
  bottom: -14px;
}
.consult:hover {
  background-color: #1751b2;
}
.consult:hover::before {
  opacity: 1;
  visibility: visible;
}
.consult .message_icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}