@charset "utf-8";
/* CSS Document */
/*-------重设浏览器默认样式--------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=DM+Serif+Display&family=Mulish&family=Josefin+Sans&display=swap');

/*font-family: 'Lato', sans-serif;
font-family: 'Lora', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'PT Serif', serif;
font-family: 'Roboto', sans-serif;*/

html {
	font-size: 62.5%;
}
html, body {
	position: relative;
	height: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, select, input, textarea, p, blockquote, table, th, td, hr, button {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
body, select, input, textarea {
	color: #444;
	font: 16px  'Poppins', Microsoft YaHei, sans-serif;
	font-weight:400;
	word-wrap: break-word; /*允许长单词换行到下一行*/
	word-break : normal;/*word-break: break-all;*/ /*允许在单词内换行*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
address, caption, cite, code, dfn, var {
	font-style: normal;
	font-weight: normal;
}
/*定位*/
.fl {
	float: left;
}
.fr {
	float: right;
}
ol, ul, li {
	list-style: none;
}
img, input, button, select {
	border: 0 none;
	vertical-align: middle;  /*定义行内元素*/
	max-width: 100%;
}
/*textarea, input:not([type="submit"]), select {
	-webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.075);
	-moz-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.075);
	box-shadow: inset 1px 1px 2px rgba(0,0,0,0.075);
	-webkit-transition: border linear .2s, box-shadow linear .2s;
	-moz-transition: border linear .2s, box-shadow linear .2s;
	-o-transition: border linear .2s, box-shadow linear .2s;
	transition: border linear .2s, box-shadow linear .2s;
	display: inline-block;
	padding: 4px 6px;
	font-size: 1.3rem;
	color: #555;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	outline: 0 none;
	border: 1px solid #ccc;
	background: #fcfcfc;
	line-height: 20px;
}
textarea:focus, input:focus, textarea:hover, input:hover {
	border-color: rgba(102,102,102,0.8);
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,102,102,0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,102,102,0.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,102,102,0.6)
}*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.clearfix:after {
	content: "\20";
	display: block;
	clear: both;
}
.clearfix {
*zoom:1;
	overflow: hidden;/*	overflow: auto;
*/
}
/*返回顶部*/
.met-scroll-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
}
/*弹性布局*/
.flex {
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
}
.hide {
	display: none !important;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: inherit;
	margin: 0 auto 20px;
}
table td, table th {
	padding:5px 10px;
	font-size: 1.4rem;
	line-height: 1.6;
	border: 1px solid #d2d2d2;
	vertical-align: middle;
	text-align:center;
}
table p {
	margin-bottom: 0;
}
table th {
	padding: 10px;
	background-color: #efefef;
	background-image: -webkit-gradient(linear, 0 0%, 0 100%, from(#fdfdfd), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
	background-image: -moz-linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
	background-image: -ms-linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
	background-image: -o-linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
	background-image: -linear-gradient(top, #fdfdfd 0%, #e6e6e6 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#e6e6e6', GradientType=0 );
}
table tr:nth-of-type(odd) {
	background: #f7f7f7;
}
table tbody tr:hover {
	background: #e5ebee;
}
/*去掉链接虚线，针对Firefox*/
a:focus {
	outline-style: none;
}
/*去掉链接虚线，针对IE*/
a, area {
	color: #333;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
a:hover {
	color: #333333;
	text-decoration: none;
}

/*显示1-3行*/
.oneline{
	overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.twoline{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.threeline{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}


/*html5*/
main, article, .aside, details, figcaption, figure, dialog, footer, header, hgroup, menu, nav, section {
	margin: 0;
	padding: 0;
	display: block;
}
.animate-box {
	opacity: 0;
}
main {
	background-color: #fff;
}
main#index {
	background-color: #fff;
}
.container {
	max-width: 1600px;
	width:100%;
	margin: 0 auto;
}
@media (max-width:1600px) {
.container {
	max-width: 100%;
	width:100%;
	margin: 0 auto;
	padding:0 3%;
}
}
.container3 {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 10px;
}

.row {
	margin-right: -10px;
	margin-left: -10px;
}
/*-------FONT AWESOME CORE-----*/
[class^="icon-"], [class*=" icon-"] {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	-webkit-font-smoothing: antialiased;
	background-image: none;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
	text-decoration: inherit;
	display: inline-block;
	speak: none;
}
/*-------定义公共样式--------*/
#header, main, footer {
	width: 100%;
	margin: 0px auto;
}
/*------响应式菜单-----*/
.wsmenuexpandermain, .bigmegamenu {
	display: none;
}
/*------内页与公共部分------*/
 #content >h1, #content .page, #productSlide, #content .news-info .new-tit p.p2 {
	display: none;
}

/*------最新头部------*/
header {
  position: relative;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
header .container2 {
  width: 100%;
  max-width:1600px;
  margin:0 auto;
  padding:0;
}
@media (max-width:1600px) {
header .container2 {
  width: 100%;
  max-width:100%;
  margin:0 auto;
  padding:0 3%;
}
}
.header-warp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:100px;
  background-color:rgba(0, 69, 155, 1);
  border-bottom: 0 solid #ccc;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
}
.logo {
  display: inline-block;
  padding-top:25px;
  width:350px;
}
.logo img {
  height: 50px;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
 .toptel { font-size:16px; font-weight:400; width:150px; line-height:100px; text-align:right; color:#fff;}
 .toptel i{ color:#fff;}
/* .toptel a{ color:#fff;  position: relative; text-decoration: none; }
 .toptel a span {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.6s ease-out;
}
 .toptel a:hover span {
  width: 100%;
}*/
.languagedown {
	position: relative;
	display: inline-block;
}

.languagedown-content {
	display: none;
	position: absolute;
	min-width: 150px;
	z-index: 1;
	left:20px;
}

.languagedown:hover .languagedown-content {
	display: block; text-align:center;
}

.languagedown-content a {
	display: block;
	text-decoration: none;
	color: #333;
	background-color: #f1f1f1;
	line-height:50px;
	padding:0 15px;
}

.languagedown-content a:hover {
	background-color: #ccc; color: #333;
}
 
.header-right {
  font-size: 0;
  line-height: 100px;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  width:calc(100% - 500px);
  text-align:center;
  color:#fff;
}
.menu,
.header-btn {
  display: inline-block;
  vertical-align: middle;
}
.menu ul  {
  margin: 0 auto; 
}
.menu ul li {
  font-size: 16px;
  font-weight:500;
  height: 100px;
  padding-top: 30px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 25px;
  padding-right: 25px;
  transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  position: relative;
}
.menu ul li a{ color:#fff; text-transform:uppercase;}
.menu ul li > div {
  height: 44px;
  line-height: 44px;
  position: relative;
}


/*.submenu {
  position: absolute;
  width: 200px;
  left: 50%;
  margin-left: -100px;
  background: #000;
  top: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.1);
  z-index:999;
}
.submenu dd {
  border-bottom: 1px solid #222;  
}
.submenu dd:last-child {
  border-bottom: 0 solid #333;
}
.submenu dd a {
  display: block;
  height: 46px;
  line-height: 46px;
  font-size:14px;
  color: #fff !important;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  width:100%;
}

.submenu dd a.ce {
  float:left;
  width:190px;
  margin:0 5px;
  height: 40px;
}
.submenu dd:hover a {
  background: #222; color:#fff;
}
.menu ul li:hover .submenu {
  opacity: 1;
  transform: none;
  -ms-transform: none;
  -o-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  visibility: visible;
}*/



.submenu {
  position: absolute;
  width: 1200px;
  left: 50%;
  margin-left: -600px;
  background: #fff;
  top: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
   z-index:999;
/*  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.1);*/
  padding:20px 30px;
}

.submenu dd a {
  display: block;
  height: 36px;
  line-height: 36px;
  font-size:14px;
  color: #666 !important;
  transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  width:50%;
  float:left;
  text-align:left;
}

.submenu dd a.ce {
  float:left;
  width:190px;
  margin:0 5px;
  height: 40px;
}
.submenu dd:hover a {
 /* background: #034b97; color:#FFFFFF; */ text-decoration:underline;
}

.menu ul li:hover .submenu {
  opacity: 1;
  transform: none;
  -ms-transform: none;
  -o-transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  visibility: visible;
}

.menu ul li > div a:after{
  height: 2px;
  background-color: #fff;
  content: '';
  display: block;
  position: relative;
  z-index: 1;
  margin: auto;
  width: 0px;
  transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.menu ul li > div a:after {
  top: 0;
  transform: rotate(0deg) translateY(0%) translateX(0%);
}
.menu ul li:hover > div a:after,
.menu ul li.cur > div a:after {
  width: 100%;
}

.menu ul li:hover > div a,
.menu ul li.cur > div a {
  color: #fff;
}
.header-btn > div {
  display: inline-block;
  vertical-align: middle;
}
.header-btn span {
  display: inline-block;
  font-size: 16px;
  color: #888;
  vertical-align: middle;
  margin-left: 8px;
}
.header-btn .search {
  margin-right: 27px;
}
.header-btn .website {
  width: 85px;
  height: 29px;
  background: #f8c80f;
  color: #0c0d14;
  text-align: center;
  line-height: 29px;
  font-size: 12px;
  border-radius: 4px;
  margin-left: 34px;
}
.header-btn .website img {
  margin-left: 5px;
}
header.fixed {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*---------头部文件---------*/
#header {
	position: relative;
	
}
#header .top {
	padding: 20px 0;display:none;
}
#header .top img {
	max-height: 60px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
/*---------头部文件---------*/
#header .top .flex, #header .main-menu .flex {
	justify-content: space-between;
	align-items: center;
}
footer .flex {
	justify-content: space-between;
	align-items: flex-start;
}
#header .logo-txt {
	margin: 0 0 0 20px;
	padding-left: 20px;
	color: #555;
	background: url(../images/top-line.png) no-repeat left;
}
#header .logo-txt p {
	font-size: 1.6rem;
	line-height: 1.75;
}
#header .tel {
	background: url(../images/tel.png) no-repeat left;
	padding-left: 50px;
}
#header .tel span {
	font-size: 1.5rem;
	font-weight: normal;
}
#header .tel p {
	color: #333333;
	font-size: 2.3rem;
}
/*-------头部菜单------*/
nav.main-menu {
	z-index: 999;
	background: #333333;
}
nav.main-menu.stuck {
	position: fixed;
	top: 0;
	width: 100%;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.15);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.15);
	-o-box-shadow: 0 0 10px rgba(0,0,0,0.15);
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
ul.menu > li {
	position: relative;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
ul.menu li a {
	position: relative;
	display: block;
}
ul.menu > li > a {
	font-size: 1.6rem;
	color: #fff;
	height: 50px;
	line-height: 50px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	padding: 0 35px;
}
ul.menu > li:hover > a, ul.menu > li.active > a {
	text-decoration: none;
	background: #2158a3;
}
/*-----头部搜索-----*/
.main-menu form {
	position: relative;
}
.main-menu form input {
	height: 28px;
	padding-right: 25px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	border: 0 none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
/*-----头部搜索按钮----*/
.main-menu form button {
	position: absolute;
	color: #333333;
	right: 7px;
	line-height: 26px;
	z-index: 999;
	-webkit-transition: color 200ms ease;
	-moz-transition: color 200ms ease;
	-o-transition: color 200ms ease;
	transition: color 200ms ease;
	background-color: transparent;
}
.main-menu form button:hover {
	color: #2158A3;
}
.icon-search::before {
	font-size: 1.6rem;
	content: "\f002";
}
.icon-angle::before {
	font-size: 1.6rem;
	content: "\f105";
	margin-right: 10px;
}
/*-------level 2---------*/
ul.dropdown {
	min-width: 100%;
	-webkit-box-shadow: 0px 6px 18px -9px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 6px 18px -9px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 6px 18px -9px rgba(0, 0, 0, 0.75);
	z-index: 1002;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	text-align: left;
	background: rgba(39,103,191,0.7);
}
ul.dropdown li a {
	color: #fff;
	display: block;
	overflow: hidden;
	padding: 12px 20px;
	white-space: nowrap;
	font-size: 1.5rem;
}
ul.dropdown li a:hover {
	background: #2158a3;
}
/*---------移动端导航-------------*/
.bigmegamenu {
	position: relative;
}
.wsmenu-list form, .wsmenu-list h2 {
	font-weight: normal;
	color: #fff;
	font-size: 1.8rem;
	margin-top: 8px;
	margin-bottom: 8px;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
	padding: 10px 15px;
	position: relative;
}
.wsmenu-list form input[type="text"] {
	height: 32px;
	line-height: 32px;
	padding-left: 6px;
	width: 100%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.wsmenu-list form input[type="text"]:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.wsmenu-list form input[type="submit"] {
	width: 24px;
	height: 24px;
	background: url(../images/search_bgm.png) no-repeat center center;
	cursor: pointer;
	position: absolute;
	top: 13px;
	right: 18px;
}
/*----------------------------*/
main .wrapper {
	max-width: 1280px;
	margin: 0 auto;
	display:none;
}
main .wrapper  .dl-tit {
	line-height: 40px;
	font-size: 1.4rem;
	font-weight: normal;
	background: #015198;
	height: 40px;
	text-indent: 10px;
	color:#fff;
}
main .wrapper .dl-tit a {
	border: none;
	width: 23px;
	height: 23px;
	text-indent: -900em;
	overflow: hidden;
	position: absolute;
	top: 5px;
	right: 7px;
	cursor: pointer;
	outline: none;
	background: url(../images/arrow-down.png) no-repeat center center;
	background-size: 100%;
	
}
main .wrapper .dl-tit a:hover, main .wrapper .dl-tit a.dl-active {
	background: url(../images/arrow-down2.png) no-repeat center center;
}
/*-----下拉菜单-----*/
.dl-menuwrapper {
	width: 100%;
	float: right;
	right: 0;
	position: absolute;
	z-index: 10;
}
.dl-menuwrapper ul {
	background: rgba(0,0,0,1);
	position: absolute;
	width: 100%;
	padding: 0;
	list-style: none;
	display: none;
	z-index: 8;
}
.dl-menuwrapper li {
	position: relative;
}
.dl-menuwrapper li a {
	display: block;
	position: relative;
	padding: 5px 10px;
	font-size: 1.4rem;
	line-height: 30px;
	color: #fff;
	border-top: 1px solid #666;
	outline: none;
}
.dl-menuwrapper li a:hover, .dl-menuwrapper li a.active {
	text-decoration: none;
	background-color: rgba(0,0,0,0.08) !important;/*	background: rgba(255,248,213,0.1);
*/
}
/*-----内页导航----*/
.inbanner{ position:relative;}
.inbanner2{ position:relative; padding-top:160px;}
.breadcrumb {
	position: absolute;
	bottom:0;
	background-color: rgba(0,0,0,.85);
	color:#FFF;
	font-size: 1.4rem;
	width:100%;
	margin:0 auto;
	height:60px;
	line-height:60px;
}
.breadcrumb i {
	margin-right: 6px;
	color: #fff;
}
.breadcrumb a {
	color: #fff;
}
.page-title {
    height: 50px;
    font-size: 2.4rem;
    font-weight: normal;
    line-height: 50px;
    border-bottom: 1px solid #ddd;
    margin: 10px 0 0;
}
.page-title span {
    display: inline-block;
    height: 50px;
    border-bottom: 1px solid #333333;
}
/*------内页与公共部分------*/
#content {
	padding: 30px 0 30px 0;
}

#content .left {
	margin-left: 20px;
	width: calc(80% - 20px);
}
.box {
	background-color: #fff;
	width:100%;
}

.box2 {
	background-color: #f2f2f2;
	width:100%;
}

.pcbg{
	background-color:#f2f2f2;
}
.pt80{ height:80px;}


.prosearch{ padding:150px 0 50px 0; overflow:hidden; text-align:center;  width:100%; background-image:url(../images/ban-pro.jpg);}
.prosearch_top{
    width:500px;
	margin:0 auto;
    padding:20px;
    box-sizing:border-box;
    position:relative
}
.prosearch_top input{
    width:100%;
    height:60px;
	line-height:60px;
    outline:0;
    border:none;
    padding-left:20px
}
.prosearch_top .btn{ position: absolute; top: 21px; right: 21px; width: 58px; height: 58px; cursor: pointer; background-image: url(../images/search.png); background-color: #00459b; background-repeat: no-repeat; background-position: center center; }


@media screen and (max-width:1023px) {
.pcbg{
	background-color:#fff;
}
.box2 {
	background-color: #fff;
	width:100%;
}
.pt80{ height:10px;}
}
/*----侧边栏------*/
aside {
	width: 20%;
}
aside .category {
	margin-bottom: 15px;
}
aside .category:last-child {
	margin-bottom: 0;
}
aside .category .catetitle {
	height: 70px;
	background: #333333;
	line-height: 70px;
	font-size: 2.4rem;
	color: #fff;
	font-weight: normal;
	padding-left: 30px;
}
aside .category .catetitle span {
    font-size: 1.4rem;
    text-transform: uppercase;
}
/*-----产品侧边栏-----*/
.menu-list {
	padding: 10px 15px;
}
.menu-list > li {
	position: relative;
	font-size: 1.5rem;
	border-bottom: 1px solid #e8e8e8;
}
.menu-list > li:hover > a {
	color: #333333;
	background-color: #FEFEFE;
}
.menu-list > li.active {
	background-color: #FEFEFE;
}
.menu-list > li.active > a, .submenu > li.active > a, .submenu > li:hover > a {
	color: #333333;
}
.menu-list > li > a {
	color: #585858;
	display: block;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
	white-space: nowrap;
}
.menu-list > li > a i.fa-angle-down {
	float: right;
	margin-right: 0;
	line-height: 40px;
	font-size: 2rem;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	vertical-align: middle;
}
.menu-list > li.active > a i.fa-angle-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.menu-list > li > a span {
	text-shadow: 1px 1px 1px #ececec;
	position: relative;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.menu-list > li > a span > [class*="fa-"]:first-child {
	padding-right: 8px;
	display: inline-block;
	vertical-align: middle;
}
.menu-list > li:hover > a span, .menu-list > li:focus > a span, .menu-list > li.active > a span {
	padding-left: 5px;
}
/*------二级菜单----*/
.menu-list > li > ul {
	display: none;
	position: relative;
	background-color: #fff;
	border-top: 1px solid #d2d2d2;
}
.menu-list > li > ul::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	left: 18px;
	top: 0;
	bottom: 0;
	border-left: 1px dashed #9dbdd6;
}
.menu-list > li > ul > li {
	position: relative;
	font-size: 1.4rem;
}
.menu-list > li > ul > li::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 7px;
	left: 20px;
	top: 17px;
	border-top: 1px dotted #9dbdd6;
}
.menu-list > li > ul > li:first-child > a {
	border-top: 1px solid #fafafa;
}
.menu-list > li > ul > li > a {
	display: block;
	position: relative;
	color: #666;
	padding: 7px 0 9px 37px;
	border-top: 1px dotted #e4e4e4;
}
.menu-list > li > ul > li > a > [class*="fa-"]:first-child {
	display: none;
	font-size: 12px;
	font-weight: normal;
	width: 18px;
	height: auto;
	line-height: 12px;
	text-align: center;
	position: absolute;
	left: 10px;
	top: 11px;
	z-index: 1;
	background-color: #FFF;
}
.submenu > li.active > a > [class*="fa-"]:first-child, .submenu > li:hover>a>[class*="fa-"]:first-child {
	display: inline-block;
}
/*----左侧联系我们----*/
aside .contact {
	padding: 10px 15px;
	line-height: 1.8;
}
aside .contact a {
	padding-right: 8px;
}
aside .contact a:last-child {
	padding: 0;
}
aside .contact a:hover {
	text-decoration: underline;
}
aside .contact h3 {
	font-weight: normal;
	margin-bottom: 5px;
}
aside .contact i {
	width: 16px;
	margin-right: 8px;
	text-align:center;
}
/*------产品滚动-----*/
#productSlide {
	width:100%;
	overflow:hidden;
	position:relative;
}
#productSlide .swiper-slide {
	position:relative;
	text-align:center;
}
#productSlide img {
	width:100%;
	display:block;
}
#productSlide .pagination {
	position:absolute;
	z-index:20;
	bottom:3px;
	text-align:center;
	right:0;
}
#productSlide .swiper-pagination-bullet {
	display:inline-block;
	width:5px;
	height:5px;
	border-radius:5px;
	background:#333;
	margin:0 2px;
	opacity:0.8;
	cursor:pointer;
}
#productSlide .swiper-pagination-bullet-active {
	background:#333333;
}
/*------图片左右滚动箭头-----*/
.owl-carousel .owl-controls .owl-nav div {
	background: #fff none repeat scroll 0 0;
	border: 2px solid #ebebeb;
	border-radius: 0;
	color: #ebebeb;
	font-size: 18px;
	height: 40px;
	left: -35px;
	line-height: 34px;
	margin-top: -20px;
	opacity: 0;
	padding: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	transition: all 400ms ease-in 0s;
	width: 40px;
}
.owl-carousel .owl-controls .owl-nav div.owl-next {
	left: auto;
	right: -35px;
}
.owl-carousel:hover .owl-controls .owl-nav div {
	opacity: 1
}
.owl-carousel .owl-controls .owl-nav div:hover {
	color: #0067ac;
	border-color: #0067ac;
}
/*---------选项卡切换-----------------*/
.news-left ul.tabs {
	background-color: #f2f2f2;
	border-bottom:1px solid #ddd;
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
}
.news-left ul.tabs li {
	border-right: 1px solid #ddd;
}
.news-left ul.tabs li a {
	text-align: center;
	display: block;
	padding: 5px 20px;
}
.news-left ul.tabs li a:hover {
	background: #e2e2e2;
}
.news-left ul.tabs li.active a {
	color: #333333;
   background-color: #fff;
	border-top: 2px solid #333333;
	margin-top: -1px;
	margin-bottom:-1px;
	border-bottom: 1px solid #fff;
	padding: 4px 20px 5px;
}
.news-left .tab-box .tab-content, #content .tab-content {
	display: none;
	padding: 20px;
}
 .details {
	clear: both;
	width: 100%;
	background-color: #fff;
	border: 1px solid #ddd;
	margin-bottom: 10px;
     font-size:1.4rem;
	line-height:28px;
}

 .details h3{ color:#015198}
/*---------选项卡切换-----------------*/
.details ul.tabs {
	background-color: #f2f2f2;
	border-bottom:1px solid #f2f2f2;
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
}
.details ul.tabs li {
	border-right: 1px solid #f2f2f2; font-size:16px;
}
.details ul.tabs li a {
	text-align: center;
	display: block;
	padding: 5px 20px;
	font-weight:bold;
}
.details ul.tabs li a:hover {
	background: #e2e2e2;
}
.details ul.tabs li.active a {
	color: #444;
	background-color: #fff;
	border-top: 1px solid #333333;
	margin-top: -1px;
	margin-bottom:-1px;
	border-bottom: 1px solid #f2f2f2;
	padding: 4px 20px 5px;
}
#content .tab-box .tab-content, #content .tab-content {
	display: none;
	padding: 20px 13px;
	font-size:1.4rem;
	line-height:28px;
}

