@charset "utf-8";
body{ min-width: 1500px;}
header{
  position: relative;
}
.header{
  background: url(../2025djjqgalpkimages/header_bg.png) no-repeat center bottom;
}
.headerTop{
  padding-top: 35px;
  display: flex;
}
.logo{
  display: flex;
  align-items: center;
}
.logo_01{
  margin-right: 24px;
}

.search {
  flex: 1;
  text-align: right;
  position: relative;
  margin-top: 16px;
}

.search .notxt {
  width: 220px;
  height: 38px;
  background-color: #ECECEC;
  color: #ccc;
  padding: 0;
  outline: none;
  border: none;
  padding-left: 13px;
}

.search .notxt1 {
  outline: none;
  border: none;
  width: 22px;
  height: 22px;
  background: url(../2025djjqgalpkimages/search_icon.png) no-repeat center;
  transition: all 0.4s ease;
  position: absolute;
  top: 8px;
  right: 22px;
}

::-webkit-input-placeholder {
  color: #999;
}

:-moz-input-placeholder {
  color: #999;
}

::-moz-input-placeholder {
  color: #999;
}

::-ms-input-placeholder {
  color: #999;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #ECECEC inset !important;
  /* 修改input自动填充背景色 */
  -webkit-text-fill-color: #333 !important;
  /* 自动填充文字颜色 */
}

.nav {
  text-align: justify;
  font-size: 0;
  margin-top: 6px;
}

.nav::after {
  content: '';
  display: inline-block;
  width: 100%;
}

.nav li {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 23px;
  position: relative;
}

.nav li a {
  display: block;
  color: #C4261D;
  font-weight: bold;
  padding: 20px 0;
  line-height: 20px;
}

.subNav {
  width: 200%;
  text-align: center;
  position: absolute;
  top: 60px;
  left: 50%;
  background-color: #ECECEC;
  z-index: 10;
  transform: translate3d(-50%, 0px, 0);
  opacity: 0;
}

li.on .subNav {
  opacity: 0.9;
}

li.on .subNav dd:hover {
  transition: all 0.35s ease;
  background-color: #C4261D;
}
li.on .subNav dd:hover a{
  color: #fff;
}


/*手机端导航默认*/
.mobile_bg {
  width: 100%;
  height: 100%;
  z-index: 90;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

.gp-menu {
  display: none;
  width: 50px;
  z-index: 98;
  height: auto;
  position: absolute;
  top: 35%;
  right: 0px;
}

.gp-menu-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 996;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0);
}

.gp-menu-link {
  float: left;
  line-height: 40px;
  height: 40px;
  padding-left: 15px;
}

.gp-menu-link a {
  color: #fff;
}

.gp-menu-header-icon {
  color: #c7000a;
  height: 40px;
  font-size: 25px;
  text-align: center;
  float: right;
  width: 40px;
  position: relative;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
  margin-right: 10px;
  cursor: pointer;
}

.gp-menu-header-icon span {
  position: absolute;
  left: calc((100% - 25px) / 2);
  top: calc((100% - 2px) / 3);
  width: 27px;
  height: 3px;
  background-color: #c7000a;
}

.gp-menu-header-icon-out span {
  width: 27px;
  height: 4px;
  background-color: #c7000a;
  display: block;
  border-radius: 4px;
}

.gp-menu-header-icon-out span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outfirst;
}

.gp-menu-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outsecond;
}

.gp-menu-header-icon-out span:nth-child(3) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outthird;
}

.gp-menu-header-icon span:nth-child(1) {
  transform: translateY(4px) rotate(0deg);
}

.gp-menu-header-icon span:nth-child(2) {
  transform: translateY(-4px) rotate(0deg);
}

.gp-menu-header-icon span:nth-child(3) {
  transform: translateY(-4px) rotate(0deg);
}

@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}

@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

@keyframes outthird {
  0% {
    transform: translateY(0) rotate(90deg);
  }

  100% {
    transform: translateY(12px) rotate(0deg);
  }
}

.gp-menu-header-icon-click span {
  background-color: #fff;
  top: calc((100% - 2px) / 2.1);
}

