@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: #d9261c;
  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-family: Arial, Microsoft YaHei, "黑体", "宋体";
  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: #040404;
  font-size: 1.5em;
  font-weight: lighter;
  line-height: 1.5;
}
.title > hr {
  width: 66px;
  margin: 0 auto;
  border-top: 2px #da251b solid;
}
a.title {
  color: #040404;
}
@media (min-width: 768px) {
  .title {
    font-size: 2em;
  }
}
@media (min-width: 992px) {
  .title {
    font-size: 2.286em;
  }
}
/*title 结束*/

#top{
  height:24px;
  background-color:#d9261c;
}
#top i{height:24px; width:24px; margin-right:20px; cursor:pointer; display:inline-block; color:white; line-height: 24px; text-align: center;}
#top a{margin-right:20px; display:inline-block; color:white; font-size:12px; line-height: 24px;}
#topsearch > input.trim{height:28px; width:190px; padding:2px 5px; border:1px #ddd solid; border-radius: 5px;}


/*header 开始*/
nav.navbar-default {
  min-height: 40px;
  margin-bottom: 0;
  background-color: white;
  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: #d9261c;
}
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: black;
  font-size:14px;
}

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: #d9261c;
}
nav.navbar-default > .navbar-collapse > .nav > li.open > ul {
  display: block;
}
@media (min-width: 768px) {
  nav.navbar-default {
    width: 100%;
    max-width: 1200px;
    height: 124px;
    border-radius: 0;
  }
  nav.navbar-default > .navbar-header > .navbar-brand {
    height: 124px;
  }
  nav.navbar-default > .navbar-header > .navbar-brand img {
    margin-top:39px;
  }
  nav.navbar-default > .navbar-collapse {
    position: relative;
    top: 0;
    background-color: transparent;
    border-width: 0;
  }
  nav.navbar-default > .navbar-collapse > .nav {
    position: absolute;
    bottom: 38px;
    right: 10px;
    padding: 0;
    margin: 0;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > a {
    padding: 0 5px;
    overflow: hidden;
    color: #232323;
    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: 26px;*/
    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: #232323;
    text-decoration: none;
    transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    border-color:#d9261c;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .dropdown-menu {
    left: -10px;
    right: auto;
    min-width: 120px;
    padding:5px 0;
    display: block;
    background-color: #d9261c;
    border-color:transparent;
    border-top-width:5px;
    border-radius: 10px;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    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 > li {
    position: relative;
  }
  nav.navbar-default > .navbar-collapse > .nav > li > .dropdown-menu > li > a {
    padding: 3px 15px;
    color: white;
    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.open > a{
    border-color:#d9261c;
  }
  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: #d9261c;
  }
  nav.navbar-default > .navbar-collapse > .nav > li + li {
    margin-left: 35px;
  }
}
/*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:15%;
  right:5%;
  color:white;
  font-size: 1.714em;
  font-style: italic;
  font-weight: bold;
}
@media (min-width: 768px) {
  #innerbanner {
    height:340px;
  }
  #innerbanner img {
    position:absolute;
    left:50%;
    top:0;
    max-width: none;
    margin-left:-496px;
  }
  #innerbanner div > font {
    font-size: 3.714em;
  }
}
@media (min-width: 992px) {
  #innerbanner {
    height:439px;
  }
  #innerbanner img {
    margin-left:-960px;
  }
  #innerbanner div > font {
    font-size: 4.714em;
  }
}
@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:758px;
  }
  #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:#f2f2f2;
}
#index-proclass>article>div{
  width:308px;
  padding:10px 0;
  margin:0 auto;
}
#index-proclass>article>div>.xy-col-1-3{
  height:180px;
  width:134px;
  padding-top:15px;
  margin:10px;
  background-color:white;
  -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.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>table{
  margin:0 auto;
}
#index-proclass>article>div>.xy-col-1-3>table td.img{
  height:89px;
  width:114px;
}
#index-proclass>article>div>.xy-col-1-3>table td.img>div{
  width:114px;
}
#index-proclass>article>div>.xy-col-1-3>table td.img>div>img{
  max-height:89px;
  max-width:114px;
}
#index-proclass>article>div>.xy-col-1-3>table td.font{
  padding:10px 0 15px;
}
#index-proclass>article>div>.xy-col-1-3>table td.font>div{
  width:114px;
  margin:0 auto;
  line-height: 2;
}
#index-proclass>article>div>.xy-col-1-3>div>a{
  padding:0 30px;
  display:inline-block;
  color:#da251c;
  font-size:1.143em;
  line-height: 2;
  border:1px #da251c solid;
  border-radius: 19px;
}
#index-proclass>article>div>.xy-col-1-3>div>a>i{
  margin-left:10px;
}
#index-proclass>article>div>.xy-col-1-3>div>a:focus,
#index-proclass>article>div>.xy-col-1-3>div>a:hover{
  color:white;
  background-color:#da251c;
}
@media (min-width: 768px) {
  #index-proclass>article>div{
    height:auto;
    width:741px;
  }
  #index-proclass>article>div>.xy-col-1-3{
    height:255px;
    width:227px;
    margin:10px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img{
    height:161px;
    width:207px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img>div{
    width:207px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img>div>img{
    max-height:161px;
    max-width:207px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.font>div{
    width:207px;
  }
}
@media (min-width: 992px) {
  #index-proclass>article>div{
    height:680px;
    width:96%;
    padding: 0 2%;
  }
  #index-proclass>article>div>.xy-col-1-3{
    height:315px;
    width:31.33%;
    margin:-35px 1% 60px;
  }
  #index-proclass>article>div>.xy-col-1-3+.xy-col-1-3{
    margin-top:-35px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img{
    height:212px;
    width:272px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img>div{
    width:272px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img>div>img{
    max-height:212px;
    max-width:272px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.font>div{
    width:272px;
  }
}
@media (min-width: 1213px) {
  #index-proclass>article>div{
    height:810px;
    width:1197px;
  }
  #index-proclass>article>div>.xy-col-1-3{
    height:380px;
    width:369px;
    padding-top:15px;
    margin-bottom:60px;
    margin-left:15px;
    margin-right:15px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img{
    height:272px;
    width:349px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img>div{
    width:349px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.img>div>img{
    max-height:272px;
    max-width:349px;
  }
  #index-proclass>article>div>.xy-col-1-3>table td.font>div{
    width:349px;
  }
}

/*关于我们信息开始*/
#about-info, #about-pic{
  width:96%;
  margin:0 auto;
}
#about-info p{
  margin-bottom: 0;
  line-height: 1.8;
  text-align: justify;
}
#about-info div>img{
  max-width:70%;
  display:inline-block;
}
#about-info ul{
  padding:0;
  margin:0;
  list-style: none;
}
#about-info ul>.xy-col-1-4{
  width:100%;
  padding:5px 0;
}
#about-info ul>li>img{
  height: 5.4em;
  margin-right:15px;
  float:left;
  background-color:white;
  border:1px #da251c solid;
  border-radius: 50%;
  filter: Alpha(opacity=100);
  -moz-opacity:1;
  -khtml-opacity:1;
  opacity:1;
  transition:0.5s;
  -ms-transition:0.5s;
  -moz-transition:0.5s;
  -webkit-transition:0.5s;
  -o-transition:0.5s;
}
#about-info ul>li>img.active{
  display: none;
}
#about-info ul>li>p{
  height:5.4em;
  display:table-cell;
  vertical-align: middle;
}
@media (min-width: 768px) {
  #about-info p{
    text-align: center;
  }
  #about-info ul>.xy-col-1-4{
    width:25%;
  }
  #about-info ul>li>img{
    height:90px;
    margin:0 auto;
    display: block;
    float:none;
    filter: Alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity:1;
    opacity:1;
    transition:0.5s;
    -ms-transition:0.5s;
    -moz-transition:0.5s;
    -webkit-transition:0.5s;
    -o-transition:0.5s;
  }
  #about-info ul>li>img.active{
    margin-top:-92px;
    display: block;
    background-color:#da251c;
    filter: Alpha(opacity=0);
    -moz-opacity:0;
    -khtml-opacity:0;
    opacity:0;
    transition:0.5s;
    -ms-transition:0.5s;
    -moz-transition:0.5s;
    -webkit-transition:0.5s;
    -o-transition:0.5s;
  }
  #about-info ul>li:focus>img,
  #about-info ul>li:hover>img{
    filter: Alpha(opacity=0);
    -moz-opacity:0;
    -khtml-opacity:0;
    opacity:0;
    transition:0.5s;
    -ms-transition:0.5s;
    -moz-transition:0.5s;
    -webkit-transition:0.5s;
    -o-transition:0.5s;
  }
  #about-info ul>li:focus>img.active,
  #about-info ul>li:hover>img.active{
    filter: Alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity:1;
    opacity:1;
    transition:0.5s;
    -ms-transition:0.5s;
    -moz-transition:0.5s;
    -webkit-transition:0.5s;
    -o-transition:0.5s;
  }
  #about-info ul>li>p{
    padding-top:10px;
    display:block;
  }
}
@media (min-width: 992px) {
  #about-info ul>li>img{
    height:auto;
  }
  #about-info ul>li>img.active{
    margin-top:-117px;
  }
}
/*关于我们信息结束*/

