@charset "utf-8";
/*路径*/
/*在当中显示内容的小标签，需要配合bootstrap使用*/
a {
  color: #666666;
  cursor: pointer;
  text-decoration: none;
  transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}
a:focus,
a:hover {
  color: #e3017e;
  text-decoration: none;
  transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
}
a img {
  cursor: pointer;
}
.errorMessage {
  color: #c30;
  margin: 0 5px;
  vertical-align: middle;
}
.errorMessage:before {
  vertical-align: inherit;
}
.errorMessage.top {
  vertical-align: top;
}
[class^="xy-col-"],
[class*=" xy-col-"] {
  float: left;
  min-height: 1px;
  position: relative;
}
/*http://www.w3school.com.cn/cssref/pr_transform.asp 动画轨迹*/
/*http://www.w3school.com.cn/cssref/pr_transition.asp 动画运动参数*/
/*
http://www.w3school.com.cn/cssref/pr_animation.asp
animation.css 动画效果
结合以上两项的动画效果
*/
.xySation {
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.xySationShow {
  visibility: visible;
  animation: fadeOpacity 1s;
  -ms-animation: fadeOpacity 1s;
  -moz-animation: fadeOpacity 1s;
  -webkit-animation: fadeOpacity 1s;
  -o-animation: fadeOpacity 1s;
}
/*如制作手机站，请将以下代码放到@media (min-width: 768px)内*/
html {
  font-size: 12px;
}
body {
  position: relative;
  overflow-y: scroll;
  color: #666666;
  font-size: 1em;
  line-height: 2;
}
.xy-container {
  width: 100%;
}
.xy-container-fluid {
  min-width: 100%;
  line-height: normal;
}
@media (min-width: 576px) {}
@media (min-width: 768px) {}
@media (min-width: 992px) {
  html {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 1217px) {
  .xy-container {
    width: 1200px;
  }
  .xy-container-fluid {
    min-width: 1200px;
  }
}

/*title 开始*/
.title {
  display: inline-block;
  color: #313131;
  font-size: 1.5em;
  font-weight: lighter;
  line-height: 1.5;
  text-align: center;
}
.title > small {
  display: block;
  font-size:12px;
  font-weight: lighter;
}
a.title {
  color: #313131;
}
@media (min-width: 768px) {
  .title {
    font-size: 1.8em;
  }
  .title > small {
    font-size:13px;
  }
}
@media (min-width: 992px) {
  .title {
    font-size: 2em;
  }
  .title > small {
    font-size:14px;
  }
}
@media (min-width: 992px) {
  .title {
    font-size: 2.286em;
  }
}
/*title 结束*/

/*header 开始*/
header{
  background:url(../images/hbg.png) repeat left top;
}
nav.navbar-default {
  padding-bottom:15px;
  min-height: 40px;
  margin-bottom: 0;
  background-color: transparent;
  border-width: 0;
}
nav.navbar-default > .navbar-header > .navbar-toggle {
  margin: 3px 15px 3px 0;
  border-color: transparent;
}
nav.navbar-default > .navbar-header > .navbar-toggle > .icon-bar {
  background-color: #01b2ee;
}
nav.navbar-default > .navbar-header > .navbar-toggle:focus,
nav.navbar-default > .navbar-header > .navbar-toggle:hover {
  background-color: transparent;
}
nav.navbar-default > .navbar-header > .navbar-brand {
  height: 40px;
  padding: 0;
  margin-left: 15px;
}
nav.navbar-default > .navbar-header > .navbar-brand > img {
  height: 100%;
}
nav.navbar-default > .navbar-collapse {
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 10;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-style: solid;
  border-width: 1px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
nav.navbar-default > .navbar-collapse > .nav {
  min-width: 110px;
  margin: 0;
  padding: 5px 0;
}
nav.navbar-default > .navbar-collapse > .nav > li > a,
nav.navbar-default > .navbar-collapse > .nav > li > font {
  padding: 5px 15px;
  display: block;
  color: white;
  font-size:14px;
}
nav.navbar-default > .navbar-collapse > .nav > li > a > i,
nav.navbar-default > .navbar-collapse > .nav > li > font > i {
  height: 22px;
  color: white;
  font-size: 16px;
  line-height: 22px;
}
nav.navbar-default > .navbar-collapse > .nav > li > ul {
  padding: 0;
  margin: 0;
  display: none;
  list-style: none;
}
nav.navbar-default > .navbar-collapse > .nav > li > ul > li > a,
nav.navbar-default > .navbar-collapse > .nav > li > ul > li > font {
  padding: 5px 15px 5px 23px;
  display: block;
  color: #666666;
  cursor: pointer;
  text-decoration: none;
  background-image:url(../images/dot.jpg);
  background-position:15px center;
  background-repeat:no-repeat;
}
nav.navbar-default > .navbar-collapse > .nav > li.open > font,
nav.navbar-default > .navbar-collapse > .nav > li.open > font > i {
  color: #01b2ee;
}
nav.navbar-default > .navbar-collapse > .nav > li.open > ul {
  display: block;
}
@media (min-width: 768px) {
  header{
    position:absolute;
    z-index: 1;
    width:100%;
  }
  nav.navbar-default {
    width: 100%;
    max-width: 1200px;
    height: 84px;
    border-radius: 0;
  }
  nav.navbar-default > .navbar-header > .navbar-brand {
    height: 84px;
  }
  nav.navbar-default > .navbar-header > .navbar-brand img {
    height:47px;
    margin-top:37px;
  }
  nav.navbar-default > .navbar-collapse {
    position: relative;
    top: 0;
    background-color: transparent;
    border-width: 0;
  }
  nav.navbar-default > .navbar-collapse > .nav {
    position: absolute;
    bottom: 11px;
    right: 5px;
    padding: 0;
    margin: 0;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > a {
    padding: 0 5px;
    margin-top:3px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    font-size: 14px;
    line-height: 30px;
    border-color: transparent;
    border-style: solid;
    border-width: 0 0 3px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > a:focus,
  nav.navbar-default > .navbar-collapse > .nav > li > a:hover {
    color: white;
    text-decoration: none;
    transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    border-color:#01b2ee;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .dropdown-menu {
    left: 0;
    right: auto;
    width: auto;
    min-width:auto;
    margin-left:auto;
    padding:5px 0;
    display: block;
    background-color: white;
    border-color:transparent;
    border-top-width:8px;
    border-radius: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .dropdown-menu > i{
    position:absolute;
    top:-13px;
    left:35%;
    height:20px;
    width:20px;
    color:white;
    font-size:20px;
    text-align: center;
    line-height: 20px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .dropdown-menu > li {
    position: relative;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .dropdown-menu > li > a {
    padding: 3px 15px;
    color: black;
    cursor: pointer;
    text-decoration: none;
    transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    font-size: 12px;
    line-height: 1.8;
    background:none;
  }
  nav.navbar-default > .navbar-collapse > .nav >li > .dropdown-menu >li >a:focus,
  nav.navbar-default > .navbar-collapse > .nav >li > .dropdown-menu >li >a:hover{
    background-color:#d6eef6;
  }
  nav.navbar-default > .navbar-collapse > .nav > li.open > a{
    border-color:#01b2ee;
  }
  nav.navbar-default > .navbar-collapse > .nav > li.open > a,
  nav.navbar-default > .navbar-collapse > .nav > li.showUL > a {
    background-color: transparent;
  }
  nav.navbar-default > .navbar-collapse > .nav > li.open > .dropdown-menu,
  nav.navbar-default > .navbar-collapse > .nav > li.showUL > .dropdown-menu {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
  }
  nav.navbar-default > .navbar-collapse > .nav > li.active > a {
    background-color: transparent;
    border-bottom-color: #01b2ee;
  }
  nav.navbar-default > .navbar-collapse > .nav > li + li {
    margin-left: 9px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li#lang > a,
  nav.navbar-default > .navbar-collapse > .nav > li#lang > i {
    height:30px;
    width:30px;
    padding:0;
    margin:3px 0;
    float:left;
    cursor: pointer;
    color:white;
    text-align: center;
    line-height: 30px;
    border:0;
  }
  nav.navbar-default > .navbar-collapse > .nav > li#lang > a{
    margin-left:5px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li#lang > a.active,
  nav.navbar-default > .navbar-collapse > .nav > li#lang > a:focus,
  nav.navbar-default > .navbar-collapse > .nav > li#lang > a:hover{
    background-color:#01b2ee;
    border-radius: 50%;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .popover > .popover-content > #topsearch {
    width: 210px;
    overflow: hidden;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .popover > .popover-content > #topsearch > input {
    height: 24px;
    width: 160px;
    float: left;
    padding: 2px 5px;
    border: 1px #ccc solid;
    border-radius: 2px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .popover > .popover-content > #topsearch > button {
    float: right;
  }
}
@media (min-width: 1090px) {
  nav.navbar-default {
    height: 99px;
  }
  nav.navbar-default > .navbar-header > .navbar-brand {
    height: 99px;
  }
  nav.navbar-default > .navbar-header > .navbar-brand img {
    height:57px;
    margin-top:42px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > a {
    font-size: 15px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li + li {
    margin-left: 12px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .dropdown-menu > li > a {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  nav.navbar-default {
    height: 114px;
  }
  nav.navbar-default > .navbar-header > .navbar-brand {
    height: 114px;
  }
  nav.navbar-default > .navbar-header > .navbar-brand img {
    height:67px;
    margin-top:47px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > a {
    font-size: 16px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li + li {
    margin-left: 15px;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .dropdown-menu > li > a {
    font-size: 14px;
  }
}
/*header 结束*/


#banner, #innerbanner{
  position:relative;
  overflow: hidden;
  background-color:#584d49;
}
#innerbanner div {
  position:absolute;
  left:50%;
  top:0;
  height:100%;
  width:100%;
  margin-left:-50%;
}
#innerbanner div.xySationShow{
  animation: fadeInRight 0.3s;
  -ms-animation: fadeInRight 0.3s;
  -moz-animation: fadeInRight 0.3s;
  -webkit-animation: fadeInRight 0.3s;
  -o-animation: fadeInRight 0.3s;
}
#innerbanner div > font {
  position:absolute;
  bottom:25%;
  right:5%;
  color:white;
  font-size: 1.714em;
}
#innerbanner div > p {
  position:absolute;
  bottom:15%;
  right:5%;
  color:white;
  line-height: 34px;
}
#innerbanner div>p>a{
  color:white;
}
#innerbanner .btn{
  padding-left:15px;
  padding-right:15px;
  margin-left:10px;
  background:url(../images/btn-bg.png) repeat;
}
@media (min-width: 768px) {
  #innerbanner {
    height:260px;
  }
  #innerbanner img {
    position:absolute;
    left:50%;
    top:0;
    width:994px;
    max-width: none;
    margin-left:-497px;
  }
  #innerbanner div > font {
    font-size: 2.286em;
  }
  #innerbanner div > p {
    bottom:5%;
  }
}
@media (min-width: 992px) {
  #innerbanner {
    height:502px;
  }
  #innerbanner img {
    width:1920px;
    margin-left:-960px;
  }
  #innerbanner div > font {
    font-size: 3.286em;
  }
  #innerbanner div > p {
    bottom:14%;
  }
}
@media (min-width: 1200px) {
  #innerbanner div {
    width:1180px;
    margin-left:-590px;
  }
}

