body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
}

a {
	color: #429ffc;
	text-decoration: none;
}

a:hover {
	color: #73c5eb;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Jost", sans-serif;
}

.container-fluid {
	padding: 10px 0;
}

.container-row {
	padding: 20px 0;
}

.middle {
	width: 75%;
	margin: auto;
}
.align-items-center{
	justify-content: space-between;
    padding: 0;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #37517e;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #37517e;
	border-top-color: #fff;
	border-bottom-color: #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* .back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #429ffc;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
} */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 0px 0;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.5) !important;
	display: flex;
}

#header.header-scrolled,
#header.header-inner-pages {
	/* background: rgba(40, 58, 90, 0.9); */
	background-color: rgba(0, 0, 0, 0.5) !important;
}

#header .logo {
	font-size: 30px;
	margin: 0 !important;
	padding: 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

#header .logo a {
	color: #fff;
}
.loginBtn{
	color: #fff;
	padding: 3px 16px;
	border: 1px solid #fff;
	text-align: center;
	border-radius: 4px;
    cursor: pointer;
}
.loginBtn:hover{
	color: #429ffc;
	border-color: #429ffc;
}
/* #header .logo img {
  max-height: 40px;
} */
.hz_logo {
	width: 290px;
	height: auto;
}

.english {
	font-size: 10px;
	text-align: center;
	transform: scale(0.75);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
	width: 11%;
	height: 51px;
}