.white-popup-block{background:#FFF;padding:20px 30px;text-align:left;max-width:650px;margin:40px auto;position:relative}
.sendmess  {
	width:100%; padding:20px; max-width:800px; margin:0 auto; background-color:#fff;
}
.sendmess  h3{
 font-size:18px; line-height:36px; font-weight:600; margin-bottom:10px;
}
.sendmess  .input {
	width:49%; border:1px solid #ddd; height:50px; line-height:30px; padding:10px; margin-bottom:10px;font-size:14px; float:left;
}
.sendmess  .input2 {
	width:49%; border:1px solid #ddd; height:50px; line-height:30px; padding:10px; margin-bottom:10px;font-size:14px; float:right;
}
.sendmess textarea {
	width:100%; border:1px solid #ddd; height:140px; line-height:30px; padding:10px; margin-bottom:10px;font-size:14px;
}
.sendmess .button {
	width:100%; background-color:#333333; height:50px; line-height:50px; text-align:center; font-size:14px; color:#FFFFFF; 
}
.sendmess .button:hover {
	width:100%; background-color:#015198; height:50px; line-height:50px; text-align:center; font-size:14px; color:#FFFFFF; 
}

/*--------底部--------*/
footer {
	color: #ccc;
	/*background-color: #11497b;*/
	background-color: #00459b;
	padding: 70px 0px 0 0px;
	font-size:16px;
	line-height:30px;
}
footer a {
	color: #ccc;
}
footer a:hover {
	color: #fff;
	text-decoration: none;
}

footer .servicepro {
	width: 100%; 
	float: left;
	margin-right:0;
}

footer .servicepro ul li {
	float:left; margin-right:50px;
}
footer .servicepro ul li i {
	font-size: 1rem;
	color: #fff;
	left: 0;
	position: absolute;
	top: 4px;
}

footer .service {
	width: 12%; 
	float: left;
}

footer .contact {
	width: 100%; 
	float: left;
	padding-top:0;
}
footer .contact span {
	float:right; width:100px; padding-top:20px;
}
footer .contact span img{
	width:100%;
}
footer .contact span p{
	display:block; line-height:40px; font-size:12px; text-align:center;
}
footer .contact ul li {
	line-height:32px;
}
footer .contact ul li i {
	margin-right:10px;
}


footer h3 {
	color: #fff;
	font-size: 18px;
	position: relative;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight:500;
}
/*footer h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 1px;
	background: #ccc;
}*/
footer .meiti{ width: 100%; float: left;padding-top:40px;}
footer .meiti li{ float:left; margin-right:25px; margin-bottom:10px; list-style:none; text-align:center}
footer .meiti .w50{ width:50px; height:50px; line-height:50px; }
footer .meiti .r25{border-radius:10px; }
footer .meiti .co1{ border:1px solid #fff; transition:all ease-out 0.6s; }
footer .meiti .co1:hover{ border:1px solid #FF0; }

@media screen and (max-width:1023px) {
footer .footer-right {
	width: 50%;
}
footer .footer-left {
	width: 50%;
}
footer .scan {
	display: none;
}
footer .contact {
	width: 100%;
}
footer .footer-logo {
	display: none;
}
footer .service2 {
	display: none;
}
footer .meiti{ padding-left:10px; padding-top:30px;}
footer .contact span {display: none;}
}

@media screen and (max-width:768px) {

footer {
	padding: 30px 0px 20px 0px;
}
footer .footer-left, footer .footer-right {
	width: 100%;
}
footer .service, footer .letter {
	display: none;
}
}

#link {
	width: 100%;
	background: #fff;
	color: #333;
	line-height: 1.7;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
#link a {
	color: #333; margin-right:10px;
}
#link a:hover {
	color: #ff0000;
	text-decoration: underline;
}
#link>.wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 15px 10px;
	background: #fff;
	color: #333;
	height: auto !important;
	overflow: hidden;
}

