@charset "utf-8";

body {}

/* 顶部样式 */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 88px;
	background-color: #fff;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	z-index: 999999;
}

#header ul.top {
	width: 90%;
	height: 88px;
	margin: 0 auto;
}

#header ul.top>li {
	float: left;
}

/* LOGO */
#header ul.top>li.logo_box {
	width: auto;
	height: 56px;
	margin-top: 16px;
}

#header ul.top>li.logo_box a {
	height: 100%;
}


#header ul.top>li.logo_box_ss a {
	height: 100%;
}

#header ul.top>li.logo_box img {
	/* display: inline-block; */
	width: auto;
	height: 100%;
}

/* 电话、微信、搜索 */
#header ul.top>li.btn_box {
	float: right;
}

#header .top_btn_box {
	margin-top: 35px;
}

#header .top_btn_box li {
	float: left;
	padding-left: 30px;
	position: relative;
	padding-bottom: 39px;
}

#header .top_btn_box li.btn_line {
	width: 33px;
	height: 53px;
	margin-right: 16px;
}

#header .top_btn_box li.btn_line span {
	display: block;
	width: 1px;
	height: 18px;
	background-color: #4d4d4d;
}

#header .top_btn_box li.btn_icon {
	width: 50px;
	height: 53px;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	background-position: top center;
	cursor: pointer;
	transition: all 0.3s;
}

#header .top_btn_box li.btn_login {
	background-image: url(../images/icon_login.png);
	transition: all 0.3s;
}

#header .top_btn_box li.btn_login:hover {
	background-image: url(../images/icon_login_on.png);
	transition: all 0.3s;
}

#header .top_btn_box li.btn_tel {
	background-image: url(../images/icon_tel.png);
	transition: all 0.3s;
}

#header .top_btn_box li.btn_tel:hover {
	background-image: url(../images/icon_tel_on.png);
	transition: all 0.3s;
}

#header .top_btn_box li.btn_wx {
	background-image: url(../images/icon_wx.png);
	transition: all 0.3s;
}

#header .top_btn_box li.btn_wx:hover {
	background-image: url(../images/icon_wx_on.png);
	transition: all 0.3s;
}

#header .top_btn_box li.btn_search {
	width: 34px;
	background-image: url(../images/icon_search.png);
	background-position: top right;
	transition: all 0.3s;
}

#header .top_btn_box li.btn_search:hover {
	background-image: url(../images/icon_search_on.png);
	transition: all 0.3s;
}

#header .top_btn_box li .btn_son_box {
	display: none;
	position: absolute;
	left: 50%;
	font-size: 16px;
	line-height: 60px;
	color: #ffffff;
	text-align: center;
	border-radius: 0 0 6px 6px;
	background-color: #008cd7;
	transition: all 0.3s;
}

#header .top_btn_box li:hover .btn_son_box {
	display: block;
	transition: all 0.3s;
}

#header .top_btn_box .btn_login .btn_son_box {
	bottom: -60px;
	width: 240px;
	height: 60px;
	margin-left: -120px;
}

#header .top_btn_box .btn_tel .btn_son_box {
	bottom: -96px;
	width: 240px;
	height: 96px;
	line-height: 32px;
	padding: 16px 0;
	margin-left: -120px;
}

#header .top_btn_box .btn_wx .btn_son_box {
	bottom: -168px;
	width: 144px;
	height: 168px;
	padding: 10px;
	margin-left: -72px;
}

#header .top_btn_box .btn_wx .btn_son_box img {
	width: 100%;
	height: auto;
}

#header .top_btn_box .btn_wx .btn_son_box p {
	font-size: 14px;
	line-height: 1;
	margin-top: 8px;
}

#header .top_btn_box .btn_search .btn_son_box {
	bottom: -60px;
	width: 360px;
	height: 60px;
	padding: 0 16px;
	margin-left: -342px;
}

#header .top_btn_box .btn_search .btn_son_box .search_input {
	float: left;
	width: 280px;
	font-size: 14px;
	line-height: 36px;
	margin-top: 8px;
	text-align: left;
	border-bottom: 1px solid #ffffff;
	opacity: .9;
}

#header .top_btn_box .btn_search .btn_son_box .search_input input {
	color: #ffffff;
	width: 100%;
}

#header .top_btn_box .btn_search .btn_son_box .search {
	float: left;
	width: 48px;
	height: 37px;
	margin-top: 8px;
	border-bottom: 1px solid #ffffff;
	opacity: .9;
}

#header .top_btn_box .btn_search .btn_son_box .search img {
	display: block;
	width: 20px;
	margin: 8px 0 0 14px;
	height: auto;
}

#header .top_btn_box .btn_icon .btn_son_box a {
	color: #ffffff;
	opacity: 0.8;
	transition: all 0.3s;
}

#header .top_btn_box .btn_icon .btn_son_box a i {
	font-size: 24px;
	font-style: italic;
}

#header .top_btn_box .btn_icon .btn_son_box a:hover {
	opacity: 1;
	transition: all 0.3s;
}

/* 顶部导航 */
#header ul.top>li.nav_box {
	float: right;
}

#top_nav .top_nav_list {
	/* display: -webkit-box;
	display: -webkit-flex;
	display: flex; */
}

#top_nav .top_nav_list>li {
	/* -webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1; */
	float: left;
	text-align: center;
	position: relative;
	z-index: 300;
	transition: all 0.3s;
}

