body {
  margin-top: 60px;
  background-color: #fff;
}
.head {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.head .w90 {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.head .logo {
  height: 100%;
}
.head .logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.head .logo img {
  display: block;
  height: 35px;
}

.head .menu_btn {
  position: relative;
  height: 100%;
  width: 40px;
}
.head .menu_btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  width: 25px;
  height: 2px;
  background-color: #666;
}
.head .menu_btn p:nth-child(1) {
  margin-top: -8px;
}
.head .menu_btn p:nth-child(3) {
  margin-top: 8px;
}
.menu {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #fff;
}

.menu .top {
  width: 100%;
  height: 60px;
  background-color: #333;
}
.menu .top .w90 {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu .top .logo {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu .top .logo a {
  display: block;
}
.menu .top .logo img {
  display: block;
  height: 35px;
}
.menu .close {
  position: relative;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 100%;
  transition: all 0.3s;
}
.menu .close p {
  position: absolute;
  top: 29px;
  left: 7px;
  /* transform: translate(-50%); */
  line-height: 0;
  width: 26px;
  height: 2px;
  background-color: #fff;
}
.menu .close p:nth-child(1) {
  transform: rotate(45deg);
}
.menu .close p:nth-child(2) {
  transform: rotate(-45deg);
}
.menu .close:hover {
  transform: rotate(180deg);
}
.menu .nav {
  display: block;
  height: 100%;
  padding: 10px 0;
  overflow-y: auto;
}
.menu .nav li{
  position: relative;
}
.menu .nav a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.9);
  padding-right: 40px;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu .nav li.on .btn{
  position: absolute;
  right: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
}
.menu .nav li.on .btn p{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: #999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .nav li.on .btn p:nth-child(2){
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  -o-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.menu .nav li.on.cur > .btn p{
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -moz-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  -o-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
.menu .nav li.on.cur > .btn p:nth-child(2){
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  -moz-transform: translate(-50%, -50%) rotate(360deg);
  -ms-transform: translate(-50%, -50%) rotate(360deg);
  -o-transform: translate(-50%, -50%) rotate(360deg);
  transform: translate(-50%, -50%) rotate(360deg);
}
.menu .nav dd a {
  font-size: 14px;
  line-height: .4rem;
  color: rgba(0, 0, 0, 0.6);
}
.menu .nav li > a {
  border-bottom: 1px solid #eee;
}
.menu .nav dl {
  display: none;
  padding-left: 10px;
}
.menu .nav li,
.menu .nav dd {
  position: relative;
  /* padding-right: 30px; */
}

.menu .content::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.menu .content::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.menu .content::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.2);
}

/* index */

.inbanner {
  position: relative;
  background-color: #000;
}
.inbanner .img {
  position: relative;
  width: 100%;
  padding-bottom: 80%;
}
.inbanner .img img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
}
.inbanner .text {
  position: absolute;
  z-index: 9;
  top: 40%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}
.inbanner .text h3 {
  font-size: 0.28rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 0.15rem;
}
.inbanner .text h4 {
  font-size: 0.12rem;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1px;
  opacity: 0.9;
}

.inbanner2{
  display: none !important;
}
.inbanner2 .img {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  padding-bottom: 0px;
}

@media screen and (min-width: 1000px) {
  .inbanner1{
    display: none !important;
  }
  .inbanner2{
    display: block !important;
  }
}

.intl {
  position: relative;
  margin-bottom: 0.35rem;
}
.intl:after {
  content: "";
  position: absolute;
  top: 0.1rem;
  right: 0px;
  width: 0.6rem;
  height: 0.03rem;
  background-color: #d0111b;
}
.intl h3 {
  font-size: 0.24rem;
  line-height: 1;
  color: #444;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.03rem;
}
.intl h5 {
  font-size: 0.18rem;
  line-height: 1;
  color: #666;
}

.insearch {
  position: relative;
  z-index: 99;
  /* padding: 0.3rem 0; */
  margin-top: -0.21rem;
}
.insearch .w90 {
  position: relative;
}
.insearch i {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0.4rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  color: #666;
}
.insearch input {
  border: 0;
  background-color: #fff;
  width: 100%;
  font-size: 0.14rem;
  line-height: 3;
  color: #666;
  padding: 0 0.1rem 0 0.4rem;
  border-radius: 0.1rem;
  outline: none;
}

.inys {
  padding: 0.4rem 0 0.5rem;
}
.inys .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}
.inys .content li {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.1rem 0.3rem;
}
.inys .content li:nth-child(2n + 1) {
  background-color: #f5f5f5;
}
.inys .content li .ico {
  margin-right: 0.2rem;
}
.inys .content li .ico i {
  font-size: 0.42rem;
  color: #333;
}
.inys .content li .text h3 {
  font-size: 0.18rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.05rem;
}
.inys .content li .text p {
  font-size: 0.14rem;
  color: #888;
}