#fwqy {
	width: 100%;
	background: #f2f2f2;
	color: #333;
	line-height: 1.7;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
#fwqy a {
	color: #333; margin-right:10px;
}
#fwqy a:hover {
	color: #ff0000;
	text-decoration: underline;
}
#fwqy .wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 15px 10px;
	background: #f2f2f2;
	color: #333;
	height: auto !important;
	overflow: hidden;
}
#fwqy .wrapper .title { line-height:40px; font-size:18px; font-weight:bold; border-bottom:1px #CCCCCC solid;}
#fwqy .wrapper li { line-height:30px; overflow:hidden; display:block;}
#fwqy .wrapper li span{  font-weight:bold; margin-right:20px; }

#bottom {
	width: 100%;
	background: #00459b;
	color: #fff;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;

	height:70px;
	line-height:70px;
	font-size:16px;
}
#bottom a {
	color: #fff; margin-left:15px;
}
#bottom a:hover {
	color: #fff;
	text-decoration: underline;
}
#bottom>.wrapper {
	max-width: 1600px;
	margin: 0 auto;
	border-top:0 solid #ddd;	
	overflow: hidden;
}
#bottom >.wrapper .left {
	width: 50%;
	float: left;
	display: inline;
}
#bottom >.wrapper .left span {
	padding-left: 10px;
}
#bottom >.wrapper .right {
	width: 50%;
	text-align: right;
	float: right;
	display: inline;
}
#bottom >.wrapper .right a {
	color: #ccc; margin-left:15px; text-decoration:none;
}