.navbar a,
.navbar a:focus {
	/* display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px; */
	/* padding:10px 12px; */
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.nav-link:focus,
.nav-link:hover {
	color: #fff;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	/* color: #429ffc; */
	border-bottom: 3px solid #429ffc;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	/* border: 2px solid #429ffc; */
	font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #31a9e1;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
	color: #0c3c53;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #429ffc;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}
.nav-link{
	padding: 5px 10px;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.hz_logo {
		width: 180px !important;
		height: auto;
	}

	.navbar ul {
		display: none;
	}

	.middle {
		width: 100%;
		margin: auto;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(40, 58, 90, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #429ffc;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
	color: #37517e;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #429ffc;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

.nav_active {
	border-bottom: 3px solid #429ffc;
	color: #fff;
}

/*--------------------------------------------------------------
# 轮播
--------------------------------------------------------------*/
.carouselImg{
	width: 100%; 
	/* height: auto; */
	min-height: 473px;
}
.container-v2 {
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.carousel-caption {
	position: absolute;
	right: 15%;
	top: 35%;
	left: 15%;
	/* padding-top: 1.25rem;
    padding-bottom: 1.25rem; */
	color: #fff;
	text-align: center;
}

.carousel-caption_title {
	font-family: system-ui;
	font-weight: 700;
	font-size: 68px;
	color: #E8F0FF;
	margin-bottom: 30px;
}

.img_cont1 {
	line-height: 20px;
	font-size: 20px;
	margin-bottom: 8px;
}

.img_cont2 {
	line-height: 24px;
	font-size: 16px;
}

.carousel-caption_title_2 {
	font-family: system-ui;
	font-weight: 700;
	font-size: 50px;
	color: #E8F0FF;
	margin-bottom: 30px;
}

.img_cont_1 {
	line-height: 20px;
	font-size: 35px;
	margin-bottom: 8px;
}

/*--------------------------------------------------------------
# 统计
--------------------------------------------------------------*/
.text_blue {
	font-weight: 700;
	color: #117DEA;
}

.img_cont_item {
	/* height: 90px; */
	font-size: 21px;
	text-align: center;
}

/*--------------------------------------------------------------
# 为什么选择鸿展
--------------------------------------------------------------*/
.reason_titles {
	position: relative;
	padding: 30px;
	margin-left: 160px;
}

.reason_title_1 {
	position: absolute;
	top: 26px;
	font-size: 50px;
	font-weight: bolder;
	left: 60px;
}

.reason_title_shadow {
	border-width: 0px;
	margin-top: 25px;
	display: flex;
	font-family: "微软雅黑 Bold", "微软雅黑", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 45px;
	color: rgba(51, 51, 51, 0.123);
}

.reason_cont_title {
	font-size: 18px;
	color: #333333;
	text-align: center;
	margin: 20px 0;
}

.reason_cont_dec {
	font-size: 14px;
	color: #a1a1a1;
	padding: 0px 23px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 0px;
	overflow: hidden;
	margin: 100px 0;
}

.section-bg {
	/* background-color: #f3f5fa; */
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #37517e;
}

.section-title h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #429ffc;
	bottom: 0;
	left: calc(50% - 20px);
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
/* .about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #429ffc;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #429ffc;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #429ffc;
}
.about .content .btn-learn-more:hover {
  background: #429ffc;
  color: #fff;
  text-decoration: none;
} */

/*--------------------------------------------------------------
# 企业介绍-关于鸿展
--------------------------------------------------------------*/
.about .content {
	/* padding: 60px 100px 0 100px; */
}

.about .content p {
	/* margin-left: 60px; */
	text-indent: 28px;
	line-height: 25px;
	margin-bottom: 25px;
	font-size: 15px;
}

.about-img {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	max-width: 80%;
	height: auto
}

.time_line {
	position: relative;
	top: 50px;
	margin-bottom: 30px;
}

.time_line_content {
	width: 98%;
	height: 213px;
	background: #e8f0ff;
	border-radius: 6px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-items: center;
	padding: 0px 40px 0 40px;
	font-size: 24px;
}

.time-horizontal {
	list-style-type: none;
	border-top: 1px solid #5781cb;
	width: 100%;
	padding: 0px;
	margin: 0px;
}

.time-horizontal li {
	float: left;
	position: relative;
	text-align: center;
	width: 20%;
	padding-top: 10px;
	font-size: 28px;
}

.time-horizontal li b:before {
	content: '';
	position: absolute;
	top: -7px;
	left: 47%;
	width: 12px;
	height: 12px;
	border: 1px solid #5781cb;
	border-radius: 8px;
	background: #ffffff;
}

.time-horizontal_num {
	font-size: 28px;
	position: absolute;
	top: -47px;
	left: 41%;
}

.time-horizontal_rigth {
	position: absolute;
	top: 13px;
	/* left: 36px; */
	font-size: 14px;
	width: 100%;
	text-align: center;
}

/* 纵向时间轴 */
.time_line_vertical {
	width: 80%;
	margin: auto;
}

.time_line_row {
	display: flex;
	min-height: 50px;
}

.timeLineVertical_left {
	font-size: 14px;
	width: 45px;
}

.timeLineVertical_right {
	border-left: 1px solid #5781cb;
	position: relative;
	padding: 0 10px;
	width: calc(100% - 45px);
}

.timeLineVertical_right>span {
	/* margin-left: 10px; */
	font-size: 13px;
}

.timeLineVertical_right b:before {
	content: '';
	position: absolute;
	top: 5%;
	left: -7px;
	width: 12px;
	height: 12px;
	border: 1px solid #5781cb;
	border-radius: 8px;
	background: #ffffff;
}

@media (max-width: 1024px) {
	.about .content {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 992px) {
	.about .img {
		min-height: 400px;
	}

	.about .content {
		padding-top: 30px;
	}

	.about .accordion-list {
		padding-bottom: 30px;
	}
}

@media (max-width: 575px) {
	.about .img {
		min-height: 200px;
	}
}
 @media screen and (min-width: 1200px) and (max-width: 1400px) {
	 .hz_logo {
	 	width: 160px !important;
	 	height: auto;
	 }
	 .nav-link{
		 padding: 5px;
	 }
 }
 @media (min-width: 1400px)
 .container{
     max-width: 75%;
 }

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills-img {
	transition: all 0.6s;
	cursor: pointer;
}

.skills-img img {
	border-radius: 50%;
}

.skills-img:hover {
	transform: rotate(360deg);
}

.skills-content {
	/* min-height: 250px; */
	background: #f3f3f3;
	display: inline-flex;
	align-items: center;
	text-indent: 20px;
	font-size: 18px;
	border-radius: 68px;
	padding: 0 30px;
}

.skills-img {
	max-width: 90%;
	height: auto;
	margin: auto;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
	padding: 50px 30px;
	transition: all ease-in-out 0.4s;
	background: #fff;
}

.services .icon-box .icon {
	margin-bottom: 10px;
}

.services .icon-box .icon i {
	color: #429ffc;
	font-size: 36px;
	transition: 0.3s;
}

.services .icon-box h4 {
	font-weight: 500;
	margin-bottom: 15px;
	font-size: 24px;
}

.services .icon-box h4 a {
	color: #37517e;
	transition: ease-in-out 0.3s;
}

.services .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.services .icon-box:hover {
	transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
	color: #429ffc;
}

/*--------------------------------------------------------------
# 仓库实景
--------------------------------------------------------------*/
.portfolio .member {
	position: relative;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	background: #fff;
	transition: 0.5s;
}

.img_box {
	display: inline-block;
	width: 100%;
	height: 300px;
	line-height: 300px;
	position: relative;
	top: 0;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0);
	transition: 0.2s;
	cursor: pointer;
}

.img_box:hover {
	top: -6px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1);
	transition: 0.3s;
}

.img_box>div {
	text-align: center;
	color: #fff;
	font-size: 34px;
}

.mb_50 {
	width: 46%;
	margin: 0 2%;
	margin-bottom: 50px !important;
}

.img_bg_item1 {
	/* background: url(../images/live_action_1.jpg) no-repeat center; */
	background: url(../images/live_action_1.png) no-repeat center;
}

.img_bg_item2 {
	background: url(../images/live_action_2.jpeg) no-repeat center;
}

.img_bg_item3 {
	background: url(../images/live_action_3.jpeg) no-repeat center;
}

.img_bg_item4 {
	background: url(../images/live_action_4.jpeg) no-repeat center;
}

/*--------------------------------------------------------------
售后服务 开始
--------------------------------------------------------------*/
.aftersale {
	position: relative;
	width: 77%;
	margin: auto;
	border: 1px solid #F2F2F2 !important;
	border-radius: 4px;
	top: 0;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0);
	transition: 0.2s;
	cursor: pointer;
}

.aftersale_img {
	/* height: 201px; */
}

.aftersale_desc {
	padding: 0px 10px;
	height: 150px;
	text-align: left;
	display: flex;
	align-items: center;
}

.aftersale:hover {
	transform: scale(1.03)
}

/* 售后服务 结束 */
/*--------------------------------------------------------------
客户反馈 开始
--------------------------------------------------------------*/
.feedback {
	margin: 70px 0;
}

.feedback-left {
	background-color: rgba(232, 240, 255, 1);
	padding: 25px 35px;
}

.feedback-left-title {
	margin-left: 20px !important;
	padding: 30px 0 0 30px;
}

.feedback_left_bottom {
	width: 88%;
	margin: auto;
	/* border: 1px solid; */
	position: relative;
	top: 30px;
	padding: 5% 0;
}

.feedback_left_desc {
	/* display: flex; */
	margin: 50px 0;
}

.feedback_left_block {
	width: 200px;
	float: left;
	margin: 26px 16px;
	position: relative;
	padding-left: 30px;
}

.feedback_left_num {
	font-weight: 700;
	font-style: normal;
	font-size: 35px;
	color: #4472C4;
	margin-bottom: 0;
}

.feedback_left_title {
	color: #868a91;
	font-size: 18px;
}

.contactBtn {
	padding: 8% 20%;
	border: 1px solid #1E98D7;
	color: #1E98D7;
	border-radius: 6px;
	cursor: pointer;
}

.contactBtn:hover {
	background: #1E98D7;
	color: #fff;
}

.feedback_left_bottom_title {
	font-size: 40px;
}

.feedback_left_bottom_row {
	width: 75%;
	margin: auto;
}

.feedback_left_bottom_num {
	padding: 0;
}

.out-box {
	width: 100%;
	height: 750px;
	overflow: hidden;
	padding: 20px 0;
}

.feedback_list .feedback_item {
	width: 65%;
	margin: 2% auto;
	background: #e8f0ff;
	padding: 20px 0px;
	border-radius: 6px;
}

.feedback_list .feedback_item .feedback_top {
	text-align: center;
	border-bottom: 1px solid #b4d9f5;
	padding-bottom: 15px;
}

.feedback_bottom {
	margin-top: 15px;
	padding: 0 14px;
	text-indent: 26px;
}

.feedback_split {
	padding: 1px;
	background: #b4d9f5;
	margin: 0 5px;
}

/* 客户反馈 结束 */
/* 支持平台开始 */
.contact_titles {
	position: relative;
	padding: 30px;
	display: flex;
	justify-content: center;
}

.platforms {
	width: 100%;
	/* height: 600px; */
	background: url(../images/support_bj.png) no-repeat;
	background-size: contain;
}

.support_titles {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.support_content {
	background-color: #fff;
	border: none;
	border-radius: 5px;
	-moz-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.34901960784313724);
	-webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.34901960784313724);
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.34901960784313724);
}

.support_content_platform {
	margin: 20px 0px;
	text-align: center;
}

.chidren {
	position: relative;
	top: 50%;
	transform: translateY(-55%);
}

/* 支持平台结束 */
/* 合作伙伴开始 */
.partner {
	width: 100%;
	/* height: 600px; */
	background: url(../images/partner_bj.png) no-repeat;
	background-size: contain;
}

/* 合作伙伴结束 */
/* 联系我们  页脚 */
#contactUs {
	background-color: rgba(48, 49, 62, 1);
	padding: 10px 15px;
	text-align: center;
	color: rgba(242, 242, 242, 0.65);
	font-size: 18px;
}

#contactUs p {
	text-align: left;
	margin: 10px 0;
}