.gp-menu-header-icon-click span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickfirst;
}

.gp-menu-header-icon-click span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clicksecond;
}

.gp-menu-header-icon-click span:nth-child(3) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickthird;
}

@keyframes clickfirst {
  0% {
    transform: translateY(4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}

@keyframes clicksecond {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

@keyframes clickthird {
  0% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

.gp-menu-nav {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0px;
  padding-top: 60px;
  background: #C4261D;
  background: -webkit-linear-gradient(left, #C4261D, #C4261D);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #C4261D, #C4261D);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #C4261D, #C4261D);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #C4261D, #C4261D);
  display: none;
}

/*导航*/
.gp-menu-nav a {}

.gp-menu-nav>ul {}

.gp-menu-nav>ul li {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: returnToNormal;
  animation-name: returnToNormal;
}

.gp-menu-nav>ul>li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.gp-menu-nav>ul>li>a {
  display: inline-block;
  padding: 14px 0 14px 25px;
  font-size: 1.6rem;
}

.gp-menu-nav>ul>li>ul {
  background: rgba(0, 0, 0, 0.1);
  padding: 0 25px
}

.gp-menu-nav>ul>li>ul a {
  display: inline-block;
  padding: 10px 0;
}

.gp-menu-arrow {
  cursor: pointer;
  width: 30px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.gp-menu-nav>ul>li.on .gp-menu-arrow {
  transform: rotate(90deg);
}

.gp-menu-nav li ul {
  display: none;
}

/*导航内标签效果*/
.gp-menu-nav a {
  color: #fff;
}

.open .gp-menu-link {
  display: none;
}

.open .gp-menu-header {
  background: none;
}

@-webkit-keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*
下拉横排效果
*/
.bg-black span {
  background: #C4261D;
}
.open .bg-black span{
  background-color: #fff;
}
.open .gp-menu{
  position: fixed;
  top: 20px;
}
.gp-m-search .form{
  display: flex;
  justify-content: center;
  align-items: center;
}
.gp-m-search .notxt{
  width: 80%;
  height: 40px;
  border: 0;
  padding: 0;
  outline: none;
  padding-left: 20px;
}
.gp-m-search .notxt1{
  width: 10%;
  height: 40px;
  border: 0;
  padding: 0;
  outline: none;
  background-image: url(../2025djjqgalpkimages/search_icon.png);
  background-repeat: no-repeat;
  background-position: center;
}
.gp-menu-nav.gp-menu-dropdown2 {
  background: #C4261D;
}

.gp-menu-nav.gp-menu-dropdown2>ul {
  position: relative;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li {
  border-bottom: none;
  position: static;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a {
  padding: 0;
  display: block;
  text-align: left;
  height: 70px;
  line-height: 70px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 5px;
  position: relative;
  z-index: 900;
  color: #fff;
  padding-left: 40px;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a.icon-down:after {
  content: "\e73a";
  font-size: 1.4rem;
  margin-left: 5px;
  transition: all 0.3s;
  display: inline-block;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a.icon-down:before {
  content: '';
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  left: 50%;
  bottom: -100%;
  margin-left: -5px;
  opacity: 0.2;
  transition: all 0.3s;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li.on>a.icon-down:before {
  bottom: 0;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>ul {
  /* position: absolute; */
  /* left: 0; */
  width: 100%;
  z-index: 1000;
  background: #C4261D;
  box-shadow: 0 0 3px rgba(0, 0, 0, .15);
  right: 5px;
  padding: 8px 0;
  text-align: center;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>ul a {
  color: #fff
}

.gp-menu-nav.gp-menu-dropdown2>ul li {
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none
}

.gp-menu-nav.gp-menu-dropdown2>ul>li.on>a.icon-down:after {
  transform: rotate(180deg);
}

/* footer */
footer{
  background: url(../2025djjqgalpkimages/footer_bg.png) no-repeat center/cover;
  padding: 9.5px 0;
}
.footer span{
  display: block;
  line-height: 34px;
  text-align: center;
}