/*----回到顶部---*/
.btn {
	font-size: 1.4rem;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
}
.btn-icon {
	padding: 10px;
	line-height: 1em
}
.btn i {
	color: #fff;
	width: 1em;
	line-height: inherit;
	text-align: center
}
.btn-squared {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.btn-primary {
	background-color: #333333;
	border-color: #333333;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	opacity: .78;
}
.btn-primary:hover {
	opacity: 1;
}
[class*=animation-] {
	-webkit-animation-duration: .5s;
	-o-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-timing-function: ease-out;
	-o-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
.animation-slide-bottom {
	-webkit-animation-name: slide-bottom;
	-o-animation-name: slide-bottom;
	animation-name: slide-bottom;
}

/*-----分页样式-----*/
.pagelist {
	clear: both;
	text-align: center;
	padding: 15px 0px 20px 0;
}
.pagelist a {
	border: #ccc 1px solid;
	margin-right: 3px;
	width:32px;
	height:32px;
	line-height:32px;
	color: #666;
	-webkit-border-radius: .2rem;
	-moz-border-radius: .2rem;
	border-radius: .2rem;
	display:inline-table;
	text-align:center;
}
.pagelist a:hover {
	color: #fff;
	background: #015198;
	text-decoration: none;
}
.pagelist a.current {
	color: #fff;
	background-color: #015198;
}

@media screen and (max-width:768px) {
.pagelist a.md{ display:none;}
}

/*--------上下翻页------------*/
#content .prevnext {
	clear: both;
	padding: 10px 0;
	text-align: center;
	height: auto !important;
	overflow: hidden;
	border-top: 1px dotted #959595;
}
#content .prevnext .previous {
	width: 100%;
	float: left;
	text-align: left;
}
#content .prevnext .next {
	width: 100%;
	float: left;
	text-align: left;
}
.nothing {
	font-size: 1.3rem;
	text-align: center;
	padding: 3rem;
}
/*-------百度地图API-------*/
.iw_poi_title {
	color: #CC5522;
	font-weight: 600;
	overflow: hidden;
	padding-right: 13px;
	white-space: nowrap
}
.iw_poi_content {
	font: 12px arial, sans-serif;
	overflow: visible;
	padding-top: 4px;
	white-space: -moz-pre-wrap;
	word-wrap: break-word
}
#dituContent {
	height: 450px;
	border: #ccc solid 0;
	font-size:16px;
}
/*------内页banner-----*/
#page-banner {
	display: block;
	/*position: relative;*/
	overflow: visible;
	background-attachment: fixed;
	padding: 0 !important;
}
#page-banner .content {
	/*height: 100%;
	background-position: center center;
	background-size: cover;
	background-color: #fff;*/
	min-height: 400px;
}
#page-banner .content > h2 {
	color: #fff;
	font-size: 3.4rem;
	text-transform: uppercase;
	font-weight: 800;
	text-align: center;
	letter-spacing:8px;
}