/*carousel-banner 开始*/
#carousel-banner {
  overflow:hidden;
  background-color:black;
}
#carousel-banner > .carousel-inner > .item > div {
  position:absolute;
  left:50%;
  top:0;
  height:100%;
  width:100%;
  margin-left:-50%;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
#carousel-banner > .carousel-inner > .item.active > div {
  animation: fadeOpacity 0.3s;
  -ms-animation: fadeOpacity 0.3s;
  -moz-animation: fadeOpacity 0.3s;
  -webkit-animation: fadeOpacity 0.3s;
  -o-animation: fadeOpacity 0.3s;
  animation-fill-mode:forwards;
  -ms-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  -webkit-animation-fill-mode:forwards;
  -o-animation-fill-mode:forwards;
  filter: Alpha(opacity=100);
  -moz-opacity:1;
  -khtml-opacity:1;
  opacity:1;
}
#carousel-banner > .carousel-inner > .item > div > .font {
  position:absolute;
  top:25%;
  width:100%;
}
#carousel-banner > .carousel-inner > .item#item3 > div > .font {
  position:absolute;
  bottom:20%;
  top:auto;
}
#carousel-banner > .carousel-inner > .item > div > .font > .font1 {
  color:white;
  font-size: 1.429em;
  font-style: italic;
  font-weight: bold;
  text-align: center;
}
#carousel-banner > .carousel-inner > .item > div > .font > .font2 {
  color:white;
  font-size:1em;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
}
.carousel.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}
.carousel.carousel-fade .carousel-inner .item,
.carousel.carousel-fade .carousel-inner .active.left,
.carousel.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel.carousel-fade .carousel-inner .active,
.carousel.carousel-fade .carousel-inner .next.left,
.carousel.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel.carousel-fade .carousel-inner .next,
.carousel.carousel-fade .carousel-inner .prev,
.carousel.carousel-fade .carousel-inner .active.left,
.carousel.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
  #carousel-banner > .carousel-inner > .item > div > .font > .font1 {
    font-size: 2.714em;
  }
  #carousel-banner > .carousel-inner > .item > div > .font > .font2 {
    font-size:1.286em;
  }
}
@media (min-width: 992px) {
  #carousel-banner > .carousel-inner > .item {
    height:729px;
  }
  #carousel-banner > .carousel-inner > .item img {
    position:absolute;
    left:50%;
    max-width: none;
    margin-left:-960px;
  }
  #carousel-banner > .carousel-inner > .item > div > .font > .font1 {
    font-size: 3.414em;
  }
  #carousel-banner > .carousel-inner > .item > div > .font > .font2 {
    font-size:1.6em;
  }
}
@media (min-width: 1200px) {
  #carousel-banner > .carousel-inner > .item > div {
    width:1180px;
    margin-left:-590px;
  }
  #carousel-banner > .carousel-inner > .item > div > .font > .font1 {
    font-size: 4em;
  }
  #carousel-banner > .carousel-inner > .item > div > .font > .font2 {
    font-size:1.88em;
  }
}
@media (min-width: 1440px) {
  #carousel-banner > .carousel-inner > .item > div > .font > .font1 {
    font-size: 4.714em;
  }
  #carousel-banner > .carousel-inner > .item > div > .font > .font2 {
    font-size:2.2em;
  }
}
#carousel-banner > .carousel-control {
  top:0%;
  bottom:0%;
  background:none;
}
#carousel-banner > .carousel-control > img {
  position: absolute;
  top: 40%;
  left: 30%;
  max-width: 40%;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
