@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html { font-size: 10px;}
body {
  width: 100%;
  height: 100%;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 1.8;
  color: #454545;
  background-color: #fff;
  text-align: center;
}
a {
  color: #454545;
  text-decoration: none;
}
a:hover {
  color: #0a50b4;
}
.box {
  width: 100%;
  text-align: center;
  clear: both;
  padding: max(4vw, 30px) 0;
}
.box-container {
  width: 100%;
  max-width: 1200px;
  text-align: left;
  clear: both;
  margin: 0 auto;
}
.more a {
  color: #0a50b4;
  font-size: 16px;
  line-height: 40px;
  padding: 0 50px;
  display: inline-block;
  border: 2px #0a50b4 solid;
  border-radius: 22px;
  text-decoration: none;
}
.more a:hover {
  color: #fff;
  background-color: #0a50b4;
}

/* 头部菜单 */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 5vw;
  max-height: 100px;
  min-height: 50px;
  background-color: #fff;
  position: sticky;
  top: 0px;
  z-index: 100;
}
header.is-sticky {
    box-shadow: 0 0 7px #aaa;
}
header .logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 3vw 0 2.6vw;
  background-image: linear-gradient(80deg, #195493, #3483c5);
  position: relative;
  overflow: hidden;
}
header .logo a {
  display: block;
  height: 70%;
  line-height: 1px;
  padding-top: 0.5vw;
}
header .logo img {
  height: 100%;
}
header .logo .triangle{
  position: absolute;
  right: -18px;
  top: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 18px 110px 18px;
  border-color: transparent transparent #fff transparent;
}
header .lang {
  width: 36px;
  height: 100%;
  position: relative;
  line-height: 1px;
}
header .lang div {
  height: 100%;
  display: flex;
  align-items: center;
}
header .lang img {
  width: 36px;
  height: 24px;
  cursor: pointer;
}
header .lang ul {
  position: absolute;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 170px;
  padding: 4px 16px 16px;
  right: -17px;
  border-radius: 0 0 14px 14px;
  border: 1px #fff solid;
  box-shadow: -4px 4px 4px -3px #aaa, 4px 4px 4px -3px #aaa;
}
header .lang li {
  padding-top: 12px;
}
/*header .lang:hover ul {
  display: flex !important;
}*/
header .phone {
  display: flex;
  align-items: center;
  width: 210px;
  height: 5rem;
  line-height: 1.6rem;
  font-size: 2rem;
  color: #454545;
}

@media only screen and (max-width: 1024px) {
  header .phone {
    display: none;
  }
  header .lang {
    margin-right: 16px;
  }
  header .lang ul {
    border-radius: 0 0 0 14px;
  }
}

header .phone .tel {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/tel.png) center center no-repeat;
  background-size: 100%;
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 55%;
  min-width: 550px;
  padding: 0 30px;
}
header .nav li {
  display: inline-block;
}
header .nav li a {
  display: inline-block;
  word-break: break-word;
  font-size: 16px;
  font-weight: 500;
  color: #454545;
  text-decoration: none;
}
header .nav li a:hover, header .nav li a.current {
  color: #00589c;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  -webkit-text-decoration-color: #00589c;
  text-decoration-color: #00589c;
  text-underline-offset: 3px;
}

header .mobile_nav {
  display: none;
}
header .menu {
  display: none;
  list-style: none;
  position: absolute;
  right: 0;
  top: 50px;
  width: 50%;
  max-width: 200px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 16px;
  box-shadow: -4px 4px 4px -3px #aaa;
  border-radius: 0 0 0 14px;
}
header .menu li{
  display: block;
}
header .menu li a{
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #454545;
  text-decoration: none;
  line-height: 260%;
}
header .menu li a:hover, header .menu li a:active{
  background-color: #dbeefb;
}

@media only screen and (max-width: 800px) {
  header .lang {
    margin-right: 0;
  }
  header .lang ul {
    border-radius: 0 0 14px 14px;
  }
  header .nav {
    display: none;
  }
  header .mobile_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
  }
  header .mobile_nav i {
    display: block;
    font-size: 28px;
    line-height: 28px;
    cursor: pointer;
  }
}