#page-banner .content.flex {
	justify-content: center;
	position: relative;
	align-items: center;
}
/*----回到顶部---*/
#back-to-top2 {
	position: fixed;
	bottom: 302px;
	right: 0;
	width: 66px;
	height: 66px;
	display: none;
	overflow: hidden;
	z-index: 99;
}
#back-to-top2 a {
	background: #99969e url(../images/icontop.png) no-repeat top left;
	width: 66px;
	height: 66px;
	display: block;
	top: 0;
	left: 0;
	opacity: .7;
}
/*-----浮动QQ----*/
#floatqq {
	position: fixed;
	bottom: 335px;
	right: 0;
	width: 66px;
	height: 66px;
	overflow: hidden;
	z-index: 99;
}
#floatqq a {
	background: #f2f2f2;
	width: 66px;
	height: 66px;
	display: block;
	top: 0;
	left: 0;
	opacity: .7;
}
#floatqq a i{
	text-align:center; font-size:36px; padding:20px 15px; 
}
/*--------------------*/
#back-to-top2 a.top:hover, #floatqq a:hover {
	background-color: #015198; color:#fff;
}
.btn-icon {
	display: none;
}
/*------案例列表-----*/
#content ul.gallery li section {
    text-align: center;
    margin: 0 10px;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0px 3px 4px rgba(85,85,85,0.4);
    -moz-box-shadow: 0px 3px 4px rgba(85,85,85,0.4);
    box-shadow: 0px 3px 4px rgba(85,85,85,0.4);
}
#content ul.gallery li {
	width: 33.33333333333%;
}
#content ul.gallery li section {
	position: relative;
	overflow: hidden;
}
#content ul.gallery >li h3 {
	color:#fff;
	position: absolute;
	left: 0;
	bottom: -32px;
	padding:0;
	width: 100%;
	text-align: center;
	line-height: 32px;
	height: 32px;
	font-weight:normal;
	background-color: rgba(51, 51, 51, 0.68);
}
#content ul.gallery li section>a {
	margin: 0 auto;
	display: block;
	overflow: hidden;
	position: relative;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
