html * {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: inherit;
    box-sizing: border-box;
}
html h1,html h2,html h3,html h4,html h5,html h6,
html .h1,html .h2,html .h3,html .h4,html .h5,html .h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: inherit;
    font-size: inherit;
}
body {
  font-family:Arial, sans-serif;
  color:#333;
  background:#fff;
}
@font-face {
  font-family: 'MyCustomFont';
  src: url('https://www.hamacglobal.com/images/fonts/798-CAI978.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
.my-font {
  font-family: 'MyCustomFont', sans-serif;
}
a {
  color:inherit;
  text-decoration:none;
  transition:.3s;
}
a:hover {
    color: #d92423;
}
img {
  max-width:100%;
  border:0;
}
ul,li {
  list-style:none;
}

/* 内容宽度 1520 */
.container {
  max-width:1560px;
  margin:0 auto;
  padding:0 20px;
}

/* 主题色 */
:root {
  --red:#D62A29;
  --dark:#333;
  --gray:#666;
  --4D:#4D4D4D;
  --000:#000000;
  --999:#999999;
}

/* =================================== */
/* 顶部信息栏 */
/* =================================== */
.top-bar {
  background:#f7f7f7;
  height:50px;
  font-size:16px;
  color:#666;
}
.top-bar .container {
  display:flex;
  justify-content:flex-end;
      align-items: center;
    height: 100%;
}
.top-bar span {
  margin-left:20px;
}

/* =================================== */
/* 导航 / 悬浮导航 / PC端 */
/* =================================== */
.header {
  background:#fff;
  border-bottom:1px solid #eee;
  position:relative;
  z-index:999;
}
.nav-wrap {
  height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo img {
  height:44px;
}

/* PC导航 */
.pc-nav{
  height: 100%;
}
.pc-nav ul {
  display:flex;
  align-items: center;
  height: 100%;
}
.pc-nav ul li a {
  display:block;
  height:100px;
  line-height:100px;
  padding:0 30px;
  font-size:16px;
  color:#333;
}
.pc-nav ul li a:hover,
.pc-nav ul li a.active {
  color:var(--red);
}
.m-nav{
    transform: translateX(-100%);
    position:fixed;
    top:0;
    left:0;
}
.lang {
    background: var(--red);
    color: #fff !important;
    line-height: 34px !important;
    height: 34px !important;
    padding: 0 20px !important;
    margin: 0 0 0 30px;
}

/* 悬浮导航 */
.header.fixed {
  position:fixed;
  top:0;
  left:0;
  right:0;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  animation:fixedNav 0.3s;
}
@keyframes fixedNav {
  from{transform:translateY(-100%);}
  to{transform:translateY(0);}
}

/* =================================== */
/* 移动端菜单按钮 */
/* =================================== */
.m-toggle {
  display:none;
  background:none;
  border:none;
  font-size:24px;
  color:#333;
  cursor:pointer;
}

/* =================================== */
/* 手机端折叠菜单 */
/* =================================== */
@media (max-width:991px) {
  .pc-nav {
    display:none;
  }
  .m-toggle {
    display:block;
  }
  .m-nav {
    width:260px;
    height:100%;
    background:#fff;
    box-shadow:2px 0 10px rgba(0,0,0,0.1);
    padding-top:20px;
    transform:translateX(-100%);
    transition:0.3s;
    z-index:9999;
  }
  .m-nav.show {
    transform:translateX(0);
  }
  .m-nav ul li a {
    display:block;
    padding:12px 20px;
    font-size:15px;
    color:#333;
    border-bottom:1px solid #eee;
  }
  .m-nav ul li a.active {
    color:var(--red);
  }
  .m-close {
    text-align:right;
    padding:0 20px 10px;
    font-size:20px;
    cursor:pointer;
  }
  .overlay {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    z-index:9998;
  }
  .overlay.show {
    display:block;
  }
}


.banner{
    background-color: #ccc;
    height: 500px;
}
.banner>.text{
    color: #fff;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.banner>.text h2{
    font-size: 44px;
}
.banner>.text h2::after{
    content: '';
    display: block;
    width: 80%;
    height: 4px;
    background: var(--red);
    margin: 12px 0 12px 10%;
}
.crumb{
    color:var(--999);
    margin: 34px 0;
}
.crumb span a:last-child {
    font-weight: 800;
    color:var(--000);
}
/* =================================== */
/* 分页 */
/* =================================== */
.page {
  text-align:center;
  padding:20px 0;
}
.page a {
  display:inline-block;
  padding:6px 12px;
  border:1px solid #eee;
  margin:0 2px;
  color:#333;
}
.page a.on {
  background:var(--red);
  color:#fff;
  border-color:var(--red);
}

/* =================================== */
/* 底部 */
/* =================================== */
.footer {
  background:var(--dark);
  color:var(--999);
  padding:60px 0 40px;
  font-size:14px;
}
.footer .row {
  display:flex;
  justify-content: space-between;
}
.footer .row div{
  width:auto;
  max-width: 460px;
}
.footer h4 {
  color:#fff;
  font-size:24px;
  margin-bottom:15px;
}
.footer a {
  display:block;
  margin-bottom:6px;
}
.footer p {
  margin-bottom:6px;
  line-height:1.6;
}
.copyright {
  text-align:center;
  padding-top:40px;
  margin-top:60px;
  border-top:1px solid #666;
}

@media (max-width:991px) {
  .news-item {
    flex-wrap:wrap;
  }
  .news-pic {
    width:100%;
    margin:10px 0;
  }
  .news-info {
    margin-left:0;
  }
  .footer .row div{
    max-width: 100%;
  }
  .top-bar .container{
    flex-direction: column;
  }
  .nav-wrap{
    height: 60px;
  }
  .logo img{
    height: 33px;
  }
}