body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
mid-cer,
header,
hgroup,
menu,
nav,
section {
	margin: 0px;
	padding: 0px;
}

html {
	font-size: 100px;
}

body {
	overflow-x: hidden;
	font-family:"微软雅黑";
	font-size: 16px;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul,
li {
	list-style-type: none;
}

img {
	border-style: none;
	vertical-align: middle;
}

a {
	color: #333;
	transition: .5s;
}

a:link,
a:active,
a:visited,
a:hover {
	text-decoration: none;
}

button:focus {
	outline: none;
	border: 1px solid white;
}

input,
textarea {
	outline: none;
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 清除浮动 */
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	/*不用有内容也可以*/
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

@media (min-width:992px) {
	@keyframes fadeIn {
	  0% {
	    opacity: 0;
	  }
	
	  100% {
	    opacity: 1;
	  }
	}
	
	.fadeIn {
	  -webkit-animation-name: fadeIn;
	  animation-name: fadeIn;
	}
	@keyframes fadeInLeft {
	  0% {
	    opacity: 0;
	    -webkit-transform: translateX(-60px);
	    -ms-transform: translateX(-60px);
	    transform: translateX(-60px);
	  }
	
	  100% {
	    opacity: 1;
	    -webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	    transform: translateX(0);
	  }
	}
	
	.fadeInLeft {
	  -webkit-animation-name: fadeInLeft;
	  animation-name: fadeInLeft;
	}
	@keyframes fadeInRight {
	  0% {
	    opacity: 0;
	    -webkit-transform: translateX(60px);
	    -ms-transform: translateX(60px);
	    transform: translateX(60px);
	  }
	
	  100% {
	    opacity: 1;
	    -webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	    transform: translateX(0);
	  }
	}
	
	.fadeInRight {
	  -webkit-animation-name: fadeInRight;
	  animation-name: fadeInRight;
	}
	
	@keyframes fadeInDown {
	  0% {
	    opacity: 0;
	    -webkit-transform: translateY(-40px);
	    -ms-transform: translateY(-40px);
	    transform: translateY(-40px);
	  }
	
	  100% {
	    opacity: 1;
	    -webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	    transform: translateY(0);
	  }
	}
	
	.fadeInDown {
	  -webkit-animation-name: fadeInDown;
	  animation-name: fadeInDown;
	}
	
	@keyframes fadeInUp {
	  0% {
	    opacity: 0;
	    -webkit-transform: translateY(40px);
	    -ms-transform: translateY(40px);
	    transform: translateY(40px);
	  }
	
	  100% {
	    opacity: 1;
	    -webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	    transform: translateY(0);
	  }
	}
	
	.fadeInUp {
	  -webkit-animation-name: fadeInDown;
	  animation-name: fadeInUp;
	}
	
	@keyframes fadeInScale {
	  0% {
	    opacity: 0;
	    -webkit-transform:scale(1.1);
	    -ms-transform:scale(1.1);
	    transform:scale(1.1);
	  }
	
	  100% {
	    opacity: 1;
	    -webkit-transform:scale(1);
	    -ms-transform:scale(1);
	    transform:scale(1);
	  }
	}
	
	.fadeInScale {
	  -webkit-animation-name: fadeInScale;
	  animation-name: fadeInScale;
	}
	
	@keyframes fadeInDuijiao1 {
	 0% {
	    opacity: 0;
	    -webkit-transform: translate(-100px,-100px);
	    -ms-transform: translate(-100px,-100px);
	    transform: translate(-100px,-100px);
	  }
	
	  100% {
	    opacity: 1;
	    -webkit-transform: translate(0);
	    -ms-transform: translate(0);
	    transform: translate(0);
	  }
	}
	
	.fadeInDuijiao1 {
	  -webkit-animation-name: fadeInDuijiao1;
	  animation-name: fadeInDuijiao1;
	}
	@keyframes fadeInDuijiao2 {
	 0% {
	    opacity: 0;
	    -webkit-transform: translate(-100px,-100px);
	    -ms-transform: translate(-100px,-100px);
	    transform: translate(-100px,-100px);
	  }
	
	  100% {
	    opacity: 1;
	    -webkit-transform: translate(0);
	    -ms-transform: translate(0);
	    transform: translate(0);
	  }
	}
	
	.fadeInDuijiao2 {
	  -webkit-animation-name: fadeInDuijiao2;
	  animation-name: fadeInDuijiao2;
	}
	@keyframes fadeInDuijiao3 {
	 0% {
	    opacity: 0;
	    -webkit-transform: translate(100px,100px);
	    -ms-transform: translate(100px,100px);
	    transform: translate(100px,100px);
	  }
	
	  100% {
	    opacity: 1;
	    -webkit-transform: translate(0);
	    -ms-transform: translate(0);
	    transform: translate(0);
	  }
	}
	
	.fadeInDuijiao3 {
	  -webkit-animation-name: fadeInDuijiao3;
	  animation-name: fadeInDuijiao3;
	}
	
	.animated {
	  -webkit-animation-duration: 1s;
	  animation-duration: 1s;
	  -webkit-animation-fill-mode: both;
	  animation-fill-mode: both;
	}
}


/* 头部样式 */
.header-top {
	width: 100%;
	height: 0.6rem;
	background: #643B08;
}

.header-top a,
.header-top a+span {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 0.59rem;
	float: right;
}

.header-top a+span {
	margin: 0 0.18rem;
	line-height: 0.6rem;
	opacity: 1;
}

.header-top a i {
	font-size: 23px;
	margin-right: 0.05rem;
	opacity: 1;
	float: left;
}

.header-top a span {
	opacity: 1;
}

.header-top a img {
	margin-left: 0.4rem;
}

.header-top a:hover i,
.header-top .active i {
	opacity: 1;
}

.header-top a:hover span,
.header-top .active span {
	opacity: 1;
}

.header-bottom {
	background-color: #FFFFFF;
	height: 1.3rem;
	line-height: 1.3rem;
}

.header-logo {
	max-width: 5rem;
	float: left;
}

.header-logo img {
	max-width: 100%;
}

.header-nav {
	float: right;
}

.header-nav ul>li {
	float: left;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #333333;
	padding: 0 0.16rem;
	position: relative;
}

.header-nav ul>li:first-child {
	padding-left: 0;
}

.header-nav ul>li:last-child {
	padding-right: 0;
}

.header-nav ul>li>a {
	display: block;
}

.header-nav ul>li>a:hover,
.header-nav ul>li .active {
	color: #955D18;
}

.header-search {
	position: relative;
}

.header-search>i {
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	font-size: 24px;
	color: #643B08;
	padding: 0.08rem;
}
 
.header-search p {
	position: absolute;
	right: 0;
	bottom: -0.58rem;
	line-height: 0.48rem;
	display: none;
	z-index: 999;
}
 
.header-search p span input {
	width: 2.2rem;
	height: 0.48rem;
	background: #fff;
	border-radius: 4px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	padding-left: 0.1rem;
	padding-right: 0.54rem;
}
 
.header-search p span {
	position: relative;
}
  
.header-search p span i {
	position: absolute;
	right: 0.14rem;
	font-size: 24px;
	color: #643B08;
}

.header-search p span font {
	position: absolute;
	right: 0.46rem;
	width: 0.01rem;
	height: 0.16rem;
	background: #E6E6E6;
	top: 50%;
	transform: translateY(-50%);
}

.header-nav ul>li:hover ol {
	display: block;
}

.header-nav ul>li>ol {
	position: absolute;
	z-index: 999;
	top: 130px;
	left: -25px;
	text-align: center;
	width: 160px;
	background: #FFFFFF;
	box-shadow: 0px -5px 15px 0px #e0e0e0;
	padding: 15px 0;
	display: none;
}

.header-nav ul>li>ol::before {
    content: " ";
    position: absolute;
    top: -10px;
    left: 70px;
    border-bottom: 10px solid #FFFFFF;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.header-nav ul>li>ol>li {
    font-size: 16px;
    font-family: Microsoft YaHei;
    color: #333333;
    line-height: 1.6;
	font-weight: 400;
	padding: 8px 10px;
}

.header-nav ul>li>ol>li:hover {
	background-color: #643B08;
}

.header-nav ul>li>ol>li:hover a {
	color: #fff;
}

.header-top .header-wza {
	float: left;
}

.header-top .header-wza i {
	opacity: 1;
}

.header-mobile {
	display: none;
}

.footer-link {
	height: 1.1rem;
	padding-top: 0.3rem;
	background-color: #fff;
}

.link-box span {
	line-height: 0.5rem;
	font-size: 0.18rem;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}

.link-list {
	width: 5.84rem;
	height: 0.5rem;
	line-height: 0.5rem;
	background: #F5F7FA;
	float: right;
	margin: 0 0.1rem;
}

.link-list:nth-child(2) {
	margin-right: 0;
}

.link-list p {
	padding: 0 0.2rem;
}

.link-list p span,.friendlink a {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 0.24rem;
}

.friendlink a {
	display: block;
	height: 0.5rem;
	line-height: 0.5rem;
	padding: 0 0.2rem;
}

.link-list p i {
	font-size: 30px;
	color: #999999;
	float: right;
	transform: rotate(0deg);
	transition: transform 0.5s;
}

.friendlink {
	width: 100%;
	display: none;
	max-height: 2.5rem;
	margin-top: -1px;
	overflow: auto;
	background: #F5F7FA;
	z-index: 55;
	position: relative;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.link-list p .active {
	transform: rotate(-180deg);
	transition: transform 0.5s;
}

.footer-bottom {
	/* background-color: #083A72; */
	background-color:#6B8199;
}

.bottom-nav {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	height: 79px;
	line-height: 79px;
}

.bottom-nav ul>li {
	float: left;
	margin: 0 18px;
}

.bottom-nav ul>li:first-child {
	margin-left: 0;
}

.bottom-nav ul>li:last-child {
	margin-right: 0;
}

.bottom-nav ul>li>a {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
}

.box-left {
	float: left;
	padding: 26px 0 51px 0;
}

.box-left span {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
}

.box-psychology i {
	font-size: 36px;
	font-family: DIN;
	font-weight: 500;
	font-style: italic;
	color: #FFFFFF;
}

.box-psychology {
	margin-bottom: 26px;
}

.box-address p {
	line-height: 30px;
}

.box-address p:nth-child(1) span:last-child {
	margin-left: 40px;
}

.box-address p:nth-child(2) span:last-child {
	margin-left: 27px;
}

.bottom-box {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-box .row {
	position: relative;
}

.box-right {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.box-right>img {
	margin: 0 0.13rem;
	float: left;
	margin-top: -0.3rem;
}

.box-right span {
	display: block;
	margin: 0 0.13rem;
	float: left;
}

.box-right span font {
	display: block;
	text-align: center;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 0.3rem;
}

.box-right-slhwza {
	display: inline-block;
	background-color: #fff;
	margin-right: 10px;
}

.box-right-slhwza img {
	width: 100px;
}

.bottom-filings {
	height: 0.64rem;
	line-height: 0.64rem;
}

.bottom-filings span {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
}

.bottom-filings span img {
	margin-right: 0.1rem;
}

.float-right {
	width: 0.8rem;
	position: fixed;
	right: 0.1rem;
	top: 280px;
	box-shadow: 0px 0px 0.1rem #cccccc;
	z-index: 9999;
}

.float-right a {
	display: block;
	text-align: center;
	width: 0.8rem;
	height: 0.8rem;
	border-bottom: 1px solid #D8D8D8;
	padding-top: 0.15rem;
	text-decoration: none;
	color: #000000;
	position: relative;
	background-color: #FFFFFF;
	cursor: pointer;
}

.float-right a:hover {
	text-decoration: none;
	background-color: #083A72;
}

.float-right a:hover>p {
	color: #ffffff;
}

.float-right a p {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	text-align: center;
}

.float-right a i {
	font-size: 24px;
	color: #666666;
}

.float-right a img {
	margin-bottom: 0.11rem;
}

.float-right a:hover i {
	color: #fff;
}

.float-slh {
	display: none;
	position: fixed;
    right: 0;
    top: 50%;
    z-index: 9999;
    width: 60px;
}

.float-slh a {
	display: block;
}

.float-slh a img {
	width: 100%;
}

#weixinerweima:hover #weixin {
	display: block;
}

#xinlirexian:hover #rexian {
	display: block;
}

#lianxiwomen:hover #float-lxwm {
	display: block;
}

#weixin {
	position: absolute;
	right: 1rem;
    top: 0px;
    background-color: #ffffff;
    width: 0.95rem;
    height: 0.95rem;
    box-shadow: 0px 0px 0.1rem #cccccc;
	display: none;
}

#rexian {
	position: absolute;
	right: 0.9rem;
    top: 0px;
	display: none;
}