#content ul.gallery li section img {
	width: 100%;
	-webkit-transition: transform 0.5s ease 0s;  /*过渡效果，所有属性改变|变换延续的时间0.6秒|逐渐变慢*/
	-moz-transition: transform 0.5s ease 0s;
	-o-transition: transform 0.5s ease 0s;
	transition: transform 0.5s ease 0s;
}
#content ul.gallery li a:hover img {
	-webkit-transform: scale(1.1, 1.1); /*放大1.1倍*/
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
#content ul.gallery li section {
	border:0 none;
}
#content ul.gallery li section:hover {
	border:0 none;
}


/*图片鼠标放上后放大1.1倍--通用*/
.portfolio-img a {
	margin: 0 auto;
	display: block;
	overflow: hidden;
	position: relative;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.portfolio-img img {
	width: 100%;
	-webkit-transition: transform 0.6s ease 0s;  /*过渡效果，所有属性改变|变换延续的时间0.6秒|逐渐变慢*/
	-moz-transition: transform 0.6s ease 0s;
	-o-transition: transform 0.6s ease 0s;
	transition: transform 0.6s ease 0s;
}
.portfolio-img a:hover img {
	-webkit-transform: scale(1.1, 1.1); /*放大1.1倍*/
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.portfolio-img2 img {
	width: 100%;
	-webkit-transition: transform 1s ease 0s;  /*过渡效果，所有属性改变|变换延续的时间0.6秒|逐渐变慢*/
	-moz-transition: transform 1s ease 0s;
	-o-transition: transform 1s ease 0s;
	transition: transform 1s ease 0s;
}
.portfolio-img2:hover img {
	-webkit-transform: scale(1.05, 1.05); /*放大1.1倍*/
	-moz-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

#sitemap {
	width: 1260px;
	margin: 0 auto;
	padding-top: 140px;
}
#sitemap .duli{
	display: block;
	margin-bottom: 20px;
	overflow: hidden;
}
#sitemap .duli h2{
	display: block;
	width: 100%;
	font-size: 24px;
	margin-bottom: 20px;
	margin-right: 20px;
	float: left;
}
#sitemap .duli .cname{ margin-bottom: 20px;}
#sitemap .duli .cname a{margin:5px 15px 10px 0; font-size: 16px; border: 1px solid #ccc; padding: 8px 15px; display: inline-table;}
#sitemap .duli .cname a:hover{background: #ff0000; color: #fff; border: 1px solid #fff;}
#sitemap .duli .cname span{	display: block;	margin-bottom: 10px;}
#sitemap .duli .cname span a{ font-size: 16px; font-weight: 600; background: #333; color: #fff;  border: 1px solid #ccc; padding: 8px 25px; display: inline-table;}


