@charset "UTF-8";
html {
	font-family: "microsoft yahei", sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 500;
}
mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
	display: inline-block;
	outline: none;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	padding: 10px;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
	width: 100%;
}
input:-webkit-autofill{
	background-color: transparent;
	background-image : none ;
}
input::-ms-clear{
	display: none;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

select {
	width: 100%;
	height: 36px;
	border: solid 1px #ddd;
	box-shadow: none;
	outline: none;
}

select:focus {
	border: solid 1px #c83f35;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ul li {
	list-style: none;
}

td,
th {
	padding: 0;
}

body {
	font-family: "Microsoft YaHei", "Lucida Grande", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1;
	color: #333333;
	background-color: #fff;
}


/*公共类*/
a {
	background-color: transparent;
	text-decoration: none;
	color: #222;
}

a:active,
a:hover {
	outline: 0;
	color: #83d7d7;
}
.green{
	color: #61d19a;
}
.mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:linear-gradient(to top,rgba(0,0,0,.6),rgba(0,0,0,0));
	z-index: 1;
}
.mr{
	margin-right: 80px;
}
.none{
	display: none;
}
.show{
	display: block;
}
.header{
	position: fixed;
	width: 100%;
	min-width: 1200px;
	top: 0;
	left: 0;
	border-bottom: solid 2px #83d7d7;
	overflow: hidden;
	z-index: 999;
	background-color: #fff;
}
.content{
	width: 1370px;
	margin: 0 auto;
}
.header .content{
    display: flex;
    align-items: center;
}
.header .logo{
	float: left;
}
.header .logo img{
	width: 200px;
}
.header .logo a{
	font-size: 26px;
	line-height: 70px;
	font-weight: bold;
}
.header .nav{
	margin-left: 80px;
	display: inline-block;
	flex: 1;
}
.header .nav ul{
	display: flex;
}
.header .nav ul li{
	line-height: 40px;
	margin: 45px 20px;
}
.header .nav ul li a{
    font-size: 16px;
}
.header .nav ul li.active{
	border-bottom: 2px solid #83d7d7;
}
.header .nav ul li.active a{
	 color: #83d7d7;
	font-weight: 900;
 }
.header .login{
	float: right;
	display: flex;
	align-items: center;
}
.header .login a.language{
	margin-right: 20px;
	line-height: 70px;
}
.header .login a.avatar{
	padding: 15px 0;
	font-size: 0;
}
.header .login img{
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.header .login a.other{
	line-height: 70px;
}
.header .login #nav{
    display: flex;
    align-items: center;
}
#nav img{
    width: 24px;
    height: 24px;
    margin-right: 5px;
    border-radius: 0;
}
#nav .requireLogin{
    display: flex;
    align-items: center;
}
#nav .menu-item{
    margin-right: 20px;
}
#language{
    width: 24px;
    height: 24px;
}
#hlogin{
	padding: 0 20px;
}
.header .login a.h{
	padding-left: 20px;
}

.main{
	padding-top: 110px;
	width: 100%;
	min-width: 1200px;
}
.footer{
	height: 350px;
	background: url(../images/footerbg.jpg) center bottom repeat-x;
}
.footer .content{
	padding: 40px 0;
	overflow: hidden;
}
.footer .menu a{
	line-height: 50px;
	color: #fff;
	margin-right: 30px;
	padding-left: 15px;
	background: url("../images/f_menubg.jpg") left center no-repeat;
}
.footer .ways{
	margin-top: 30px;
	float: left;
}
.footer .ewm-box{
	float: left;
	margin-left: 140px;
	margin-top: 20px;
}
.footer .ewm-box img{
	width: 140px;
	margin: 0 20px;
}
.footer .ways ul{
	overflow: hidden;
}
.footer .ways ul li{
	color: #999;
	margin-bottom: 20px;
}

.footer .ways ul li img{
	width: 30px;
	height: 30px;
	padding: 5px;
	border: solid 1px #bfbfbf;
}
.footer .ways ul li span{
	padding-left: 10px;
}
.footer .download{
	float: right;
	margin-top: 50px;
}
.footer .download a:first-child{
	margin-right: 50px;
}
.footer .copy{
	text-align: center;
	color: #999;
	z-index:9999;
}
#fixed{
	position: fixed;
	bottom: 200px;
	right: 20px;
}
#fixed .gotop{
	width: 35px;
	height: 35px;
	font-size: 0;
	background-image: url("../images/top.png");
	background-position: center center;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-color: #83d7d7;
	display: none;
}
.tcert{
	margin-left: 5px;
}
.layui-table-tips-c{
	box-sizing: content-box;
}