#top_nav .top_nav_list>li a {
	display: block;
}

#top_nav .top_nav_list>li>a {
	width: 100%;
	font-size: 16px;
	color: #231916;
	line-height: 88px;
	position: relative;
	padding: 0 48px;
	transition: all 0.3s;
}

#top_nav .top_nav_list>li>a span {
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 48px;
	height: 3px;
	margin-left: -24px;
	background-color: #008cd7;
	display: none;
	transition: all 0.5s;
}

/* #top_nav .top_nav_list>li:last-child>a{
	padding-right: 0;
} */
#top_nav .top_nav_list>li>a:hover,
#top_nav .top_nav_list>li>a.active {
	color: #008cd7;
	transition: all 0.3s;
}

#top_nav .top_nav_list>li>a:hover span,
#top_nav .top_nav_list>li>a.active span {
	display: block;
	transition: all 0.5s;
}

/* 顶部下拉菜单 */
#top_nav .top_nav_list>li>blockquote {
	display: none;
	position: absolute;
	left: 50%;
	top: 88px;
	width: 172px;
	margin-left: -86px;
	height: auto;
	text-align: center;
	z-index: 201;
}

#top_nav .top_nav_list>li>blockquote .ChildNavIn {
	width: 100%;
	height: auto;
}

#top_nav .top_nav_list>li>blockquote .ChildNavIn a {
	width: 100%;
	height: 40px;
	font-size: 14px;
	color: #4d4d4d;
	line-height: 40px;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	margin-top: 1px;
	transition: all 0.3s;
}

#top_nav .top_nav_list>li>blockquote .ChildNavIn a:hover {
	color: #fff;
	background-color: #008cd7;
	transition: all 0.3s;
}
.top_nav_img_box{
	display: none;
}
/* 手机版导航 */
.m_nav_box {
	display: none;
}



/* 产品详情 */
.page_xq_main {
	width: 100%;
	height: 100vh;
	padding-top: 88px;
	overflow-y: hidden;
}

.page_xq_main li {
	float: left;
	width: 50%;
	height: 100%;
}

.cp_img_bg {
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right bottom, #666666 0, #333333 100%);
}

.cp_img_box {
	width: 72%;
	margin: 0 auto;
}
.page_xq_right{
	background-color: #ffffff;
	padding: 72px 96px;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
}
.page_xq_right>h1{
	font-size: 30px;
	line-height: 1;
	margin: 0;
	padding-bottom:30px ;
}
.page_xq_right>p{
	font-size: 16px;
	line-height: 30px;
	color: #3c3c3c;
	text-align: justify;
	padding-bottom: 14px;
}
.page_xq_right .p_tit{
	font-size: 24px;
	line-height: 1;
	/* background-image: linear-gradient(to right, #008cd7 0, #d4d81f 100%);
	-webkit-background-clip: text; */
	color: #008cd7;
	padding-top: 36px;
	padding-bottom: 20px;
}
.page_xq_right .p_tit_line{
	width: 100%;
	height: 1px;
	background-color: #e5e5e5;
	/* background-image: linear-gradient(to right, #008cd7 0, #d4d81f 100%); */
	margin-bottom: 20px;
}
.page_xq_right table{
	width: 100%;
	border-left: 1px solid #e5e5e5;
	border-top: 1px solid #e5e5e5;
	margin-bottom: 14px;
}
.page_xq_right table td{
	font-size: 14px;
	line-height: 40px;
	color: #3c3c3c;
	padding-left: 16px;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	cursor: pointer;
	transition: all .3s; 
}
.page_xq_right table tr:hover{
	background-color: #008cd7;
	transition: all .3s; 
}
.page_xq_right table tr:hover td{
	color: #ffffff;
	transition: all .3s; 
}
.go_back_cp{
	position: fixed;
	right: 0;
	bottom: 48px;
	display: block;
	width: 96px;
	height:48px;
	font-size: 16px;
	line-height:48px;
	text-align: center;
	color: #ffffff;
	border-radius: 26px 0 0 26px;
	background-color:#999999;
	border: 1px solid #999999;
	border-right-width:0 ;
	transition: all .3s; 
}
.go_back_cp:hover{
	color: #ffffff;
	border: 1px solid #008cd7;
	background-color:#008cd7;
	border-right-width:0 ;
	transition: all .3s; 
}

/*滚动条样式*/
.scroll {
	scrollbar-width: none;
}

.scroll::-webkit-scrollbar {
	width: 0;
}

.page_xq_right::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 6px;
	height: 3px;
}

.page_xq_right::-webkit-scrollbar-thumb {
	/*滚动条里面小方块样式*/
	border-radius: 100px;
	-webkit-box-shadow: inset 0 0 5px rgba(151, 151, 151, 0.2);
	background: rgba(0, 0, 0, 0.1);
	;
}

.page_xq_right::-webkit-scrollbar-track {
	/*滚动条里面轨道样式*/
	-webkit-box-shadow: inset 0 0 5px rgba(223, 223, 223, 0.2);
	border-radius: 100px;
	background: rgba(0, 0, 0, 0.1);
}

.page_xq_right::-webkit-scrollbar-thumb:hover {
	background: #008cd7;
}

.page_xq_right::-webkit-scrollbar-thumb:active {
	background: #008cd7;
}