.inpro {
  background-color: #fafafa;
  margin-top: -0.21rem;
}
.inpro .content {
  padding-bottom: 0.25rem;
}
.inpro .content li .img {
  position: relative;
  margin-bottom: 0.03rem;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
}
.inpro .content li .img img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inpro .content li .text {
  background-color: #fff;
  padding: 0.1rem 0.1rem;
  text-align: center;
}
.inpro .content li h3 {
  font-size: 0.16rem;
  color: #333;
  margin-bottom: 0.05rem;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inpro .content li p {
  font-size: 0.14rem;
  color: #666;
}
.inpro a.more {
  display: block;
  width: 1rem;
  font-size: 0.14rem;
  line-height: 2.2;
  color: #fff;
  text-align: center;
  background-color: #d0111b;
  margin: 0.3rem auto 0;
}

.inabout {
  padding-bottom: 0.55rem;
}
.inabout .content .text {
  margin-bottom: 0.25rem;
}
.inabout .content .text p {
  font-size: 0.14rem;
  line-height: 1.6;
  color: #666;
  text-align: justify;
}
.inabout .content .img {
  position: relative;
  padding-right: 0.1rem;
  padding-left: 0.05rem;
}
.inabout .content .img:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: -0.05rem;
  width: 20%;
  height: 20%;
  background-color: #d0111b;
  /* opacity: .6; */
  /* background-image: -webkit-linear-gradient(bottom left, rgba(208, 17, 27, 1) 0%, rgba(208, 17, 27, 0.8) 100%); */
}
.inabout .content .img:after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -0.1rem;
  width: 90%;
  height: 90%;
  border: 1px solid #666;
  /* background-color: rgba(0, 0, 0, 0.7); */
  /* background-image: -webkit-linear-gradient(bottom left, rgba(208, 17, 27, 1) 0%, rgba(208, 17, 27, 0.8) 100%); */
}
.inabout .content .img img {
  display: block;
  position: relative;
  z-index: 1;
}
.inhonor{
  margin-top: -1rem;
}
.inhonor .swiper{
  padding-bottom: .2rem;
}
.inhonor .swiper li .img {
  position: relative;
  margin-bottom: 0.03rem;
  overflow: hidden;
  width: 100%;
  padding-bottom: 75%;
}
.inhonor .swiper li .img img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #f5f5f5;
}
.inhonor .swiper li .text {
  background-color: #f5f5f5;
  padding: 0.1rem 0.1rem;
  text-align: center;
}
.inhonor .swiper li h3 {
  font-size: 0.16rem;
  color: #333;
  margin-bottom: 0.05rem;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inhonor a.more {
  display: block;
  width: 1rem;
  font-size: 0.14rem;
  line-height: 2.2;
  color: #fff;
  text-align: center;
  background-color: #d0111b;
  margin: 0.3rem auto 0;
}
.innews {
  background-color: #fafafa;
}
.innews .content li {
  margin-bottom: 0.3rem;
}
.innews .content li:last-child {
  margin-bottom: 0;
}
.innews .content li .img {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  overflow: hidden;
  background-color: #000;
  margin-bottom: 0.2rem;
  border-radius: 5px;
}
.innews .content li .img img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.innews .content li .img h3 {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 10%;
  width: 80%;
  text-align: center;
  transform: translateY(-60%);
  font-size: 0.16rem;
  line-height: 1.4;
  color: #fff;
}
.innews .content li .img h3 i {
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transition: all 0.3s;
}
.innews .content li .img h3 i {
  /* 应用动画diffuse 1.5秒速度 无限循环 线性匀速动画*/
  animation: diffuse 1s infinite linear;
}

@-webkit-keyframes diffuse {
  0% {
    bottom: -0.2rem;
    opacity: 1;
  }
  40% {
    bottom: -0.2.6rem;
    opacity: 0.6;
  }
  60% {
    bottom: -0.3rem;
    opacity: 0.1;
  }
  80% {
    bottom: -0.3rem;
    opacity: 0;
  }

  100% {
    bottom: -0.2rem;
    opacity: 0;
  }
}

.innews .content li .text {
  /* background-color: rgba(255, 255, 255, 0.6);
  padding: .1rem; */
}
.innews .content li .text p {
  font-size: 0.12rem;
  line-height: 1.8;
  color: #555;
}

.foot {
  background-color: #333;
  padding: 0.2rem 0;
}
.foot .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.1rem;
  margin-bottom: 0.2rem;
}
.foot .title h3 {
  font-size: 0.18rem;
  font-weight: bold;
  color: #fff;
  opacity: 0.9;
}
.foot .title .gotop {
  display: flex;
  align-items: center;
  font-size: 0.16rem;
  color: #fff;
}
.foot .title .gotop i {
  font-size: 0.2rem;
  color: #fff;
}
.foot .tel {
  position: relative;
  padding-left: 0.5rem;
  opacity: 0.9;
  margin-bottom: 0.1rem;
}
.foot .tel i {
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  font-size: 0.38rem;
  color: #fff;
  height: 100%;
  align-items: center;
}
.foot .tel h3 {
  font-size: 0.14rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.05rem;
}
.foot .tel h5 {
  font-size: 0.32rem;
  color: #fff;
  line-height: 1;
  font-family: "Bebas-Neue";
  letter-spacing: 1px;
}
.foot p {
  font-size: 0.14rem;
  line-height: 2;
  color: #fff;
  opacity: 0.8;
}