.contactUs-row {
	display: flex;
	align-items: center;
}
.filing{
	text-align: center;
	margin-top: 10px;
}
.filing a{
	font-size: 14px;
	text-decoration: underline !important;
	color: rgba(242, 242, 242, 0.65);
}
.contactUs-mobile {
	text-align: left;
	padding: 6px 15px;
}

/* 联系我们  页脚 */
/* 浮动小标开始 */
.right_fix_box {
	width: 70px;
	height: 220px;
	position: fixed;
	right: 10px;
	top: 60%;
	font-size: 12px;
	background: transparent;
	z-index: 999;
}

.right_fix_item {
	position: relative;
	width: 64px;
	height: 64px;
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(18, 126, 234, 0.2);
	margin-top: 5px;
}

.right_fix_img {
	overflow: hidden;
	width: 64px;
	height: 64px;
	/* background-image: url(../../images/fuwu/ycfw06.png?v=3); */
	background-image: url(../images/ycfw06.png);
	background-repeat: no-repeat;
	cursor: pointer;
}

.r_tel_ps {
	background-position: -110px -225px;
}

.r_wechart_ps {
	background-position: -110px -294px;
}

.r_top_ps {
	background-position: -110px -366px;
}

.r_tel_text {
	display: none;
	position: absolute;
	top: 0;
	left: -150px;
	width: 140px;
	height: 64px;
	line-height: 64px;
	font-size: 16px;
	text-align: center;
	background: #FFFFFF;
	box-shadow: 0 0 10px 0 rgba(18, 126, 234, 0.3);
}

.r_wechat_code_box {
	display: none;
	position: absolute;
	top: 0;
	left: -203px;
	width: 193px;
	height: 193px;
	padding: 28px 15px;
	background: #FFFFFF;
	box-shadow: 0 0 10px 0 rgba(18, 126, 234, 0.3);
}

.r_wechat_code {
	width: 157px;
	height: 157px;
}

.r_wechat_code_box .r_wechart_text {
	font-size: 14px;
	text-align: center;
}

.right_fix_box_active {
	visibility: hidden;
}

/* 浮动小标结束 */