﻿.pcb-header {
	height: 50px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	min-width: 1200px;
}
.pcb-header-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 1200px;
}
.header-left {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
.header-item {
	margin-right: 10px;
	font-size: 14px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	font-weight: bold;
}
.header-item i {
	display: block;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.header-item i.wechat {
	background: url(../images/wechat.jpg) no-repeat left top;
	background-size: 100%;
}
.header-item i.email {
	background: url(../images/email.png) no-repeat left top;
	background-size: 100%;
	position: relative;
	top: 2px;
}
.header-item span {
	color: #888;
	font-weight: normal;
}
.header-right {
	position: relative;
}
.pcb-header-container .header-right .menu-arrow {
	border-top-color: #9c9c9c;
}
.header-right > a {
	text-decoration: none;
	color:#000;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.header-right .country {
	width: 30px;
	border: 0 none;
	margin-right: 5px;
}
.header-sub-menu{
	position:absolute;
	display:block;
	width:240px;
	top:20px;
	display:none;
	z-index:110;
	box-shadow: 1px 0 10px #9c9c9c;
    font-size: 12px;
    color: #b2b2b2;
    border-radius: 3px;
    background: #fff;
}
.header-right:hover .header-sub-menu{
	display:block;
}
.country-dropdown {
	width: 520px;
	right: 10px;
}
.country-list {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	flex-wrap: wrap;
	padding: 20px;
}
.country-info {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
    font-size: 14px;
	margin-bottom: 8px;
	width: 25%;
	cursor: pointer;
	color: #8c8c8c;
}
.country-info img{
	width: 20px;
	height: auto;
	margin-right: 4px;
}
.country-info:hover {
	color: #108413;
	font-weight: bold;
}

/* 导航条 */
.pcb-navbar{
	height: 80px;
	position: sticky;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 100;
	background-color: rgba(0,0,0,0.4);
	min-width: 1200px;
}
.pcb-navbar .container{
	width: 1200px;
	padding-right:15px;
	margin:0 auto;
	height: inherit;
	/* border-radius: 0px 0px 40px 40px; */
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.pcb-navbar .logo{
	width:148px;
	height:52px;
	line-height:52px;
	outline:0 none;
	text-align:left;
	float:left;
}
.pcb-navbar .logo a{
	width:100%;
	height:100%;
	display:block;
}
.pcb-navbar .logo a img{
	width:100%;
	height:100%;
}


/*导航栏菜单 start*/
.pcb-navbar .menu{
	width:100%;
	height:inherit;
	margin-top:0px;
	margin-left:20px;
}
.pcb-navbar ul{
	width:100%;
	height: inherit;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
.pcb-navbar li{
	height:56px;
	position:relative;
}
.pcb-navbar li>.first-split{
	height:32px;
	position:relative;
	top:12px;
	display:block;
	float:left;
}
.pcb-navbar li>.end-split{
	height:32px;
	position:relative;
	top:12px;
	display:block;
	float:right;
}
.pcb-navbar li > a{
	color:#FFF;
	font-size:16px;
	font-weight: bold;
	padding:0px 12px;
	height:32px;
	position:relative;
	top:12px;
	line-height:32px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
.pcb-navbar li a img.country {
	width: 30px;
	height: auto;
	margin-right: 4px;
}
.pcb-navbar li:hover .sub-menu{
	display:block;
}
.pcb-navbar li.home:hover .sub-menu{
	display:none;
}
.pcb-navbar li:hover > a{
	color:#FFF;
}
.pcb-navbar .sub-menu{
	position:absolute;
	display:block;
	width:240px;
	top:50px;
	display:none;
	z-index:100;
	box-shadow: 1px 0 10px #9c9c9c;
    font-size: 12px;
    color: #b2b2b2;
    border-radius: 3px;
    background: #fff;
}
.pcb-navbar .sub-menu.selected{
	display:block;
}
.pcb-navbar dl{
	padding: 10px 20px;
}
.pcb-navbar dl dd{
	height: 40px;
	font-size:13px;
	text-align:left;
	overflow:hidden;
	border-bottom: 1px solid #dbdbdb;
}
.pcb-navbar dl dd:last-child {
	border-bottom: 0px;
}
.pcb-navbar dl dd a{
	height:35px;
	line-height:35px;
	color: #8c8c8c;
}
.pcb-navbar dl dd:hover a,
.pcb-navbar dl dd.current a{
	color:#108413;
	font-weight: bold;
	font-size: 14px;
}

/*导航栏菜单 end*/

/*主题内容start*/
#wrapper{
	width:1200px;
	margin:0 auto;
	margin-bottom:40px;
}
.pcb-main-container{
	border:1px solid #BBB;
	padding:10px 0px 20px 10px;
	width:100%;
	margin:0px auto;
	overflow:hidden;
}
#wrapper .left-container{
	min-height:400px;
	width:260px;
	float:left;
}
#wrapper .right-container{
	min-height:600px;
	width: 900px;
	float:right;
}

.product-item{
	overflow:hidden;
	height:190px;
	position:relative;
}
.product-item .photo{
	width:150px;
	position:absolute;
	left:0px;
	top:25px;
}
.single-col .photo{
	width:200px;
	height:176px;
	top:22px;
}
.product-item .photo img{
	width:100%;
	height:100%;
	border:0 none;
}
.single-col .photo img{
	width:100%;
	height:100%;
	border:0 none;
}
.product-item table{
	position:absolute;
	height:180px;
	right:0px;
	top:10px;
	width:510px;
}
.single-col table{
	width:500px;
}
.product-item table td{
	height:60px;
	overflow: hidden;
	font-size:14px;
	color:#787668;
}
.product-item .item-tr td{
	font-family: 'Open Sans',Microsoft Yahei,Arial,Helvetica,sans-serif;
	color:#555;
}

#footer{
	position:relative;
	clear:both;
	min-width: 1200px;
}
#footer .header{
	background:#DDD;
	height:60px;
	line-height:60px;
}
#footer .container{
	width:1200px;
	margin:0 auto;
}
#footer .cert{
	float:left;
	position:relative;
}
#footer .cert li{
	float:left;
	height:60px;
	line-height:60px;
	color:#ACACAC;
	padding-right:5px;
}
#footer .cert li a{
	color:#ACACAC;
	font-size:12px;
}
#footer .cert li:hover a{
	color:#50843e;
}