/* BANNER */
banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 36vw;
  position: relative;
  text-align: left;
  border-top: 1px #fff solid;
}
.banner-box {
  width: 100%;
  height: 100%;
  list-style: none;
  display: block;
  position: relative;
}
.banner-box li {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.banner-background {
  width: 100%;
  height: 100%;
}
.banner-background img {
  width: 100%;
  height: 100%;
}
.banner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-left, .banner-right {
  height: 70%;
  width: 45%;
}
.banner-left {
  position: relative;
}
.banner-left img {
  height: 100%;
  position: absolute;
  left: 8vw;
}
.banner-right {
  color: #fff;
  padding-top: 2vw;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}
.banner-right-box {
  position: absolute;
  top: 2vw;
  left: 0;
}
.banner-right h2 {
  width: 100%;
  font-size: 3.6vw;
  font-weight: normal;
  margin-bottom: 1vw;
}
.banner-right p {
  width: 100%;
  font-size: 2vw;
  font-weight: normal;
}
.banner-ctr {position:absolute;margin-left:-4.5vw;left:50%;bottom:2vw; text-align: center;}
.banner-ctr li {
  display:inline-block;width:4vw; max-width: 40px;height:1vw; max-height:10px;cursor:pointer;
  line-height:1vw; background-color:#fff; margin-right:0.5vw; opacity:0.5;
}
.banner-ctr li.d {opacity:1.0}

/* 过滤 */
.filter {
  background-color: #fff;
}
.filter .box-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.filter-left {
  width: 46%;
}
.filter-left h1 {
  color: #00589c;
  font-size: 36px;
  font-weight: normal;
  line-height: 200%;
}
.filter-left h3 {
  font-size: 24px;
  font-weight: normal;
  line-height: 200%;
}
.filter-left .more {
  margin-top: 10px;
}
.filter-left .filter-txt {
  font-size: 16px;
  line-height: 240%;
}
.filter .filter-right {
  width: 46%;
}
.filter-right-container {
  width: 100%;
}
.filter-right-container div {
  width: 100%;
  border-radius: 10px;
  background-color: #dee8f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.filter-right-container img {
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .filter .box-container {
    display: block;
    align-items: flex-start;
    justify-content: space-around;
    padding: 0 16px;
  }
  .filter-left {
    width: 100% !important;
    margin-bottom: 5vw;
  }
  .filter-right {
    width: 100% !important;
  }
  .filter-left h2 {
    font-size: 26px;
    text-align: center;
  }
  .filter-left h3 {
    font-size: 18px;
    text-align: center;
  }
  .filter-left .more {
    text-align: center;
  }
}

/* 优点 */
.merit {
  background-color: #f6f9ff;
}
.merit h2 {
  color: #00589c;
  font-size: 36px;
  font-weight: normal;
  line-height: 200%;
  text-align: center;
}
.merit-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5vw 0;
}
.merit-left, .merit-right {
  width: 30%;
}
.merit-center {
  width: 35%;
  border-radius: 50%;
  overflow: hidden;
  line-height: 1px;
  border: 1px #caddf8 solid;
  box-shadow: 0 0 7px #ccc;
}
.merit-center img {
  width: 100%;
}
@keyframes enlarge {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.15, 1.15);
  }
  100% {
    transform: scale(1, 1);
  }
}
.merit-center img:hover {
  animation: enlarge 0.6s forwards;
}
.merit-container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 20px;
  line-height: 160%;
}
.merit-container li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1vw 0;
}
.merit-container .merit-right li {
  padding: 1.8vw 0;
}
.merit-container li img {
  width: 5vw;
  max-width: 80px;
  min-width: 60px;
}
.merit-left li img {
  margin-left: 2vw;
}
.merit-right li img {
  margin-right: 2vw;
}
@keyframes rotate_ico {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1) rotateZ(180deg);
  }
  100% {
    transform: scale(1, 1) rotateZ(360deg);
  }
}
.merit-left li:hover img, .merit-right li:hover img {
  animation: rotate_ico 0.5s linear;
}
.merit-left ul {
  align-items: flex-end;
  text-align: right;
}
.merit-left li:first-child, .merit-left li:nth-child(4) {
  margin-right: -2.6vw;
}
.merit-right ul {
  align-items: flex-start;
}
.merit-right li:first-child, .merit-right li:nth-child(3) {
  margin-left: -1.5vw;
}
.merit-right li:nth-child(2) {
  margin-left: 0.3vw;
}
.merit .more {
  margin-top: 10px;
  text-align: center;
}
.merit-txt {
  width: 58%;
  margin: 0 max(2vw, 16px) 0 0;
  font-size: 18px;
  line-height: 160%;
}
.merit-txt p {
  margin: 34px 0;
}
@media only screen and (max-width: 800px) {
  .merit h2 {
    font-size: 26px;
  }
  .merit-container {
    text-align: center;
    justify-content: center;
  }
  .merit-left, .merit-right {
    width: 45%;
  }
  .merit-center {
    display: none;
  }
  .merit-left ul {
    align-items: flex-start;
  }
  .merit-left li {
    flex-direction: row-reverse;
    justify-content: flex-start;
    text-align: left;
    padding: 1.8vw 0;
  }
  .merit-left li:first-child, .merit-left li:nth-child(4) {
    margin-right: 0;
  }
  .merit-right li:first-child, .merit-right li:nth-child(2), .merit-right li:nth-child(3) {
    margin-left: 0;
  }
  .merit-left li img {
    margin-left: 0;
    margin-right: 2vw;
  }
  .merit-container p {
    text-align: left;
    font-size: 18px;
  }
}
@media only screen and (max-width: 500px) {
  .merit-container {
    display: block;
    text-align: center;
  }
  .merit-left, .merit-right {
    width: 80%;
    margin: 0 auto;
  }
  .merit-container p {
    font-size: 16px;
  }
  .merit-txt {
    width: auto;
    margin: 0 max(2vw, 16px);
    text-indent: 2em;
  }
}

