@charset 'utf-8';
body,
dl,
dt,
dd,
div,
h1,
h3,
p,
input,
button,
textarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
input,
button,
textarea {
  outline: 0;
  font-size: 16px;
}
body {
  color: #333;
  font-size: 16px;
  overflow-x: hidden;
  font-family: "Graphik-Regular";
}
.gm {
  font-family: "Graphik-Medium";
}
.gb {
  font-family: "Graphik-Bold";
  font-weight: bold;
}
.gr {
  font-family: "Graphik-Regular";
}
img {
  vertical-align: bottom;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
/*清除浮动*/
.clearfix {
  zoom: 1;
}
.clearfix::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
  overflow: hidden;
}
/*多行溢出隐藏*/
/*单行溢出隐藏*/
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/*修改字体字符的样式*/
/*修改placeholder的样式*/
/* 分页类 */
.paging {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.paging a {
  transition: all .5s;
  -moz-transition: all .5s;
  /* Firefox 4 */
  -webkit-transition: all .5s;
  /* Safari 和 Chrome */
  -o-transition: all .5s;
  /* Opera */
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin: 0 10px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.paging a.prev,
.paging a.next {
  width: 100px;
}
.paging a.active {
  border: 1px solid #f28c15;
  background-color: #f28c15;
  color: #fff;
}
.pointer {
  cursor: pointer;
}
/*加过渡*/
.transition {
  transition: all .5s;
  -moz-transition: all .5s;
  /* Firefox 4 */
  -webkit-transition: all .5s;
  /* Safari 和 Chrome */
  -o-transition: all .5s;
  /* Opera */
}
/*版心*/
.wrap {
  width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .wrap {
    width: 92%;
  }
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: 96%;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
  input,
  button,
  textarea {
    font-size: 14px;
  }
  .wrap {
    width: 100%;
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
  .wrap {
    width: 100%;
  }
}
.lang {
  font-size: 14px;
  position: relative;
  margin-left: 28px;
}
.lang .now {
  border: 1px solid #999;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  font-size: 14px;
  line-height: 18px;
  color: #e4e4e4;
  padding: 0 5px;
}
.lang .now .iconfont {
  margin: 0 5px;
  transition: all .5s;
  -moz-transition: all .5s;
  /* Firefox 4 */
  -webkit-transition: all .5s;
  /* Safari 和 Chrome */
  -o-transition: all .5s;
  /* Opera */
  font-size: 12px;
  transform: scale(0.7,0.7) rotate(90deg);
	-webkit-transform: scale(0.7,0.7) rotate(90deg);
}
.lang .now .iconfont.active:last-child {
  transform: rotate(-90deg);
}
.lang .sel_box {
  z-index: 6;
  display: none;
  position: absolute;
  top: 22px;
  left: 0;
  width: 100px;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 5px 0;
}
.lang .sel_box span {
  color: #333;
  display: block;
  padding: 5px 20px;
}
.search_box {
  z-index: 8;
  display: none;
  width: 100%;
  height: 100%;
  padding-left: 300px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
}
.search_box .form_box {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.search_box .form_box form {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
}
.search_box .form_box form input {
  width: calc(100% - 28px);
  padding: 10px 20px;
  line-height: 24px;
  border: none;
}
.search_box .form_box form button {
  cursor: pointer;
  border: none;
  background-color: #fff;
}
.search_box .form_box form button span {
  font-size: 28px;
  color: #1f1a17;
}
.header {
  z-index: 2;
}
.header .top {
  background-color: #333;
  color: #fff;
  height: 42px;
  font-size: 16px;
}
.header .top .wrap {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.header .top .wrap .left {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.header .top .wrap .left div:first-child {
  margin-right: 18px;
}
.header .top .wrap .left div a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  color: #fff;
  font-size: 14px;
}
.header .top .wrap .left div a .iconfont {
  font-size: 20px;
  margin-right: 7px;
}
.header .top .wrap .left div a:hover span:last-child {
  text-decoration-line: underline;
}
.header .top .wrap .right {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.header .top .wrap .right .link {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.header .top .wrap .right .link a {
  background-color: #fff;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 4px;
  border-radius: 50%;
  position: relative;
}
.header .top .wrap .right .link a .iconfont {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .top .wrap .right .link a:nth-child(1) {
  color: #3a5799;
}
.header .top .wrap .right .link a:nth-child(2) {
  color: #0ba9e4;
}
.header .top .wrap .right .link a:nth-child(3) {
  color: #2492cf;
}
.header .top .wrap .right .link a:nth-child(4) {
  color: #027ab6;
}
.header .top .wrap .right .link a:nth-child(5) {
  color: #c51f1d;
}
.header .nav {
  height: 100px;
  background-color: #fff;
}
.header .nav .wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  position: relative;
}
.header .nav .wrap .logo {
  width: 190px;
}
.header .nav .wrap .logo img {
  width: 100%;
}
.header .nav .wrap .right {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: calc(100% - 300px);
}
.header .nav .wrap .right .nav_list {
  width: calc(100% - 100px);
}
.header .nav .wrap .right .nav_list > dl {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 100%;
}
.header .nav .wrap .right .nav_list > dl > dd {
  transition: all .5s;
  -moz-transition: all .5s;
  /* Firefox 4 */
  -webkit-transition: all .5s;
  /* Safari 和 Chrome */
  -o-transition: all .5s;
  /* Opera */
  float: left;
  height: 100px;
}
.header .nav .wrap .right .nav_list > dl > dd > a {
  font-family: "Graphik-Bold";
  font-weight: bold;
  transition: all .5s;
  -moz-transition: all .5s;
  /* Firefox 4 */
  -webkit-transition: all .5s;
  /* Safari 和 Chrome */
  -o-transition: all .5s;
  /* Opera */
  display: block;
  height: 100%;
  line-height: 100px;
  color: #444;
  padding: 0 15px;
}
.header .nav .wrap .right .nav_list > dl > dd .slide {
  z-index: 3;
  display: none;
  position: absolute;
  top: 100px;
  border-bottom: 4px solid #c33736;
  background-color: #fafafa;
}
.header .nav .wrap .right .nav_list > dl > dd .slide > dl > dd {
  border-bottom: 1px dashed #dcdcdc;
}
.header .nav .wrap .right .nav_list > dl > dd .slide > dl > dd > a {
  display: block;
  padding: 18px 20px;
  color: #222;
}
.header .nav .wrap .right .nav_list > dl > dd .slide > dl > dd:hover > a {
  color: #c33736;
}
.header .nav .wrap .right .nav_list > dl > dd .slide > dl > dd:last-child {
  border: none;
}
.header .nav .wrap .right .nav_list > dl > dd.active {
  background-color: #c33736;
}
.header .nav .wrap .right .nav_list > dl > dd.active a {
  color: #fff;
}
.header .nav .wrap .right .operate .search_icon .iconfont {
  font-size: 28px;
  color: #444;
}
.mobile_nav {
  z-index: 6;
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  box-shadow: 2px 0 4px rgba(115,115,115,.2);
  background-color: #fff;
}
.mobile_nav .brand {
  width: 120px;
}
.mobile_nav .brand img {
  width: 100%;
}
.mobile_nav .op_group {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.mobile_nav .op_group .iconfont {
  cursor: pointer;
  font-size: 20px;
}
.mobile_nav .op_group .iconfont:last-child {
  font-size: 28px;
}
.mobile_nav .op_group .lang {
  font-size: 14px;
  position: relative;
  margin: 0 5px;
}
.mobile_nav .op_group .lang .now {
  border: 1px solid #333;
  font-size: 14px;
  color: #333;
}
.mobile_nav .op_group .lang .now .iconfont {
  font-size: 12px;
}
.mobile_nav .op_group .lang .sel_box {
  top: 32px;
  width: 70px;
}
.mobile_nav .op_group .lang .sel_box span {
  padding: 5px 10px;
}
.nav_mask {
  display: none;
  position: fixed;
  top: 120px;
  left: 0;
  z-index: 2;
  width: 100vw;
  height: calc(100vh - 60px);
  background-color: rgba(0, 0, 0, 0.4);
}
.nav_mask .nav_tip {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  font-size: 14px;
  padding: 10px 0;
  background-color: #f5f5f5;
}
.nav_mask .nav_tip > dd {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: 0 5%;
}
.nav_mask .nav_tip > dd a {
  padding: 10px 0;
  display: block;
  width: 60%;
  color: #191919;
}
.nav_mask .nav_tip > dd .iconfont {
  transition: all .5s;
  -moz-transition: all .5s;
  /* Firefox 4 */
  -webkit-transition: all .5s;
  /* Safari 和 Chrome */
  -o-transition: all .5s;
  /* Opera */
  font-size: 20px;
  color: #666;
  transform: scale(0.5, 0.5);
}
.nav_mask .nav_tip > dd .iconfont.down {
  transform: rotate(90deg) scale(0.5, 0.5);
}
.nav_mask .nav_tip > dd .slide {
  display: none;
  width: 100%;
  padding: 0 30px;
}
.nav_mask .nav_tip > dd .slide a {
  display: block;
  width: 100%;
  padding: 8px 0;
}
.banner_box {
  position: relative;
  overflow: hidden;
}
.banner_box img {
  width: 100%;
}
.banner_box .banner {
  position: relative;
}
.banner_box .banner .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.banner_box .banner .owl-dots button {
  outline: 0;
}
.banner_box .banner .owl-dots .owl-dot.active span {
  background-color: #c33736;
}
.banner_box .banner .owl-dots .owl-dot:hover span {
  background-color: #c33736;
}
.t_banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 420px;
  position: relative;
  margin-bottom: 25px;
}



.t_banner .crumb {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  position: absolute;
  background-color: #fff;
  height: 50px;
  box-shadow: -5px 8px 10px -5px #ddd;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  padding-left: 20px;
  font-size: 14px;
}
.t_banner .crumb .tt{
  position: relative;
  top: -3px;
}
.t_banner .crumb .tt .iconfont {
  color: #c33736;
}
.t_banner .crumb .tt span {
  font-family: "Graphik-Bold";
  font-weight: bold;
  color: #222;
}
@media screen and (max-width: 1400px) {
  .header .nav .wrap .logo {
    width: 170px;
  }
  .header .nav .wrap .right {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    width: calc(100% - 240px);
  }
  .header .nav .wrap .right .nav_list {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 1200px) {
  .header .nav .wrap .right {
    width: calc(100% - 210px);
  }
  .header .nav .wrap .right .nav_list {
    width: calc(100% - 40px);
  }
  .header .nav .wrap .right .nav_list > dl > dd > a {
    padding: 0 11px;
  }
  .lang {
    padding: 10px 5px;
  }
  .t_banner.del {
    height: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    display: none;
  }
  .search_box {
    z-index: 3;
    padding-left: 200px;
    padding-right: 60px;
  }
  .search_box .form_box form input {
    width: calc(100% - 78px);
    padding: 10px 20px;
    line-height: 24px;
    border: none;
  }
  .search_box .form_box form button span {
    font-size: 20px;
  }
  .mobile_nav {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  .mobile_nav .op_group .lang {
    border-radius: 5px;
  }
  .mobile_nav .op_group .lang .sel_box {
    border-radius: 5px;
  }
  .t_banner {
    margin-top: 60px;
    height: 260px;
  }
  .t_banner.del {
    height: 110px;
  }
  .banner_box {
    margin-top: 60px;
  }
  .nav_mask {
    top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .lang {
    font-size: 12px;
  }
  .lang .now {
    padding: 0;
    padding-left: 5px;
  }
  .lang .now .iconfont {
    transform: rotate(90deg) scale(0.7, 0.7);
  }
  .lang .now .iconfont.active:last-child {
    transform: rotate(-90deg) scale(0.7, 0.7);
  }
  .lang .sel_box {
    padding: 5px 0;
    top: 24px;
  }
  .mobile_nav {
    height: 50px;
    padding: 0 10px;
  }
  .mobile_nav .brand {
    width: 100px;
  }
  .mobile_nav .op_group .iconfont {
    cursor: pointer;
    font-size: 18px;
  }
  .mobile_nav .op_group .iconfont:last-child {
    font-size: 24px;
  }
  .mobile_nav .search_box {
    padding: 0 20px;
  }
  .mobile_nav .search_box .form_box form input {
    padding: 5px 15px;
    line-height: 20px;
  }
  .mobile_nav .search_box .form_box form button .iconfont {
    font-size: 18px;
  }
  .nav_mask {
    top: 50px;
  }
  .nav_mask .nav_tip > dd {
    padding: 0 5%;
  }
  .nav_mask .nav_tip > dd a {
    padding: 8px 0;
    width: 90%;
  }
  .nav_mask .nav_tip > dd .slide {
    padding: 0 20px;
  }
  .nav_mask .nav_tip > dd .slide a {
    padding: 8px 0;
  }
  .banner_box {
    margin-top: 50px;
  }
  .banner_box .banner .item {
    height: 160px;
    overflow: hidden;
    text-align: center;
  }
  .banner_box .banner .item a img {
    height: 100%;
    width: auto;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .banner_box .banner .owl-dots {
    bottom: 5px;
    z-index: 3;
  }
  .t_banner {
    margin-top: 50px;
    height: 120px;
  }
  .t_banner .crumb .wrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 30px;
  }
  .t_banner .crumb .wrap .l_item {
    padding: 0 5px;
  }
  .t_banner .crumb .wrap .iconfont {
    font-size: 18px;
  }
  .t_banner.del {
    height: 80px;
  }
}