#carousel-banner > .carousel-control.right > img {
  right: 30%;
}
@media (min-width: 768px) {
  #carousel-banner > .carousel-control {
    top:40%;
    bottom:40%;
  }
  #carousel-banner > .carousel-control > img {
    top:20%;
  }
}
/*carousel-banner 结束*/

#index-proclass{
  background-color:#d7d6dc;
}
#index-proclass>article>div{
  width:308px;
  padding:10px 0;
  margin:0 auto;
}
#index-proclass>article>div.xySationShow{
  animation: fadeInUp 0.3s;
  -ms-animation: fadeInUp 0.3s;
  -moz-animation: fadeInUp 0.3s;
  -webkit-animation: fadeInUp 0.3s;
  -o-animation: fadeInUp 0.3s;
}
#index-proclass>article>div>.xy-col-1-3{
  animation: xyDownShadow 0.3s;
  -ms-animation: xyDownShadow 0.3s;
  -moz-animation: xyDownShadow 0.3s;
  -webkit-animation: xyDownShadow 0.3s;
  -o-animation: xyDownShadow 0.3s;
}
#index-proclass>article>div>.xy-col-1-3:focus,
#index-proclass>article>div>.xy-col-1-3:hover{
  animation: xyUpShadow 0.3s;
  -ms-animation: xyUpShadow 0.3s;
  -moz-animation: xyUpShadow 0.3s;
  -webkit-animation: xyUpShadow 0.3s;
  -o-animation: xyUpShadow 0.3s;
  animation-fill-mode:forwards;
  -ms-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  -webkit-animation-fill-mode:forwards;
  -o-animation-fill-mode:forwards;
}
#index-proclass>article>div>.xy-col-1-3 img{
  -webkit-box-shadow: 0 5px 20px 4px rgba(153, 153, 153, .5);
  box-shadow: 0 5px 20px 4px rgba(153, 153, 153, .5);
}
#index-proclass>article>div>.xy-col-1-3>div{
  position:absolute;
  top:50%;
  right:30px;
  margin-top:-25px;
  color:#dedede;
  font-size:2.286em;
  line-height: 50px;
}
@media (min-width: 768px) {
  #index-proclass>article>div{
    height:auto;
    width:741px;
    padding:0;
  }
  #index-proclass>article>div>.xy-col-1-3{
    width:31.33333333%;
    margin: 0 1%;
  }
}
@media (min-width: 992px) {
  #index-proclass>article>div{
    width:96%;
    padding: 0;
    margin:0 auto;
  }
}
@media (min-width: 1213px) {
  #index-proclass>article>div{
    width:1197px;
  }
}