/* 应用领域 */
.case h2 {
  color: #00589c;
  font-size: 36px;
  font-weight: normal;
  line-height: 200%;
  text-align: center;
}
.case h3 {
  font-size: 24px;
  font-weight: normal;
  line-height: 200%;
  text-align: center;
}
.case ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  list-style: none;
}
.case li {
  width: 15%;
  font-size: 20px;
  text-align: center;
  padding-top: min(max(4vw, 20px), 40px);
}
.case li a {
  display: block;
  color: #454545;
  text-decoration: none;
}
.case li a:hover {
  color: #0a50b4;
}
.case li img {
  width: 90%;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 7px #ccc;
}
@keyframes rotate_img {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1) rotateY(180deg);
  }
  100% {
    transform: scale(1, 1) rotateY(360deg);
  }
}
.case li a:hover img {
  animation: rotate_img 0.6s ease;
}
.case li p {
  padding-top: 0.5vw;
}
.case .more {
  margin-top: min(max(4vw, 20px), 40px);
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .case li {
    width: 22%;
    font-size: 18px;
  }
  .case h2 {
    font-size: 26px;
  }
  .case h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 500px) {
  .case li {
    width: 28%;
    font-size: 16px;
  }
}

/* 走进赫丁 */
.about {
/*  background-color: #00589c;*/
  padding: 0;
  line-height: 1px;
  height: min(40vw, 700px);
  overflow: hidden;
  position: relative;
}
.about-background {
  margin-top: -10px;
/*  opacity: 0.95;*/
}
.about-background img {
  width: 100%;
}
.about-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-container h2 {
  color: #fff;
  font-size: 3.6vw;
  line-height: 200%;
  text-align: center;
  margin-bottom: min(2vw, 30px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5vw;
}
.about-container .more a {
  color: #fff;
  background-color: #0a50b4;
}
.about-container .more a:hover {
  color: #0a50b4;
  background-color: #fff;
  border: 2px #fff solid;
}
@media only screen and (max-width: 500px) {
  .about-container h2 {
    font-size: 32px;
  }
}

/* 走进赫丁文本 */
.about-txt {
  padding: max(2vw, 30px) 0 0 0;
}
.about-txt h2 {
  color: #00589c;
  font-size: 28px;
  font-weight: normal;
  line-height: 200%;
  margin: 0 max(2vw, 16px);
}
.about-txt-container {
  font-size: 20px;
  line-height: 200%;
  margin: 0 max(2vw, 16px);
}

/* 新闻动态 */
.inews h2 {
  color: #00589c;
  font-size: 36px;
  font-weight: normal;
  line-height: 200%;
  text-align: center;
}
.inews .more {
  text-align: right;
  padding-right: max(2vw, 16px);
  margin-top: min(max(4vw, 20px), 40px);
}
.inews ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 max(2vw, 16px);
}
.inews li {
  width: 45%;
  padding-top: min(max(4vw, 20px), 40px);
}
.inews li h3 {
  font-size: 20px;
  border-left: 10px solid #00589c;
  line-height: 30px;
  margin-bottom: 10px;
}
.inews h3 a {
  color: #00589c;
  font-weight: normal;
  line-height: 30px;
  text-decoration: none;
  display: block;
  padding-left: 10px;
}
.inews h3 a:hover {
  color: #fff;
  background-color: #00589c;
}
.inews li p {
  font-size: 16px;
  padding-left: 20px;
}
@media only screen and (max-width: 800px) {
  .inews li {
    width: 100% !important;
  }
  .inews h2 {
    font-size: 26px;
  }
}

/* 页脚 */
.footer {
  background-color: #f6f6f6;
  padding: max(3vw, 30px) 0;
}
.footer .box-container {
  text-align: center;
  font-size: 14px;
  line-height: 240%;
  padding: 0 16px;
}
@media only screen and (max-width: 500px) {
  .footer .box-container {
    font-size: 12px;
  }
}

