
/*轮播图*/
#swiper {
  height: 600px;
  width: 100%
}
#swiper a {
  display: block;
  height: 600px;
}
/*搜索*/
#search {
  height: 40px;
  background-color: #f2f2f2;
}
#search .inner_search {
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
#search .inner_search .lf {
  float: left;
  height: 40px;
  line-height: 40px;
  color: #666666;
  font-size: 12px;
}
#search .inner_search .lf a {
  color: #666666;
  font-size: 12px;
  margin-right: 20px;
}
#search .inner_search .rg {
  width: 200px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 13px;
  border: solid 1px #666666;
  margin-top: 8px;
  float: right;
  box-sizing: border-box;
  overflow: hidden;
}
#search .inner_search .rg input {
  float: left;
  width: 165px;
  height: 23px;
  text-indent: 10px;
  color: #333;
  font-size: 12px;
}
#search .inner_search .rg input::placeholder {
  color: #cccccc;
  font-size: 12px;
}
#search .inner_search .rg .search_btn {
  display: block;
  float: right;
  width: 25px;
  height: 23px;
  background: url("../images/search_btn.png") center center no-repeat;
}
/*产品*/
#product {
  height: 1000px;
  background-color: #ffffff;
}
#product .inner_product {
  padding-top: 40px;
  width: 1200px;
  margin: 0 auto;
}
#product .inner_product h3 {
  font-size: 36px;
  text-align: center;
}
#product .inner_product h3 span {
  color: #0066a9;
}
#product .inner_product h4 {
  padding-top: 7px;
  color: #0066a9;
  opacity: 0.5;
  font-size: 24px;
  text-align: center;
}
#product .inner_product .product_btns {
  padding-top: 39px;
  text-align: center;
}
#product .inner_product .product_btns .product_btn {
  display: inline-block;
  width: 160px;
  height: 50px;
  background-color: #0066a9;
  border-radius: 8px;
  opacity: 0.8;
  margin: 0 30px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  transition: all 0.3s;
}
#product .inner_product .product_btns .product_btn.active {
  background-image: linear-gradient(-90deg, #0066a9 0%, #47b33c 100%);
}
#product .inner_product .product_list {
  padding-top: 41px;
  overflow: hidden;
  display: none;
}
#product .inner_product .product_list li {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
#product .inner_product .product_list li:nth-child(3n) {
  margin-right: 0;
}
#product .inner_product .product_list li:hover {
  transform: translateY(-5px);
}
#product .inner_product .product_list li:hover .img img {
  transform: scale(1.1);
}
#product .inner_product .product_list li:hover .name {
  background-image: linear-gradient(-90deg, #0066a9 0%, #47b33c 100%);
  color: #fff;
}
#product .inner_product .product_list li .img {
  display: block;
  width: 380px;
  height: 300px;
  overflow: hidden;
}
#product .inner_product .product_list li .img img {
  display: block;
  width: 380px;
  height: 300px;
  transition: all 0.3s;
}
#product .inner_product .product_list li .name {
  display: block;
  padding: 0 10px;
  width: 360px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #f2f2f2;
  transition: all 0.3s;
}
/*案例*/
#case {
  height: 800px;
  background: url("../images/case_bg.jpg") center center no-repeat;
}
#case .inner_case {
  width: 1200px;
  margin: 0 auto;
  padding-top: 39px;
}
#case .inner_case h3 {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
}
#case .inner_case h4 {
  font-size: 24px;
  color: #fefefe;
  opacity: 0.5;
  padding-top: 7px;
  text-align: center;
}
#case .inner_case h5 {
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  color: #fefefe;
  padding-top: 10px;
}
#case .inner_case .case_main {
  height: 430px;
  background-color: #f0e7e0;
  margin-top: 37px;
  padding: 50px 30px 40px;
}
#case .inner_case .case_main .case_list {
  overflow: hidden;
}
#case .inner_case .case_main .case_list li {
  float: left;
  margin-left: 15px;
}
#case .inner_case .case_main .case_list li:first-child {
  margin-left: 0;
}
#case .inner_case .case_main .case_list li:hover .img img {
  transform: scale(1.1);
}
#case .inner_case .case_main .case_list li:hover .name {
  color: #0066a9;
}
#case .inner_case .case_main .case_list li .img {
  display: block;
  width: 370px;
  height: 300px;
  overflow: hidden;
}
#case .inner_case .case_main .case_list li .img img {
  display: block;
  width: 370px;
  height: 300px;
  transition: all 0.3s;
}
#case .inner_case .case_main .case_list li .name {
  display: block;
  width: 350px;
  padding: 11px 10px 0;
  text-align: center;
  transition: all 0.3s;
}
#case .inner_case .case_main .more {
  display: block;
  margin: 0 auto;
  margin-top: 57px;
  width: 160px;
  height: 50px;
  background-image: linear-gradient(-90deg, #0066a9 0%, #47b33c 100%);
  border-radius: 8px;
  opacity: 0.8;
  text-align: center;
  line-height: 50px;
  transition: all 0.3s;
  color: #fff;
}
#case .inner_case .case_main .more:hover {
  transform: translateY(-5px);
}
/*优势*/
#ys {
  height: 600px;
  background: url("../images/ys_bg.jpg") center center no-repeat;
}
#ys .inner_ys {
  width: 1200px;
  margin: 0 auto;
  height: 560px;
  padding-top: 40px;
  position: relative;
}
#ys .inner_ys h3 {
  width: 234px;
  height: 57px;
  margin: 0 auto;
  background: url("../images/ys_title.png") center center no-repeat;
}
#ys .inner_ys .ys_item {
  width: 150px;
  height: 150px;
  background-color: #47b33c;
  border-radius: 50%;
  position: absolute;
}
#ys .inner_ys .ys_item.ys1 {
  bottom: 0;
  left: -11px;
}
#ys .inner_ys .ys_item.ys1 .ys_text {
  width: 151px;
  height: 60px;
  left: 168px;
  top: 63px;
}
#ys .inner_ys .ys_item.ys2 {
  bottom: 176px;
  left: 107px;
}
#ys .inner_ys .ys_item.ys2 .ys_text {
  width: 150px;
  left: 118px;
  top: 147px;
}
#ys .inner_ys .ys_item.ys3 {
  top: 157px;
  left: 283px;
}
#ys .inner_ys .ys_item.ys3 .ys_text {
  width: 165px;
  left: 59px;
  top: 170px;
}
#ys .inner_ys .ys_item.ys4 {
  top: 124px;
  left: 525px;
}
#ys .inner_ys .ys_item.ys4 .ys_text {
  width: 150px;
  left: 0px;
  top: 161px;
}
#ys .inner_ys .ys_item.ys5 {
  top: 157px;
  right: 283px;
}
#ys .inner_ys .ys_item.ys5 .ys_text {
  width: 150px;
  left: -61px;
  top: 170px;
}
#ys .inner_ys .ys_item.ys6 {
  top: 274px;
  right: 107px;
}
#ys .inner_ys .ys_item.ys6 .ys_text {
  width: 150px;
  left: -118px;
  top: 147px;
}
#ys .inner_ys .ys_item.ys7 {
  bottom: 0px;
  right: 0px;
}
#ys .inner_ys .ys_item.ys7 .ys_text {
  width: 150px;
  left: -162px;
  top: 64px;
}
#ys .inner_ys .ys_item .num {
  padding-top: 37px;
  text-align: center;
  font-size: 24px;
  color: #ffffff;
}
#ys .inner_ys .ys_item .line {
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  margin: 0 auto;
  margin-top: 9px;
}
#ys .inner_ys .ys_item .p2 {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  padding-top: 10px;
  line-height: 20px;
}
#ys .inner_ys .ys_item .ys_text {
  font-size: 12px;
  line-height: 16px;
  position: absolute;
}
/*选择*/
#choose {
  height: 360px;
  background: url("../images/choose_bg.jpg") center center no-repeat;
}
#choose .inner_choose {
  width: 1200px;
  margin: 0 auto;
  padding-top: 41px;
  position: relative;
}
#choose .inner_choose h3 {
  text-align: center;
  font-size: 36px;
  color: #ffffff;
}
#choose .inner_choose h4 {
  font-size: 24px;
  color: #fefefe;
  opacity: 0.5;
  text-align: center;
  padding-top: 7px;
}
#choose .inner_choose #choose_swiper {
  margin-top: 40px;
  width: 1200px;
}
#choose .inner_choose #choose_swiper .swiper-wrapper {
  width: 1200px;
  margin: 0 auto;
}
#choose .inner_choose #choose_swiper .swiper-wrapper li a {
  display: block;
  width: 280px;
  height: 160px;
}
#choose .inner_choose #choose_swiper .swiper-wrapper li a img {
  display: block;
  width: 280px;
  height: 160px;
}
#choose .inner_choose .c_lf_btn,
#choose .inner_choose .c_rg_btn {
  width: 33px;
  height: 56px;
  position: absolute;
  top: 194px;
  cursor: pointer;
}
#choose .inner_choose .c_lf_btn {
  left: -45px;
  background: url("../images/c_lf_btn.png") center center no-repeat;
}
#choose .inner_choose .c_rg_btn {
  right: -30px;
  background: url("../images/c_rg_btn.png") center center no-repeat;
}
/*关于我们*/
#about .inner_about {
  padding-top: 40px;
  width: 1200px;
  margin: 0 auto;
}
#about .inner_about h3 {
  font-size: 36px;
  text-align: center;
}
#about .inner_about h3 span {
  color: #0066a9;
}
#about .inner_about h4 {
  color: #0066a9;
  opacity: 0.5;
  font-size: 24px;
  padding-top: 7px;
}
#about .inner_about .about_main {
  padding-top: 40px;
  overflow: hidden;
  padding-bottom: 77px;
}
#about .inner_about .about_main .about_lf {
  float: left;
  width: 600px;
  height: 380px;
}
#about .inner_about .about_main .about_lf img {
  display: block;
  width: 600px;
  height: 380px;
}
#about .inner_about .about_main .about_rg {
  float: right;
  padding-left: 40px;
  position: relative;
}
#about .inner_about .about_main .about_rg h5 a {
  font-size: 24px;
}
#about .inner_about .about_main .about_rg p {
  width: 559px;
  height: 141px;
  line-height: 26px;
  overflow: hidden;
  padding-top: 17px;
}
#about .inner_about .about_main .about_rg #about_swiper {
  margin: 0 auto;
  margin-top: 32px;
  width: 380px;
}
#about .inner_about .about_main .about_rg #about_swiper li .img {
  width: 170px;
  height: 130px;
  display: block;
}
#about .inner_about .about_main .about_rg #about_swiper li .img img {
  width: 170px;
  height: 130px;
  display: block;
}
#about .inner_about .about_main .about_rg #about_swiper li .name {
  display: block;
  width: 150px;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  background-color: #f2f2f2;
}
#about .inner_about .about_main .about_rg .a_lf_btn,
#about .inner_about .about_main .about_rg .a_rg_btn {
  position: absolute;
  width: 18px;
  height: 32px;
  top: 284px;
  cursor: pointer;
}
#about .inner_about .about_main .about_rg .a_lf_btn {
  background: url("../images/a_lf_btn.png") center center no-repeat;
  left: 93px;
}
#about .inner_about .about_main .about_rg .a_rg_btn {
  background: url("../images/a_rg_btn.png") center center no-repeat;
  left: 531px;
}
/*新闻*/
#news .inner_news {
  width: 1200px;
  margin: 0 auto;
  padding: 40px;
}
#news .inner_news h3 {
  text-align: center;
  font-size: 36px;
}
#news .inner_news h4 {
  padding-top: 7px;
  text-align: center;
  font-size: 24px;
  color: #0066a9;
  opacity: 0.5;
}
#news .inner_news .news_btns {
  width: 1000px;
  height: 45px;
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
  position: relative;
}
#news .inner_news .news_btns .line {
  width: 1000px;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  left: 0;
  top: 49px;
  z-index: -1;
}
#news .inner_news .news_btns a {
  display: inline-block;
  width: 100px;
  height: 15px;
  padding-top: 25px;
  text-align: center;
  font-size: 18px;
  position: relative;
  margin: 0 60px;
  background: url("../images/news_icon2.png") center 0 no-repeat;
  transition: all 0.3s;
}
#news .inner_news .news_btns a.active {
  background: url("../images/news_icon1.png") center 0 no-repeat;
}
#news .inner_news .news_list {
  padding-top: 40px;
  overflow: hidden;
  display: none;
}
#news .inner_news .news_list li {
  float: left;
  margin-left: 30px;
  transition: all 0.3s;
}
#news .inner_news .news_list li:first-child {
  margin-left: 0;
}
#news .inner_news .news_list li:hover {
  transform: translateY(-6px);
}
#news .inner_news .news_list li:hover .img img {
  transform: scale(1.1);
}
#news .inner_news .news_list li:hover .news_detail .item {
  color: #0066a9;
}
#news .inner_news .news_list li .img {
  width: 380px;
  height: 260px;
  display: block;
  overflow: hidden;
}
#news .inner_news .news_list li .img img {
  width: 380px;
  height: 260px;
  display: block;
  transition: all 0.3s;
}
#news .inner_news .news_list .news_detail {
  padding-top: 10px;
}
#news .inner_news .news_list .news_detail .item {
  display: block;
  font-size: 16px;
  color: #666666;
  width: 380px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}
#news .inner_news .news_list .news_detail .p1 {
  font-size: 12px;
  color: #cccccc;
  padding-top: 7px;
}
#news .inner_news .news_list .news_detail .p2 {
  width: 380px;
  height: 28px;
  font-size: 12px;
  color: #666666;
  overflow: hidden;
  line-height: 14px;
  padding-top: 10px;
}
#news .inner_news .news_list .news_detail .more {
  display: block;
  font-size: 12px;
  color: #0066a9;
  padding-top: 10px;
}

/*# sourceMappingURL=in.css.map */