/*生产工艺 开始*/
#index-process{
  background:url(../images/bg.jpg) no-repeat center center;
}
#index-process .title{
  color:white;
}
#process-icon{
  padding:0;
  margin:0;
  list-style: none;
}
#process-icon>.xy-col-1-4{
  width:100%;
  padding:5px 0;
}
#process-icon>li>img{
  height: 5.4em;
  margin-right:15px;
  float:left;
}
#process-icon>li>div{
  color:white;
  font-size:1.286em;
  line-height: 2;
}
#process-icon>li>p{
  display:table-cell;
  vertical-align: middle;
  color:#acacbb;
  line-height: 1.6;
}
#quality #process-icon>li>div{
  color:#282828;
  font-weight: bold;
}
#quality #process-icon>li>p{
  color:#282828;
}
@media (min-width: 768px) {
  #process-icon>.xy-col-1-4{
    width:25%;
    animation: xyDown 0.3s;
    -ms-animation: xyDown 0.3s;
    -moz-animation: xyDown 0.3s;
    -webkit-animation: xyDown 0.3s;
    -o-animation: xyDown 0.3s;
  }
  #process-icon>.xy-col-1-4:focus,
  #process-icon>.xy-col-1-4:hover{
    animation: xyUp 0.3s;
    -ms-animation: xyUp 0.3s;
    -moz-animation: xyUp 0.3s;
    -webkit-animation: xyUp 0.3s;
    -o-animation: xyUp 0.3s;
    animation-fill-mode:forwards;
    -ms-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
    -o-animation-fill-mode:forwards;
  }
  #process-icon>li>img{
    height:90px;
    margin:0 auto;
    display: block;
    float:none;
  }
  #process-icon>li>div{
    text-align: center;
  }
  #process-icon>li>p{
    display:block;
    text-align: center;
  }
}
@media (min-width: 992px) {
  #process-icon>li>img{
    height:auto;
    margin-bottom: 0.5em;
  }
}
/*生产工艺 结束*/

#index-pro{
  background-color:#7d645b;
}
#index-pro .title {
  color: white;
}
#index-pro .title > hr {
  border-top-color: white;
}
#pro-scroll {
  position: relative;
  width: auto;
  padding:3% 30px 4%;
}
#pro-scroll > img {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  cursor: pointer;
}
#pro-scroll > .proleft {
  left: 10px;
}
#pro-scroll > .proright {
  right: 10px;
}
#pro-scroll > .column {
  height:112px;
  width:520px;
  margin: 0 auto;
}
#pro-scroll > .column > ul {
  padding:0;
  margin:0;
  list-style: none;
}
#pro-scroll > .column > ul > li {
  width: 130px;
  float:left;
}
#pro-scroll > .column > ul > li > a {
  color:white;
}
#pro-scroll > .column > ul > li table {
  margin:0 auto;
}
#pro-scroll > .column > ul > li td.img {
  height:86px;
  width:120px;
  background-color:white;
  border:1px white solid;
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, .5);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, .5);
}
#pro-scroll > .column > ul > li td.img:focus,
#pro-scroll > .column > ul > li td.img:hover {
  border-color:#d9261c;
}
#pro-scroll > .column > ul > li td.img > div {
  width:120px;
}
#pro-scroll > .column > ul > li td.img > div > img {
  max-height:86px;
  max-width:120px;
}
#pro-scroll > .column > ul > li td.font > div {
  padding-top:10px;
  width:120px;
}
@media (min-width: 768px) {
  #pro-scroll > img {
    margin-top: -15px;
    width: 13px;
    height: 30px;
  }
  #pro-scroll > .column {
    height:145px;
    width:708px;
  }
  #pro-scroll > .column > ul > li {
    width: 177px;
  }
  #pro-scroll > .column > ul > li td.img {
    height:119px;
    width:167px;
  }
  #pro-scroll > .column > ul > li td.img > div {
    width:167px;
  }
  #pro-scroll > .column > ul > li td.img > div > img {
    max-height:119px;
    max-width:167px;
  }
  #pro-scroll > .column > ul > li td.font > div {
    width:167px;
  }
}
@media (min-width: 992px) {
  #pro-scroll {
    padding:3% 46px 4%;
  }
  #pro-scroll > .proleft {
    left: 15px;
  }
  #pro-scroll > .proright {
    right: 15px;
  }
  #pro-scroll > .column {
    height:179px;
    width:880px;
  }
  #pro-scroll > .column > ul > li {
    width: 220px;
  }
  #pro-scroll > .column > ul > li td.img {
    height:150px;
    width:210px;
    border-width:2px;
  }
  #pro-scroll > .column > ul > li td.img > div {
    width:210px;
  }
  #pro-scroll > .column > ul > li td.img > div > img {
    max-height:150px;
    max-width:210px;
  }
  #pro-scroll > .column > ul > li td.font > div {
    width:210px;
  }
}
@media (min-width: 1024px) {
  #pro-scroll > .column {
    height:184px;
    width:912px;
  }
  #pro-scroll > .column > ul > li {
    width: 228px;
  }
  #pro-scroll > .column > ul > li td.img {
    height:155px;
    width:218px;
  }
  #pro-scroll > .column > ul > li td.img > div {
    width:218px;
  }
  #pro-scroll > .column > ul > li td.img > div > img {
    max-height:155px;
    max-width:218px;
  }
  #pro-scroll > .column > ul > li td.font > div {
    width:218px;
  }
}
@media (min-width: 1152px) {
  #pro-scroll > .column {
    height:200px;
    width:1040px;
  }
  #pro-scroll > .column > ul > li {
    width: 260px;
  }
  #pro-scroll > .column > ul > li td.img {
    height:171px;
    width:240px;
  }
  #pro-scroll > .column > ul > li td.img > div {
    width:240px;
  }
  #pro-scroll > .column > ul > li td.img > div > img {
    max-height:171px;
    max-width:240px;
  }
  #pro-scroll > .column > ul > li td.font > div {
    width:240px;
  }
}
@media (min-width: 1200px) {
  #pro-scroll > .column {
    height:208px;
    width:1080px;
  }
  #pro-scroll > .column > ul > li {
    width: 270px;
  }
  #pro-scroll > .column > ul > li td.img {
    height:178px;
    width:250px;
  }
  #pro-scroll > .column > ul > li td.img > div {
    width:250px;
  }
  #pro-scroll > .column > ul > li td.img > div > img {
    max-height:178px;
    max-width:250px;
  }
  #pro-scroll > .column > ul > li td.font > div {
    width:250px;
  }
}