#float-lxwm {
	position: absolute;
    right: 0.9rem;
    top: 0px;
    display: none;
    background-color: #fff;
    width: 345px;
    border-radius: 5px;
	padding: 20px;
}

.float-lxwm-item {
	margin-bottom: 10px;
}

.float-lxwm-item:last-child {
	margin-bottom: 0;
}

.float-right a .float-lxwm-item h3 {
	font-size: 16px;
    text-align: left;
    font-weight: bold;
	margin-bottom: 10px;
}

.float-right a .float-lxwm-item p {
    text-align: left;
	margin: 5px 0;
}

.position {
	display: block;
}

.position .row {
	line-height: 3;
	font-size: 18px;
	color: #444444;
}

.bannerImg img {
	width: 100%;
}

@media (max-width: 1280px) {
	.header-logo {
		max-width: 2rem;
	}
	
	.link-list {
		width: 44%;
	}
}

@media (max-width: 992px) {
	.header-top a, .header-top a+span {
		font-size: 16px;
	}
	
	.header-top a i {
		font-size: 20px;
	}
	
	.header-logo {
		max-width: 20%;
	}
	
	.header-nav {
		max-width: 80%;
	}
	
	.header-nav ul>li {
		padding: 0 0.1rem;
		font-size: 16px;
	}
	
	.link-box span {
		font-size: 16px;
	}
	
	.link-list {
		width: 42%;
	}
	
	.footer-link {
		height: 0.8rem;
		padding-top: 0.15rem;
	}
	
	.bottom-nav {
		height: 0.60rem;
		line-height: 0.6rem;
	}
	
	.bottom-nav ul>li>a {
		font-size: 16px;
	}
	
	.float-right {
		display: none;
	}

	.box-right span {
		margin: 0 0.08rem;
	}
}

