@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Ads
7. Products
8. Ad Extra Large
9. Icon Boxes
10. Newsletter
11. Footer


******************************/

/***********
1. Fonts
***********/


/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;	
}
body
{
	font-family: "Microsoft YaHei",微软雅黑;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #666666;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: "Microsoft YaHei",微软雅黑;
	font-size: 14px;
	line-height: 2.14;
	font-weight: 400;
	/*color: #6c6a74;*/
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #666;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	cursor:pointer;
}
/* p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
} */
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background:#DDDDDE;
}
p::selection
{
	background:#DDDDDE;
}
h1{font-size: 48px;}
h2{font-size: 36px;}
h3{font-size: 24px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	margin-bottom:0;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	background:#DDDDDE;
}
/* .form-control
{
	color: #db5246;
} */
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 400px;
    background: transparent;
}
.nopadding
{
	padding: 0px !important;
}
.button
{
	width: 178px;
	height: 61px;
	background: none;
	text-align: center;
	border: solid 2px #1b1b1b;
	overflow: hidden;
	cursor: pointer;
}
.button a
{
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 600;
	line-height: 57px;
	color: #1b1b1b;
	background: none;
	z-index: 1;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.button::after
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: #FFFFFF;
    z-index: 0;
    opacity: 0;
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.button:hover::after
{
	opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button_light
{
	border: solid 2px #FFFFFF;
}
.button_light a
{
	color: #FFFFFF;
}
.button:hover a
{
	color: #FFFFFF;
}
.button_light:hover a
{
	color: #1b1b1b;
}
.title_row{
	display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right:0px;
}

/*首页新闻*/
.news-list,.notice-list,.special-wrap{
	display: flex;
    flex-wrap: wrap;
    color:#666666;
    font-size:16px;
    margin-top: 10px;
}
.news-list div{
	padding-right:0px;
}
.news-list-left li{
	list-style-type:disc;
	color:#0d74bc;
	font-size:13px;	
}
.news-list-left li:not(:last-child){
	margin: 8px 0px;
}
.news-list-left a{ 
	color:#666666;
	font-size:15px;
}
.news-list-right{	
	text-align:right;
}
.news-list-right li:not(:last-child){
	margin: 10px 0px;
}
@media screen and (max-width: 768px){
	.news-list,.notice-list{
		 margin-top: 0px;
	}
	.news-list div{
		padding-right:2px;
	    padding-left: 20px;
	}
	
}
/*首页通告*/
.notice-list li{
	list-style-type:disc;
	color:#0d74bc;
   /*  border-bottom:1px solid #e6e6e6; */
    padding-bottom:8px;
   /*  margin-bottom: 12px; */
    margin-left: 20px;
    font-size: 13px;
}

.notice-list a{ 
	font-weight:500;
	color:#666666;
	font-size:15px;
}
.notice-wrap{
	margin-top:15px;
	padding-left: 0px;
}
@media screen and (max-width: 768px) {
    .notice-wrap{
		margin-top:0px;
	}
}
/*首页专题*/
.special-events{
	margin-top:15px;
	padding-right: 0px;
}

.special-img-left{
	padding-right:10px;
	padding-left:0px;
}
.special-img-right{
	padding-left:10px;
	padding-right:0px;
}
.special-img-left:not(:last-child){
	padding-bottom:12px;
}
.special-img-right:not(:last-child){
	padding-bottom:12px;
}
.special-wrap img{
	width:100%;
	height:60px;
}
@media screen and (max-width: 768px) {
	.special-wrap img{
		/* width:100%; */
	}
}
/*********************************
3. Header
*********************************/

.header
{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
.header_container
{
	width: 100%;
	z-index: 1;
	background: #FFFFFF;
}
.header_content
{
	width: 100%;
	height: 40px!important;
	background-color:#0d74bc;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.header.scrolled .header_content
{
	height: 70px;
}
.logo a
{
	font-size: 30px;
	font-weight: 700;
	color: #1b1b1b;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.logo img{
	height: 80px;
    padding-left: 50px;
}
@media screen and (max-width: 768px) {
    .logo img {
       padding-left: 10px;
    }
    .header_extra{
        bottom: 15px;
    	right: 6px;
    	display: block!important;
    }
    .menu-bar{
    	display:none;
    }
    #roll{
    	display:none;
    }
}
.header.scrolled .logo a
{
	font-size: 24px;
}
.main_nav
{
	width:100%;
	text-align:center;
}
@media only screen and (max-width: 1200px){
	.main_nav, .header_social {
	    display: none;
	}
}
.main_nav > ul > li
{
	display: inline-block;
	position: relative;
	height:38px;
	line-height: 32px;	
	border: 4px solid #0d74bc;
    width: 140px;
}
/*.main_nav > ul > li:not(:last-child)
{
	margin-right: 80px;
}*/
.main_nav > ul > li > a
{
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.main_nav > ul > li > a:hover,
.main_nav > ul > li.active > a
{
	color: #fff;
}
/*.main_nav ul li.hassubs::after
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: calc(100% + 3px);
	font-family: 'FontAwesome';
	font-size: 10px;
	content: '\f078';
	color: #ffffff;
}
.main_nav ul li.hassubs:hover::after{
	content: '\f077';
}*/
.main_nav ul li:hover::after,
.main_nav ul li.active::after
{
	color: #1b1b1b;
}
.main_nav ul li:hover,
.main_nav ul li.active
{
	border-bottom: 3px solid #fff;
}
.multisubs .sub-ul
{   
    padding: 10px;    
	text-align: center;
	background: #FFFFFF;
	visibility: hidden!important;
	opacity: 0!important;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	min-width:100px;
	width: 100%;
}
.multisubs:hover .sub-ul
{
	visibility: visible!important;
	opacity: 1!important;	
	background-color:beige;
}
.hassubs ul
{
	position: absolute;
	right: 0px;
	top: calc(100% + 20px);
	text-align: center;
	background: #FFFFFF;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 25px;
	padding-bottom: 25px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	min-width:100px;
	width: 100%;
	border-radius: 3px;
}
.hassubs:hover ul
{
	visibility: visible;
	opacity: 1;
	top: calc(100% + 5px);
	background-color:#0d74bc;
}
.hassubs ul li:not(:last-child)
{
	margin-bottom: 11px;
}
.hassubs ul li a
{
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.hassubs ul li a:hover
{
	color: #ffffff;
}
.header_extra
{
	display: none;
}
.shopping_cart
{
	display: inline-block;
}
.shopping_cart a svg
{
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.shopping_cart a:hover svg,
.shopping_cart a:hover div
{
	fill: #e95a5a;
	color: #e95a5a;
}
.shopping_cart a div
{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	font-weight: 500;
	color: #1b1b1b;
	margin-left: 13px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.shopping_cart a div span
{
	margin-left: 4px;
}
.search
{
	display: inline-block;
	margin-left: 51px;
	cursor: pointer;
	vertical-align: sub;
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	-o-transform: translateY(-1px);
	transform: translateY(-1px);
}
.search_icon
{
	width: 13px;
	height: 13px;
}
.search_icon svg
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.search_icon:hover svg
{
	fill: #e95a5a;
}
.hamburger
{
	display: none;
	margin-left: 30px;
	cursor: pointer;
	margin-right: 4px;
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	transform: translateY(2px);
}
@media only screen and (max-width: 1200px){
	.hamburger {
   		 display: inline-block;
	}
}
.hamburger i
{
	font-size: 18px;
	color: #1b1b1b;
}
.search_panel
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #e4e4e4;
	z-index: -1;
}
.search_panel.active
{
	bottom: -80px;
}
.search_panel_content
{
	height: 80px;
}
.search_input
{
	width: 150px;
	height: 40px;
	border: none;
	outline: none;
	border-radius: 3px;
	padding-left: 20px;
}
.search_input::-webkit-input-
{
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #767676 !important;
}
.search_input:-moz-
{
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #767676 !important;
}
.search_input::-moz-
{
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #767676 !important;
} 
.search_input:-ms-input-
{ 
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #767676 !important;
}
.search_input::input-
{
	font-size: 14px !important;
	font-weight: 400 !important;
	font-style: italic;
	color: #767676 !important;
}
.header_social
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 60px;
	z-index: 1;
	margin-right: -5px;
}
.header_social ul li
{
	display: inline-block;
}
.header_social ul li:not(:last-child)
{
	margin-right: 18px;
}
.header_social ul li a i
{
	font-size: 16px;
	color: #b5b5b5;
	padding: 5px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.header_social ul li a i:hover
{
	color: #1b1b1b;
}

/*********************************
4. Menu
*********************************/

.menu
{
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: #e4e4e4;
	z-index: 101;
}
.menu.active
{
	right: 0;
}
.menu_container
{
	width: 100%;
	height: 0px;
	padding-top: 130px;
}
.menu.active .menu_container
{
	height: 500px;
}
.page_menu_content
{
	text-align: right;
	/*padding-left: 30px;
	padding-right: 30px;*/	
}
.page_menu_search
{
	display: none;
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
}
.page_menu_nav
{
	padding-left: 30px;
	padding-right: 30px;
	overflow-y: auto;	
	height:500px;
}
.page_menu_search_input
{
	width: 100%;
	height: 40px;
	background: #FFFFFF;
	border: none;
	outline: none;
	padding-left: 25px;
}
.page_menu_item
{
	display: block;
	position: relative;
	vertical-align: middle;
}
.page_menu_nav > li
{
	border-bottom: solid 1px rgba(0,0,0,0.2);
}
.page_menu_item > a
{
	display: block;
	color: #1b1b1b;
	font-weight: 700;
	line-height: 50px;
	height: 50px;
	font-size: 16px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.page_menu_item > a:hover
{
	color: #c3c1cc;
}
.page_menu_item a i
{
	/*display: none;*/
	margin-left: 8px;
}
.page_menu_item.has-children > a > i
{
	display: inline-block;
}
.page_menu_selection
{
	margin: 0;
	width: 100%;
	height: 0px;
	overflow: hidden;
	z-index: 1;
}
.page_menu_selection li
{
	padding-right: 15px;
	line-height: 40px;
}
.page_menu_selection li:last-child
{
	padding-bottom: 20px;
}
.page_menu_selection li a
{
	display: block;
	color: #1b1b1b;
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 14px;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: all 0.3s ease;
}
.page_menu_selection li a:hover
{
	color: #c3c1cc;
}
.page_menu_selection li:last-child a
{
	border-bottom: none;
}
.menu_social
{
	position: absolute;
	right: 30px;
	bottom: 15px;
}
.menu_social ul li
{
	display: inline-block;
}
.menu_social ul li:not(:last-child)
{
	margin-right: 18px;
}
.menu_social ul li a i
{
	font-size: 16px;
	color: #b5b5b5;
	padding: 5px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu_social ul li a i:hover
{
	color: #1b1b1b;
}
.menu_close
{
	position: absolute;
	top: 25px;
	right: 25px;
	cursor: pointer;
}
.menu_close i
{
	font-size: 16px;
	color: #1b1b1b;
	padding: 5px;
}

/*********************************
5. Home
*********************************/

.home
{
	width: 100%;
	/*height: 950px;padding-top:130px;*/
	background: #FFFFFF;
	z-index: 2;
	
}
@media only screen and (max-width: 575px){
 	.home {
 	    height: auto !important;
		  }
}
.home_slider_container
{
	width: 100%;
	height: 100%;
	padding-top: 130px;
	padding-left: 60px;
	padding-right: 60px;
	padding-bottom: 30px;
}
.home_slider_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.home_slider_content_container
{
	position: absolute;
	left: 0;
	top: 32.3%;
	width: 100%;
}
.home_slider_content
{
	max-width: 580px;
}
.home_slider_title
{
	font-size: 60px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1.2;
}
.home_slider_subtitle
{
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 2.14;
	margin-top: 22px;
}
.home_button
{
	margin-top: 40px;
}
.home_slider_dots_container
{
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	padding-left: 60px;
	padding-right: 60px;
}
.home_slider_dots
{
	position: absolute;
	left: 15px;
	bottom: 56px;
}
.home_slider_custom_dots
{

}
.home_slider_custom_dot
{
	display: inline-block;
	position: relative;
	color: #FFFFFF;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.home_slider_custom_dot:hover
{
	color: #e95a5a;
}
.home_slider_custom_dot.active
{
	color: #e95a5a;
}
.owl-theme .owl-dots
{
	display: none;
}
.fadeIn
{
	animation-delay: 1000ms;
}

/*********************************
6. Ads
*********************************/

.avds
{
	width: 100%;
	background: #FFFFFF;
	z-index: 2;
}
.avds_container
{
	width: 100%;
	height: 490px;
	padding-left: 60px;
	padding-right: 60px;
}

/* Ad Small*/

.avds_small
{
	width: calc((100% * 0.391) - 15px);
	height: 100%;
	padding: 30px;
}
.avds_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.avds_small_inner
{
	width: 100%;
	height: 100%;
	border: solid 2px #FFFFFF;
}
.avds_discount_container
{
	position: absolute;
	right: 36px;
	bottom: 0;
}
.avds_discount_container > div
{
	position: relative;
	width: 100%;
	height: 100%;
}
.avds_discount
{
	position: absolute;
	bottom: 71px;
	right: 0;
	width: 152px;
	text-align: center;
}
.avds_discount div:first-child
{
	font-size: 60px;
	font-weight: 700;
	color: #1b1b1b;
	line-height: 0.75;
}
.avds_discount div:first-child span
{
	font-size: 36px;
	font-weight: 700;
	vertical-align: super;
}
.avds_discount div:last-child
{
	font-size: 14px;
	font-weight: 400;
	color: #1b1b1b;
	margin-top: 1px;
}
.avds_small_content
{
	max-width: 250px;
	padding-top: 57px;
	padding-left: 31px;
	padding-right: 30px;
}
.avds_title
{
	font-size: 48px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1.16;
}
.avds_link
{
	margin-top: 18px;
	padding-left: 4px;
}
.avds_link a
{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
}
.avds_link a::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	content: '';
}

/* Ad Large */

.avds_large
{
	width: calc((100% * 0.608) - 15px);
	height: 100%;
}
.avds_large_container
{
	width: 100%;
	height: 100%;
	padding-top: 39px;
	padding-left: 32px;
	padding-bottom: 44px;
}
.avds_large_content
{
	max-width: 567px;
	height: 100%;
	background: rgba(0,0,0,0.63);
	padding-right: 130px;
	padding-left: 30px;
	padding-top: 51px;
	padding-bottom: 30px;
}
.avds_text
{
	font-size: 14px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 2.14;
	margin-top: 11px;
	padding-left: 2px;
}
.avds_link_large
{
	margin-top: 40px;
}

/*********************************
7. Products
*********************************/

.products
{
	width: 100%;
	background: #FFFFFF;
	padding-top: 99px;
	z-index: 2;
}
.product
{
	width: calc((100% - 90px) / 4);
	margin-bottom: 59px;
}
.product_image
{
	width: 100%;
}
.product_image img
{
	max-width: 100%;
}
.product_content
{
	width: 100%;
	padding-top: 36px;
	padding-bottom: 38px;
}
.product_title a
{
	font-size: 18px;
	font-weight: 500;
	color: #1b1b1b;
	line-height: 1.1;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.product_title a:hover
{
	color: #e95a5a;
}
.product_price
{
	font-size: 16px;
	font-weight: 500;
	color: #6c6a74;
	line-height: 0.75;
	margin-top: 13px;
}
.product_extra
{
	position: absolute;
	top: 0;
	left: 54px;
	width: 66px;
	height: 36px;
	text-align: center;
	-webkit-transform-origin: top left;
	-moz-transform-origin: top left;
	-ms-transform-origin: top left;
	-o-transform-origin: top left;
	transform-origin: top left;
	transform: rotate(90deg);
}
.product_extra a
{
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 36px;
}
.product_new
{
	background: #6c6a74;
}
.product_sale
{
	background: #e95a5a;
}
.product_hot
{
	background: #1b1b1b;
}

/*********************************
8. Ad Extra Large
*********************************/

.avds_xl
{
	width: 100%;
	background: #FFFFFF;
	z-index: 2;
}
.avds_xl_container
{
	width: 100%;
	height: 345px;
	padding-top: 34px;
	padding-right: 35px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.avds_xl_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.avds_xl_content
{
	width: 391px;
	height: 100%;
	background: #e95a5a;
	float: right;
	padding-top: 28px;
	padding-left: 42px;
	padding-right: 30px;
}
.avds_xl_link
{
	margin-top: 18px;
}

/*********************************
9. Icon Boxes
*********************************/

.icon_boxes
{
	width: 100%;
	padding-top: 99px;
	padding-bottom: 99px;
	background: #FFFFFF;
	z-index: 2;
}
.icon_box_row
{

}
.icon_box
{
	width: 100%;
	text-align: center;
}
.icon_box_image
{
	width: 75px;
	height: 75px;
	margin-left: auto;
	margin-right: auto;
}
.icon_box_image img
{
	max-width: 100%;
}
.icon_box_title
{
	font-size: 18px;
	font-weight: 500;
	color: #1b1b1b;
	margin-top: 33px;
}
.icon_box_text
{
	margin-top: 20px;
}

/*********************************
10. Newsletter
*********************************/

.newsletter
{
	width: 100%;
	background: #FFFFFF;
	padding-bottom: 99px;
	z-index: 2;
}
.newsletter_border
{
	width: 100%;
	border-top: solid 2px #e3e3e3;
}
.newsletter_content
{
	padding-top: 88px;
}
.newsletter_title
{
	font-size: 30px;
	font-weight: 500;
	color: #1b1b1b;
}
.newsletter_text
{
	margin-top: 8px;
}
.newsletter_form_container
{
	width: 100%;
	margin-top: 46px;
}
.newsletter_form
{
	width: 100%;
}
.newsletter_input
{
	width: 100%;
	height: 40px;
	border: none;
	border-bottom: solid 2px #787878;
	outline: none;
	text-align: center;
}
.newsletter_button
{
	position: relative;
	width: 178px;
	height: 61px;
	border: solid 2px #1b1b1b;
	background: #FFFFFF;
	cursor: pointer;
	margin-top: 55px;
	overflow: hidden;
}
.newsletter_button span
{
	display: block;
	position: relative;
	z-index: 10;
	font-size: 16px;
	font-weight: 600;
	color: #1b1b1b;
	background: none;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.newsletter_button::after
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: #1b1b1b;
    z-index: 0;
    opacity: 0;
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.newsletter_button:hover::after
{
	opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.newsletter_button:hover span
{
	color: #FFFFFF;
}

/*********************************
11. Footer
*********************************/

.footer_overlay
{
	width: 100%;
	height: 129px;
	background: transparent;
	z-index: 1;
}
.footer
{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
}
.footer_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.footer_content
{
	width: 100%;
	height: 129px;
}
.footer_logo
{
	width: 30%;
}
.footer_logo a
{
	font-size: 30px;
	line-height: 0.75;
	color: #1b1b1b;
	font-weight: 700;
}
.copyright
{
	width: 40%;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #1b1b1b;
}
.footer_social
{
	width: 30%;
	text-align: right;
}
.footer_social ul li
{
	display: inline-block;
}
.footer_social ul li:not(:last-child)
{
	margin-right: 26px;
}
.footer_social ul li a i
{
	font-size: 17px;
	color: #1b1b1b;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.footer_social ul li a i:hover
{
	color: #FFFFFF;
}
#pageContainer{
	padding-top:120px;
}
@media screen and (max-width:768px){
	#pageContainer{
	padding-top:80px;
}
.x_title h2{
	display:none!important;
}

}

.swiper-wrapper,.swiper-slide{
	height:auto !important;
}
/*Login and register*/
.loginWarpper{ 
	height:100%;
	width: 100%;
	padding: 60px 0;
	background: url(../images/loginbg.jpg) center no-repeat;
	background-size: cover;
}
.loginContainer{ 
	width: 610px;
	height: auto;
	margin: 0 auto;
	background-color: rgba(0,0,0,0.3);
	padding: 40px 75px;
	color: #fff;
	text-align:center;
}

.loginContainer h3{ 
	font-size: 24px;
	margin-bottom: 35px;
	text-align: center;
	font-weight: normal;
}
.loginContainer .formItem{height: 60px;}
.formItem{ margin-bottom: 15px;}
.loginContainer .Validform_checktip{ 
	font-size: 12px;
	color: #f9f9f9;
	padding-left: 16px;
	padding-top: 3px;
}
.registerContainer{ 
	height: auto;
}
.registerContainer .formItem{ 
	margin-bottom: 5px;
	height: 70px;
}
.registerContainer .formItem .ctrlItem{
	padding-left: 50px !important;
	background-color: transparent !important;
}
.login-bot{ 
	overflow: hidden;
	padding-top: 15px;
}
.login-bot a{color: #fff;}
.login-bot a:hover{color: #f1a900;}
.icon_user{ 
	background: url(../images/icon_user.png) left center no-repeat;
	padding-left: 50px;
}
.ctrlItem,.getmsgcode{ 
	width: 98%;
	height: 45px;
	border: #fff 1px solid;
	color: #fff;
	border-radius: 5px;
	background-color: transparent;
}
.icon_lock_png{ 
	background: url(../images/icon_lock.png) left center no-repeat;
	padding-left: 50px;
}
.icon_tel{ 
	background: url(../images/icon_tel.png) left center no-repeat;
	padding-left: 50px;
}
.icon_yan{ 
	background: url(../images/icon_yan.png) left center no-repeat;
	padding-left: 50px;
}
.icon_email{ 
	background: url(../images/icon_email.png) left center no-repeat;
	padding-left: 50px;
}
.ctrlButton{ 
	width: 100%;
	height: 50px;
	background-color: #f1a900;
	text-align: center;
	margin-top: 22px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
}
.linktoregister{float: left; color: #fff;}
.linktogetpwd{float: right; color: #fff;}
.linkdecoration{
	color: blue !important;
	text-decoration: underline !important;
}
.showSuccess{ 
	padding-left: 0;
	padding-right: 0; 
	display: none;
}
.registerInfo{ 
	text-align: center;
	margin-top: 38px;
	padding-bottom: 20px;
	border-bottom: rgba(255,255,255,0.5) 1px dashed;
}
.registerInfo img{ 
	vertical-align: middle;
	margin-right: 25px;
}

	.icp-bei{
			width: 55%; 
			float: left; 
			text-align: right;
			padding: 5px 0px;
			color:#222
		}
		.an-bei{
			padding:5px 0px ;
			float: left; 
			width: 45%;
		}
		.link-wrap{
			position: absolute;
			bottom: 30px;
			right: 0px;
			left: 0px;
			text-align:center;
			font-weight: bold;
		}
		@media screen and (max-width: 768px){
			.loginContainer{ 
				width:100%;
				padding:40px 25px;
				text-align:center;
			}
			.ctrlItem, .getmsgcode{
				width:95% !important;
			}
			.formItem .ctrlButton{
				width:95%;
			}
			.icp-bei{
				text-align:center;
				width: 100%; 
				padding: 0px;
			}
			.an-bei{
				text-align:center;
				width: 100%;
				padding: 0px;
			}
			.icp-bei>span:nth-of-type(odd){
				display:none;
			}
			.link-wrap{
				bottom: 70px;
			}
		}
/* Login and register over*/

/*弹出层*/
.modelbg{
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 99;
	display: none;
	/* margin-top:200px; */
}
.modelBox{
	position: fixed;
	width: 935px;
	left: 50%;
	margin-left: -467px;
	top: 10%;
	z-index: 100;
	background-color: #fff;
	padding: 10px 30px;
	display: none;
}
.modelHead{
	font-size: 24px;
	height: 50px;
	line-height: 50px;
	color: #197ccf;
	text-align: center;
	border-bottom: #ccc 1px solid;
}
.modelContent{
	max-height: 400px;
	overflow-y: auto; 
}
.shengmingModel h3{ 
	color: #197ccf;
	font-size: 14px;
	margin-top: 15px;
}
.shengmingModel p{
	line-height: 24px;
	font-size: 14px;
	color: #333;
	margin-bottom: 10px;
}
.modelFoot{
	text-align: right;
	height: 40px;
	line-height: 40px;
	color: #666;
}
.closeModel{
	cursor: pointer;
}
.formTable{
	width: 80%;
	border: none;
}
.formTable td{
	width: 25%;
	text-align: center;
	padding: 0 15px;
}
.textareatip{
	line-height: 30px;
	text-align: right;
	margin-bottom: 5px;
}
.textareatip b{color: red;}

.check-box{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}


.formItem input::-webkit-input-placeholder {
    color: #fff !important;
}
/*错误提示*/
input.error {
    border-color: #fb3636;
}
label.error{
	color: #fb3636 !important;
	font-size: 12px;
    padding-left: 16px;
    padding-top: 3px;
    float:left;
}
em.pull-right{
	padding-top:10px;
}

/*二维码*/
.footContactR{
	float: right;
    width: 260px;
	color: #fff;
	overflow: hidden;
}
.erweima{
	width: 50%;
	float: left;
	text-align: center;
	line-height: 30px;
	font-size: 12px;
}
.erweima img{
	width: 110px;
}
.erweima div{
	/*letter-spacing:1px;*/
	font-size:14px;
	margin:0px auto;
	background-color:#0a568b;
	width:110px;
	text-align: center;
}

/*版块*/
.x_title {
    border-bottom: 1px solid #0d74bc;
    padding: 1px 5px 0px;
    margin-bottom: 10px
}
.x_title h2 {
	font-family:"Arial";
	font-style: italic;
	font-size:24px;
    margin: 5px 0 0px;
    float: left;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color:#c2c2c2;
    position: absolute;
    bottom:0;
}
.x_title h2 small {
    margin-left: 10px
}
.x_title span {
    color: #BDBDBD
}
@media (max-width: 1200px) {
    .x_title h2 {
        width: 62%;
        font-size: 17px
    }
    .tile,
    .graph {
        zoom: 85%;
        height: inherit
    }
}
@media (max-width: 1270px) and (min-width: 192px) {
    .x_title h2 small {
        display: none
    }
}
.title_text{
	font-size:36px;
	color:#0d74bc;
	font-weight:bold;
}

.navbar-right {
    margin-right: 0
}
.panel_toolbox {
    float: right;
    /*min-width: 70px;*/
    position: absolute;
    bottom:0;
    right:0;
}
.panel_toolbox>li {
    float: left;
    cursor: pointer;
}
.panel_toolbox>li>a {
    padding:5px 15px 0px 15px;
    color: #666666;
    font-size: 16px;
    cursor:pointer;        
}
@media screen and (max-width: 768px){
 
  .title_text {
	font-size:26px;
    width: 100%;
    padding-left: 10px;
 }
 .x_title{
  margin-left: 10px;
  padding: 0px;
 }
 .upcoming-events,.special-events{
  padding-right:0px;
  padding-left: 0px;
 }
 .title_row{
 	margin-right: 10px;
 	margin-left: -10px;
 }
	 .panel_toolbox {
	    float:unset;
   	 	position: unset;
	}
	.panel_toolbox>li>a {
   		 padding:5px 2px 0px 2px;
    	 font-size: 14px;       
	}
	.modelBox{
		width: unset;
   		left: unset;
    	margin-left: unset;
    	top: 20px;
	}
}
.panel_toolbox>li>a:hover {
    background: #F5F7FA
}
.li-tab a:{
	background-color: #f1f4f7;
	padding: 0 10px;
}
/*位置路径样式*/
.position{
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
}
.position-item.active {
    color: #6c757d;
}
.position-item+.position-item {
    padding-left: .5rem;
}
.position-item+.position-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: ">";
}

.page-content{
	color:#666666;
	margin-top:30px;
	margin-bottom:100px;
}

/*personpage css*/
.personTitle {
    text-align: center;
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}
.personPhoto {
    text-align: center;
    margin-bottom: 10px;
}
.personTextarea {
    margin-bottom: 10px;
    color:#333;
}
.personTextarea p{
   text-indent: 2rem;
}
.h3title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.list-other-wrap {
    margin: 30px auto;
    width: 100%;
}

/*productpage css*/
.pro-det-des {
    line-height: 26px;
    border-bottom: #ccc 1px dashed;
    color: #666;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.pro-det-text {
    width: 405px;
    float: right;
}
.pro-det-text h3 {
    font-size: 18px;
    color: #1c67b0;
    line-height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: bold;
}
.pro-det-text p {
    line-height: 26px;
    color: #666;
}
.pro-det-bigPic {
    width: 420px;
    height: 365px;
    border: #ccc 1px solid;
    float: left;
    overflow: hidden;
}
.pro-det-bigPic img {
    width: 420px;
    height: 365px;
}
.pro-detail-top {
    overflow: hidden;
}
.pro-det-text p span, .pro-det-des span {
    color: #333;
    font-weight: bold;
}

/*productpage tabs css*/
ul.bar_tabs {
    overflow: visible;
    background: #F5F7FA;
    /*margin: 21px 0 14px;
    */
    height: 35px;
    
    padding-left: 14px;
    position: relative;
    z-index: 1;
    width: 100%;
    border-bottom: 1px solid #E6E9ED;
}
ul.bar_tabs>li.active {
    border-right: 6px solid #D3D6DA;
    border-top: 0;
    /*margin-top: -15px;*/
}
ul.bar_tabs>li.active a{
    color:#1c8bd9;
    /*margin-top: -15px;*/
}
.tab-panel{
border: 1px solid #c2c2c2;	
}
ul.bar_tabs>li {
    border: 1px solid #E6E9ED;
    color: #333!important;
    /*margin-top: -17px;
    background: #fff;
    */
    margin-left: 8px;
    
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}
ul.bar_tabs>li a {
    padding: 10px 17px;
    background: #F5F7FA;
    margin: 0;
    border-top-right-radius: 0;
    color: #666666;
}
.tab-content>.active {
    display: block;
}
.fade.in {
    opacity: 1;
}
.pro-detail-content{
	margin-top:50px;
}
.tab-content{
	margin: 20px 30px;
}

/*newspage css*/
.news-title {
    padding: 10px 0 26px 0;
    color: #1c67b0;
    border-bottom: #e3e3e3 1px dashed;
    text-align: center;
    font-size: 18px;
}
.news-subinfo {
	font-size:15px;
    padding: 24px 0;
    color: #999;
    text-align: left;
    line-height:2;
}
.news-subinfo div:not(:first-child){
    text-align: right;
}
@media ( max-width : 992px) {
	.news-subinfo div:not(:first-child){
    text-align: left;
}
} 
 /*.news-content {
    color: #333;
    min-height: 100px;
    line-height: 26px;
}
.news-content>p {
    margin-bottom: 20px;
    text-indent: 2em;
} */
.pn_page {
    margin-top: 50px;
    margin-bottom: 50px;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}
.pn_page .next_page {
    float: right;
}

/*listpage css*/
.pagination-wrap{
	margin-bottom:50px;
}
.list-item{
	color: #666666;
}

.list-item p{
	min-height:110px;
}
.table td, .table th{
	height:20px;
}
.news-table .table td, .news-table .table th {
    padding: 1rem 0rem;
    border-bottom: 1px solid #e9ecef;
    border-top:unset;
    
}
.td-wrap{
	padding-left:1rem;
	color:#666666;
	height:100%;
}
.td-wrap h3,h4{
	margin-bottom:1rem;
}
.td-wrap p{
	font-size:14px;
	margin-top: 1rem;
}

.list-img{
	height: 180px;
    width: 240px;
    border: 1px solid #dcdcdc;
}
.table-no-head thead{
	display:none;
}
.right-bottom{
		position:absolute;
		right:0px;
		bottom:0px;
	}
.left-bottom{
	position: absolute;
	bottom:0px;
}
@media screen and (max-width: 768px){
	
	.td-wrap>a,.td-wrap>p{
		display:none;
	}
	.td-wrap h4{
		font-size:15px;
		margin-bottom: 0.1rem;
	}
	  .td-wrap p{
		margin-top: 0.5rem;
	}  	
	.news-table .table td, .news-table .table th{
		padding: 0.5rem 0rem;
	}
}

/*  pagination css*/
.pagination{
	width:100%;
}
.dataTables_info {
	width: 13%;
	float: left;
	margin-top:3px;
}

.dataTables_paginate {
	float: right;
	text-align: right;
	margin-top: 1px;
}
.paging_full_numbers a.paginate_button.paginate_button_disabled {
	background-color:white;
	color: #ddd;
	cursor: not-allowed !important;
}

.paging_full_numbers a.paginate_button.paginate_button_disabled:hover {
	background-color:white;
	color: #ddd;
}
.paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active
	{
	border: 1px solid #aaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 2px 5px;
	margin: 0 3px;
	cursor: pointer;
	color:#666666
}

.paging_full_numbers a.paginate_button {
	background-color: white
}

.paging_full_numbers a.paginate_button:hover {
	background-color: #4891F1;
	text-decoration: none !important;
	color: white;
}
.dataTables_length {
	width: 15%;
	float: left;
	padding-left: 5px;
	margin-top: 3px;
	font-size: 13px;
	font-weight:400;
}
.dataTables_length select{
	border: 1px solid #aaa;
    -webkit-border-radius: 5px;
    vertical-align:middle;
    position: relative;
    bottom: 4;
    width: 45px;
}
.dataTables_length label{
	font-size: 13px;
	font-weight:400;
	margin:0px;
	vertical-align:middle;
	display:inline-block;
}

.dataTables_wrapper {
	position: relative;
	clear: both;
	zoom: 1
}
.dataTables_wrapper>.row {
	overflow: auto !important;
	/*prevent datatables overflowing its container*/
}
@media ( max-width : 460px) {
	.dataTables_wrapper .col-sm-6 {
		width: 100%;
		margin-bottom: 5px;
	}
	.dataTables_wrapper .col-sm-6 .dataTables_filter {
		float: none;
	}
} 
.paging_full_numbers a.paginate_active {
	background-color: #abd6ff !important;
	border-color: #4891F1 !important
}


/*  memberlist css*/
.member-col:nth-of-type(odd) {
    background-image: linear-gradient(to right, white 98%, #e8e7e7 100%);
}
@media only screen and (max-width: 991px){
.member-col:nth-of-type(odd) {
    background-image:unset;
    }
    .member-col{
    	padding:0px;
    }
    .member-list-wrap .row{
    	width: 100%;
    	margin: 0px;
    }
}
.member-col>li{
	border-bottom:1px solid #e8e7e7;
	padding:10px 0px;
	color:#0d74bc;
}
.member-col a{
	color:#666666;
}
.portfolio_filter{
	    margin-bottom:10px;
}
.portfolio_filter ul li{
    display: inline-block;
    margin-right: 30px;
}
.portfolio_filter ul li a {
    font-size: 14px;
    font-weight: bold;
    color: #7e8d9c;
    -webkit-transition: all 400ms linear 0s;
    -o-transition: all 400ms linear 0s;
    transition: all 400ms linear 0s;
}
.portfolio_filter ul li:hover a, .portfolio_filter ul li.active a {
    color: #0b1033;
}


/*
   side bar css
*/
.list-group{
	margin: 20px 20px 0 0;
}

@media screen and (max-width: 768px){
    .list-group {
        display:none;
    }
    .list-group-wrap{
		margin-bottom:0px!important;
	}
	.page-content{
		margin-top:0px;
		margin-bottom:0px;
	}
	.page-content h2{
		font-size:20px;
	}
	.page-content iframe{
		width:100%!important;
	}
	.page-content h3,.page-content h3 span{
		font-size:15px!important;		
	}
	.page-content img{
		 width:100%;
	}
	
	.news-title{
		padding:0px;
		font-size: 16px;
	}
	.news-subinfo{
		line-height: 1.5;
		padding:8px 0px;
		font-size: 12px;
	}
	.bshare-custom.icon-medium span {
		font-size: 12px!important;
	}
	.bshare-custom .bshare-sinaminiblog{
		background:url("http://static.bshare.cn/frame/images/logos/s4/sprite/top_logos_sprite.png") no-repeat 0 -270px!important;
	}
	.bshare-custom .bshare-qqim {
		background: url(http://static.bshare.cn/frame/images/logos/s4/qqim.png) no-repeat!important;
	}
	.bshare-custom .bshare-weixin {
		background: url(http://static.bshare.cn/frame/images/logos/s4/weixin.png) no-repeat!important;
	}
	.bshare-custom {
		font-size: 13px;
		line-height: 16px !important;
	}
	.bshare-custom.icon-medium a{
		height:16px!important;
	}

	.news-time{
	    display: grid;
	}
	.pro-det-bigPic{
		width: 100%;
    	height: 225px;
	}
	.pro-det-bigPic img {
   		width: 100%;
    	height: 225px;
	}
	.page-wrap{
		margin: 5px!important;
	}
	.page-wrap hr{
		margin-top: 0px;
	}
	.pro-det-text{
		width: 100%;
	}
	.pro-det-text>p{
		margin-bottom: 0px;
	}
	.pro-det-des{
	    padding-bottom: 0px; 
	}
	.pro-detail-content {
    	margin-top: 10px;
	}
	ul.bar_tabs{
		height: 30px;
	}
	ul.bar_tabs>li a{
		padding: 8px 5px;
	}
	.list-img{
		height: 60px;
   	 	width: 80px;
	}
	
	.dataTables_info {
		width: 33%;
	}
	.dataTables_length {		
		width: 33%;
	}
	.dataTables_paginate{
	    margin-top: 10px;
	    float: left;
	}
	.paging_full_numbers a.paginate_button{
		font-size: 13px;
	}
	.paging_full_numbers a.paginate_button, .paging_full_numbers a.paginate_active{
		margin: 0px;
	}
}
.list-group li{
	width:100%;
}
.list-group>span {
    background-color: #0d74bc;
    color: #fff;
    font-size: 16px; 
    font-weight: 600;
}
.list-group-item {
    margin-bottom: -1px;
    text-align: center;
    color: #666666;
}
.list-group-item.active {
    z-index: 2;
    background-color: #f1f3f5;
    border-color:rgba(0,0,0,.125);
    color: #666666;
}
.col-lg-2-5{
	  width: 20%;
      float: left;
      padding:0 15px;
}
@media only screen and (max-width:992px){
	.col-lg-2-5{
		  width: 33.33%;
	}
}
@media only screen and (max-width:697px){
	.col-lg-2-5{
		  width: 50%;
    	  padding:0 5px;
	}
}
.card-img-top{
	height: 180px;
}
.card-footer{
	color: #666666;
    }
/*
	applypage css
*/
.mcssform-download {
    color: #fff;
    display: inline-block;
    height: 35px;
    padding: 0 20px;
    vertical-align: middle;
    line-height: 35px;
    vertical-align: middle;
    margin-right:20px;
    margin-bottom:30px;
}
.mcssform table td {
    height: 60px !important;
}
.mcssform table td.lefttitle {
    width: 150px;
    padding-right: 30px;
    text-align: right;
    color:#666666;
}
.product-ls-wp {
    padding: 38px 0;
    overflow: hidden;
    margin: 0px 180px;
}
.mcssform {
    padding: 0 50px;
}
.mcssform table {
    width: 100%;
}
.mcssform table td input[type='text'],.mcssform table td input[type='number'],.mcssform table td input[type='url'] {
    width: 95% !important;
    height: 40px;
    padding-left: 15px;
    color: #333;
    border: #ccc 1px solid;
}
.mcssform table td input[type='file'] {
    width: 95% !important;
    height: 40px;
    color: #333;
}
.mcssform table td textarea{
	width: 96% !important;
	padding: 13px;
	color: #333;
    border: #ccc 1px solid;
    margin:10px 0px;
}
.mcssform-footer {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}
.modal-header{
	    display: inline;
}

/*events css*/
.page-wrap{
	margin:20px;
}
/*ul.timeline li {
    position: relative;
    border-bottom: 1px solid #e8e8e8;
    clear: both;
}*/
.timeline .tags {
    position: absolute;
    top: 9px;
    left: -80px;
    width: 84px;
}
.timeline .circle-tags {
    position: absolute;
    top: -15px;
    /* left: -80px; */
    width: 120px;
    border: 1px solid #bec6e4;
    border-radius: 20px;
}
.timeline .tag {
    display: block;
    height: 30px;
    font-size: 13px;
   /* padding: 8px;*/
    color: #2449e4;
    font-weight: 600;
}
.timeline .circle-tag {
       display: block;
    font-size: 16px;
    padding: 3px;
    color: #0d74bc;
    font-weight: 600;
    text-align: center;
}
.tag {
   /* line-height: 1;
    background: #1ABB9C;
    color: #fff!important;*/
}
/*.tag:after {
    content: " ";
    height: 30px;
    width: 0;
    position: absolute;
    left: 100%;
    top: 0;
    margin: 0;
    pointer-events: none;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 11px solid #1ABB9C;
}
.timeline .tag span {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}*/
.timeline h2.title {
    position: relative;
    font-size: 16px;
    margin: 0;
}
/*.timeline h2.title:before {
    content: "";
    position: absolute;
    left: -23px;
    top: 3px;
    display: block;
    width: 14px;
    height: 14px;
    border: 3px solid #d2d3d2;
    border-radius: 14px;
    background: #f9f9f9;
}*/
.timeline .tag:after {
    content: "";
    position: absolute;
    left: 74px;
    top: 4px;
    display: block;
    width: 11px;
    height: 11px;
    border: 3px solid #2449e4;
    /*border-radius: 14px;*/
    background: #2449e4;
    z-index: 1;
    transform: rotate(45deg);
}

/* .timeline .circle-tag:after {
        content: "";
    position: absolute;
    left: -46px;
    top: 8px;
    display: block;
    width: 11px;
    height: 11px;
    border: 3px solid #c3d5fd;
    border-radius: 14px;
    background: #2449e4;
    z-index: 1;
    transform: rotate(45deg);
}
.timeline .circle-tag:before {
    content: "";
    position: absolute;
    left: -35px;
    top: 12px;
    display: block;
    width: 35px;
    height: 1px;
    border: none;
    z-index: 1;
    background-color: #bec6e4;
} */
.timeline .byline {
    padding: .25em 0;
}
.timeline .block {
    margin: 0 0 0 105px;
    border-left: 1px solid #bec6e4;
    overflow: visible;
    padding: 20px 20px 20px 40px;   
}
.timeline .circle-block {
   /* margin: 0 0 0 105px;
    border-left: 1px solid #bec6e4;*/
    overflow: visible;
    padding: 30px 20px 40px 0px;
    font-size: 15px;
}
.byline {
    font-size: .9375em;
    line-height: 1.3;
    color: #aab6aa;
}
.byline, .view p {
    font-style: italic;
}
.byline, .main_menu .fa {
    -webkit-font-smoothing: antialiased;
}
.panel-body li{
	list-style-type: disc;
    color: #666;    
    margin-bottom: 20px;
    line-height: 1.5;
}
.panel-body a{
 color: #666666;
 }
 #accordion{
 padding-top: 1rem;
 }
 .menu-title {
    color: #333;
    font-size: 18px;
    font-weight: bold;
}
.mini-expert-menu{
	display:none;
}
    @media screen and (max-width: 768px){ 
		.timeline .block {
			 margin: 0 0 0 60px;
			 padding-left:30px;
		}
		.timeline .tags{
			left: -60px;
		}
		.timeline .tag:after{
			left: 54px;
		}
		.single-menu-title {
			display:none;
		}
		.mini-expert-menu{
			display:block;
		}
    }



/* ***training css*/
.training-img{
	height:170px;
}

/* .list-img-wrap{
	height: 180px;
    width: 240px;
    border: 1px solid #cdcdcd;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
} */

/*table*/
.form_contain .dataTables_wrapper {
    position: relative;
    clear: both;
    zoom: 1;
}
.form_contain input,.form_contain .btn,.form_contain .table{
	font-size:14px;
}
.form_contain .table>thead{
	    background-image: linear-gradient(to bottom, #f8f8f8 0%, #ececec 100%);
    background-repeat: repeat-x;
    background-color: white;
}
.form_contain .table>thead>tr>th,.form_contain .table>thead>tr>td,
.form_contain .table>tbody>tr>th,.form_contain .table>tbody>tr>td,
.form_contain .table>tfoot>tr>th,.form_contain .table>tfoot>tr>td {
    padding: 6px 6px;
    border: 1px solid #dcdcdc;
}
.form_contain .dataTables_filter {
    width: 100%;
    float: right;
    text-align: right;
}
.form_contain .dataTables_filter label {
    float: right;
        margin-bottom: 5px;
    font-weight: 700;
}
.form_contain .dataTables_filter input {
    padding: 0px 5px;
    margin-left:5px;
}

.btn{
	font-size:14px;
}
.personPartInfo{
	font-size:16px;
}
@media screen and (max-width: 768px){
	.mcssform{		
		padding:0px;
	}
	.mcssform table td.lefttitle{
		width: 85px;
		padding-right: 5px;
	}
	.mcssform table td input[type='text'], .mcssform table td input[type='url']{
	    padding-left: 5px;
	}
	.training-img{
		height:100px;
	}
}
/******boardmember.jsp******/
.member-search-wrap{
	width: 25%; 
	float: right;
}

@media screen and (max-width: 768px){
	.member-search-wrap{
		width: 65%; 
		padding-right:0px;
		bottom:10px;
	}
	.expert-search-wrap{
	    padding-right: 0px;
    	padding-left: 0px;
	}
	/* #friend_links,#product_content,#innerpaper{
		margin-top:10px;
	} */
}