/*联系我们 开始*/
#index-contact dl{
  width:90%;
  padding:1% 1%;
  margin:1% 3%;
  background-color:#f0f0f4;
  border-radius: 4px;
}
#index-contact dd.clear{
  display: none;
}
#company1 dt,
#company2 dt{
  height:56px;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  font-size:1.429em;
  font-weight: bold;
  line-height: 28px;
}
#company2 dt{
  line-height: 56px;
}
#company1 dd,
#company2 dd{
  padding:6px 10px;
  font-size:1em;
  line-height: 2;
}
#company1 dd i,
#company2 dd i{
  height:2em;
  width:19px;
  margin-right:10px;
  float: left;
  background-position:center center;
  background-repeat:no-repeat;
}
#company1 dt{padding-left:48px; background:url(../images/logo1.png) no-repeat left center;}
#company2 dt{padding-left:65px; background:url(../images/logo2.png) no-repeat left center;}
#company1 .icon1 i{margin-bottom:2em; background-image:url(../images/icon5-1.png);}
#company1 .icon2 i{background-image:url(../images/icon6-1.png);}
#company1 .icon3 i{background-image:url(../images/icon7-1.png);}
#company1 .icon4 i{background-image:url(../images/icon8-1.png);}
#company1 .icon5 i{background-image:url(../images/icon9-1.png);}
#company1 .icon6 i{background-image:url(../images/icon10-1.png);}
#company1 .icon7 i{background-image:url(../images/icon11-1.png);}
#company2 .icon1 i{margin-bottom:2em; background-image:url(../images/icon5-2.png);}
#company2 .icon2 i{background-image:url(../images/icon6-2.png);}
#company2 .icon3 i{background-image:url(../images/icon7-2.png);}
#company2 .icon4 i{background-image:url(../images/icon8-2.png);}
#company2 .icon5 i{background-image:url(../images/icon9-2.png);}
#company2 .icon6 i{background-image:url(../images/icon10-2.png);}
#company2 .icon7 i{background-image:url(../images/icon11-2.png);}
@media (min-width: 768px) {
  #index-contact dl{
    width:42%;
    float:left;
  }
  #contact-info{
    width:96%;
    max-width:940px;
  }
  #contact-info #company1{
    animation: xyDownShadow 0.3s;
    -ms-animation: xyDownShadow 0.3s;
    -moz-animation: xyDownShadow 0.3s;
    -webkit-animation: xyDownShadow 0.3s;
    -o-animation: xyDownShadow 0.3s;
  }
  #contact-info #company1:focus,
  #contact-info #company1:hover{
    animation: xyUpShadow 0.3s;
    -ms-animation: xyUpShadow 0.3s;
    -moz-animation: xyUpShadow 0.3s;
    -webkit-animation: xyUpShadow 0.3s;
    -o-animation: xyUpShadow 0.3s;
    animation-fill-mode:forwards;
    -ms-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
    -o-animation-fill-mode:forwards;
  }
  #contact-info #company2{
    animation: xyDownShadow 0.3s;
    -ms-animation: xyDownShadow 0.3s;
    -moz-animation: xyDownShadow 0.3s;
    -webkit-animation: xyDownShadow 0.3s;
    -o-animation: xyDownShadow 0.3s;
  }
  #contact-info #company2:focus,
  #contact-info #company2:hover{
    animation: xyUpShadow 0.3s;
    -ms-animation: xyUpShadow 0.3s;
    -moz-animation: xyUpShadow 0.3s;
    -webkit-animation: xyUpShadow 0.3s;
    -o-animation: xyUpShadow 0.3s;
    animation-fill-mode:forwards;
    -ms-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
    -o-animation-fill-mode:forwards;
  }
}
/*联系我们 结束*/