@media (max-width: 768px) {
	.header-top,
	.header-bottom,
	.footer-link,
	.bottom-nav ul,
	.bottom-box,
	.bottom-filings {
		padding: 0 0.15rem;
	}
	
	.footer-link {
		padding-top: 0.15rem;
	}
	
	.header-nav,
	.header-hidden {
		display: none;
	}

	.float-slh {
		display: block;
	}
	
	.header-logo {
		max-width: 3.5rem;
	}
	
	.header-mobile {
		display: block;
		position: relative;
	}
	
	.menu-box {
		display: block;
		float: right;
		position: relative;
		cursor: pointer;
		height: 1.3rem;
		line-height: 1.3rem;
	}
	
	.moblie-search {
		position: absolute;
		right: 0.8rem;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.moblie-search i {
		font-size: 40px;
		color: #3785D4;
	}
	
	.mobile-menu {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.mobile-menu p {
		margin: 0.1rem 0;
		height: 0.06rem;
		background: #6F420D;
		border-radius: 3px;
		transition: .5s;
	}
	
	.bar1 {
		width: 0.48rem;
	}
	
	.bar2 {
		width: 0.42rem;
	}
	
	.bar3 {
		width: 0.36rem;
	}
	
	.active .bar1 {
		width: 0.48rem;
	    -webkit-transform: rotate(-45deg)translate(-13px, 10px);
	    transform: rotate(-45deg)translate(-13px, 10px);
	}
	
	.active .bar2 {
		opacity: 0;
	}
	
	.active .bar3 {
		width: 0.48rem;
	    -webkit-transform: rotate(45deg)translate(-11px, -10px);
	    transform: rotate(45deg)translate(-11px, -10px);
	}
	
	.moblie-nav {
		display: none;
		position: absolute;
		top: 1.3rem;
		left: 0;
		right: 0;
		background-color: #fff;
		margin: 0 -0.15rem;
		z-index: 100;
		border-top: 1px solid #f1f1f1;
		overflow: auto;
		height: 100vh;
		max-height: 100vh;
		z-index: 9999;
	}
	
	.moblie-nav ul>li {
		font-size: 0.3rem;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: #333333;
		line-height: 1rem;
		border-bottom: 1px solid #f1f1f1;
		overflow: hidden;
		padding: 0 0.24rem;
	}
	
	.moblie-nav ul>li>a {
		display: block;
		width: 80%;
		float: left;
	}
	
	.moblie-nav ul>li>i {
		font-size: 0.4rem;
		float: right;
		color: #999999;
		transform: rotate(0deg);
		transition: transform 0.5s;
	}
	
	.moblie-nav ul>li>.active {
		transform: rotate(-180deg);
		transition: transform 0.5s;
	}
	
	.moblie-nav ul>li>ol {
		width: 100%;
		float: left;
		display: none;
		margin: 0 -15px;
	}
	
	.moblie-nav ul>li>ol>li {
		border-top: 1px solid #f1f1f1;
		padding: 0 25px;
		font-size: 24px;
		line-height: 0.6rem;
		font-weight: 400;
	}
	
	.moblie-nav ul>li>ol>li>a {
		display: block;
		font-weight: 400;
	}
	
	.bodyHidden {
		height: 100vh;
		overflow: hidden;
	}
	
	.moblie-search {
		position: relative;
	}
	
	.moblie-search p {
		position: absolute;
		top: 160px;
		right: -0.7rem;
		line-height: 0.64rem;
		display: none;
	}
	
	.moblie-search p span input {
		width: 4rem;
		height: 0.64rem;
		background: #FFFFFF;
		border-radius: 0.32rem;
		padding: 0 80px 0 30px;
	}
	
	.moblie-search p span {
		position: relative;
		display: block;
	}
	
	.moblie-search p span i {
		position: absolute;
		bottom: 0;
		right: 0.3rem;
		color: #999999;
	}
	
	.footer-link {
		height: auto;
	}
	
	.link-box span,
	.link-list {
		width: 100%;
	}
	
	.link-list {
		margin: 0;
		margin-bottom: 0.15rem;
	}
	
	.bottom-filings {
		height: auto;
		line-height: 0.36rem;
		padding: 0.1rem 0.15rem;
	}
	
	.bottom-filings span:first-child {
		display: block;
	}
	
	.position {
	    display: none;
	}

	.box-right {
        position: static;
        transform: none;
        float: left;
    }
}

@media (max-width: 600px) {
	.header-top a, .header-top a+span {
		font-size: 14px;
	}
	
	.header-top a i {
		font-size: 18px;
		margin-right: 0;
	}
	
	.header-top a+span {
		margin: 0 0.05rem;
	}
	
	.header-top a img {
		margin-left: 0.2rem;
	}
	
	.header-logo {
		max-width: 60%;
	}
	
	.header-bottom,
	.menu-box {
		height: 0.8rem;
		line-height: 0.8rem;
	}
	
	.moblie-search i {
		font-size: 30px;
	}
	
	.moblie-search {
		right: 0.5rem;
	}
	
	.moblie-search p {
		top: 120px;
		right: -0.5rem;
	}
	
	.moblie-search p span input {
		width: 3rem;
		height: 0.54rem;
		padding: 0 60px 0 25px;
	}
	
	.moblie-search p span i {
		right: 0.15rem;
	}
	
	.mobile-menu p {
		width: 0.35rem;
		height: 0.04rem;
		margin: 0.06rem 0;
	}
	
	.active .bar2 {
		width: 0.35rem;
	}
	
	.active .bar1 {
		width: 0.35rem;
	    -webkit-transform: rotate(-45deg)translate(-8px, 7px);
	    transform: rotate(-45deg)translate(-8px, 7px);
	}
	
	.active .bar3 {
	    width: 0.35rem;
	    -webkit-transform: rotate(45deg)translate(-7px, -7px);
	    transform: rotate(45deg)translate(-7px, -7px);
	}
	
	.moblie-nav {
		top: 0.8rem;
	}
	
	.moblie-nav ul>li {
		font-size: 0.18rem;
		padding: 0 0.15rem;
		line-height: 0.6rem;
	}
	
	.moblie-nav ul>li>i {
		font-size: 0.2rem;
	}
	
	.moblie-nav ul>li>ol>li {
		font-size: 16px;
		line-height: 0.4rem;
	}
	
	.footer-link {
		height: auto;
		padding-top: 0.06rem;
		padding-bottom: 0.2rem;
	}
	
	.bottom-nav {
		height: auto;
		line-height: 0.4rem;
	}
	
	.bottom-nav ul {
		padding: 0.1rem 0.15rem;
		text-align: center;
	}
	
	.bottom-nav ul>li {
		margin: 0 0.1rem;
		float: none;
		display: inline;
	}
	
	.bottom-nav ul>li:first-child {
		margin-left: 0.1rem;
	}
	
	.bottom-nav ul>li:last-child {
	    margin-right: 0.1rem;
	}
	
	.box-right span {
		margin: 0 0.05rem;
	}

	.box-right div {
		text-align: center;
	}

	.box-right-slhwza {
		display: block;
		margin-top: 10px;
	}
	
	.box-left {
	    padding: 0.35rem 0;
	}
	
	.box-psychology {
		margin-bottom: 0.15rem;
	}
	
	.box-psychology i {
		font-size: 28px;
	}
	
	.bottom-filings {
		height: auto;
		line-height: 30px;
	}
	
	.bottom-filings span {
		display: block;
	}


}