.pt100{ padding-top:100px;}
.wd25{ width:20%;}
@media screen and (max-width:1023px) {
.pt100{ padding-top:10px;}
.wd25{ width:50%;}
}


@keyframes scaless {
0% {
transform: scale(3)
}

50%,75% {
transform: scale(5)
}

78%,100% {
opacity: 0
}
}

.videobutton {
position: absolute;
width: 80px;
height: 80px;
background-color: #00459b;
border-radius: 50%;
}

.videobutton:before {
content: '';
display: block;
width: 80px;
height: 80px;
border-radius: 50%;
opacity: .7;
background-color: #00459b;
animation: scaless 1s infinite cubic-bezier(0, 0, .49, 1.02);
position: absolute;
}
 
 @keyframes twinkling {
0% {
opacity: 0.2; transform: scale(1);
}

50% {
opacity: 0.5; transform: scale(1.12);
}

100% {
opacity: 0.2; transform: scale(1);
}

}

.circle-wrap {
position: absolute;
left: 100px;
top: 100px;
}

.circle {
position: relative;
width: 24px;
height: 24px;
}

.small-circle {
border-radius: 50%;
width: 12px;
height: 12px;
background: #FF0033;
position: absolute;
}

.big-circle {
position: absolute;
top: -6px;
left: -6px;
width: 100%;
height: 100%;
border-radius: 50%;
background: #FF0033;
animation: twinkling 1s infinite ease-in-out;
animation-fill-mode: both;
}