/*footer 开始*/
footer{
  background-color:#d7d6dc;
}
footer > article {
  padding:0.5em 0;
  color:#2a2a2a;
  line-height: 2;
}
footer > article > a {
  margin:0 5px;
  color:#2a2a2a;
}
@media (min-width: 768px) {
  footer > article {
    padding:2em 0;
  }
  footer > article > a {
    margin-left:15px;
    margin-right:0;
  }
  footer > article img {
    margin-bottom:-3em;
    margin-top:-3em;
  }
}
/*footer 结束*/


/*产品列表及详细页开始*/
#prolist {
  padding: 10px 5px 0;
  overflow: hidden;
}
#prolist > .xy-col-1-4 {
  width: 48%;
  margin:1% 1% 2%;
}
#prolist > .xy-col-1-4.xySationShow{
  animation: fadeInUp 0.3s;
  -ms-animation: fadeInUp 0.3s;
  -moz-animation: fadeInUp 0.3s;
  -webkit-animation: fadeInUp 0.3s;
  -o-animation: fadeInUp 0.3s;
}
#prolist > .xy-col-1-4:focus,
#prolist > .xy-col-1-4:hover {
  text-decoration:none;
}
#prolist > .xy-col-1-4 > div {
  width: 148px;
  margin:5px auto;
  line-height: 2;
}
#prolist > .xy-col-1-4 > table {
  margin:0 auto;
}
#prolist > .xy-col-1-4 td {
  height: 146px;
  width: 146px;
  border: 1px #f1f1f1 solid;
}
#prolist > .xy-col-1-4 td > div {
  width: 146px;
}
#prolist > .xy-col-1-4 td > div > img {
  max-height: 146px;
  max-width: 146px;
}
#openwin {
  padding: 10px;
  overflow: hidden;
}
#openwin.xySationShow{
  animation: fadeInUp 0.3s;
  -ms-animation: fadeInUp 0.3s;
  -moz-animation: fadeInUp 0.3s;
  -webkit-animation: fadeInUp 0.3s;
  -o-animation: fadeInUp 0.3s;
}
#openwin > #pro-name {
  padding:1em 0;
  color:#171717;
  font-size:1.714em;
  line-height: 2;
}
#openwin > #pro-info {
  padding:5px 0;
  font-size:1em;
  line-height: 2.571;
}
#openwin > #pro-info td{
  padding:10px;
}
@media (min-width: 768px) {
  #prolist {
    padding: 0 1%;
  }
  #prolist > .xy-col-1-4 {
    width: 23%;
    margin:0 1% 2%;
  }
  #prolist > .xy-col-1-4 > div {
    width: 173px;
  }
  #prolist > .xy-col-1-4 td {
    height: 171px;
    width: 171px;
  }
  #prolist > .xy-col-1-4 td > div {
    width: 171px;
  }
  #prolist > .xy-col-1-4 td > div > img {
    max-height: 171px;
    max-width: 171px;
  }
  #openwin {
    width:710px;
    margin:0 auto;
  }
  #openwin > #pro-img table {
    margin: 0 auto;
    border-spacing: 9px;
  }
  #openwin > #pro-img table td {
    position: relative;
    height: 164px;
    width: 164px;
    padding: 2px;
    cursor: pointer;
  }
  #openwin > #pro-img table td > div {
    width: 162px;
  }
  #openwin > #pro-img table td > div > img {
    max-height: 162px;
    max-width: 162px;
  }
  #openwin > #pro-img table td > i {
    position: absolute;
    left: -12px;
    top: 50%;
    margin-top: -16px;
    display: none;
    color: #e3017e;
    font-size: 30px;
  }
  #openwin > #pro-img table td#big {
    height: 509px;
    width: 509px;
    padding: 0;
    cursor: auto;
  }
  #openwin > #pro-img table td#big > div {
    width: 500px;
  }
  #openwin > #pro-img table td#big > div > img {
    max-height: 500px;
    max-width: 500px;
  }
  #openwin > #pro-img table td.active {
    padding: 0;
    border: 3px #e3017e solid;
  }
  #openwin > #pro-img table td.active > i {
    display: block;
  }
  #openwin > #pro-info {
    padding:5px 0;
  }
}
@media (min-width: 992px) {
  #prolist > .xy-col-1-4 > div {
    width: 219px;
  }
  #prolist > .xy-col-1-4 td {
    height: 217px;
    width: 217px;
  }
  #prolist > .xy-col-1-4 td > div {
    width: 217px;
  }
  #prolist > .xy-col-1-4 td > div > img {
    max-height: 217px;
    max-width: 217px;
  }
}
@media (min-width: 1024px) {
  #prolist > .xy-col-1-4 > div {
    width: 226px;
  }
  #prolist > .xy-col-1-4 td {
    height: 224px;
    width: 224px;
  }
  #prolist > .xy-col-1-4 td > div {
    width: 224px;
  }
  #prolist > .xy-col-1-4 td > div > img {
    max-height: 224px;
    max-width: 224px;
  }
}
@media (min-width: 1152px) {
  #prolist > .xy-col-1-4 > div {
    width: 255px;
  }
  #prolist > .xy-col-1-4 td {
    height: 253px;
    width: 253px;
  }
  #prolist > .xy-col-1-4 td > div {
    width: 253px;
  }
  #prolist > .xy-col-1-4 td > div > img {
    max-height: 253px;
    max-width: 253px;
  }
}
@media (min-width: 1200px) {
  #prolist > .xy-col-1-4 > div {
    width: 270px;
  }
  #prolist > .xy-col-1-4 td {
    height: 268px;
    width: 268px;
  }
  #prolist > .xy-col-1-4 td > div {
    width: 268px;
  }
  #prolist > .xy-col-1-4 td > div > img {
    max-height: 268px;
    max-width: 268px;
  }
}
/*产品列表及详细页结束*/