.share{
	float:right;
	width:240px;
	height:60px;
	line-height:60px;
}
.share li{
	float:left;
	display:inline-block;
	padding:0px 5px;
	height:60px;
	position:relative;
}
.share li a{
	display:block;
	width:24px;
	position:relative;
	top:18px;
	height:24px;
}
.share i.icon{
	display:block;
	width:100%;
	height:100%;
}
.share i.icon-twitter{
	background:url(../images/twitter.png) 0px 0px no-repeat;
}
.share i.icon-twitter:hover{
	background:url(../images/twitter_hover.png) 0px 0px no-repeat;
}
.share i.icon-linkedin{
	background:url(../images/linkedin.png) 0px 0px no-repeat;
}
.share i.icon-linkedin:hover{
	background:url(../images/linkedin_hover.png) 0px 0px no-repeat;
}
.share i.icon-facebook{
	background:url(../images/facebook.png) 0px 0px no-repeat;
}
.share i.icon-facebook:hover{
	background:url(../images/facebook_hover.png) 0px 0px no-repeat;
}
.share i.icon-googleplus{
	background:url(../images/googleplus.png) 0px 0px no-repeat;
}
.share i.icon-googleplus:hover{
	background:url(../images/googleplus_hover.png) 0px 0px no-repeat;
}
.share i.icon-youtube{
	background:url(../images/youtube.png) 0px 0px no-repeat;
}
.share i.icon-youtube:hover{
	background:url(../images/youtube_hover.png) 0px 0px no-repeat;
}
.share i.icon-instagram{
	background:url(../images/instagram.png) 0px 0px no-repeat;
}
.share i.icon-instagram:hover{
	background:url(../images/instagram_hover.png) 0px 0px no-repeat;
}

#footer .menu{
	background:#3a3a3a;
	padding: 45px 0 22px;
	width:100%;
}
#footer .menu ul{
	width:1200px;
	height:310px;
	margin:0 auto;
}
#footer .menu li{
	float:left;
	padding-left:0px;
	border:0 none;
	height:225px;
	height:40px;
	position:relative;
	min-height:164px;
	width:190px;
}
#footer .menu li > a{
	color:#FFF;
	line-height:40px;
	font-size:14px;
}
#footer .menu li a{
	font-family: 'Open Sans',Microsoft Yahei,Arial,Helvetica,sans-serif;
}
#footer .menu dl{
	position:absolute;
	top:40px;
}
#footer .menu dd{
	height:25px;
	line-height:25px
}
#footer .menu dd a{
	color:#AAA;
	font-size:13px;
}
#footer .menu dd:hover a{
	color:#FFF;
}

