﻿[v-cloak] {
	display: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	font-family: '微软雅黑';
	/* -webkit-user-select: none;
	-moz-user-select: none; */
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	text-decoration: none;
	color: #333;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

textarea {
	resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type="number"] {
	-moz-appearance: textfield;
}

/* 公共样式 */
#app {
	min-width: 1200px;
	margin-top: 81px;
}

body {
	background: #f5f8fa;
}

.container {
	width: 1200px;
	margin: 0 auto;
}
.containerFrom{
	width: 1200px;
	margin: 0 auto;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #666;
}

.p-r {
	position: relative;
}

/* 字体 */
.h1 {
	font-size: 36px;
}

.h2 {
	font-size: 32px;
}

.h3 {
	font-size: 28px;
}

.h4 {
	font-size: 24px;
}

.h5 {
	font-size: 20px;
}

.h6 {
	font-size: 16px;
}

.h7 {
	font-size: 12px;
}

.f14 {
	font-size: 14px;
}

.f18 {
	font-size: 18px;
}

.f30 {
	font-size: 30px;
}

.f48 {
	font-size: 48px;
}

.l-h36 {
	line-height: 36px;
}

.l-h32 {
	line-height: 32px;
}

.l-h28 {
	line-height: 28px;
}

.l-h24 {
	line-height: 24px;
}

.l-h20 {
	line-height: 20px;
}

.l-h16 {
	line-height: 16px;
}

.txt-wb {
	font-weight: bold;
}

.txt-over1 {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
}

.txt-over2 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.txt-over3 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

.txt-over4 {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
}

.txt-index2 {
	text-indent: 2em;
}

.c-white {
	color: #fff !important;
}

.c-green {
	color: #2ba44e;
}

.c-yellow {
	color: #ffe400;
}

.c-orange {
	color: #ff6600;
}

.c-3 {
	color: #333333;
}

.c-5 {
	color: #555555;
}

.c-6 {
	color: #666666;
}

.c-gray {
	color: #ccc;
}

.c-txt {
	color: #c6c6c6;
}

.bg-black {
	background-color: #000;
}

.bg-white {
	background-color: #ffffff !important;
}

.bg-green {
	background-color: #2ba44e !important;
}

.bg-red {
	background-color: #cd0916;
}

.bg-yellow {
	background-color: #ffa200;
}

.bg-grey {
	background-color: #f5f8fa !important;
}

.bd-white {
	border-color: #fff!important;
}

.bd-green {
	border-color: #2ba44e !important;
}

.bd-red {
	border-color: #cd0916 !important;
}

.bd-yellow {
	border-color: #ffa200 !important;
}

.txt-l {
	text-align: left;
}

.txt-r {
	text-align: right;
}