#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;
  }
}

/*百度地图开始*/
#map{
  height:313px;
  width:100%;
}
@media (min-width: 992px) {
  #contact #map{
    height:476px;
  }
}
/*百度地图结束*/

/*联系我们信息开始*/
#contact-info{
  width:96%;
  max-width:900px;
  padding:0;
  margin:0 auto;
  list-style: none;
}
#contact-info>li.icon{
  line-height: 24px;
  padding:3px 0;
}
#contact-info>li>i{
  height: 18px;
  width:18px;
  margin:3px 5px 3px 0;
  float:left;
  text-align: center;
  line-height: 18px;
  background-position:left center;
  background-repeat:no-repeat;
}
#contact-info>li>.icon1{background-image: url(../images/icon9.png);}
#contact-info>li>.icon2{background-image: url(../images/icon10.png);}
#contact-info>li>.icon3{background-image: url(../images/icon11.png);}
#contact-info>li>.icon4{background-image: url(../images/icon12.png);}
#contact-info>li>.icon5{background-image: url(../images/icon13.png);}
#contact-info>li>font{margin-left:5px;}
@media (min-width: 768px) {
  #contact-info>li.icon{
    width:auto;
    min-width:50%;
    padding:5px 0;
    float:left;
  }
  #contact-info>li>i{margin-right:10px;}
  #contact-info>li>font{margin-left:10px;}
}
/*联系我们信息结束*/

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