#footer .bottom{
	width:1200px;
	margin:0 auto;
	margin-bottom:40px;
}
#footer .copyright{
	height:60px;
	line-height:60px;
}
#footer .copyright .info{
	font-size:13px;
	color:#666;
	float:left;
}
#footer .copyright .info a{
	color:#437C2D;
}
#footer .copyright .develop{
	float:right;
	color:#666;
	font-size:13px;
}
#footer .copyright .w3c{
	width:80px;
	height:15px;
}
#footer .bottom .nav{
	height:30px;
	line-height:30px;
	font-size:13px;
	width:100%;
}
#footer .nav li{
	float:left;
	color:#666;
	margin-right:5px;
}
#footer .nav li a{
	color:#666;
}
#footer .nav li:hover a{
	color:#437C2D;
}
#footer .seo{
	margin-top:20px;
	color:#CCC;
	font-size:12px;
	text-align:center;
}
#footer .certifications-ios{
	position: static;
}
#footer .certifications-ios dd {
	height: auto;
	margin-bottom: 10px;
}
/*主题内容end*/

.box-container .box-arrow{
	background:url(../resources/images/arrow.png) 0px 0px no-repeat;
}



/*assembly.css*/
.factory-pictures{
	padding:10px 0px;
}
.factory-pictures ul{
	overflow:hidden;
}
.factory-pictures li{
	width:200px;
	float:left;
	margin-right:40px;
}
.factory-pictures li img{
	width:100%;
	height:100%;
	border:0 none;
	display:block
}
.factory-pictures li > a{
	display:block;
	text-align:center;
	width:100%;
	height:30px;
	line-height:30px;
}

.ecms-main {
	position: relative;
	left: 0px;
	top: 0px;
}
.ecms-main .banner-content {
    box-sizing: border-box;
    position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .ecms-main .banner-text {
    margin: auto;
    width: 694px;
    transition: all 0.6s ease;
    z-index: 4;
  }
  .ecms-main .banner-headline {
	margin: 10px 0;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
}
.ecms-main .eyebrow-text {
	font-size: 16px;
    line-height: 20px;
    height: 20px;
    text-align: center;
    font-weight: normal;
}
.ecms-main .banner-content .banner-btn-box {
  margin-top: 24px;
  display: inline-flex;
  justify-content: center;
  position: relative;
}
.ecms-main .banner-content .banner-btn-box a.banner-button {
  display: flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 64px;
  margin: 0 8px;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid #fff;
}
.ecms-main .banner-content .banner-btn-box a.banner-button:hover {
  background: rgba(255, 255, 255, 0.09);
}
.ecms-main .banner-content .banner-btn-box a.banner-button .text {
  font-size: 14px;
  line-height: 20px;
}
.ecms-main .banner-content .banner-btn-box a.banner-button .icon-btn {
  margin-left: 10px;
  font-size: 12px;
}
.m-buildbgc-video .column-group__ct-inner.openvideo .column-group__img-wrap {
	position: relative;
}
.m-buildbgc-video .column-group__ct-inner.openvideo .column-group__img-wrap::before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    display: block;
    background: rgba(0, 0, 0, 0.3);
}
.m-buildbgc-video .column-group__ct-inner.openvideo .column-group__img-wrap::after {
    content: '';
    display: block;
    background-image: url(../images/cover_play.png);
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;
}

/* 切换手机地址悬浮按钮 */
.caseBlanche-box {
    width: 120px;
    height: 155px;
    position: fixed;
    top: 50%;
    right: 110px;
    margin-top: -35px;
    z-index: 100;
}
.caseBlanche-box #caseBlanche3 {
    height: 200px;
    width: 200px;
    position: absolute;
    top: -10px;
    left: -6px;
}
.caseBlanche-box #caseBlanche3 #rond {
    height: 200px;
    width: 200px;
    border: 1px solid #5eb1f3;
    opacity: 0.9;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 15px;
    animation: rond 3s infinite;
}
.caseBlanche-box #caseBlanche3 #test {
    height: 10px;
    width: 10px;
    position: absolute;
    background-color: #5eb1f3;
    opacity: 0.9;
    border-radius: 50%;
    top: 29px;
    left: 10px;
    margin: 5px;
}
.caseBlanche-box #caseBlanche3 #load {
    color: #fff;
    font-family: calibri;
    text-align: center;
    position: absolute;
    top: 40px;
    left: 36px;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    background: url(../images/pic_mobile.png) no-repeat #5eb1f3;
    opacity: 0.9;
    background-size: 120px 120px;
    background-position: center center;
}
@keyframes rond {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hidden {
	display: none;
}