.txt-c {
	text-align: center;
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex-rR{
    flex-direction:row-reverse
}
.flex-between {
	justify-content: space-between;
}

.flex-c {
	justify-content: center;
}

.flex-t {
	align-items: flex-start;
}

.flex-r {
	justify-content: flex-end !important;
}

.flex-b {
	align-items: flex-end;
}

.flex-l {
	justify-content: flex-start;
}

.flex-a {
	justify-content: space-around;
}

.flex-d {
	flex-direction: column;
}

.flex-w {
	flex-wrap: wrap;
}

.flex-1 {
	flex: 1;
}

.col-flex-1 {
	flex-basis: 8.333%;
}

.col-flex-2 {
	flex-basis: 16.666%;
}
.col-flex-20 {
	flex-basis: 24%;
}
.col-flex-3 {
	flex-basis: 25%;
}

.col-flex-4 {
	flex-basis: 33.333%;
}

.col-flex-5 {
	flex-basis: 41.666%;
}

.col-flex-6 {
	flex-basis: 50%;
}

.col-flex-7 {
	flex-basis: 58.333%;
}

.col-flex-8 {
	flex-basis: 66.666%;
}

.col-flex-9 {
	flex-basis: 75%;
}

.col-flex-10 {
	flex-basis: 83.333%;
}

.col-flex-11 {
	flex-basis: 91.666%;
}

.col-flex-12 {
	flex-basis: 100%;
}

.offset-1 {
	margin-left: 8.333%;
}

.offset-2 {
	margin-left: 16.666%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.333%;
}

.offset-5 {
	margin-left: 41.666%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.333%;
}

.offset-8 {
	margin-left: 66.666%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.333%;
}

.offset-11 {
	margin-left: 91.666%;
}

.offset-12 {
	margin-left: 100%;
}

.letter-1 {
	letter-spacing: 1px;
}

.letter-2 {
	letter-spacing: 2px;
}

.letter-3 {
	letter-spacing: 3px;
}

.letter-4 {
	letter-spacing: 4px;
}

.letter-5 {
	letter-spacing: 5px;
}

.b-r-5 {
	border-radius: 5px;
}

.b-r-10 {
	border-radius: 10px;
}

.b-r-15 {
	border-radius: 15px;
}

.b-r-20 {
	border-radius: 20px;
}

.d-ib {
	display: inline-block;
}

.d-b {
	display: block;
}

.p-0 {
	padding: 0 !important;
}

.p-10 {
	padding: 10px;
}

.p-20 {
	padding: 20px;
}

.p-30 {
	padding: 30px;
}

.p-40 {
	padding: 40px;
}

.p-t-0 {
	padding-top: 0 !important;
}

.p-t-10 {
	padding-top: 10px;
}

.p-t-20 {
	padding-top: 20px;
}

.p-t-25 {
	padding-top: 25px;
}

.p-t-30 {
	padding-top: 30px;
}

.p-t-40 {
	padding-top: 40px;
}

.p-t-50 {
	padding-top: 5rem;
}

.p-t-100 {
	padding-top: 100px;
}

.p-r-0 {
	padding-right: 0;
}

.p-r-10 {
	padding-right: 10px;
}

.p-r-20 {
	padding-right: 20px;
}

.p-r-30 {
	padding-right: 30px;
}

.p-r-40 {
	padding-right: 40px;
}

.p-b-0 {
	padding-bottom: 0;
}

.p-b-10 {
	padding-bottom: 10px;
}

.p-b-20 {
	padding-bottom: 20px;
}

.p-b-25 {
	padding-bottom: 25px;
}

.p-b-30 {
	padding-bottom: 30px !important;
}

.p-b-40 {
	padding-bottom: 40px;
}

.p-b-50 {
	padding-bottom: 50px !important;
}

.p-b-60 {
	padding-bottom: 60px;
}

.p-b-70 {
	padding-bottom: 70px;
}

.p-b-80 {
	padding-bottom: 80px;
}

.p-b-100 {
	padding-bottom: 100px;
}

.p-l-0 {
	padding-left: 0;
}

.p-l-10 {
	padding-left: 10px;
}

.p-l-20 {
	padding-left: 20px;
}

.p-l-30 {
	padding-left: 30px;
}

.p-l-40 {
	padding-left: 40px;
}

.p-tb-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.p-tb-20 {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.p-tb-25 {
	padding-top: 25px;
	padding-bottom: 25px;
}

.p-tb-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.p-tb-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}

.p-tb-70 {
	padding-top: 70px;
	padding-bottom: 70px;
}

.p-lr-10 {
	padding-left: 10px;
	padding-right: 10px;
}

.p-lr-20 {
	padding-left: 20px;
	padding-right: 20px;
}

.p-lr-40 {
	padding-left: 40px;
	padding-right: 40px;
}

.m-0 {
	margin: 0;
}

.m-10 {
	margin: 10px;
}

.m-20 {
	margin: 20px;
}

.m-40 {
	margin: 40px;
}

.m-t-10 {
	margin-top: 10px;
}

.m-t-15 {
	margin-top: 15px;
}

.m-t-20 {
	margin-top: 20px;
}

.m-t-25 {
	margin-top: 25px;
}

.m-t-30 {
	margin-top: 30px;
}

.m-t-40 {
	margin-top: 40px;
}

.m-t-50 {
	margin-top: 5rem;
}

.m-t-100 {
	margin-top: 100px;
}

.m-r-0 {
	margin-right: 0;
}

.m-r-5 {
	margin-right: 5px;
}

.m-r-10 {
	margin-right: 10px;
}

.m-r-15 {
	margin-right: 15px;
}

.m-r-20 {
	margin-right: 20px;
}

.m-r-40 {
	margin-right: 40px;
}

.m-r-50 {
	margin-right: 50px;
}

.m-r-60 {
	margin-right: 100px;
}

.m-b-10 {
	margin-bottom: 10px;
}

.m-b-15 {
	margin-bottom: 15px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.m-b-25 {
	margin-bottom: 25px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.m-b-40 {
	margin-bottom: 40px;
}

.m-b-50 {
	margin-bottom: 50px;
}

.m-b-100 {
	margin-bottom: 100px;
}

.m-l-0 {
	margin-left: 0;
}

.m-l-5 {
	margin-left: 5px;
}

.m-l-10 {
	margin-left: 10px;
}

.m-l-15 {
	margin-left: 15px;
}

.m-l-20 {
	margin-left: 20px;
}

.m-l-25 {
	margin-left: 25px;
}

.m-l-30 {
	margin-left: 30px;
}

.m-l-40 {
	margin-left: 40px;
}

.m-l-50 {
	margin-left: 50px;
}

.m-tb-10 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.m-tb-20 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.m-tb-30 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.m-tb-40 {
	margin-top: 40px;
	margin-bottom: 40px;
}

.m-tb-50 {
	margin-top: 50px;
	margin-bottom: 50px;
}

.m-lr-10 {
	margin-left: 10px;
	margin-right: 10px;
}

.m-lr-20 {
	margin-left: 20px;
	margin-right: 20px;
}

.m-lr-40 {
	margin-left: 40px;
	margin-right: 40px;
}

.m-lr-50 {
	margin-left: 50px;
	margin-right: 50px;
}

.bd-s1 {
	border: 1px solid #efeff4;
}

.bd-t-s1 {
	border-top: 1px solid #efeff4;
}

.bd-r-s1 {
	border-right: 1px solid #efeff4;
}

.bd-b-s1 {
	border-bottom: 1px solid #efeff4;
}

.bd-l-s1 {
	border-left: 1px solid #efeff4;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.f-l {
	float: left;
}

.f-r {
	float: right;
}

.clearfix:after {
	content: "";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	zoom: 1;
}

img {
	width: auto;
	height: auto;
}

.hover:hover {
	transition: .2s;
	cursor: pointer;
}

.model {
	padding-top: 0rem;
	padding-bottom: 2rem;
}

.model .title {
	padding-bottom: 3rem;
}

.banner img {
	width: 100%;
}

.banner .banner_info .title {
	font-size: 55px;
}


.bd-ar-1::after {
	content: '';
	height: 80%;
	border-right: 1px solid #e5e5e5;
	position: absolute;
	right: 0;
	top: 10%;
}


/* 头部 */
.header_wrap {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
}

.header {
	z-index: 100;
}

.header .nav {
	box-sizing: border-box;
	height: 80px;
	line-height: 80px;
}

.header .company_logo {
	width: 125px;
}

.header .nav_bar {
	padding: 0 70px;
	color: #333;
}

.header .nav_bar .has_second:hover .second_wrap {
	display: block;
}

.header .nav_bar .second_wrap {
	display: none;
	width: 180%;
	left: -40%;
	position: absolute;
	line-height: normal;
	text-align: center;
}

.header .nav_bar .second_wrap ul {
	padding: 10px 0;
}

.header .nav_bar .second_wrap ul li {
	padding: 8px;
	border-bottom: 1px dashed #dedede;
}

.header .nav_bar .second_wrap ul li a:hover {
	color: #2ba44e;
}

.header .nav_bar .second_wrap ul li:first-child {
	padding-top: 0;
}

.header .nav_bar div {
	cursor: pointer;
}

.header .nav_bar .active::after {
	content: '';
	width: 140%;
	border-bottom: 2px solid #2ba44e;
	position: absolute;
	left: -20%;
	bottom: 20px;
}

.header .book {
	padding: 10px 15px;
	line-height: normal;
	border-radius: 5px;
	cursor: pointer;
}

.header .header_content {
	display: none;
	box-sizing: border-box;
	background-color: #fafafa;
	width: 100%;
	min-height: 500px;
	position: absolute;
	/* bottom: -500px; */
	padding: 30px 0;
	transition: .3s;
	box-shadow: 0 10px 10px -10px rgba(0,0,0,.1);
}

.header .header_content,
.header .header_content {
	display: none;
}

.header .header_content .icon,
.header .icon {
	width: 50px;
}

.header .header_content .option_title,
.header .option_title {
	cursor: pointer;
}

.header .header_content .green .box:hover .option_title,
.header .header_content .green .box:hover .option_title {
	color: #2ba44e;
}

.header .header_content .orange .box:hover .option_title,
.header .header_content .orange .box:hover .option_title {
	color: #ff6600;
}

/* 底部 */
.footer {
	background-color: #141621;
	padding: 55px 0 35px;
}

.footer .icon {
	width: 20px;
}

.footer .right {
	padding-left: 60px;
	border-left: 2px solid #fff;
}

.footer .other {
	position: absolute;
	right: 0;
	top: 0;
}

.footer .option li {
	margin-bottom: 10px;
	cursor: pointer;
}

.footer .option li a {
	color: #9c9c9c;
}

.footer .option li a:hover {
	color: #fff;
}


/* 按钮hover特效 */
.animBtn:link,
.animBtn:visited {
	position: relative;
	display: block;
	width: 180px;
	margin: 30px auto 0;
	padding: 14px 15px;
	border: 2px solid #fff;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	letter-spacing: .08em;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.btn_hover:after {
	width: 0%;
	border-radius: 50%;
	opacity: .5;
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.btn_hover:hover:after {
	height: 450%;
	width: 110%;
	opacity: 1;
}