/*产品列表及详细页开始*/
.xy-container#iframe > #leftiframe {
  width: 22%;
}
.xy-container#iframe > #leftiframe.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;
}
.xy-container#iframe > #leftiframe > .list-group{
  margin-bottom: 0;
  width:95%;
  margin-left: 2.5%;
  background: #FFFFFF;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item {
  padding: 0;
  margin-bottom: -1px;
  /*border-color: #ddd;*/
  border-radius: 0;
  
}
.xy-container#iframe > #leftiframe > .list-group > #left-title {
  padding:10px 0 5px 28px;
  color:#424242;
  font-size:1.286em;
  font-weight: bold;
  line-height: 2;
  background-color:#f2f2f2;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > a {
  padding: 5px 20px 5px 28px;
  display: block;
  color: #2b2b2b;
  cursor: pointer;
  line-height: 2;
  text-decoration: none;
  background: white;
  border-bottom: 1px solid #dbdbdb;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > a > i {
  margin-top:7px;
  color: #4771bb;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > a:focus,
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > a:hover,
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > a.active {
  color: #2b2b2b;
  text-decoration: none;
  background-color:#d5e0f3;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  background-color:#f7f7f7;
  border-top: 1px #ddd solid;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > ul > li > a {
  padding: 2px 0 2px 45px;
  display: block;
  color: #434343;
  cursor: pointer;
  text-decoration: none;
  background-image:url(../images/dot.jpg);
  background-position:30px center;
  background-repeat:no-repeat;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > ul > li > a:hover {
  color: #ff8331;
  text-decoration: none;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > ul > li > a.active {
  color: #ff8331;
  cursor: pointer;
  text-decoration: none;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item > ul > li > a.active:hover {
  color: #ff8331;
  text-decoration: none;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item.active {
  background-color: white;
  border-color: #ddd;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item.active > a {
  color: #ff8331;
  cursor: pointer;
  text-decoration: none;
  border-left-color: #486bbc;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item.active > a:hover {
  color: #ff8331;
  text-decoration: none;
}
.xy-container#iframe > #leftiframe > .list-group > .list-group-item:last-child {
  margin-bottom: 0;
}
.xy-container#iframe > #rightiframe {
  float:none !important;
}
.xy-container#iframe > #rightiframe > #xs-protype {
  width: 96%;
  margin:10px auto 0;
  padding:3px 0;
}
.xy-container#iframe > #rightiframe > #prolist {
  padding: 10px 5px 0;
  overflow: hidden;
}
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 {
  width: 50%;
}
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3.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;
}
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3:focus,
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3:hover {
  text-decoration:none;
}
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 > div {
  width: 145px;
  margin:10px auto;
}
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 > table {
  margin:0 auto;
}
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td {
  height: 103px;
  width: 145px;
  border: 1px #cccccc solid;
}
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div {
  width: 145px;
}
.xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div > img {
  /*max-height: 103px;
  max-width: 145px;*/
 width:100%;
}
#ajaxpage {
  border-top: 1px #cccccc solid;
}
#ajaxpage > i {
  padding: 5px 0;
  cursor: pointer;
  display: block;
  color: #d9261c;
  font-size: 24px;
}
#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-img {
  margin-bottom: 15px;
  margin-top:10px;
  border:1px #dad9de solid;
  /*-webkit-box-shadow: 0 0 10px 4px rgba(153, 153, 153, .5);
  box-shadow: 0 0 10px 4px rgba(153, 153, 153, .5);*/
}
#openwin > #pro-type {
  color:#242424;
  font-size:2.571em;
  line-height: 1.222;
}
#openwin > #pro-name {
  font-size:1em;
  line-height: 3.143;
}
#openwin > #pro-info {
  padding:5px 0;
  font-size:1em;
  line-height: 2.571;
}
#openwin > #pro-btn > .car {
  height:34px;
  width:120px;
  padding-left:80px;
  display: block;
  color:#937270;
  font-size:1.143em;
  line-height: 2.125;
  text-align: left;
  background-color:#eacead;
  background-image:url(../images/icon15.png);
  background-position:18% center;
  background-repeat:no-repeat;
}
@media (min-width: 768px) {
  .xy-container#iframe {
    padding-top:20px;
  }
  .xy-container#iframe > #rightiframe {
    width: 77%;
    float:right !important;
  }
  .xy-container#iframe > #rightiframe > #prolist {
    padding: 0 0.5%;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 {
    width: 33%;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 > div {
    width: 178px;
    margin-bottom:20px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td {
    height: 126px;
    width: 178px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div {
    width: 178px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div > img {
    /*max-height: 126px;
    max-width: 178px;*/
  }
  #openwin {
    padding: 0 10px 30px 40px;
  }
  #openwin > #pro-info {
    padding:5px 0;
  }
}
@media (min-width: 992px) {
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 > div {
    width: 225px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td {
    height: 160px;
    width: 225px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div {
    width: 225px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div > img {
    /*max-height: 160px;
    max-width: 225px;*/
  }
}
@media (min-width: 1024px) {
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 > div {
    width: 233px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td {
    height: 165px;
    width: 233px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div {
    width: 233px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div > img {
    /*max-height: 165px;
    max-width: 233px;*/
  }
}
@media (min-width: 1152px) {
  #openwin {
    max-width:827px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 > div {
    width: 265px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td {
    height: 188px;
    width: 265px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div {
    width: 265px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div > img {
    /*max-height: 188px;
    max-width: 265px;*/
  }
}
@media (min-width: 1200px) {
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 > div {
    width: 275px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td {
    height: 195px;
    width: 275px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div {
    width: 275px;
  }
  .xy-container#iframe > #rightiframe > #prolist > .xy-col-1-3 td > div > img {
    /*max-height: 195px;
    max-width: 275px;*/
  }
}
/*产品列表及详细页结束*/


#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;
}

/*鼠标移上去图片放大*/
.showimgbig{
	overflow: hidden;
}
.showimgbig img{
		cursor: pointer;
		transition: all 0.6s;
	}
.showimgbig img:hover{
		transform: scale(1.1);
	}