#cart {
  margin: 0 auto 5%;
}
#cart table.xySationShow{
  animation: fadeInUp 0.3s;
  -ms-animation: fadeInUp 0.3s;
  -moz-animation: fadeInUp 0.3s;
  -webkit-animation: fadeInUp 0.3s;
  -o-animation: fadeInUp 0.3s;
}
#cart table td {
  padding: 5px 0;
  font-size: 1em;
  line-height: 2;
}
#cart table td > font {
  color: #c30;
}
#cart table td > input {
  width: 180px;
  height: 20px;
  line-height: 20px;
  padding: 2px 5px;
  border: 1px #dbdbdb solid;
  border-radius: 4px;
}
#cart table td > textarea {
  width: 670px;
  height: 120px;
  line-height: 20px;
  padding: 2px 5px;
  border: 1px #dbdbdb solid;
  border-radius: 4px;
}
#cart table td > button {
  padding: 6px 45px;
  margin-right: 15px;
}
#cart > .table {
  table-layout: fixed;
}
#cart > .table thead > tr:first-child {
  background-color: #f5f5f5;
}
#cart > .table.table-bordered {
  border: 1px solid #ddd;
}
#cart > .table.table-bordered tbody > tr:first-child td,
#cart > .table.table-bordered tbody > tr:first-child th {
  border-top-width: 1px;
}
#cart > .table.table-striped tbody > tr:nth-of-type(even) {
  background-color: #ecf2fc;
}
#cart > .table.table-striped tbody > tr:nth-of-type(odd) {
  background-color: #FFFFFF;
}
#cart > .table tbody > tr td a.btn-default,
#cart > .table tbody > tr th a.btn-default {
  background-color: transparent;
  border-color: transparent;
}
#cart > .table tbody > tr td a.btn-default:hover,
#cart > .table tbody > tr th a.btn-default:hover,
#cart > .table tbody > tr td a.btn-default:active,
#cart > .table tbody > tr th a.btn-default:active {
  border-color: #CCCCCC;
}
#cart > .table tbody > tr td a.btn-default .glyphicon,
#cart > .table tbody > tr th a.btn-default .glyphicon {
  font-size: 14px;
  top: 3px;
}
#cart > .table tbody > tr td a.btn-default .glyphicon-remove,
#cart > .table tbody > tr th a.btn-default .glyphicon-remove {
  color: red;
}
#cart > .table tbody > tr td.img,
#cart > .table tbody > tr th.img {
  height: 161px;
  vertical-align: middle;
}
#cart > .table tbody > tr td.img > div,
#cart > .table tbody > tr th.img > div {
  width: 222px;
}
#cart > .table tbody > tr td.img > div > img,
#cart > .table tbody > tr th.img > div > img {
  max-height: 159px;
  max-width: 222px;
}

#btn1{
  width:62%;
  padding-left:38%;
  margin-top:5px;
  display: block;
  color:#937270;
  font-size:1.143em;
  line-height: 2.625;
  text-align: left;
  background-color:#eacead;
  background-image:url(../images/icon14.png);
  background-position:20% center;
  background-repeat:no-repeat;
  background-size:contain;
}
#btn2{
  margin-top:5px;
  display: block;
}
#btn3{
  margin-top:5px;
  display: block;
}

#line{
  height:8px;
  background-color:#fbf703;
}
#line .xy-col-1-3{
  height:8px;
  width:33.33333333%;
}
#line .color1{
  background-color:#e3017e;
}
#line .color2{
  background-color:#01b2ee;
}

#index-about .xy-col-1-2{
  width:96%;
  margin:0 2%;
}
#index-about .xy-col-1-2 div{
  padding:1em 0 0.5em;
  color:#252527;
  font-size:1.286em;
  font-weight: bold;
  line-height: 1.6;
}
#index-about .xy-col-1-2 p{
  color:#252527;
  line-height: 1.6;
}
#index-about hr{
  width:96%;
  margin-left:auto;
  margin-right:auto;
}
@media (min-width: 768px) {
  #index-about .xy-col-1-2{
    width:50%;
    margin:0;
  }
  #index-about .xy-col-1-2 img:focus,
  #index-about .xy-col-1-2 img:hover{
    animation: pulse 0.8s;
    -ms-animation: pulse 0.8s;
    -moz-animation: pulse 0.8s;
    -webkit-animation: pulse 0.8s;
    -o-animation: pulse 0.8s;
  }
  #index-about .xy-col-1-2 + .xy-col-1-2{
    width:44%;
    margin:0 3%;
  }
  #index-about hr{
    width:100%;
    margin:2em auto;
  }
}

#c1{
  padding-bottom:380px;
  background:url(../images/temp3.jpg) no-repeat center bottom;
}
#c2{
  height:487px;
  padding-left:50%;
  padding-right:2%;
  padding-top:15px;
  background:url(../images/temp4.jpg) no-repeat left center;
}
.aboutdetail p{
  width:98%;
  margin:0 auto;
  color:#2a2a2a;
  line-height: 2;
}
.aboutdetail p strong{
  font-size:1.714em;
  line-height: 2;
}
@media (min-width: 768px) {
  .aboutdetail p{
    width:96%;
  }
}