/* SubBanner */
.sub-banner {
  padding: 0;
  line-height: 1px;
  height: min(35vw, 500px);
  overflow: hidden;
  position: relative;
  border-top: 1px #fff solid;
}
.sub-banner-background img {
  width: 100%;
}
.sub-banner-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-banner-container h2, .sub-banner-container h1 {
  color: #00589c;
  font-size: min(max(3vw, 20px), 36px);
  font-weight: normal;
  line-height: 200%;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.75);
  padding: 0.5vw min(4vw, 100px);
  border-radius: 20px;
}

/* 公司简介 */
.company-txt h1 {
  color: #00589c;
  font-size: 28px;
  font-weight: normal;
  line-height: 200%;
  margin: 0 max(2vw, 16px);
}
.company-txt-container {
  font-size: 20px;
  line-height: 200%;
  margin: 0 max(2vw, 16px);
}
.company-txt-container p {
  padding: 10px 0;
}

/* 联系我们 */
.contact-txt .box-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-left {
  width: 50%;
}
.contact-map {
  width: 50%;
  height: 30vw;
  min-height: 200px;
  max-height: 450px;
  padding: 0 max(2vw, 16px);
}
@media only screen and (max-width: 500px) {
  .contact-txt .box-container {
    display: block;
  }
  .contact-left {
    width: 100%;
  }
  .contact-map {
    width: 100%;
    margin-top: 20px;
  }
}
.contact-left h1 {
  color: #00589c;
  font-size: 28px;
  font-weight: normal;
  line-height: 200%;
  margin: 0 max(2vw, 16px);
}
.contact-txt-container {
  font-size: 20px;
  line-height: 200%;
  margin: 0 max(2vw, 16px);
}
.contact-txt-container p {
  padding: 10px 0;
}

/* 应用领域列表 */
.case-list {
  list-style: none;
  margin: 0 max(2vw, 16px);
}
.case-list li {
  width: 100%;
  padding-top: min(max(4vw, 20px), 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.case-img {
  width: 30%;
}
.case-img img {
  width: 100%;
  border-radius: 20px;
}
@keyframes caseimg {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.15, 1.15);
  }
  100% {
    transform: scale(1, 1);
  }
}
.case-img img:hover {
  animation: caseimg 0.6s forwards;
}
.case-txt {
  width: 70%;
  padding-left: 40px;
  font-size: 20px;
  line-height: 180%;
}
.case-txt h3 {
  color: #00589c;
  font-size: 24px;
  font-weight: normal;
  line-height: 180%;
  padding: max(0.5vw, 6px) 0;
}
.case-txt h3 a {
  color: #00589c;
}
.case-txt h3 a:hover {
  color: #00589c;
  text-decoration: underline;
}
.case-txt p {
  padding: max(0.5vw, 6px) 0;
}
@media only screen and (max-width: 600px) {
  .case-list li {
    display: block;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 4vw;
  }
  .case-img {
    width: 100% !important;
    margin-bottom: 2vw;
  }
  .case-txt {
    width: 100% !important;
    padding-left: 0 !important;
    font-size: 16px;
  }
  .case-txt h3 {
    font-size: 20px;
  }
}

/* 新闻详情页 */
.news-show h1 {
  color: #00589c;
  font-size: 28px;
  font-weight: normal;
  line-height: 200%;
  margin: 0 max(2vw, 16px);
  text-align: center;
}
.news-show .timer {
  font-size: 16px;
  text-align: center;
  padding-bottom: 10px;
}
.news-show-container {
  font-size: 20px;
  line-height: 200%;
  margin: 0 max(2vw, 16px);
}
.news-show-container p {
  padding: 10px 0;
}
.prevnext {
  font-size: 14px;
  margin: max(2vw, 16px) max(2vw, 16px) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.prevnext .prev {
  width: 50%;
}
.prevnext .next {
  width: 50%;
  text-align: right;
}
.prevnext a {
  color: #00589c;
}
.prevnext a:hover {
  color: #00589c;
  text-decoration: underline;
}

/*分页*/
#pages {
    text-align: center;
    clear: both;
    padding-top: 40px;
}

#pages li {
    margin: 0 2px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #e6e6e6;
    color: #333;
    display: inline-block;
}
#pages li a{
    font-size: 14px;
    display: block;
    padding: 0 16px;
}
#pages li span{
    font-size: 14px;
    display: block;
    padding: 0 16px;
}
#pages li.active {
    text-align: center;
    background: #00589c;
    color: #fff;
    display: inline-block;
}

#pages li:hover {
    background: #00589c;
    color: #fff;
}

#pages li:hover a {
    color: #fff;
}
