* {
  margin: 0;
  padding: 0;
}
a {
  color: #a3a3a3;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 取消链接高亮 点击的时候也可以取消高亮 */
}
a:hover {
  text-decoration: none;
}
ul {
  list-style: none;
}
li {
  list-style-type: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
img {
  border: none;
}
.clear {
  clear: both;
}
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/*IE/7/6*/
input,
textarea {
  outline: none;
  -webkit-user-select: auto;
}

body,
html {
  width: 100%;
  height: 100%;
  font-size: 20px;
  padding-top: 1px;
  font-family: "Arial","Source Sans Pro","Helvetica",sans-serif;
  font-weight: 300;
}


/*苹果手机button样式取消*/
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="password"] {
  -webkit-appearance: none;
  font-size: 0.7rem;
}
input[type="search"] {
    font-size: 0.7rem;
    color: #666;
}
/*去掉默认的搜索小图标*/
input[type="search"]::-webkit-search-decoration{
    display: none;
}
/*去掉默认的x*/
input[type="search"]::-webkit-search-cancel-button{
    display: none;
}
/*去掉ios下的圆角*/
input[type="search"]{
    -webkit-appearance: none;
}
input[type="text"]{
	font-size: 0.7rem;
	color: #ccc;
}
/**/
em,
i {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
select,
textarea {
  cursor: pointer;
  border: 0;
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1em;
}
p {
  line-height: 1em;
}
img {
  display: block;
  margin: auto;
}

.h30{
	height: 30px;
}

input[type=search]::-webkit-search-cancel-button{
    -webkit-appearance: none;

    position: relative;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #EBEBEB;
}

input[type=search]::-webkit-search-cancel-button:after{
    position: absolute;
    content: 'x';
    left: 25%;
    top: -12%;
    font-size: 20px;
    color: #fff;
}
@keyframes fadein {
	from {
	opacity:0;
	transform:scale(0.7,0.7)
}
to {
	opacity:1;
	transform:scale(1)
}
}
@keyframes slide-down {
	from {
	height:0
}
to {
	height:80px
}
}
.fade-in-default {
    animation: fadein 1s;
}
header.bg{
    animation: slide-down .4s;
}
header {
    height: 80px;
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    right: 0;
    left: 0;
    padding: 0px 0 0px;
    z-index: 100;
    transition: 0.4s;
}
header.bg{
	background-color: #fff;
    box-shadow: 0 1px 2px 0 #bbbbbb;
}
.container {
    width: calc(100vw - 60px);
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: block;
	max-width: 1400px;
}
header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
header .logo-container {
    height: 100%;
    flex: 1;
    max-width: 170px;
	padding: 20px 0 17px;
}

header .logo.white {
    display: block;
    visibility: visible;
}
header.bg .logo.white {
    display: none;
    visibility: visible;
}

header .logo.green {
    display: none;
    visibility: visible;
}
header.bg .logo.green {
    display: block;
    visibility: visible;
}
header .logo-container .logo {
    max-height: 100%;
    height: auto;
    max-width: 200px;
    z-index: 102;
	margin-top: 20px;
}
header .menu {
    height: 100%;
	margin-right: 100px;
}
header .base-menu {
    top: 0px;
    right: 0;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: 0.5s;
    background: rgba(37,162,43,0.95);
	padding-top: 0;
	    position: static;
	    height: 100%;
	    overflow: visible;
	    width: auto;
}
header .base-menu>.container, header .transparent .base-menu>.container, header .base-menu>.container {
    width: auto;
    display: flex;
}

header .base-menu li, header .transparent .base-menu li, header .base-menu li {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.4s;
}

header .base-menu li.router-link-active, header .transparent .base-menu li.router-link-active, header .base-menu li.router-link-active {
    background-color: #fff;
	color: #25A22B;
}

header .base-menu li.router-link-active a, header .transparent .base-menu li.router-link-active a, header .base-menu li.router-link-active a{
	color: #25A22B;
}

header.bg .base-menu li.router-link-active, header.bg .transparent .base-menu li.router-link-active, header.bg .base-menu li.router-link-active {
    background-color: #f1f1f1;
	color: #25A22B;
}

header.bg .base-menu li.router-link-active a, header.bg .transparent .base-menu li.router-link-active a, header.bg .base-menu li.router-link-active a{
	color: #25A22B;
}

header .base-menu li:hover{
    background-color: #fff;
    color: #25A22B;
}

header.bg .base-menu li:hover{
    background-color: #f1f1f1;
    color: #25A22B;
}

header .base-menu li:hover a,header .base-menu li:hover .heading{
	 color: #25A22B;
}

header .menu ul {
    background: transparent;
}

header .base-menu li ul, header .transparent .base-menu li ul, header .base-menu li ul {
    max-height: 0;
    width: 300px;
    padding: 0;
    margin: 0;
    position: absolute;
    overflow: hidden;
    z-index: 100;
    top: 100%;
    left: 0;
    transition: 0.4s;
}

header .base-menu li ul a{
	color: #25A22B;
	padding: 15px 10px;
}

header .base-menu .container>li:not(.open):hover{
	
}

header .menu-open .base-menu li.open ul, header .menu-open .transparent .base-menu li.open ul, header .base-menu li.open ul {
    background: #fff;
    max-height: 300px;
}

header a{
	color: #fff;
	font-size: 18px;
}

header.bg a{
	color: #747474;
}

header .other{
	position: absolute;
	right:0;
	z-index: 1000;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 90px;
}

header .other .icon-sousuo{
	font-size: 22px;
}

footer{
	height: 289px;
	background-color: #373B39;
	width: 100%;
}
footer .con{
	width: 100%;
	padding-top: 70px;
	margin: 0 auto;
	height: 100%;
	max-width: 1400px;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}

footer .con ul{
	width: 100%;
	margin: 0 auto;
	height: 100%;
	max-width: 1400px;
	display: flex;
	justify-content: space-between;
}

footer .con ul .name{
	font-size:16px;
	font-family:SourceSansPro-Regular,SourceSansPro;
	font-weight:400;
	color:rgba(255,255,255,1);
	line-height:21px;
	text-align: center;
	padding: 10px 0;
}
footer .con ul .other{
	font-size:14px;
	font-family:SourceSansPro-Regular,SourceSansPro;
	font-weight:400;
	color:rgba(105,105,105,1);
	line-height:21px;
}

.heading{
	color:#fff;
	font-size: 18px;
}

.heading i{
	margin-left: 5px;
}

header.bg .heading{
	color: #747474;
}

@font-face {font-family: "iconfont";
  src: url('iconfont.eot?t=1593938304383'); /* IE9 */
  src: url('iconfont.eot?t=1593938304383#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAANEAAsAAAAAB0wAAAL3AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDHAqCAIFrATYCJAMQCwoABCAFhG0HThtjBhHVk+NkXxTYzcSXcio2obWYrrbkaOksYF51kOdBBNFYOnt3IQDJJBMVnRRYVdeiaoWscPUsVIUiCeTrfmu6jgUO4SJMp0Ship++I9/u/OXzDMX/v9+8WDNtNKg/Y009ib7/yCK6JCZtcYQ01dNHW1tlvu34vf1ks0yCbASRdd0AIdAC4OCaukixPHubW0ZpJOBowAONCnqa6AY0Qd4iu4g7cRHHCdQbtiiOaqsXEgUaF4gHE45CUvAqipGoFaoblhbxEkNtep5uwfEi+n78gSoSkqoMTT2/pUvA5bt0ckxrVC4EOAZvPjOMVWQsohB3Gq3X+El0UVbv/Sawglq1Et+lP8nJ8f+X9eyYg//yCEkmqqH8RrCkxDLfpRQh+J5ESPw4zpPhh8hrk/guLlXi4LuTEL1cP8VnPhxocea8KSY/vv3P76NX52vL9/QWeviYebO9tbyPr6N393u7nCA9CMcXVhcPJXgZeO3SwcKKCO0rzX2ixsw3I6TsjMm6+WfOVH68pDkl08bFuq3YuFzSrs9yStVQyua0IzeGISuHa7e5sJFgG1GnG0XoFzDtEXmEsBAjlCd+afjhAc1BpWlT2nEc8qt0DEf6T/vyw5w9upKHOeuvNs7c81lx0Yi8labDOO7n44F535kHbCm+AOlKcYWUG9iL2dHhhHps4OsmafdtDnkXOJ9QqyuDpMYQZLUmsYW4CFUaLEG1WrtQb8Hp6gYdHvJFqcO8xxKEVq8hafYRslafsIX4Fap0+wfVWsOHehcxtmwwHfR0LMZGsIf2B1NHuyIGOcaFNxzs2nBeENFeyGYKQJkV5cQVd+Q5Zpj3UIkoUEwb1NJpuK4EmmnGTrJRRJ/zXDWhlHW0OUenGBvBHtofTB3tineXY+XzNxzs2nBHRY/9hWym/qHMCgD2Kt1BFffyinkPlYgCxbRBLZlxxVEC3Txoxk6ycURYn3Olk4JKs/Xl2wfkGDWgB9VlCBRGbsgaS6d5anYhm3akf0weVzSOAwA=') format('woff2'),
  url('iconfont.woff?t=1593938304383') format('woff'),
  url('iconfont.ttf?t=1593938304383') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  url('iconfont.svg?t=1593938304383#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-sousuo:before {
  content: "\e618";
}

.icon-jiantou-copy-copy:before {
  content: "\e668";
}

.icon-jiantou:before {
  content: "\e7a7";
}