@keyframes scale {
0% {
transform: scale(1)
}

50%,
75% {
transform: scale(3)
}

78%,
100% {
opacity: 0
}
}

@keyframes scales {
0% {
transform: scale(1)
}

50%,
75% {
transform: scale(2)
}

78%,
100% {
opacity: 0
}

}

.smallcircle2 {
position: absolute;
width: 80px;
height: 80px;
background-color: #ffffff;
border-radius: 50%;
top: 100px;
left: 200px;
}

.smallcircle2:before {
content: '';
display: block;
width: 80px;
height: 80px;
border-radius: 50%;
opacity: .2;
background-color: #ffffff;
animation: scale 1.35s infinite cubic-bezier(0, 0, .49, 1.02);
}

.bigcircle2 {
position: absolute;
width: 80px;
height: 80px;
border-radius: 50%;
opacity: .4;
background-color: #00459b;
top: 100px;
left: 200px;
animation: scales 1.35s infinite cubic-bezier(0, 0, .49, 1.02);
}

 .smallcircle2 i {
     font-size:30px; color:#00459b; 
 }
 
 .single-video {
    position: relative;
}

.video-icon a {
    height: 100px;
    width: 100px;
    background: #0b4df5;
    text-align: center;
    display: inline-block;
    line-height: 100px;
    border-radius: 100%;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: .5s;
}

.video-icon a i {
    color: #ffffff;
    font-size: 48px;
}


.cd-accordion-menu {
  width: 100%;
  background: #fff;
    padding: 15px;
}
.cd-accordion-menu ul {
  display: none;
}
.cd-accordion-menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom:1px solid #ddd;
  line-height:50px;
    
}
.cd-accordion-menu li:last-child{
    border-bottom:none
}
.cd-accordion-menu input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.cd-accordion-menu label, .cd-accordion-menu a {
  position: relative;
  display: block;
  line-height:50px;
  color: #333;
  font-size: 1.4rem;
  padding: 0 10px;
}
.cd-accordion-menu label:hover, .cd-accordion-menu a:hover {
    color:#fff; 
    background-color: #333;
}
.cd-accordion-menu label.active, .cd-accordion-menu a.active {
    color:#fff; background-color: #00459b;
}

.cd-accordion-menu label::before, .cd-accordion-menu label::after, .cd-accordion-menu a::after {
  /* icons */
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu label {
  cursor: pointer;
}
.cd-accordion-menu label::before, .cd-accordion-menu label::after {
  /*background-image: url(../images/cd-icons.svg);*/
  background-repeat: no-repeat;
}
.cd-accordion-menu label::before {
  left: 18px;
  background-position: 0 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.cd-accordion-menu label::after {
  left: 41px;
  background-position: -16px 0;
}
.cd-accordion-menu a::after {
  left: 36px;
  /*background: url(../images/cd-icons.svg) no-repeat -48px 0;*/
}
.cd-accordion-menu input[type=checkbox]:checked + label::before {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu input[type=checkbox]:checked + label::after {
  background-position: -32px 0;
}
.cd-accordion-menu input[type=checkbox]:checked + label + ul,
.cd-accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
  display: block;
}
.cd-accordion-menu ul{
    margin-left: 20px;
}
.cd-accordion-menu ul label,
.cd-accordion-menu ul a {
  border-bottom:1px solid #eee;
  line-height:50px;
}
.cd-accordion-menu ul a:hover {
  background: #333;
}
.cd-accordion-menu ul a.active2 {
  color:#fff; background-color: #00459b;
}
.cd-accordion-menu > li:last-of-type > label,
.cd-accordion-menu > li:last-of-type > a,
.cd-accordion-menu > li > ul > li:last-of-type label,
.cd-accordion-menu > li > ul > li:last-of-type a {
  box-shadow: none;
}
.cd-accordion-menu ul label::before {
  left: 36px;
}
.cd-accordion-menu ul label::after,
.cd-accordion-menu ul a::after {
  left: 59px;
}
.cd-accordion-menu ul ul label,
.cd-accordion-menu ul ul a {
  padding-left: 100px;
}
.cd-accordion-menu ul ul label::before {
  left: 54px;
}
.cd-accordion-menu ul ul label::after,
.cd-accordion-menu ul ul a::after {
  left: 77px;
}
.cd-accordion-menu ul ul ul label,
.cd-accordion-menu ul ul ul a {
  padding-left: 118px;
}
.cd-accordion-menu ul ul ul label::before {
  left: 72px;
}
.cd-accordion-menu ul ul ul label::after,
.cd-accordion-menu ul ul ul a::after {
  left: 95px;
}

.cd-accordion-menu.animated label::before {
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}