.honor{
  position:relative;
  height: 220px;
  width:960px;
  padding:0 69px 53px;
  margin:0 auto;
  background:url(../images/honor-bg.jpg) no-repeat center bottom;
  background-size:contain;
}
.honor .xy-col-1-3{
  height: 100%;
  width:33.333333%;
}
.honor .xy-col-1-3 img{
  position:absolute;
  bottom:0;
  left:50%;
  margin-left:-125px;
}
@media (min-width: 768px) {
  .honor{
    height:180px;
    width:86%;
    padding:0 5% 38px;
    margin:0 auto;
  }
  .honor.long{
    height:310px;
  }
  .honor .xy-col-1-3 img{
    width:200px;
    margin-left:-100px;
  }
}
@media (min-width: 992px) {
  .honor{
    height:200px;
  }
  .honor.long{
    height:370px;
  }
  .honor .xy-col-1-3 img{
    width:250px;
    margin-left:-125px;
  }
}
@media (min-width: 1115px) {
  .honor{
    height: 220px;
    width:960px;
    padding:0 69px 53px;
  }
  .honor .xy-col-1-3 img{
    margin-left:-125px;
  }
}

#newslist .list-group-item{
  padding:20px 10px;
  margin:0;
  line-height: 1.6;
  border-width:0 0 1px;
  border-radius: 0;
}
#newslist .list-group-item a{
  padding:0.5em 0;
  float:left;
  color:#135c87;
  font-size:1.143em;
  font-weight: bold;
  line-height: 1.6;
}
#newslist .list-group-item a:focus,
#newslist .list-group-item a:hover{
  color: #e3017e;
}
#detail {
  width: 96%;
  max-width: 1106px;
  margin: 10px auto;
}
#detail > h3 {
  margin-bottom: 0;
  color: #474747;
  font-size: 1.429em;
  line-height: 1.5;
  border-bottom: 1px #e7e7e7 solid;
}
#detail > h3 > small {
  padding-bottom: 10px;
  padding-top:10px;
  display: block;
  color: #acacac;
  line-height: 2;
}
#detail > div {
  padding: 15px;
}
#detail > div,
#detail > div * {
  color: #464646;
  font-size: 1em;
  line-height: 2;
}

#throughput div{
  color:#2a2a2a;
  line-height: 2;
}
#throughput .xy-col-1-3{
  width:33.333333%;
}
#throughput .xy-col-2-3{
  width:66.666666%;
}
#throughput .xy-col-2-3 div{
  width:84%;
  margin:0 auto;
}
#throughput .xy-col-1-2{
  width:50%;
  border-right:1px #eeeeee solid;
}
#throughput .xy-col-1-2 + .xy-col-1-2{
  margin-left:-1px;
  border-right-width:0;
}
#throughput .xy-col-1-2 div{
  width:90%;
  margin:0 auto;
}
#throughput .double{
  text-indent: 4em;
}
#throughput .font1{
  font-size:1.4em;
  line-height: 2.3;
}
#throughput .font2{
  color:#009dd2;
  font-size:1.4em;
  font-style: italic;
}
#throughput .font3{
  font-weight: bold;
}

#service{
  width:98%;
  margin:0 auto;
}
#service .xy-col-6{
  width:60%;
}
#service .xy-col-6 div{
  width:96%;
  margin:0 auto;
  color:#2a2a2a;
  text-align: justify;
  line-height: 1.3;
  padding-bottom:1em;
}
#service .xy-col-6 .font1{
  font-size:1.714em;
}
#service .xy-col-6 .font2{
  font-size:1.571em;
  font-style: italic;
}
#service .xy-col-6 font{
  margin-right:10px;
  color:#e3017e;
  font-size:22px;
  font-style: italic;
}
#service .xy-col-4{
  width:40%;
  padding-top:6%;
}

#avail div{
  width:90%;
  max-width:960px;
  margin:0 auto;
  color:#2a2a2a;
  line-height: 2.6;
}

#map1, #map2{
  height:280px;
  width:100%;
}

#contact dl{
  margin:25px 25px 60px;
  overflow: hidden;
}
#contact #company1 dt{
  line-height: 56px;
}
#contact dd{
  width:150px;
  float:left;
  line-height:22px;
}
#contact dd.icon1,
#contact dd.icon6,
#contact dd.icon7{
  width:450px;
}
#contact dd.icon1 i{
  margin-bottom: 0;
}
#contact dd i{
  height:22px;
}
#contact dd.clear{
  width:100%;
  padding:0;
}
@media (min-width: 992px) {
  #contact dd{
    width:190px;
  }
  #contact dd.icon1,
  #contact dd.icon6,
  #contact dd.icon7{
    width:550px;
  }
}

#job {
  width: 98%;
  margin: 0 auto;
}
#job th {
  font-size: 1.143em;
  line-height: 2;
  text-align: center;
  border-bottom-width:4px;
  border-color: #e3017e;
}
#job td {
  font-size: 1.143em;
  line-height: 2;
}
#job a {
  color: #2b2b2b;
  cursor: pointer;
  text-decoration: none;
}
#job a:focus,
#job a:hover {
  color: #e3017e;
  text-decoration: none;
}
#jobdetail > table,
#jobdetail > div {
  width: 98%;
  max-width:960px;
  margin: 0 auto;
}
#jobdetail > div > a {
  margin-left: 118px;
}
#resume {
  width: 720px;
  margin: 0 auto;
}
#resume input {
  width: 250px;
  height: 28px;
  padding: 0;
  border: 1px #d2d2d2 solid;
}
#resume textarea {
  height: 80px;
  width: 540px;
  border: 1px #d2d2d2 solid;
}
#resume font {
  margin-right: 5px;
}
#resume .form-group {
  margin-bottom: 0;
}
#resume td {
  font-size: 14px;
  line-height: 2;
}
#resume > .btn {
  margin-left: 118px;
}