html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  position: relative;
  margin: 0;
  min-height: calc(100% - 380px);
  padding-bottom: 380px;
}
a {
  text-decoration: none;
  display: block;
}
.none {
  display: none!important;
}
.visibility {
  visibility: visible!important;
}
span {
  display: block;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.index_logo {
  position: absolute;
  z-index: 20;
  top: 20px;
  left: 40px;
}
.index_logo img {
  width: 200px;
  display: block;
}
@media (max-width: 760px) {
  .index_logo {
    top: 5px;
    left: 5px;
  }
  .index_logo img {
    width: 60px;
  }
}
.rotate {
  animation: rotate 20000ms linear infinite;
}
@keyframes scale {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.95);
  }
}
.scale {
  animation: scale 6000ms linear infinite;
}
.header {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.header img {
  display: block;
}
.header .shui_img {
  width: 42%;
  position: absolute;
  z-index: 11;
  top: 1%;
  left: 29%;
}
.header .shui_img .beijing {
  width: 100%;
}
.header .shui_img .shui {
  width: 52%;
  position: absolute;
  top: 23%;
  left: 24%;
}
.header .p {
  width: 100%;
  position: absolute;
  z-index: 12;
  /*bottom: 70px;*/
  top: 80px;
  left: 130;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header .p .span {
  display: none;
}
.header .p strong {
  color: white;
  font-weight: 600;
  /*letter-spacing: 2px;
  -webkit-text-stroke: 2px #055194;*/
  font-size: 66px;
}
.header .p p {
  margin: 0;
  margin-top: 25px;
  background: url('../img/005.png') no-repeat;
  background-size: 100% 100%;
  color: #155767;
  padding: 2px 80px 2px 8px;
  font-size: 20px;
}
@media (max-width: 760px) {
  .header .shui_img {
    width: 50%;
    top: 39%;
    left: 23%;
  }
  .header .shui_img .shui {
    width: 80%;
    top: 12%;
    left: 11%;
  }
  .header .p {
    bottom: auto;
    top: 20px;
  }
  .header .p .span {
    width: 100%;
    margin-bottom: 10px;
    display: block;
  }
  .header .p .span span {
    width: 100%;
    text-align: center;
    color: #155767;
    font-size: 12px;
    margin-bottom: 2px;
  }
  .header .p .span span:nth-last-child(1) {
    margin-bottom: 0;
  }
  .header .p strong {
    -webkit-text-stroke: 1px #055194;
    font-size: 26px;
  }
  .header .p p {
    margin-top: 10px;
    padding: 1px 30px 1px 8px;
    font-size: 12px;
  }
}
.menu {
  width: 100%;
}
.menu ul {
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: #ffded4;
  display: flex;
  justify-content: center;
}
.menu ul li {
  list-style: none;
  margin-right: 20px;
  position: relative;
}
.menu ul li .href {
  width: 138px;
  height: 80px;
  text-align: center;
  transform: skewX(-13deg);
}
.menu ul li .href span {
  width: 100%;
  height: 100%;
  line-height: 80px;
  color: black;
  font-size: 21px;
  transform: skewX(13deg);
}
.menu ul li .href .b {
  display: none;
}
.menu ul li .ul {
  display: none;
  position: absolute;
  top: 100%;
  left: -7%;
  min-width: 100%;
  padding: 15px 0;
  background-color: #ffded4;;
  z-index: 100;
}
.menu ul li .ul a {
  width: 100%;
  box-sizing: border-box;
  padding: 5px 10px;
  color: black;
  text-align: center;
  font-size: 18px;
}
.menu ul li .ul a:hover {
  background-color: #f22424;
}
.menu ul li:hover .href {
  background-color: #f22424;
}
.menu ul li:hover .href span {
  font-weight: 600;
}
.menu ul li:hover .ul {
  display: block;
}
.menu ul li:nth-last-child(1) {
  margin-right: 0;
}
.menu ul .active .href {
  background-color: #f22424;
}
.menu ul .active .href span {
  font-weight: 600;
}
@media (max-width: 1200px) {
  .menu ul li {
    margin-right: 5px;
  }
  .menu ul li .href {
    width: 80px;
    height: 60px;
  }
  .menu ul li .href span {
    line-height: 60px;
    font-size: 17px;
  }
  .menu ul li .ul {
    left: -7%;
  }
  .menu ul li .ul a {
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .menu {
    margin-bottom: 2px;
  }
  .menu ul {
    background-color: transparent;
    background: url('../img/002.jpg') no-repeat;
    background-size: 100% 100%;
    flex-flow: row wrap;
  }
  .menu ul li {
    margin-right: 0;
    width: 25%;
    box-sizing: border-box;
    border-right: 1px solid white;
  }
  .menu ul li .href {
    width: 100%;
    height: 50px;
    transform: skewX(0);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu ul li .href span {
    width: 90%;
    height: 34px;
    line-height: 34px;
    border-radius: 40px;
    font-size: 15px;
    letter-spacing: 2px;
    transform: skewX(0);
    color: white;
  }
  .menu ul li .href .a {
    display: none;
  }
  .menu ul li .href .b {
    display: block;
  }
  .menu ul li .ul {
    display: none!important;
  }
  .menu ul li:nth-child(4n) {
    border-right: 0;
  }
  .menu ul li:nth-child(-n+4) {
    border-bottom: 1px solid white;
  }
  .menu ul li:hover .href {
    background-color: transparent;
  }
  .menu ul li:hover .href span {
    font-weight: 400;
  }
  .menu ul .active .href {
    background-color: transparent;
  }
  .menu ul .active .href span {
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0.8);
    color: #064eb4;
  }
}
.index_title {
  width: 100%;
}
.index_title strong {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 30px;
}
.index_title span {
  width: 100%;
  margin: 5px 0 10px 0;
  text-align: center;
  font-size: 16px;
}
.index_title i {
  display: block;
  width: 120px;
  height: 1px;
  margin: 0 auto;
  position: relative;
}
.index_title i:before {
  content: '';
  width: 30px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
}
.our {
  width: 100%;
  overflow: hidden;
  padding: 200px 0 150px 0;
  background: url('../img/006.jpg') no-repeat;
  background-size: cover;
}
.our .box {
  width: 1100px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  padding: 60px 0 100px 0;
}
.our .box .index_title strong {
  color: #f61b20;
}
.our .box .index_title span {
  color: #3a3a3a;
}
.our .box .index_title i {
  background-color: #008d41;
}
.our .box .index_title i:before {
  background-color: #008d41;
}
.our .box .text {
  width: 600px;
  margin: 30px auto 40px auto;
  color: #3a3a3a;
  text-indent: 2rem;
  line-height: 28px;
  font-size: 16px;
}
.our .box .three_list {
  width: 100%;
  display: flex;
  justify-content: center;
}
.our .box .three_list .list {
  margin-right: 60px;
  position: relative;
}
.our .box .three_list .list .bbox {
  position: relative;
  z-index: 2;
  padding: 22px 16px 25px 16px;
  background-color: white;
}
.our .box .three_list .list .bbox .img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our .box .three_list .list .bbox .img img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transition: 400ms;
}
.our .box .three_list .list .bbox i {
  display: block;
  width: 80px;
  height: 1px;
  background-color: #f61b20;
  margin: 20px 0 10px;
}
.our .box .three_list .list .bbox span {
  width: 100%;
  text-align: center;
  color: #f61b20;
  font-size: 16px;
}
.our .box .three_list .list .bbox:hover .img img {
  transform: rotate(45deg);
}
.our .box .three_list .list .bj {
  width: 100%;
  height: 110%;
  position: absolute;
  z-index: 1;
  top: -15%;
  left: 6px;
}
.our .box .three_list .list:nth-last-child(1) {
  margin-right: 0;
}
@media (max-width: 1150px) {
  .our .box {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .our {
    padding: 35px 0 50px 0;
    background-position: right bottom;
  }
  .our .box {
    padding: 15px 0 60px 0;
  }
  .our .box .text {
    width: 86%;
    margin: 35px auto 0 auto;
    line-height: 40px;
    font-size: 22px;
  }
  .our .box .three_list {
    display: none;
  }
}
.product {
  width: 100%;
  padding-bottom: 120px;
  background: url('../img/009.jpg') no-repeat;
  background-size: auto 150%;
  background-position: right center;
}
.product img {
  display: block;
}
.product .box {
  width: 1200px;
  padding-top: 1px;
  margin: 0 auto;
  position: relative;
}
.product .box .p_title {
  width: 340px;
  height: 280px;
  position: absolute;
  z-index: 3;
  top: -35px;
  left: 0;
  background: url('../img/008.jpg') no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .box .p_title .index_title strong {
  color: #ffffff;
}
.product .box .p_title .index_title span {
  color: #ffffff;
}
.product .box .p_title .index_title i {
  background-color: #ffffff;
}
.product .box .p_title .index_title i:before {
  background-color: #ffffff;
}
.product .box .listbox {
  width: 100%;
  height: 500px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  position: relative;
}
.product .box .listbox a {
  padding: 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.product .box .listbox a .abox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product .box .listbox a .abox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 400ms;
}
.product .box .listbox a:hover .abox img {
  transform: scale(1.1);
}
.product .box .listbox a:nth-child(1) {
  width: 56%;
  height: 100%;
  border-radius: 65px;
  box-shadow: 0 0 10px rgba(42, 161, 239, 0.25);
}
.product .box .listbox a:nth-child(1) .abox {
  border-radius: 60px;
}
.product .box .listbox a:nth-child(n+2) {
  height: calc(50% - 5px);
  border-radius: 50%;
  background-image: linear-gradient(to right, rgba(42, 161, 239, 0.2), rgba(42, 161, 239, 0));
  box-shadow: 0 0 4px rgba(42, 161, 239, 0.25);
}
.product .box .listbox a:nth-child(n+2) .abox {
  border-radius: 50%;
}
.product .box .listbox a:nth-child(n+6) {
  display: none;
}
.product .box .listbox .bei {
  width: 86%;
  height: 130%;
  position: absolute;
  z-index: 1;
  bottom: -14%;
  left: -8%;
}
.product .box .swiperbox {
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.product .box .swiperbox .swiper-button-next,
.product .box .swiperbox .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.product .box .swiperbox .swiper-button-next,
.product .box .swiperbox .swiper-button-prev {
  display: none;
  width: 35px;
  height: 60px;
  margin-top: -30px;
}
.product .box .swiperbox .swiper-button-next {
  right: 0;
  background: url('../img/right.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.product .box .swiperbox .swiper-button-prev {
  left: 0;
  background: url('../img/left.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.product .box .more {
  position: absolute;
  bottom: 0;
  right: -100px;
}
.product .box .more a img {
  width: 100px;
}
@media (max-width: 1450px) {
  .product .box .more {
    bottom: -70px;
    right: 17%;
  }
}
@media (max-width: 1250px) {
  .product .box {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .product {
    padding-bottom: 60px;
  }
  .product .box {
    width: 100%;
    padding-top: 120px;
  }
  .product .box .p_title {
    width: 180px;
    height: 140px;
    top: -25px;
    left: 50%;
    margin-left: -90px;
  }
  .product .box .listbox {
    display: none;
  }
  .product .box .swiperbox {
    padding: 40px 0;
    position: relative;
    bottom: auto;
    left: auto;
    visibility: visible;
    background: url('../img/011_2.png') no-repeat;
    background-size: 100% 100%;
    background-position: left top;
  }
  .product .box .swiperbox .swiper-button-next,
  .product .box .swiperbox .swiper-button-prev {
    display: block;
  }
  .product .box .more {
    bottom: -25px;
    right: 17%;
  }
  .product .box .more a img {
    width: 85px;
  }
}
.sdys {
  width: 100%;
  padding: 70px 0 60px 0;
  overflow: hidden;
  background: url('../img/012.jpg') no-repeat;
  background-size: cover;
}
.sdys img {
  display: block;
}
.sdys .title {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sdys .title span {
  color: #0a4ca3;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 28px;
}
.sdys .title i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0a4ca3;
  margin: 0 10px;
  margin-top: 4px;
}
.sdys .box {
  width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sdys .box .column {
  width: 150px;
  background-color: #f61b20;
  padding: 40px 0;
}
.sdys .box .column .img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 15px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.sdys .box .column .img img {
  width: 50px;
  height: 50px;
  object-fit: scale-down;
}
.sdys .box .column .img .a {
  display: none;
}
.sdys .box .column .img:nth-last-child(1) {
  margin-bottom: 0;
}
.sdys .box .column .img:hover {
  background-color: #c9a66d;
}
.sdys .box .column .img:hover .b {
  display: none;
}
.sdys .box .column .img:hover .a {
  display: block;
}
.sdys .box .column .active {
  background-color: #c9a66d;
}
.sdys .box .column .active .b {
  display: none;
}
.sdys .box .column .active .a {
  display: block;
}
.sdys .box .listbox {
  width: calc(100% - 190px);
}
.sdys .box .listbox .list {
  width: 100%;
}
.sdys .box .listbox .list img {
  width: 100%;
}
.sdys .box .listbox .list .p {
  width: 100%;
  padding: 7px 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.5);
}
.sdys .box .listbox .list .p p {
  width: 100%;
  margin: 0;
  color: white;
  text-align: justify;
  line-height: 32px;
  font-size: 18px;
}
@media (max-width: 950px) {
  .sdys .box {
    width: 96%;
  }
}
@media (max-width: 760px) {
  .sdys {
    padding: 40px 0 20px 0;
  }
  .sdys .title {
    display: none;
  }
  .sdys .box {
    justify-content: flex-end;
    align-items: center;
  }
  .sdys .box .column {
    width: 50px;
    margin-right: 20px;
    background-color: transparent;
    padding: 0;
  }
  .sdys .box .column .img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .sdys .box .column .img img {
    width: 30px;
    height: 30px;
  }
  .sdys .box .listbox {
    width: calc(100% - 100px);
  }
  .sdys .box .listbox .list .p {
    padding: 35px 10px;
  }
  .sdys .box .listbox .list .p p {
    line-height: 26px;
    font-size: 16px;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
}
.anli {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 40px 0;
  background: url('../img/022.jpg') no-repeat;
  background-size: cover;
}
.anli .listbox {
  width: 1000px;
  margin: 0 auto;
  display: flex;
}
.anli .listbox .list {
 /* width: calc((100% - 100px) );
  margin-right: 50px;*/
}
.anli .listbox .list .img {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.anli .listbox .list .img img {
  width: 100%;
}
.anli .listbox .list .img:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(234, 40, 76, 0.4);
  position: absolute;
  top: 100%;
  left: 0;
  transition: 400ms;
}
.anli .listbox .list .text {
  /*width: 74%;
  height: 50%;*/
  margin: 0 auto;
  margin-top: -35%;
  box-sizing: border-box;
  padding: 15px;
  box-shadow: 0 0 2px rgba(234, 40, 76, 0.4);;
  background-color: rgba(255, 255, 255, 0.15);
  /*border-radius: 50%;*/
  position: relative;
  z-index: 2;
  transition: 400ms;
}
.anli .listbox .list .text .tbox {
  width: 100%;
  /*height: 100%;*/
  /*border-radius: 50%;*/
  background-color: #f61b20;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.anli .listbox .list .text .tbox span {
  /*width: 74px;
  margin-top: 5%;*/
  text-align: center;
  color: white;
  line-height: 14px;
  font-size: 14px;
}
.anli .listbox .list .text .tbox p {
  margin: 0;
  margin-top: 5px;
  font-size: 14px;
  color: white;
  width: 80%;
  text-align: center;
}
.anli .listbox .list:nth-last-child(1) {
  margin-right: 0;
}
.anli .listbox .list:hover .img:before {
  top: 0;
}
.anli .listbox .list:hover .text {
  /*margin-top: -50%;*/
}
.anli .swiperbox {
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.anli .swiperbox .swiper-button-next,
.anli .swiperbox .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0) !important;
}
.anli .swiperbox .swiper-button-next,
.anli .swiperbox .swiper-button-prev {
  display: none;
  width: 35px;
  height: 60px;
  margin-top: -20%;
}
.anli .swiperbox .swiper-button-next {
  right: 0;
  background: url('../img/right.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.anli .swiperbox .swiper-button-prev {
  left: 0;
  background: url('../img/left.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
@media (max-width: 1050px) {
  .anli .listbox {
    width: 90%;
  }
  .anli .listbox .list {
    width: calc((100% - 50px) / 3);
    margin-right: 25px;
  }
  .anli .listbox .list .text {
    width: 85%;
  }
  .anli .listbox .list .text .tbox span {
    width: 60px;
    line-height: 26px;
    font-size: 24px;
  }
  .anli .listbox .list .text .tbox p {
    width: 70%;
  }
}
@media (max-width: 760px) {
  .anli {
    padding: 50px 0 30px 0;
    background-size: 190% auto;
    background-position: center 210%;
  }
  .anli .listbox {
    display: none;
  }
  .anli .swiperbox {
    position: relative;
    bottom: auto;
    left: auto;
    visibility: visible;
  }
  .anli .swiperbox .swiper-button-next,
  .anli .swiperbox .swiper-button-prev {
    display: block;
  }
}
.new {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background: url('../img/016.jpg') no-repeat;
  background-size: 100% 100%;
}
.new .box {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.new .box .listbox {
  width: calc(60% - 20px);
  display: flex;
  flex-flow: row wrap;
}
.new .box .listbox a {
  width: 50%;
  background-color: white;
  box-sizing: border-box;
  padding: 30px 40px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.new .box .listbox a .atop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.new .box .listbox a .atop .time strong {
  display: block;
  line-height: 40px;
  font-size: 40px;
  color: #595757;
}
.new .box .listbox a .atop .time span {
  color: #595757;
  font-size: 14px;
}
.new .box .listbox a .atop .img img {
  width: 34px;
}
.new .box .listbox a .atop .img .b {
  display: none;
}
.new .box .listbox a i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #8b8989;
  margin: 20px 0;
}
.new .box .listbox a p {
  margin: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #595757;
  font-weight: 600;
  font-size: 18px;
}
.new .box .listbox a:hover {
  background-color: #f75c5c;
}
.new .box .listbox a:hover .atop .time strong {
  color: white;
}
.new .box .listbox a:hover .atop .time span {
  color: white;
}
.new .box .listbox a:hover .atop .img .a {
  display: none;
}
.new .box .listbox a:hover .atop .img .b {
  display: block;
}
.new .box .listbox a:hover i {
  background-color: white;
}
.new .box .listbox a:hover p {
  color: white;
}
.new .box .listbox .active {
  background-color: #f61b20;
}
.new .box .listbox .active .atop .time strong {
  color: white;
}
.new .box .listbox .active .atop .time span {
  color: white;
}
.new .box .listbox .active .atop .img .a {
  display: none;
}
.new .box .listbox .active .atop .img .b {
  display: block;
}
.new .box .listbox .active i {
  background-color: white;
}
.new .box .listbox .active p {
  color: white;
}
.new .box .image {
  width: 40%;
}
.new .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1450px) {
  .new .box {
    width: 90%;
  }
}
@media (max-width: 1150px) {
  .new .box .listbox {
    width: 100%;
  }
  .new .box .image {
    display: none;
  }
}
@media (max-width: 760px) {
  .new {
    padding: 40px 0;
  }
  .new .box .listbox a {
    width: 100%;
    padding: 20px;
  }
  .new .box .listbox a .atop .time strong {
    line-height: 26px;
    font-size: 26px;
  }
  .new .box .listbox a .atop .time span {
    font-size: 12px;
  }
  .new .box .listbox a .atop .img img {
    width: 26px;
  }
  .new .box .listbox a i {
    height: 1px;
    margin: 10px 0;
  }
  .new .box .listbox a p {
    font-size: 14px;
  }
}
.foot {
  width: 100%;
  height: 350px;
  background-color: #e6e6e6;
  position: absolute;
  bottom: 30px;
  left: 0;
}
.foot img {
  display: block;
}
.foot .top_img {
  width: 100%;
  position: absolute;
  top: -60px;
  left: 0;
}
.foot .top_img img {
  display: block;
  height: 120px;
  margin: 0 auto;
}
.foot .title {
  width: 100%;
  margin-top: 75px;
  text-align: center;
  color: #f61b20;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 26px;
}
.foot .box {
  width: 1100px;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.foot .box .list {
  width: calc((100% - 80px) / 3);
  padding: 10px;
  box-sizing: border-box;
  background-color: #f61b20;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot .box .list img {
  width: 36px;
  margin-right: 20px;
}
.foot .box .list p {
  margin: 3px 0;
}
.foot .box .list p span {
  color: white;
  font-size: 19px;
}
.foot .box .list .image {
  margin: 0 7px;
}
.foot .box .list .image img {
  width: 65px;
  margin: 0 auto;
}
.foot .box .list .image span {
  width: 100%;
  color: white;
  text-align: center;
  margin-top: 2px;
  font-size: 12px;
}
.foot .box .list:before {
  content: '';
  width: 6px;
  height: 8px;
  background-color: #f61b20;
  transform: skewX(40deg);
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -3px;
}
@media (max-width: 1150px) {
  .foot {
    height: 420px;
  }
  .foot .box {
    width: 90%;
    flex-flow: row wrap;
  }
  .foot .box .list:nth-child(-n+2) {
    width: calc((100% - 40px) / 2);
  }
  .foot .box .list:nth-child(3) {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 1150px) {
  body {
    min-height: calc(100% - 450px);
    padding-bottom: 450px;
  }
}
@media (max-width: 760px) {
  .foot {
    display: none;
  }
}
.foot_copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #f61b20;
  display: flex;
  justify-content: center;
  align-items: center;
}
.foot_copyright .fc {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin: 0 4px;
}
@media (max-width: 760px) {
  .foot_copyright {
    bottom: 60px;
  }
}
@media (max-width: 760px) {
  body {
    min-height: calc(100% - 90px);
    padding-bottom: 90px;
  }
}
.tabber {
  width: 100%;
  height: 60px;
  background-color: #c9a66d;
  display: none;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.tabber a {
  width: calc(100% / 3);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tabber a img {
  width: 26px;
  height: 18px;
  object-fit: scale-down;
  display: block;
}
.tabber a span {
  font-size: 17px;
  color: white;
  margin-top: 2px;
}
.tabber a:nth-child(2):before {
  content: '';
  width: 1px;
  height: 50px;
  background-color: #93d5cc;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -25px;
}
.tabber a:nth-child(2):after {
  content: '';
  width: 1px;
  height: 50px;
  background-color: #93d5cc;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -25px;
}
@media (max-width: 760px) {
  .tabber {
    display: flex;
  }
}
.common_image {
  width: 100%;
  min-height: 10px;
}
.common_image img {
  width: 100%;
  display: block;
}
.common_image .b {
  display: none;
}
@media (max-width: 760px) {
  .common_image .a {
    display: none;
  }
  .common_image .b {
    display: block;
  }
}
.common {
  width: 100%;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 40px;
}
.common .commonbox {
  width: 1200px;
  margin: 0 auto;
}
.common .commonbox .common_title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #676767;
}
.common .commonbox .common_title .ge {
  width: 50px;
  height: 5px;
  background-color: #f61b20;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .common {
    padding-bottom: 60px;
  }
}
@media (max-width: 540px) {
  .common {
    padding-top: 10px;
  }
  .common .commonbox .common_title {
    font-size: 20px;
  }
  .common .commonbox .common_title .ge {
    width: 40px;
    height: 3px;
  }
}
.com_our {
  width: 100%;
}
.com_our .com_our_title {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}
.com_our .time {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #636363;
}
.com_our .com_our_content {
  width: 100%;
  margin-top: 10px;
  text-align: justify;
}
.com_our .com_our_content img {
  max-width: 100%;
}
.com_column_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_column_box .column {
  width: 160px;
  height: 100%;
}
.com_column_box .column h2 {
  width: 100%;
  padding: 10px 0;
  letter-spacing: 2px;
  color: black;
  text-align: center;
  background-color: #e5e8eb;
  margin: 0;
  font-size: 20px;
}
.com_column_box .column .column_active {
  background-color: #f61b20;
  color: white;
}
.com_column_box .column a {
  display: block;
  text-decoration: none;
  position: relative;
  width: calc(100% - 22px);
  text-align: center;
  padding: 15px 10px;
  color: #6c6c6c;
  font-size: 18px;
  border-left: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
.com_column_box .column a:hover {
  background-color: #f61b20;
  color: white;
}
.com_column_box .com_content_box {
  width: calc(100% - 180px);
}
@media (max-width: 1200px) {
  .com_column_box {
    flex-direction: column;
    justify-content: center;
  }
  .com_column_box .column {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px 0;
    border: 0;
  }
  .com_column_box .column h2 {
    display: none;
  }
  .com_column_box .column a {
    width: auto;
    padding: 6px 10px;
    margin-bottom: 0;
    font-size: 15px;
    background-color: #fdf2d7;
    margin-right: 15px;
    color: black;
    border: 1px solid #cacaca;
    white-space: nowrap;
  }
  .com_column_box .column a:before {
    display: none;
  }
  .com_column_box .column a:after {
    display: none;
  }
  .com_column_box .column a:nth-last-child(1):before {
    display: none;
  }
  .com_column_box .column a:nth-last-child(1):after {
    display: none;
  }
  .com_column_box .com_content_box {
    width: 100%;
  }
}
.com_product_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
.com_product_box a {
  text-decoration: none;
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc((100% - 40px) / 3);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
.com_product_box a .image {
  overflow: hidden;
}
.com_product_box a .image img {
  display: block;
  width: 100%;
}
.com_product_box a span {
  display: block;
  width: calc(100% - 10px);
  padding: 5px;
  font-size: 15px;
  text-align: center;
  color: white;
  background-color: #f61b20;
}
.com_product_box a:hover .image img {
  transform: scale(1.2);
  transition: 300ms;
}
.com_product_box a:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 760px) {
  .com_product_box a {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
  }
  .com_product_box a:nth-child(3n) {
    margin-right: 10px;
  }
  .com_product_box a:nth-child(2n) {
    margin-right: 0;
  }
}
.pagination {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.pagination .btn-group {
  width: 200px;
  margin: 5px 0 20px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.pagination .btn-group .pagebtn_a,
.pagination .btn-group .pagebtn_s {
  width: 75px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.pagination .btn-group .pagebtn_s {
  color: #bebebe;
  border: 1px solid #bebebe;
}
.pagination .btn-group .pagebtn_a {
  text-decoration: none;
  color: black;
  border: 1px solid black;
}
.pagination .btn-group .pagebtn_a:hover {
  background-color: #f61b20;
  color: white;
  cursor: pointer;
}
.com_new_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_new_box a {
  width: 48%;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  color: black;
  padding: 20px 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f61b20;
}
.com_new_box a .time {
  display: block;
  width: 100%;
  font-size: 14px;
  margin: 5px 0;
}
.com_new_box a span {
  display: block;
  width: 100%;
  font-weight: 600;
  margin: 3px 0;
  font-size: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.com_new_box a p {
  margin: 0;
  font-size: 14px;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.com_new_box a:hover {
  border-bottom: 2px solid #f61b20;
  box-shadow: 0 0 2px rgba(21, 159, 249, 0.7);
}
.com_new_box a:hover span {
  color: #f61b20;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 10px;
  }
  .com_new_box a span {
    font-size: 18px;
  }
}
