* {
  box-sizing: border-box;
  outline: 0;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
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,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
div,
p,
span,
i,
em {
  white-space: inherit !important;
}
a {
  color: #333;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: #f40002;
}
ol,
ul {
  list-style: none;
}
img {
  border: 0;
  width: auto;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin: -2px 5px 1px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  padding: 0;
  color: #333;
  outline: none;
}
html,
body {
  position: relative;
  /* scroll-behavior: smooth; */
}
html {
  font-size: 100px;
}

/* 修改垂直滚动条 */
::-webkit-scrollbar {
  width: 5px; /* 修改宽度 */
}
 
/* 修改滚动条轨道背景色 */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
 
/* 修改滚动条滑块颜色 */
::-webkit-scrollbar-thumb {
  background-color: #888;
}
 
/* 修改滚动条滑块悬停时的颜色 */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
 
/* 修改滚动条滑块移动时的颜色 */
::-webkit-scrollbar-thumb:active {
  background-color: #333;
}
 
/* 修改滚动条滑块的圆角 */
::-webkit-scrollbar-thumb {
  border-radius: 5px;
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 100px !important;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 100px;
  }
}
html {
  font-size: 100px;
}
@media (max-width: 1600px) {
  html {
    font-size: 80px!important;
  }
}
@media (max-width: 1450px) {
  html {
    font-size: 75px!important;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 72px!important;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 68px!important;
  }
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
.dw {
  top: -2rem;
  width: 1px;
  z-index: -1;
  position: absolute;
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.vcenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.hid {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: 0.75s;
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeInUp3 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp3 {
  animation-name: fadeInUp3;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown3 {
  animation-name: fadeInDown3;
}
@keyframes fadeInDown3 {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
}
@keyframes fadeInLeft {
  from {
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
.scrollArrow {
  animation-name: scrollArrow;
}
.scrollArrow1 {
  animation-name: scrollArrow1;
}
/* 载入效果 */
@keyframes titFadeup1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
}
@keyframes titFadeup1_1 {
  0% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes imgScale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInup {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInup1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 60px);
    transform: translate(-50%, 60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.titFadeup1 {
  animation: titFadeup1 1.1s ease-in-out both 0.1s;
}
.titFadeup2 {
  animation: titFadeup1 1.1s ease-in-out both 0.2s;
}
.fadeInup1 {
  animation: fadeInup 1.1s ease-in-out both 0.2s;
}
.fadeInup2 {
  animation: fadeInup 1.1s ease-in-out both 0.3s;
}
.fadeInup3 {
  animation: fadeInup 1.1s ease-in-out both 0.4s;
}
.fadeInUpimg {
  animation: imgScale 1.2s ease-in-out both 0.2s;
}
@keyframes bmove1 {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollArrow1 {
  0% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes xuanzhuan {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}
.xuanzhuan {
  animation-name: xuanzhuan;
}
@keyframes xuanzhuan2 {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(-180deg);
  }
}
.xuanzhuan2 {
  animation-name: xuanzhuan2;
}

@font-face {
  font-family: "Hanchansans-Regular";
  src: url('../fonts/Hanchansans-Regular.otf');
}

@font-face {
  font-family: "Hanchansans-Light";
  src: url('../fonts/Hanchansans-Light.otf');
}
@font-face {
  font-family: "Hanchansans-Medium";
  src: url('../fonts/Hanchansans-Medium.otf');
}
@font-face {
  font-family: "Hanchansans-Bold";
  src: url('../fonts/Hanchansans-Bold.otf');
}

body {
  color: #333;
  background: #fff;
  margin: 0 auto;
  font-size: 0.16rem;
  line-height: 1.5;
  font-family: "Hanchansans-Light";
  word-wrap: normal;
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  opacity: 0.5;
  background: rgba(99, 99, 99, 0.8);
  transition: all 500ms ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #f40002;
}
::-webkit-scrollbar-thumb:active {
  background-color: #f40002;
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.button a,
.button span {
  z-index: 2;
  color: #fff;
  overflow: hidden;
  text-align: center;
  height: 0.52rem;
  font-size: 0.18rem;
  border-radius: 0.3rem;
  display: inline-block;
  min-width: 1.6rem;
  line-height: 0.5rem;
  background: #f40002;
  position: relative;
  border: solid 1px #f40002;
}
.button img {
  width: auto;
  height: auto;
  max-height: 0.2rem;
  margin-left: 0.05rem;
  margin-bottom: 0.03rem;
  vertical-align: middle!important;
}
@media (max-width: 1024px) {
  .button a,
  .button span {
    font-size: 14px;
    min-width: 120px;
    height: 32px!important;
    line-height: 30px!important;
  }
  .button img {
    max-height: 20px;
    margin-left: 5px;
    margin-bottom: 3px;
  }
}
.button a:hover,
.button span:hover {
  background: #bb2924;
  border-color: #bb2924;
}
.button a:hover::before {
  transform: scale(1.05);
  animation: shine 1.5s ease-out infinite;
}
.button a:before,
.button span:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 100%;
  top: 0;
  left: -1rem;
  opacity: 0.5;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
}
@keyframes shine {
  0% {
    left: -1rem;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 14rem;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 40px!important;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 640px!important;
    padding: 0 20px!important;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100%;
  }
}
.container-2 {
  margin: 0 auto;
  max-width: 13rem;
}
@media (max-width: 1200px) {
  .container-2 {
    padding: 0 40px!important;
  }
}
@media (max-width: 1024px) {
  .container-2 {
    max-width: 640px!important;
    padding: 0 20px!important;
  }
}
@media (max-width: 640px) {
  .container-2 {
    width: 100%;
  }
}
.navPhoneBtn {
  display: inline-block;
  cursor: pointer;
  float: right;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 3px;
  position: relative;
  background: #333;
  border-radius: 0px;
  z-index: 1;
  transform-origin: 20px;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.navPhoneBtn span:nth-last-child(2) {
  transform: rotate(0);
  transition: width .5s ease;
}
.navPhoneBtn span:last-child {
  margin-bottom: 0;
}
.navPhoneBtn.close,
.navPhoneBtn.closeMember {
  opacity: 1;
  z-index: 10;
}
.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
  opacity: 1;
  transform: rotate(45deg);
}
.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(-45deg);
}
.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
  width: 0;
  opacity: 0;
  transform: rotate(0);
  transition: width .5s;
}
.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .navPhoneBtn {
    display: block;
  }
}
.circle {
  width: 0.88rem;
  height: 0.88rem;
  display: block;
  text-align: center;
  z-index: 2;
  margin: auto;
  border-radius: 50%;
  background: transparent;
}
.circle i {
  text-align: center;
  display: inline-block;
  z-index: 5;
  position: relative;
  margin-top: 0.34rem;
  border-left: solid 0.14rem #ffffff;
  border-top: solid 0.1rem transparent;
  border-bottom: solid 0.1rem transparent;
}
.circle:after {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out 0s infinite;
  background: linear-gradient(to right, #df1219, #df1219);
}
.circle:before {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: #df1219;
  opacity: 0;
  animation: ripple 2s ease-out 1s infinite;
}
@keyframes ripple {
  0% {
    opacity: 0.5;
    transform: scale(0.5, 0.5);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}
.header .container {
  padding: 0 0.6rem;
  max-width: 19.2rem;
  position: relative;
}
.header .top {
  text-align: right;
  line-height: 0.4rem;
  font-size:0.14rem;
  background: #f7f7f7;
}
.header .top a {
  padding-left: 0.2rem;
  display: inline-block;
}
.header .top a:hover {
  text-decoration: underline;
}
.header .bot .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  position: relative;
}
.header .logo img {
  width: auto;
  height: auto;
  max-height: 0.5rem;
  vertical-align: middle;
  position: relative;
}
.header .other {
  display: flex;
  text-align: right;
  align-items: center;
  justify-content: end;
  transition: all .5s;
}
.header .other .otherC {
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
}
.header .searchBtn {
  z-index: 2;
  width: 0.26rem;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.header .searchBtn svg {
  fill: #464646;
  width: 0.28rem;
  height: 0.28rem;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.5s;
}
.header .searchBtn img {
  max-height: 0.26rem;
}
.header .searchBtn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.header .searchBtn:hover svg {
  fill: #f40002 !important;
}
.header .language {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  display: inline-block;
  position: relative;
}
.header .language img {
  width: auto;
  max-height: 0.26rem;
}
.header .language a {
  color: #fff;
  display: inline-block;
}
.header .language .img2 {
  display: none;
}
.header .language .drop {
  left: 50%;
  z-index: 9;
  opacity: 0;
  width: 1.4rem;
  top: 0.5rem;
  text-align: center;
  padding: 0.2rem 0;
  position: absolute;
  border-radius: 0.1rem;
  line-height: 0.3rem;
  transform: translateX(-50%) scale(0.9);
  text-transform: initial;
  transition: all 700ms ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
}
.header .language .drop:before {
  content: "";
  top: -0.06rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  position: absolute;
  border-left: solid 0.08rem transparent;
  border-right: solid 0.08rem transparent;
  border-bottom: solid 0.08rem #ffffff;
}
.header .language .drop a {
  color: #333;
  display: block;
  margin: 0.1rem 0;
  font-size: 0.16rem;
  line-height: 0.3rem;
  position: relative;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  transition: color 500ms ease;
}
.header .language .drop a:hover {
  color: #f40002;
}
.header .language .drop a:hover:before {
  background: #f40002;
}
.header .language:hover .img1 {
  display: none;
}
.header .language:hover .img2 {
  display: inline-block;
}
.header .language:hover .drop {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.header .ly .img2 {
  display: none;
}
.header .ly:hover .img1 {
  display: none;
}
.header .ly:hover .img2 {
  display: inline-block;
}
@media (max-width: 1024px) {
  .header {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    z-index: 99;
    position: fixed;
    background: #fff;
    width: 100%;
    height: 60px;
    padding: 0;
  }
  .header .top {
    display: none;
  }
  .header .bot .container {
    padding: 0;
    height: 60px;
    position: relative;
  }
  .header .logo img {
    max-height: 40px;
  }
  .header .nav {
    display: none;
  }
  .header .ly {
    margin-right: 20px;
  }
  .header .ly img,
  .header .language img {
    max-height: 24px;
  }
  .header .searchBtn svg {
    width: 24px;
    height: 24px;
  }
  .header .language .drop a {
    font-size: 14px;
  }
}
.fixed {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  position: fixed;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.fixed .top {
  display: none;
}
.fixed #searchPopup .searchBox.fadeIn {
  top: 0.7rem;
}
.nav {
  position: relative;
}
.nav > ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.nav ul > li {
  margin: 0 0.25rem;
}
.nav ul > li > a:before {
  bottom: 0;
  left: 50%;
  opacity: 0;
  content: "";
  width: 0;
  height: 0.03rem;
  position: absolute;
  background: #f40002;
  transition: all 500ms ease;
}
.nav ul > li > a {
  font-weight: 700;
  font-family: "Hanchansans-Regular";
  color: #242424;
  height: 0.75rem;
  font-size: 0.16rem;
  line-height: 0.75rem;
  text-align: left;
  z-index: 1;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  transition: all .5s;
}
.nav ul > li > a:hover {
  text-decoration: none;
}
.nav ul > li.active > a:before {
  opacity: 0;
  width: 100%;
  left: 0;
}
.nav ul > li:hover > a:before {
  opacity: 1;
  width: 100%;
  left: 0;
}
.nav .subnav {
  left: 50%;
  z-index: 10;
  display: none;
  transform: translateX(-50%);
  top: 0.7rem;
  padding-top:0.2rem;
  width: 11.2rem;
  position: absolute;
  font-family: "Hanchansans-Light";
}
.nav .box {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  max-height: 6rem;
  overflow-y: auto;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
}
.nav .left {
  width: 25%;
  padding: 0.2rem;
  background: #ebebeb;
  background: #f0f0f0;
  min-height: 7rem;
}
.nav .left .bt {
  color: #212121;
  height: 0.48rem;
  line-height: 0.24rem;
  font-size: 0.2rem;
  padding-top: 0.15rem;
  font-family: "Hanchansans-Bold";
}
.nav .left .nr {
  margin-top: 0.1rem;
  height: 2.24rem;
  line-height: 0.24rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  font-size:0.14rem;
  color:#666;
  
}
.nav .left .button {
  margin-top: 0.2rem;
  text-align: center;
}
.nav .left .button a {
  font-size: 0.16rem;
  min-width: 1.2rem;
  font-family: "Hanchansans-Light";
  height: 0.36rem;
  line-height: 0.36rem;
}
.nav .right {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}
.nav .right ul {
  width: 30%;
  display: block;
  position: relative;
  background: #F7F8F9;
  min-height: 100%;
  padding-top: 0.3rem;
  /*
  padding-bottom: 0.2rem;*/
}
.nav .right li {
  /* margin: 0.1rem 0; */
  padding-left: 0.25rem;
  margin-bottom:0.1rem;
  margin-left:0;
  margin-right:0;
}
.nav .right>ul>li.cur{
	background: #f0f0f0;
}
.nav .close {
  padding-right: 0.3rem;
  padding-top: 0.4rem;
  text-align: right;
  background: #fff;
  width: 5%;
}
.nav .close img {
  max-height: 0.14rem;
}
.nav .drop-1 a {
  position: relative;
  font-size: 0.16rem;
  padding: 0.1rem 0;
  display: block;
  /*border-bottom:1px solid #eaeaea;*/
  color: #212121;
}

.nav .drop-1>a{
	/* font-weight:700; */
}

.nav .drop-1 a:after{
	/*content: "";
	position: absolute;
	left: 0;
	bottom: 8px;
	width: 100%;
	height: 1px;
	background-color: #333; */
}
.nav .drop-1 a:hover {
  color: #212121;
  font-weight: 700;
  /* background: #ebebeb; */
  /*border-bottom:1px solid #f40002;*/
}
.nav .drop-1 a:hover:after{
	/* background-color: #f40002; */
}
.nav .drop-1 i {
  top: 50%;
  transform: translateY(-50%);
  right: 0.2rem;
  position: absolute;
  font-style: normal;
  display: inline-block;
}
.nav .drop-1 i:after {
  content: "";
  opacity: 0;
  vertical-align: middle;
  display: inline-block;
  width: 0.08rem;
  height: 0.08rem;
  transition: all 500ms ease;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg);
}
.nav .drop-2 i{
	right: -0.2rem;
}
.nav .drop-1:hover > a {
  color: #212121;
  /* background: #ebebeb; */
  font-weight: 700;
}
.nav .drop-1:hover > a i:after,.nav .drop-1.show > a i:after {
  opacity: 1;
}
/*.nav .drop-1:hover .drop-2 {
  display: block;
}*/
/*.nav .drop-2-sub:hover .drop-3 {
  display: block;
}*/
.nav .drop-2-sub:hover > a,.nav .drop-2-sub.show > a {
  color: #212121;
}
.nav .drop-2-sub:hover > a i:after,.nav .drop-2-sub.show > a i:after {
  opacity: 1;
}
.nav .drop-1.show,
.nav .drop-2.show{
  display: block;
}

.nav .drop-3.show1 {
  display: block;
}

.nav .drop-2 {
  height: 100%;
  background: #fafafa;
  padding-top: 0.2rem;
  background: #fff;
}
.nav .drop-1 .drop-2 .drop-2-sub{
	padding-left:0.2rem;
	border-bottom: none;
	margin-bottom:0.1rem;
	display: block;
}

.nav .drop-1 .drop-2 .drop-2-sub>a{
	border-bottom: none;
	display: inline-block;
}
.nav .drop-1 .drop-2 .drop-2-sub>a:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 8px;
	width: 100%;
	height: 1px;
	background-color: #333;
	display:none;
}
.nav .drop-1 .drop-2 .drop-2-sub:hover>a:after,.nav .drop-1 .drop-2 .drop-2-sub.show>a:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 8px;
	width: 100%;
	height: 3px;
	background-color: #f40002;
}
.nav .drop-2 a:hover {
  background: transparent!important;
}
.nav .drop-3 {
  height: 100%;
  background: #ffffff;
  padding-top: 0.2rem;
  padding-left: 0.7rem;
  width:50%!important;
}
.nav .drop-2,
.nav .drop-3 {
  top: 0;
  width: 100%;
  left: 100%;
  padding-left: 0.2rem;
  display: none;
  position: absolute;
}

.nav .drop-2:before{
  height: 90%;
  background: #d1d1d1;
  width:1px;
  position:absolute;
  left:0.35rem;
  content: "";
  display:none;
  top:5%;
}

.nav .drop-2:after{
  height: 90%;
  background: #d1d1d1;
  width:1px;
  position:absolute;
  right:0;
  content: "";
  display:none;
  top:5%;
}
.nav .drop-2.drop-7:after{
	display:none;
}
.nav .drop-4 {
  display: block;
  margin-bottom: 0.1rem;
  position: relative;
}
.nav .drop-4 a:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 8px;
	width: 100%;
	height: 1px;
	background-color: #333;
	display:none;
}
.nav .drop-4:hover a:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 8px;
	width: 100%;
	height: 3px;
	background-color: #f40002;
	display:none;
}
.nav .drop-4 > a {
  display: inline-block;
}
.nav .drop-4>a:after{
	max-width:100px;
}
.nav .drop-4 .protu {
  left: 100%;
  top: 0rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 500ms ease;
  width: 3.47rem;
  position: absolute;
}
.nav .drop-4 .protu img {
  max-height: 2.3rem;
}
.nav .drop-4:hover .protu {
  opacity: 1;
  transform: scale(1);
}
.nav .cur .drop-1 > a {
  font-weight: 700;
  color: #212121;
  /* background: #ebebeb; */
}
.nav .cur .drop-1 > a i:after {
  opacity: 1;
}
.nav .subnav-2 .right ul {
  width: 30%;
  background: #F7F8F9;
}
.nav .subnav-2 .right li a {
  text-decoration: underline;
  text-decoration-color: #dbdbdb;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}
.nav .subnav-2 .right li a:hover{
  text-decoration-color: #f40002;
  text-decoration-thickness: 3px;
}
.nav .subnav-2 .right li .drop-1>a{
  text-decoration: none;
}
.nav .drop-1 .drop-2 a,.nav .drop-1 .drop-2 a{
  text-decoration: underline;
  text-decoration-color: #dbdbdb;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}
.nav .drop-1 .drop-2 a:hover,.nav .drop-1 .drop-2 a:hover{
  text-decoration-color: #f40002;
  text-decoration-thickness: 3px;
}
#searchPopup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
}
#searchPopup .searchBox {
  color: #fff;
  padding-right: 0;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  top: 1.3rem;
  opacity: 0;
  transition: all .5s;
}
#searchPopup .searchBox.fadeIn {
  top: 1.1rem;
  opacity: 1;
  z-index: 999;
}
#searchPopup .searchBox .container {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  max-width: 17.2rem;
  transform: translateX(0rem);
  padding-right:0.4rem;
}
#searchPopup .searchBox input {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  border: 1px #fff solid;
  background: #fff;
  color: #333;
  width: 15%;
  padding: 0 20px;
  font-size: 0.16rem;
  height: 0.4rem;
  line-height: 0.58rem;
}
#searchPopup .searchBox input:focus {
  color: #333;
}
#searchPopup .searchBox .btn {
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  position: absolute;
  height: 0.4rem;
  width: 0.4rem;
  transition: all 334ms ease;
  background: #f40002;
  text-align: center;
  display: inline-block;
}
#searchPopup .searchBox .btn svg {
  width: 0.3rem;
  height: 0.3rem;
  margin: 0.05rem;
}
#searchPopup .searchBox .btn .cls-1 {
  fill: #fff;
}
#searchPopup .searchBox .btn .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
#searchPopup .searchBox .btn:hover {
  background: #df1219;
}
#searchPopup .searchBox .close {
  display: none;
}
@media screen and (max-width: 1024px) {
  #searchPopup .searchBox {
    top: 80px;
  }
  #searchPopup .searchBox .container {
    transform: translateX(0);
  }
  #searchPopup .searchBox input {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
  }
  #searchPopup .searchBox .btn {
    right: 15px;
    height: 36px;
    width: 36px;
  }
  #searchPopup .searchBox .btn svg {
    width: 20px;
    height: 20px;
    margin: 8px auto 0 auto;
  }
}
.banner {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.swiper-renewal-main {
  position: relative;
}
.swiper-renewal-main .img1 {
  display: none;
}
.swiper-renewal-main .swiper-slide img {
  width: 100%;
}
.swiper-renewal-main .swiper-pagination {
  bottom: auto;
  left: auto;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.swiper-renewal-main .swiper-pagination .swiper-pagination-bullet {
  width: 0.08rem;
  height: 0.08rem;
  background: #fff;
  border-radius: 50%;
  margin: 0 0.06rem;
  position: relative;
  overflow: hidden;
  opacity: 1;
}
.swiper-renewal-main .swiper-pagination .swiper-pagination-bullet:after {
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  content: '';
  background: #fff;
  left: 0;
}
.swiper-renewal-main .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.8rem;
  border-radius: 0.04rem;
  background: rgba(255, 255, 255, 0.3);
}
.swiper-renewal-main .swiper-pagination .swiper-pagination-bullet-active::after {
  -webkit-animation: swiperbanner 5s linear;
  animation: swiperbanner 5s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.swiper-renewal-main .swiper-pagination .stopya::after {
  -webkit-animation: swiperbanner1 0s linear;
  animation: swiperbanner1 0s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.swiper-renewal-main .btn {
  bottom: 0.2rem;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 22;
}
.swiper-renewal-main .main_slide_handler {
  display: inline-block;
  vertical-align: middle;
}
.swiper-renewal-main a.slide_btn {
  width: 0.4rem;
  height: 0.2rem;
  border-radius: 0.03rem;
  background: url(../images/control-light.png) no-repeat center center rgba(255, 255, 255, 0.33);
  background-size: cover;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.swiper-slide-active .img img {
  -webkit-animation: 2s bmove1 alternate linear;
  animation: 2s bmove1 alternate linear;
}
@-webkit-keyframes swiperbanner {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes swiperbanner {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes swiperbanner1 {
  0% {
    width: 100%;
  }
  to {
    width: 1%;
  }
}
@keyframes swiperbanner1 {
  0% {
    width: 100%;
  }
  to {
    width: 1%;
  }
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes bmove1 {
  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .banner {
    margin-top: 60px;
  }
  .banner .swiper-renewal-main .swiper-slide img {
    height: auto;
  }
  .banner .swiper-renewal-main .img {
    display: none;
  }
  .banner .swiper-renewal-main .img1 {
    display: block;
  }
  .swiper-renewal-main .btn {
    bottom: 10px;
  }
}
.index-title {
  color: #242424;
  padding-top: 0.25rem;
  font-size: 0.52rem;
  line-height: 0.6rem;
  position: relative;
  font-family: "Hanchansans-Bold";
}
.index-title:before {
  top: 0;
  left: 0;
  content: "";
  height: 0.08rem;
  width: 0.5rem;
  position: absolute;
  background: #f40002;
}
@media (max-width: 1024px) {
  .index-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.index-product {
  padding-bottom: 1rem;
  padding-top: 1rem;
  overflow: hidden;
}

.index-product .container {
  position: relative;
}
.index-product .menuTabs {
  border-bottom: solid 1px #e0e0e0;
  padding-top: 0.4rem;
  margin-bottom: 0.4rem;
  position: relative;
}
.index-product .menuTabs .listMenu {
  width: 98%;
}
.index-product .menuTabs .listMenu li {
  font-family: "Hanchansans-Regular";
  padding-top: 0.2rem;
  padding-right: 0.2rem;
  display: inline-block;
}
.index-product .menuTabs .listMenu li a {
  color: #333;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 0.2rem;
  position: relative;
}
.index-product .menuTabs .listMenu li a:after {
  content: "";
  bottom: -1px;
  left: 50%;
  width: 0;
  opacity: 0;
  height: 0.03rem;
  position: absolute;
  background: #f40002;
  transition: 500ms ease;
}
.index-product .menuTabs .box {
  display: block;
  text-align: center;
  color: #0a0a0a;
  transition: all 500ms linear;
}
.index-product .menuTabs .cur .box {
  color: #f40002;
}
.index-product .menuTabs .cur .box:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.index-product .menuTabs .arrow {
  right: 0;
  top: 0.6rem;
  border-radius: 50%;
  height: 0.24rem;
  width: 0.24rem;
  position: absolute;
  background: #f40002;
}
.index-product .menuTabs .arrow:after {
  content: "";
  top: 0.06rem;
  left: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  position: absolute;
  transform: rotate(45deg);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.index-product .swiper-button-next,
.index-product .swiper-button-prev {
  right: auto;
  left: auto;
  vertical-align: middle;
  margin: 0 0.15rem;
  display: inline-block;
  position: relative;
  background-color: transparent;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  color: #1a1a1a;
  opacity: 1;
  transition: all 500ms ease;
  line-height: 0.48rem;
  border: solid 1px #c3c3c4;
  transform: translate(0, 0);
  top: auto;
}
.index-product .swiper-button-next:after,
.index-product .swiper-button-prev:after {
  font-size: 0.2rem;
}
.index-product .swiper-button-next:hover,
.index-product .swiper-button-prev:hover {
  border-color: #f40002;
  background: #f40002;
  color: #fff;
}
.index-product .swiper-button-prev {
  left: initial;
  right: auto;
}
.index-product .swiper-pagination-bullet {
  width: auto;
  background: #eee;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  opacity: 1;
}
.index-product .swiper-pagination-bullet-active {
  background: #f40002;
}
.index-product .swiper-container-horizontal > .swiper-pagination-bullets {
  position: relative;
  width: auto;
  display: inline-block;
  bottom: auto;
}
.index-product .conTabs {
  text-align: center;
  padding-top: 0.4rem;
}
.index-product .item {
  display: none;
}
.index-product .item.show {
  display: block;
}
.index-product .button {
  margin-top: 0.9rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .index-product {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .index-product .index-title {
    left: auto;
    position: relative;
  }
  .index-product .menuTabs {
    padding-top: 20px;
  }
  .index-product .menuTabs .listMenu {
    overflow: hidden;
    height: 38px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .index-product .menuTabs .listMenu li {
    padding-top: 10px;
    padding-right: 20px;
  }
  .index-product .menuTabs .listMenu li a {
    padding-bottom: 5px;
  }
  .index-product .menuTabs .listMenu.expanded {
    height: auto;
  }
  .index-product .menuTabs .listMenu.expanded li {
    padding-top: 10px;
  }
  .index-product .menuTabs .box {
    font-size: 14px;
    min-width: auto;
  }
  .index-product .menuTabs .arrow {
    width: 24px;
    height: 24px;
    top: 24px;
  }
  .index-product .menuTabs .arrow:after {
    top: 6px;
    left: 8px;
    width: 8px;
    height: 8px;
  }
  .index-product .menuTabs .arrow.expanded {
    transform: rotate(180deg);
  }
  .index-product .swiper-button-next,
  .index-product .swiper-button-prev {
    top: 50%;
    display: none;
  }
}
@media (max-width: 580px) {
  .index-product .menuTabs .box {
    text-align: left;
  }
  .index-product .menuTabs .listMenu li {
    width: 100%;
    text-align: left;
  }
}
.listpro{
	overflow: hidden;
	margin: 0 -0.15rem;
}
.listpro li {
  text-align: left;
  width: 33.3333%;
  float: left;
  padding: 0 0.15rem;
  position: relative;
}
.listpro li .pic {
  border-radius: 0.03rem;
  position: relative;
  overflow: hidden;
}
.listpro li .pic:after {
  content: '';
  display: block;
  padding-bottom: 61.99095023%;
}
.listpro li .pic img {
  transition: .5s;
  border-radius: 0.03rem;
}
.listpro li .box {
  display: block;
}
.listpro li .box:hover img {
  transform: scale(1.1);
}
.listpro li .box:hover .tit {
  text-decoration: underline;
  color: #f40002;
}
.listpro li .text {
  padding-top: 0.35rem;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
}
.listpro li .newpro{
	position: absolute;
    left: 30px;
    top: 13px;
    background: #f40002;
    padding: 2px 5px;
    border-radius: 5px;
    font-weight: 700;
    color: #fff;
}
.listpro li .tit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-size: 0.24rem;
  line-height: 0.3rem;
  height: 0.3rem;
  color: #333;
  font-family: "Hanchansans-Regular";
}
.listpro li .txt {
  color: #333;
  height: 0.52rem;
  line-height: 0.26rem;
  margin-top: 0.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.listpro li .more {
    padding-top: 0.2rem;
    color: #f40002;
    text-decoration: underline;
    padding-bottom: 0.2rem;
}
.listpro.swiper-wrapper {
  margin-left: 0;
  margin-right: 0;
}
.listpro.swiper-wrapper li {
  padding-left: 0;
  padding-right: 0;
}
.index-product .listpro li .box:hover .text{
	/* background: #f5f5f5; */
}
@media screen and (max-width: 1024px) {
  .listpro li .tit {
    font-size: 18px;
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 640px) {
.listpro{
	margin: 0 -15px;
}
	
  .listpro li {
    width: 50%;
	padding: 0 15px;
  }
}
.index-about .index-title {
  font-size: 0.4rem;
  line-height: 0.5rem;
}
.index-about .container {
  align-items: center;
  display: flex;
  max-width: 100%;
}
.index-about .leftbox {
  width: 61.3%;
}
.index-about .leftbox img {
  width: 100%;
}
.index-about .rigthbox {
  margin-left: -3.4rem;
  position: relative;
  width: 39.7%;
}
.index-about .rigthbox .item {
  width: 110%;
  background: #fff;
  padding: 0.7rem;
  box-shadow: 0.07rem 0.1rem 0.07rem rgba(106, 116, 140, 0.16);
}
.index-about .rigthbox .text {
  margin-top: 0.3rem;
  height: 0.6rem;
  font-size: 0.18rem;
  line-height: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.index-about .rigthbox .button {
  text-align: right;
  margin-top: 0.3rem;
}
@media (max-width: 1024px) {
  .index-about .container {
    display: block;
  }
  .index-about .leftbox {
    width: 100%;
  }
  .index-about .rigthbox {
    margin-left: 0;
    width: 100%;
  }
  .index-about .rigthbox .item {
    width: 100%;
    padding: 40px 20px;
  }
  .index-about .rigthbox .button {
    text-align: center;
  }
  .index-about .rigthbox .text {
    font-size: 14px;
    height: 48px;
    line-height: 24px;
  }
}
.index-tabnav {
  position: relative;
  margin-top: 0.6rem;
  border-bottom: solid 1px #e4e4e4;
}
.index-tabnav ul {
  display: flex;
  flex-wrap: wrap;
}
.index-tabnav li {
  font-family: "Hanchansans-Regular";
  padding-right: 0.6rem;
}
.index-tabnav li a {
  color: #333;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 0.4rem;
  position: relative;
}
.index-tabnav li a:after {
  content: "";
  bottom: -1px;
  left: 50%;
  width: 0;
  opacity: 0;
  height: 0.03rem;
  position: absolute;
  background: #f40002;
  transition: 500ms ease;
}
.index-tabnav li.cur a {
  color: #f40002;
}
.index-tabnav li.cur a:after {
  left: 0;
  width: 100%;
  opacity: 1;
}
.index-tabnav .arrow {
  right: 0;
  display: none;
  top: 0rem;
  border-radius: 50%;
  height: 0.24rem;
  width: 0.24rem;
  position: absolute;
  background: #f40002;
}
.index-tabnav .arrow:after {
  content: "";
  top: 0.06rem;
  left: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  position: absolute;
  transform: rotate(45deg);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}

.index-news {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.index-news .tabbox {
  padding-top: 0.25rem;
}
.index-news .tabbox .bt {
  color: #242424;
  font-size: 0.2rem;
  line-height: 0.32rem;
}
.index-news .tabcot {
  display: none;
}
.index-news .tabcot.show {
  display: block;
}
.index-news .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.2rem;
}
.index-news .list li {
  width: 33.3333%;
  padding: 0 0.2rem;
  padding-top: 0.5rem;
}
.index-news .list li .pic {
  overflow: hidden;
  position: relative;
}
.index-news .list li .pic img {
  transition: all 700ms ease;
}
.index-news .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 58.37104072%;
}
.index-news .list li .date {
  color: #999;
  font-size: 0.16rem;
  padding-top: 0.4rem;
}
.index-news .list li .tit {
  color: #333;
  height: 0.3rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-family: "Hanchansans-Bold";
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-news .list li .txt {
  margin-top: 0.15rem;
  color: #333;
  height: 0.52rem;
  line-height: 0.26rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.index-news .list li .more {
  margin-top: 0.3rem;
  color: #f40002;
  text-decoration: underline;
}
.index-news .list li:hover .pic img {
  transform: scale(1.1);
}
.index-news .list li:hover .tit {
  text-decoration: underline;
}
.index-news .button {
  margin-top: 0.8rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .index-news {
    padding: 70px 0 50px 0;
  }
}
@media (max-width: 640px) {
  .index-news .index-tabnav li {
    padding-right: 20px;
  }
}
@media (max-width: 510px) {
  .index-news .index-tabnav .listMenu-2 {
    height: 30px;
    overflow: hidden;
  }
  .index-news .index-tabnav .listMenu-2 li {
    width: 50%;
  }
  .index-news .index-tabnav .listMenu-2 li a {
    padding-bottom: 10px;
  }
  .index-news .index-tabnav .listMenu-2.expanded-2 {
    height: auto;
  }
  .index-news .index-tabnav .listMenu-2.expanded-2 li {
    padding-top: 10px;
  }
  .index-news .index-tabnav .arrow.expanded-2 {
    transform: rotate(180deg);
  }
  .index-news .arrow {
    display: block;
  }
  .index-news .list li {
    width: 100%;
  }
}
.index-application {
  padding-bottom: 1.5rem;
}
.index-application .index-tabnav li {
  padding-right: 0.35rem;
}
.index-application .index-tabnav li:last-child {
  padding-right: 0;
}
.index-application .tabbox {
  padding-top: 0.3rem;
}
.index-application .tabcot {
  display: none;
}
.index-application .tabcot.show {
  display: block;
}
.index-application .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.17rem;
}
.index-application .list li {
  width: 20%;
  padding: 0 0.17rem;
  padding-bottom: 0.4rem;
}
.index-application .list li .pic {
  overflow: hidden;
  position: relative;
}
.index-application .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 56.74603175%;
}
.index-application .list li .pic img {
  transition: all 700ms ease;
}
.index-application .list li .tit {
  color: #333;
  padding: 0 0.15rem;
  font-family: "Hanchansans-Bold";
  font-size: 0.18rem;
  height: 0.4rem;
  line-height: 0.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-application .list li:hover .pic img {
  transform: scale(1.1);
}
.index-application .list li:hover .tit {
  text-decoration: underline;
}
.index-application .button {
  margin-top: 0.4rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .index-application {
    padding-bottom: 50px;
  }
  .index-application .index-tabnav .listMenu-3 {
    height: 30px;
    overflow: hidden;
  }
  .index-application .index-tabnav .listMenu-3 li {
    padding-right: 10px;
    width: 50%;
  }
  .index-application .index-tabnav .listMenu-3 li a {
    padding-bottom: 10px;
  }
  .index-application .index-tabnav .listMenu-3.expanded-3 {
    height: auto;
  }
  .index-application .index-tabnav .listMenu-3.expanded-3 li {
    padding-top: 10px;
  }
  .index-application .index-tabnav .arrow.expanded-3 {
    transform: rotate(180deg);
  }
  .index-application .arrow {
    display: block;
  }
  .index-application .list li {
    width: 33.3333%;
  }
  .index-application .list li .tit {
    padding: 0;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .index-application .index-tabnav .listMenu-3 li {
    width: auto;
  }
  .index-application .list li {
    width: 50%;
  }
}
.index-ad {
  color: #fff;
  height: 6.3rem;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.index-ad .text {
  max-width: 7.9rem;
}
.index-ad .t1 {
  line-height: 0.5rem;
  font-size: 0.42rem;
  font-family: "Hanchansans-Bold";
}
.index-ad .t2 {
  font-size: 0.22rem;
  padding-top: 0.1rem;
}
.index-ad .t3 {
  margin: 0.5rem 0;
  height: 1.2rem;
  line-height: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
@media (max-width: 1024px) {
  .index-ad {
    height: auto;
    padding: 30px 0;
    background-attachment: inherit;
  }
}
@media (max-width: 640px) {
  .index-ad .t1 {
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 10px;
  }
  .index-ad .t3 {
    margin-top: 20px;
  }
}
.index-line {
  height: 0.65rem;
  background: #eee;
}
.index-logo {
  padding: 0.2rem 0;
}
.index-logo .container{
  padding: 0 0.6rem;
  max-width: 19.2rem;
}
.index-logo img {
  max-height: 0.5rem;
}
.index-logo .img{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.index-logo .text{
	display: inline-block;
	font-weight: bold;
    vertical-align: middle;
	font-size: 0.2rem;
}
.index-logo1 {
  display:none;
}
@media (max-width: 1024px) {
  .index-logo {
    padding: 20px 0;
  }
  .index-logo img {
    max-height: 40px;
  }
}
.footer {
  padding-top: 0.2rem;
  background: #fafafa;
}

.footer .container{
    display: flex;
    justify-content: space-between;	
}

.footer .index-logo1 img {
  max-height: 0.5rem;
}

.footer .list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0.3rem;
  width: 100%;
}
.footer .list li {
  width: 23%;
}
.footer .list li:last-child{
  width: 8%;
}
.footer .list li a {
  color: #57585A;
  margin-bottom: 0.05rem;
  line-height:0.36rem;
  display: block;
  text-decoration: underline;
  text-decoration-color: #333333;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.footer .list li a:hover {
  color: #57585A;
  text-decoration-thickness: 3px
}
.footer .list li h3 {
  font-weight: 700;
  font-style: normal;
  /* font-family: "Hanchansans-Bold"; */
  font-weight:700;
  padding-bottom: 0.15rem;
}
.footer .list li h3 a {
  color: #333;
  text-decoration-thickness: 3px;
}
.footer .list li h3 a:hover {
  color: #000;
}
.footer .list li .drop {
  font-size: 0.14rem;
}
.footer .copy {
  color: #474747;
  font-size: 0.13rem;
  padding: 0.2rem 0;
  background: #ebebeb;
}
.footer .copy .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .left {
  padding-right: 0.3rem;
}
.footer .left a {
  padding: 0 0.15rem;
  display: inline-block;
}
.footer .share a {
  margin-left: 0.1rem;
  border-radius: 50%;
  background: #000;
  width: 0.26rem;
  height: 0.26rem;
  display: inline-block;
}
.footer .share img {
  max-height: 0.26rem;
}
.footer .share a:hover {
  background: #f40002;
}
@media (max-width: 1024px) {
  .footer {
    padding-top: 20px;
  }
  .footer .list li {
    padding-right: 20px;
    width: auto;
  }
  .footer .list li h3 {
    padding-bottom: 0;
  }
  .footer .list .drop {
    display: none;
  }
  .footer .left {
    padding-right: 0;
  }
  .footer .left a {
    padding-left: 0;
    padding-right: 15px;
  }
  .footer .copy {
    font-size: 13px;
  }
  .footer .copy .container {
    display: block;
  }
  .footer .share {
    padding-top: 10px;
  }
  .footer .share a {
    width: 26px;
    height: 26px;
  }
  .footer .share img {
    max-height: 26px;
  }
  .footer .share a:first-child {
    margin-left: 0;
  }
}
.inside-banner {
  position: relative;
}
.inside-banner .pc {
  text-align: center;
}
.inside-banner .pc img {
  width: 100%;
}
.inside-banner .ph {
  display: none;
  text-align: center;
}
.inside-banner .index-title {
  color: #fff;
}
.inside-banner .text {
  top: 50%;
  width: 100%;
  left: 0;
  position: absolute;
  transform: translateY(-62%);
}
@media (max-width: 1024px) {
  .inside-banner {
    margin-top: 60px;
  }
  .inside-banner .text {
    display: none;
  }
  .inside-banner .pc {
    display: none;
  }
  .inside-banner .ph {
    display: block;
  }
}
.inside-current {
  color: #fff;
  z-index: 2;
  font-size: 0.16rem;
  font-weight: normal;
  margin-top: -0.6rem;
  position: relative;
  height: 0.6rem;
  line-height: 0.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-current img {
  margin-right: 0.05rem;
  margin-bottom: 0.04rem;
  vertical-align: middle;
  max-height: 0.2rem;
}
.inside-current a {
  color: #fff;
}
.inside-current a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .inside-current {
    color: #666;
    font-size: 14px;
    margin-top: 0;
    height: 60px;
    line-height: 60px;
  }
  .inside-current img {
    max-height: 20px;
    margin-right: 5px;
    margin-bottom: 4px;
  }
  .inside-current a {
    color: #666;
  }
}
.inside-current-2 {
  color: #797a7a;
  margin-top: auto;
}
.inside-current-2 a {
  color: #797a7a;
}
.inside-current-2 a:hover {
  color: #f40002;
}
.inside-about {
  position: relative;
  padding-top: 1.1rem;
  height: 8.7rem;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.inside-about .textbox {
  padding-left: 4rem;
}
.inside-about .srcoll {
  font-size: 0.18rem;
  line-height: 0.3rem;
  height: 2.2rem;
  overflow: auto;
}
.inside-about .srcoll p {
  padding-right: 0.3rem;
  margin-top: 0.2rem;
}
.inside-about .srcoll p:first-child {
  margin-top: 0;
}
.inside-about .numlist {
  margin-top: 0.6rem;
}
.inside-about .numlist ul {
  display: flex;
  flex-wrap: wrap;
}
.inside-about .numlist li {
  width: 50%;
  padding: 0 0.6rem;
}
.inside-about .numlist li .item {
  color: #474747;
  padding: 0.4rem 0;
  border-top: solid 1px #e6e4e4;
}
.inside-about .numlist li p:first-child {
  color: #212121;
  font-size: 0.52rem;
  line-height: 0.6rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-about .numlist li em,
.inside-about .numlist li i {
  vertical-align: top;
  display: inline-block;
  font-style: normal;
  font-family: "Hanchansans-Medium";
}
.inside-about .numlist li i {
  font-size: 0.4rem;
}
@media (max-width: 1024px) {
  .inside-about {
    height: auto;
    padding-bottom: 40px;
  }
  .inside-about .textbox {
    padding-left: 0;
    padding-top: 30px;
  }
  .inside-about .srcoll {
    font-size: 16px;
    line-height: 26px;
    height: auto;
  }
  .inside-about .srcoll p {
    padding-right: 0;
  }
  .inside-about .numlist li {
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .inside-about .numlist li p:first-child {
    font-size: 24px;
    line-height: 30px;
  }
  .inside-about .numlist li i {
    font-size: 18px;
  }
}
.honor {
  position: relative;
  padding: 1rem 0;
}
.honor .container-2 {
  position: relative;
}
.honor .box {
  margin: 0 -0.11rem;
  overflow: hidden;
}
.honor .item {
  width: 25.35%;
  float: left;
  padding: 0.11rem;
  position: relative;
}
.honor .item:first-child {
  width: 49.3%;
}
.honor .pic {
  border-radius: 0.2rem;
}
.honor .pic img {
  border-radius: 0.2rem;
}
.honor .txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  left: 0;
  padding: 0 0.3rem;
  bottom: 0.2rem;
  width: 100%;
  z-index: 1;
  color: #333;
  text-align: center;
  height: 0.3rem;
  line-height: 0.3rem;
  position: absolute;
}
.honor .swiper-container {
  margin-top: 0.2rem;
}
.honor .swiper-button-prev,
.honor .swiper-button-next {
  top: 0;
  margin-top: 0.3rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: solid 0.02rem #c2c2c2;
}
.honor .swiper-button-prev:after,
.honor .swiper-button-next:after {
  color: #c5c5c5;
  font-weight: 700;
  font-size: 12px;
}
.honor .swiper-button-prev:hover,
.honor .swiper-button-next:hover {
  border-color: #f40002;
}
.honor .swiper-button-prev:hover:after,
.honor .swiper-button-next:hover:after {
  color: #f40002;
}
.honor .swiper-button-prev {
  left: auto;
  right: 0.6rem;
}
.honor .swiper-button-next {
  right: 0;
}
@media (max-width: 1024px) {
  .honor {
    padding: 50px 0;
  }
  .honor .swiper-button-prev,
  .honor .swiper-button-next {
    margin-top: 15px;
  }
  .honor .swiper-button-prev {
    right: 60px;
  }
  .honor .swiper-button-next {
    right: 20px;
  }
  .honor .swiper-container {
    margin-top: 30px;
  }
  .honor .txt {
    font-size: 14px;
    padding: 0 20px;
    bottom: 15px;
  }
  .honor .item:first-child {
    width: 100%!important;
  }
  .honor .item {
    width: 50%!important;
  }
}
@media (max-width: 420px) {
  .honor .txt {
    font-size: 12px;
    bottom: 5px;
  }
}
.about02 {
  overflow: hidden;
  position: relative;
  padding-bottom: 1.5rem;
}
.about02 .history-bottom {
  position: relative;
}
.about02 .history-bottom .swiper-button-next,
.about02 .history-bottom .swiper-button-prev {
  width: 0.78rem;
  height: 0.78rem;
  background: url(../images/lbg.png) no-repeat center center #ffffff;
  background-size: 100%;
  border-radius: 50%;
  margin-top: -0.55rem;
  left: 0;
  z-index: 89;
  z-index: 55;
}
.about02 .history-bottom .swiper-button-next:after,
.about02 .history-bottom .swiper-button-prev:after {
  font-size: 0.18rem;
  color: #999999;
}
@media (min-width: 1025px) {
  .about02 .history-bottom .swiper-button-next:hover,
  .about02 .history-bottom .swiper-button-prev:hover {
    background: url(../images/lbgh.png) no-repeat center center #ffffff;
    background-size: 100%;
  }
  .about02 .history-bottom .swiper-button-next:hover:after,
  .about02 .history-bottom .swiper-button-prev:hover:after {
    color: #fff;
  }
}
.about02 .history-bottom .swiper-button-next {
  left: auto;
  right: 0;
}
.about02 .history-info {
  margin-top: 0.7rem;
  position: relative;
  overflow: hidden;
}
.about02 .swiper-history {
  width: 90%;
  margin: 0 auto;
  margin-top: 0.81rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about02 .swiper-history:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  top: 0.14rem;
  left: 0;
  z-index: -1;
}
.about02 .swiper-history .swiper-slide {
  text-align: center;
  cursor: pointer;
  background: url('../images/da1.png') no-repeat top center;
  background-size: 0.29rem;
  padding-top: 0.31rem;
  z-index: 5;
  position: relative;
}
.about02 .swiper-history .swiper-slide .bt {
  font-size: 0.18rem;
  line-height: 0.32rem;
  color: #333;
}
.about02 .swiper-history .swiper-slide-thumb-active {
  background: url('../images/da1h.png') no-repeat top center;
  background-size: 0.29rem;
}
.about02 .swiper-history .swiper-slide-thumb-active .bt {
  color: #f40002;
}
.about02 .swiper-xiangqing .box {
  position: relative;
  overflow: hidden;
  padding: 0 0.65rem;
}
.about02 .swiper-xiangqing .box .pic {
  position: relative;
  float: left;
  width: 41%;
}
.about02 .swiper-xiangqing .box .pic:after {
  content: "";
  display: block;
  padding-bottom: 66.66666667%;
}
.about02 .swiper-xiangqing .box .text {
  float: right;
  width: 46%;
  padding-top: 0.92rem;
}
.about02 .swiper-xiangqing .box .text .num {
  font-size: 1.84rem;
  letter-spacing: 0.04rem;
  color: #f0f0f0;
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  z-index: 1;
  text-align: left;
  filter: blur(4px);
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.about02 .swiper-xiangqing .box .text .bt {
  color: #f40002;
  font-size: 0.32rem;
  margin-bottom: 0.18rem;
  position: relative;
  z-index: 5;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.about02 .swiper-xiangqing .box .text .p {
  font-size: 0.18rem;
  color: #75777b;
  line-height: 0.31rem;
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .about02 .swiper-xiangqing .box {
    align-items: center;
    display: flex;
    padding: 0;
  }
  .about02 .swiper-xiangqing .box .text {
    padding-left: 30px;
    padding-top: 0;
  }
  .about02 .swiper-xiangqing .box .text p {
    font-size: 14px;
    line-height: 26px;
  }
}
@media (max-width: 640px) {
  .about02 .swiper-history {
    width: 70%;
  }
  .about02 .swiper-xiangqing .box {
    display: block;
  }
  .about02 .swiper-xiangqing .box .pic {
    width: 100%;
    float: none;
  }
  .about02 .swiper-xiangqing .box .text {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .about02 .swiper-xiangqing .box .text .num {
    display: none;
  }
}
.formlist {
  color: #242424;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.3rem;
}
.formlist input[type="radio"] {
  margin-left: 0;
}
.formlist .layui-inline span {
  padding-right: 0.3rem;
}
.formlist .date-form-groups {
  display: flex;
  line-height: 0.28rem;
}
.formlist .date-form {
  margin-left: 0.1rem;
  position: relative;
}
.formlist .icon {
  top: 0.05rem;
  right: 0.08rem;
  position: absolute;
  max-height: 0.15rem;
}
.formlist .input-form {
  font-size: 0.16rem;
  height: 0.28rem;
  width: 1.5rem;
  padding: 0 0.1rem;
  line-height: 0.26rem;
  border: solid 1px #d6d6d6;
}
@media (max-width: 1024px) {
  .formlist {
    display: block;
  }
  .formlist .date-form-groups {
    line-height: 28px;
    margin-top: 15px;
  }
  .formlist .date-form {
    margin-left: 0;
    margin-right: 10px;
  }
  .formlist .input-form {
    font-size: 14px;
    height: 28px;
    width: 150px;
    line-height: 26px;
  }
  .formlist .icon {
    top: 5px;
    right: 8px;
    max-height: 15px;
  }
}
@media (max-width: 520px) {
  .formlist .layui-inline {
    width: 100%;
    flex-wrap: wrap;
    display: flex!important;
  }
  .formlist .layui-inline span {
    width: 49%;
    display: block;
    padding-right: 0;
    margin-top: 10px;
  }
}
.inside-news {
  padding: 1rem 0;
}
.inside-news .info {
  color: #242424;
  padding-top: 0.4rem;
}
.inside-news .list {
  padding-top: 0.2rem;
}
.inside-news .list li {
  padding: 0.2rem 0;
  border-bottom: solid 1px #ebebeb;
}
.inside-news .list li .box {
  display: flex;
}
.inside-news .list li .pic {
  width: 26%;
  overflow: hidden;
  position: relative;
}
.inside-news .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 58.23529412%;
}
.inside-news .list li .pic img {
  transition: all 700ms ease;
}
.inside-news .list li .text {
  width: 74%;
  padding-left: 0.4rem;
}
.inside-news .list li .red {
  color: #f40002;
  padding-right: 0.3rem;
}
.inside-news .list li .date span {
  display: inline-block;
}
.inside-news .list li .tit {
  color: #333;
  height: 0.3rem;
  line-height: 0.3rem;
  font-size: 0.2rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-news .list li .txt {
  margin-top: 0.2rem;
  color: #333;
  height: 0.52rem;
  line-height: 0.26rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.inside-news .list li .more {
  margin-top: 0.3rem;
  color: #f40002;
  text-decoration: underline;
}
.inside-news .list li:hover .pic img {
  transform: scale(1.1);
}
.inside-news .list li:hover .tit {
  text-decoration: underline;
}
@media (max-width: 580px) {
  .inside-news .index-tabnav {
    margin-top: 20px;
  }
  .inside-news .index-tabnav li {
    width: 50%;
    margin-top: 10px;
    padding-right: 10px;
  }
  .inside-news .index-tabnav li a {
    padding-bottom: 10px;
  }
}
@media (max-width: 440px) {
  .inside-news .list li .box {
    display: block;
  }
  .inside-news .list li .pic,
  .inside-news .list li .text {
    width: 100%;
    padding-left: 0;
  }
  .inside-news .list li .text {
    padding-top: 30px;
  }
  .inside-news .list li .tit {
    font-size: 18px;
    height: 30px;
    line-height: 30px;
  }
}
.inside-newsbg {
  padding-bottom: 0.3rem;
  background: #efefef;
}
.inside-newsbg h1 {
  color: #333;
  padding-top: 0.15rem;
  padding-bottom: 1rem;
}
.inside-newsbg .info {
  color: #f40002;
  padding-top: 0.6rem;
}
.inside-newsbg .box {
  display: flex;
  justify-content: space-between;
}
.inside-newsbg .share {
  line-height: 0.32rem;
}
.inside-newsbg .share a {
  text-align: center;
  margin-left: 0.1rem;
  vertical-align: top;
  display: inline-block;
  width: 0.32rem;
  height: 0.32rem;
  line-height: 0.28rem;
  border: solid 1px #2f2f2f;
  border-radius: 0.3rem;
}
.inside-newsbg .share img {
  vertical-align: middle;
  max-height: 0.26rem;
}
@media (max-width: 1024px) {
  .inside-newsbg {
    margin-top: 60px;
  }
  .inside-newsbg h1 {
    font-size: 18px;
  }
}
.inside-newsshow {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}
.inside-newsshow .nr {
  display: flex;
  align-items: center;
  color: #333;
  justify-content: space-between;
}
.inside-newsshow h1 {
  font-weight: normal;
}
.inside-newsshow .index-title {
  font-size: 0.4rem;
  line-height: 0.56rem;
  padding-bottom: 0.1rem;
}
.inside-newsshow .leftbox {
  width: 65%;
  font-size: 0.18rem;
  line-height: 0.32rem;
}
.inside-newsshow .leftbox .time {
  padding-bottom: 0.4rem;
}
.inside-newsshow .leftbox .t1 {
  position: relative;
  margin-top: 0.2rem;
  padding-left: 0.15rem;
}
.inside-newsshow .leftbox .t1:before {
  top: 0.12rem;
  left: 0;
  content: "";
  border-radius: 50%;
  width: 0.05rem;
  height: 0.05rem;
  background: #333;
  position: absolute;
}
.inside-newsshow .rigthbox {
  width: 28%;
}
.inside-newsshow .nr-2 {
  font-weight: 700;
  padding-top: 0.5rem;
}
.inside-newsshow .nr-2 a {
  color: #212121;
  margin-right: 0.1rem;
  border-radius: 0.3rem;
  padding: 0 0.18rem;
  display: inline-block;
}
.inside-newsshow .nr-2 a:hover {
  color: #fff;
  background: #f40002;
}
.inside-newsshow .nr-2 .sk {
  color: #fff;
  background: #f40002;
}
.inside-newsshow .nr-3 {
  font-size: 0.18rem;
  line-height: 0.32rem;
}
.inside-newsshow .f24 {
  color: #333;
  text-align: center;
  font-size: 0.24rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-newsshow .biaoqian {
  color: #212121;
  padding-top: 0.8rem;
}
.inside-newsshow .biaoqian a {
  color: #212121;
  padding: 0 0.1rem;
  display: inline-block;
}
.inside-newsshow .biaoqian a:hover {
  color: #f40002;
}
@media (max-width: 1024px) {
  .inside-newsshow .index-title {
    font-size: 18px;
    line-height: 30px;
  }
  .inside-newsshow h1 {
    width: 100%;
  }
  .inside-newsshow .nr {
    display: block;
  }
  .inside-newsshow .nr-3 {
    font-size: 14px;
    line-height: 26px;
  }
  .inside-newsshow .leftbox {
    width: 100%;
    font-size: 14px;
    line-height: 26px;
  }
  .inside-newsshow .rigthbox {
    width: 100%;
    padding: 30px;
    padding-bottom: 0;
    text-align: center;
  }
  .inside-newsshow .biaoqian {
    display: none;
  }
}
.inside-newsshow-2 .index-title {
  width: 100%;
  font-size: 0.32rem;
  line-height: 0.42rem;
}
.inside-newsshow-2 .nr {
  display: block;
  font-size: 0.18rem;
  line-height: 0.32rem;
  padding: 0.3rem 0;
}
.inside-newsshow-2 .bt {
  margin-top: 0.9rem;
}
@media (max-width: 1024px) {
  .inside-newsshow-2 .nr {
    font-size: 14px;
    line-height: 26px;
  }
}
.inside-pagelist {
  padding-top: 0.4rem;
}
.inside-pagelist ul {
  display: flex;
  padding-bottom: 0.6rem;
  justify-content: space-between;
  /* border-bottom: solid 1px #d1d1d1; */
}
.inside-pagelist li {
  width: 49%;
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-pagelist li img {
  margin-right: 0.1rem;
  max-height: 0.3rem;
}
.inside-pagelist li a {
  color: #212121;
}
.inside-pagelist li a:hover {
  color: #f40002;
}
.inside-pagelist li:last-child {
  text-align: right;
}
.inside-pagelist li:last-child img {
  float: right;
  margin-left: 0.1rem;
}
@media (max-width: 1024px) {
  .inside-pagelist ul {
    display: block;
  }
  .inside-pagelist li {
    margin-top: 10px;
    width: 100%;
  }
  .inside-pagelist li img {
    display: none;
  }
  .inside-pagelist li:last-child {
    text-align: left;
  }
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0.2, 0.2);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.inside-business {
  padding: 1rem 0;
}
.inside-business .text {
  color: #333;
  line-height: 0.32rem;
}
.inside-business .text .t1 {
  color: #242424;
  font-size: 0.3rem;
  line-height: 0.4rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  padding-top: 0.5rem;
  padding-bottom: 0.2rem;
}
.inside-business .addbox {
  background: #f0f0f0;
  padding: 0.6rem;
  margin-top: 0.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.inside-business .left {
  width: 50%;
  color: #242424;
  padding-left: 0.8rem;
  position: relative;
}
.inside-business .left img {
  top: 0;
  left: 0;
  max-height: 0.35rem;
  position: absolute;
}
.inside-business .left .t1 {
  color: #333;
  font-size: 0.3rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-business .left .t2 {
  font-weight: 700;
  font-size: 0.18rem;
  padding-top: 0.1rem;
}
.inside-business .left .t3 {
  padding-top: 0.15rem;
}
.inside-business .right {
  width: 35%;
}
.inside-business .right .t3 {
  margin-top: 0.1rem;
  color: #f40002;
}
.inside-business .right .t3 img {
  margin-right: 0.1rem;
  max-height: 0.2rem;
}
.inside-business .right .t3 a {
  color: #076fe5;
  text-decoration: underline;
}
.inside-business .right .t3 a:hover {
  color: #f40002;
}
.inside-business .mapbox {
  margin-top: 1rem;
  position: relative;
}
.inside-business .add {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(244, 0, 0, 0.2);
  border: solid 1px #e35b5d;
  position: absolute;
}
.inside-business .add a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.inside-business .add a:after {
  top: 50%;
  left: 50%;
  content: "";
  width: 0.08rem;
  height: 0.08rem;
  position: absolute;
  border-radius: 50%;
  background: #f40002;
  transform: translate(-50%, -50%);
}
.inside-business .add-1 {
  top: 0.6rem;
  left: 6.46rem;
  animation: ripple 1.5s ease-out 1s infinite;
}
.inside-business .add-2 {
  top: 2.1rem;
  left: 8.7rem;
  animation: ripple 1.6s ease-out 1s infinite;
}
.inside-business .add-3 {
  top: 1.96rem;
  left: 9.6rem;
  animation: ripple 1.7s ease-out 1s infinite;
}
.inside-business .add-4 {
  top: 2.18rem;
  left: 9.86rem;
  animation: ripple 1.8s ease-out 1s infinite;
}
.inside-business .add-5 {
  top: 1.68rem;
  left: 10.5rem;
  animation: ripple 1.9s ease-out 1s infinite;
}
.inside-business .mapAdd {
  margin-top: 0.7rem;
  padding-top: 0.5rem;
  border-top: solid 0.06rem #f0f0f0;
  border-bottom: solid 0.06rem #f0f0f0;
}
.inside-business .search {
  width: 100%;
  position: relative;
  max-width: 7.8rem;
}
.inside-business .search input {
  width: 100%;
  color: #666;
  font-size: 0.16rem;
  padding-right: 0.6rem;
  padding-left: 0.2rem;
  height: 0.52rem;
  line-height: 0.5rem;
  border: solid 1px #c7c7c7;
}
.inside-business .sbtn {
  top: 0.12rem;
  right: 0.2rem;
  position: absolute;
}
.inside-business .sbtn img {
  max-height: 0.27rem;
}
.inside-business .item:last-child .tit {
  border-bottom: 0;
}
.inside-business .list {
  margin-top: 0.3rem;
  border-top: solid 1px #dbdbdb;
}
.inside-business .list .tit {
  color: #333;
  cursor: pointer;
  font-size: 0.3rem;
  position: relative;
  padding: 0.35rem 0.5rem;
  border-bottom: solid 1px #dbdbdb;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-business .list .tit:before {
  content: "";
  top: 0.48rem;
  left: 0.16rem;
  width: 0.03rem;
  height: 0.16rem;
  background: #666;
  position: absolute;
}
.inside-business .list .tit:after {
  content: "";
  top: 0.54rem;
  left: 0.1rem;
  width: 0.16rem;
  height: 0.03rem;
  background: #666;
  position: absolute;
}
.inside-business .list .txt {
  display: none;
}
.inside-business .list .hezi {
  padding: 0.4rem 0.5rem;
  padding-right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.inside-business .list .left {
  padding: 0;
}
.inside-business .list .active:before {
  display: none;
}
@media (max-width: 1024px) {
  .inside-business .text {
    line-height: 26px;
  }
  .inside-business .addbox {
    display: block;
    padding: 30px;
  }
  .inside-business .mapbox {
    display: none;
  }
  .inside-business .left,
  .inside-business .right {
    width: 100%;
  }
  .inside-business .left .t2 {
    font-size: 16px;
  }
  .inside-business .right {
    padding-top: 30px;
  }
  .inside-business .right .t3 {
    margin-top: 10px;
  }
  .inside-business .right .t3 img {
    margin-right: 10px;
    max-height: 20px;
  }
  .inside-business .search {
    max-width: 100%;
  }
  .inside-business .search input {
    font-size: 14px;
    height: 50px;
    line-height: 48px;
    padding-left: 15px;
    padding-right: 40px;
  }
  .inside-business .sbtn {
    right: 10px;
    top: 12px;
  }
  .inside-business .sbtn img {
    max-height: 24px;
  }
  .inside-business .list .hezi {
    display: block;
  }
}

.inside-tjcp{
	padding-bottom: 1.3rem;
	padding-top: 0.9rem;
}

.inside-tjcp .index-title {
  font-size: 0.28rem;
  line-height: 0.3rem;
  padding-top: 0.35rem;
}
.inside-tjcp .list {
  margin-top: 0.5rem;
}
.inside-tjcp .item {
  margin-bottom: 1px;
  position: relative;
  border: solid 1px #ebebeb;
}
.inside-tjcp .item a {
  /* display: flex; */
  justify-content: space-between;
}
.inside-tjcp .item .pic {
  /* width: 37%; */
  overflow: hidden;
  position: relative;
}
.inside-tjcp .item .pic:after {
  content: "";
  display: block;
  padding-bottom: 62%;
}
.inside-tjcp .item .pic img {
  transition: all 700ms ease;
}
.inside-tjcp .item .text {
  /* width: 63%; */
  padding-left: 0.2rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  font-size: 0.16rem;
  padding-right: 0.4rem;
}
.inside-tjcp .item .t1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  color: #333;
  font-size: 0.2rem;
  height: 0.3rem;
  line-height: 0.3rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-tjcp .item .t2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-top: 0.05rem;
  color: #333;
  height: 0.48rem;
  line-height: 0.24rem;
}
.inside-tjcp .item .t3 {
  bottom: -1px;
  right: -1px;
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  background: #f40002;
}
.inside-tjcp .item .t3 img {
  max-height: 0.3rem;
}
.inside-tjcp .item:hover .pic img {
  transform: scale(1.1);
}
.inside-tjcp .item:hover .t1 {
  color: #f40002;
}
@media (max-width: 1024px) {
  .inside-tjcp .item .text {
    font-size: 14px;
  }
  .inside-tjcp .item .t1 {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
  }
  .inside-tjcp .item .t2 {
    height: 40px;
    line-height: 20px;
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .inside-tjcp .item .t3 {
    width: 30px;
    height: 30px;
  }
  .inside-tjcp .item .t3 img {
    max-height: 30px;
  }
}
.inside-xgzx {
  padding-bottom: 1.3rem;
  padding-top: 0.9rem;
}
.inside-xgzx .index-title {
  font-size: 0.28rem;
  line-height: 0.3rem;
  padding-top: 0.35rem;
}
.inside-xgzx .list li {
  width: 33.3333%;
  padding-top: 0.5rem;
}
.inside-xgzx .list li .pic {
  overflow: hidden;
  position: relative;
}
.inside-xgzx .list li .pic img {
  transition: all 700ms ease;
}
.inside-xgzx .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 58.37104072%;
}
.inside-xgzx .list li .date {
  color: #999;
  font-size: 0.16rem;
  padding-top: 0.4rem;
}
.inside-xgzx .list li .tit {
  color: #333;
  height: 0.3rem;
  font-size: 0.2rem;
  line-height: 0.3rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-xgzx .list li .txt {
  margin-top: 0.15rem;
  color: #333;
  height: 0.52rem;
  line-height: 0.26rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.inside-xgzx .list li .more {
  margin-top: 0.3rem;
  color: #f40002;
  text-decoration: underline;
}
.inside-xgzx .list li:hover .pic img {
  transform: scale(1.1);
}
.inside-xgzx .list li:hover .tit {
  color: #f40002;
}
@media (max-width: 1024px) {
  .inside-xgzx .list li .date {
    font-size: 14px;
  }
  .inside-xgzx .list li .tit {
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
}
.inside-industry {
  padding: 1rem 0;
}
.inside-industry .index-tabnav {
  margin-top: 0.4rem;
}
.inside-industry .index-tabnav li {
  padding-right: 0.25rem;
  padding-top: 0.2rem;
}
.inside-industry .index-tabnav li:hover a {
  color: #f40002;
}
.inside-industry .index-tabnav li:hover a:after {
  width: 100%;
  left: 0;
  opacity: 1;
}
.inside-industry .tag {
  color: #242424;
  font-size: 0.19rem;
  line-height: 0.32rem;
  padding-top: 0.15rem;
}
.inside-industry .list-2 {
  padding-top: 0.15rem;
}
.inside-industry .list-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
}
.inside-industry .list-2 li {
  width: 25%;
  padding: 0 0.1rem;
  padding-top: 0.3rem;
}
.inside-industry .list-2 li .pic {
  overflow: hidden;
  position: relative;
}
.inside-industry .list-2 li .pic img {
  transition: all 700ms ease;
}
.inside-industry .list-2 li .pic:after {
  content: "";
  display: block;
  padding-bottom: 69.03225806%;
}
.inside-industry .list-2 li .text {
  background: #efefef;
  padding: 0.24rem 0.2rem;
  padding-top: 0.2rem;
}
.inside-industry .list-2 li .tit {
  height: 0.3rem;
  line-height: 0.3rem;
  color: #333333;
  font-size: 0.18rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-industry .list-2 li .txt {
  color: #333;
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-industry .list-2 li .dow {
  padding-top: 0.15rem;
  color: #f40002;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  text-decoration: underline;
}
.inside-industry .list-2 li:hover .pic img {
  transform: scale(1.1);
}
.inside-industry .list-2 li:hover .tit {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .inside-industry .tag {
    font-size: 14px;
    line-height: 24px;
  }
  .inside-industry .index-tabnav {
    display: none;
  }
  .inside-industry .list-2 li {
    width: 50%;
  }
  .inside-industry .list-2 li .tit {
    font-size: 14px;
    height: 30px;
    line-height: 30px;
  }
}
.inside-search {
  padding-bottom: 0.8rem;
  padding-top: 0.7rem;
}
.inside-search .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.24rem 0.8rem;
  background: #f2f2f2;
}
.inside-search label {
  width: 20%;
}
.inside-search .iinput {
  position: relative;
  width: 80%;
}
.inside-search .iinput input {
  width: 100%;
  color: #666;
  padding: 0 0.15rem;
  padding-right: 1rem;
  background: #fff;
  line-height: 0.32rem;
  height: 0.34rem;
  border: solid 1px #c8c8c8;
}
.inside-search .btn {
  right: 0;
  top: 0;
  height: 100%;
  width: 0.65rem;
  text-align: center;
  background: #f40002;
  position: absolute;
}
.inside-search .btn img {
  margin-top: 0.07rem;
  max-height: 0.2rem;
}
@media (max-width: 1024px) {
  .inside-search .box {
    padding: 20px;
    display: block;
  }
  .inside-search label {
    width: 100%;
    display: block;
    padding-bottom: 10px;
  }
  .inside-search .iinput {
    display: block;
    width: 100%;
  }
  .inside-search .iinput input {
    font-size: 12px;
    height: 40px;
    line-height: 38px;
    padding: 0 15px;
    padding-right: 50px;
  }
  .inside-search .iinput .btn {
    width: 40px;
    height: 40px;
  }
  .inside-search .iinput .btn img {
    margin-top: 10px;
    max-height: 20px;
  }
}
.inside-pronav {
  height: 0.85rem;
  overflow: hidden;
  margin-top: 0.4rem;
  position: relative;
  border-bottom: solid 1px #e0e0e0;
}
.inside-pronav ul {
  width: 98%;
}
.inside-pronav ul li {
  margin-top: 0.2rem;
  font-family: "Hanchansans-Regular";
  padding-right: 0.6rem;
  display: inline-block;
}
.inside-pronav ul li a {
  color: #333;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 0.4rem;
  position: relative;
}

.inside-pronav ul li a.proa{
    padding-bottom: 0.14rem;
}

.inside-pronav ul li a img{
	display: inline-block;
	vertical-align: top;
	height: 0.4rem;
	margin-left: 0.1rem;
	margin-top: -0.1rem;
}

.inside-pronav ul li a:after {
  content: "";
  bottom: 0;
  left: 50%;
  width: 0;
  opacity: 0;
  height: 0.03rem;
  position: absolute;
  background: #f40002;
  transition: 500ms ease;
}
.inside-pronav li:hover a,
.inside-pronav .cur a {
  color: #f40002;
}
.inside-pronav li:hover a:after,
.inside-pronav .cur a:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.inside-pronav .arrow {
  right: 0;
  top: 0.2rem;
  border-radius: 50%;
  height: 0.24rem;
  width: 0.24rem;
  position: absolute;
  cursor: pointer;
  background: #f40002;
}
.inside-pronav .arrow:after {
  content: "";
  top: 0.06rem;
  left: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  position: absolute;
  transform: rotate(45deg);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.inside-pronav.expanded {
  height: auto;
}
.inside-pronav .arrow.expanded {
  transform: rotate(180deg);
}
.inside-pronav-2 .arrow.expanded{
	transform: none;
}
.inside-pronav-2 .arrow.expanded:before{
	display:none;
}

@media (max-width: 1024px) {
  .inside-pronav .arrow {
    width: 24px;
    height: 24px;
  }
  .inside-pronav .arrow:after {
    top: 6px;
    left: 8px;
    width: 8px;
    height: 8px;
  }
}
.inside-pronav-2 {
  margin-top: 0;
  display: flex;
}
.inside-pronav-2 ul {
  padding-left: 1%;
}
.inside-pronav-2 ul li {
  padding-right: 0.35rem;
}
.inside-pronav-2 ul li a:after {
  height: 0.02rem;
}
.inside-pronav-2 ul .cur a {
  color: #333;
}
.inside-pronav-2 .bt {
  color: #333333;
  font-weight: 700;
  width: 10%;
  padding-right: 0.2rem;
  display: inline-block;
  padding-top: 0.2rem;
}
.inside-pronav-2 .arrow {
  top: 0.2rem;
  background: none;
}

.inside-pronav-2 .arrow:before {
    content: "";
    top: 0;
    left: 0.15rem;
    width: 0.03rem;
    height: 0.16rem;
    background: #666;
    position: absolute;
}

.inside-pronav-2 .arrow:after {
	content: "";
	top: 0.06rem;
	width: 0.16rem;
	height: 0.03rem;
	background: #666;
	position: absolute;
	border: none;
	transform: none;
}

@media (max-width: 1024px) {
  .inside-pronav-2 .bt {
    width: 26%;
  }
  .inside-pronav-2 .arrow {
    top: 0.15rem;
  }
  .inside-pronav-2 .arrow:before{
    top: 1px;
    left: 13px;
    width: 2px;
    height: 12px;	  
  }
  .inside-pronav-2 .arrow:after{
	top: 6px;
	width: 12px;
	height: 2px;
  }
}
@media (max-width: 480px) {
  .inside-pronav-2 .bt {
    width: 30%;
  }
}
@media (max-width: 420px) {
  .inside-pronav-2 .bt {
    width: 40%;
  }
}
.inside-product {
  position: relative;
  padding-bottom: 1.2rem;
}
.inside-product .tag {
  color: #242424;
  line-height: 0.32rem;
  padding-top: 0.2rem;
  font-size: 0.2rem;
}
.inside-product .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
}
.inside-product .list li {
  width: 25%;
  padding: 0 0.15rem;
  padding-top: 0.45rem;
}
.inside-product .list li .pic {
  overflow: hidden;
  position: relative;
}
.inside-product .list li .pic img {
  transition: all 700ms ease;
}
.inside-product .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 61.9205298%;
}
.inside-product .list li .date {
  color: #333;
  font-size: 0.12rem;
  margin-top: 0.25rem;
}
.inside-product .list li .tit {
  color: #333;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  height: 0.3rem;
  line-height: 0.3rem;
  font-size: 0.18rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-product .list li .txt {
  margin-top: 0.1rem;
  line-height: 0.28rem;
  font-size: 0.16rem;
  color: #333;
}
.inside-product .list li .txt span {
  display: block;
}
.inside-product .list li .more {
  margin-top: 0.2rem;
  color: #f40002;
  text-decoration: underline;
}
.inside-product .list li:hover .pic img {
  transform: scale(1.1);
}
.inside-product .list li:hover .tit {
  text-decoration: underline;
  color: #f40002;
}
@media (max-width: 1024px) {
  .inside-product .list li {
    width: 50%;
  }
  .inside-product .list li .date {
    font-size: 12px;
  }
  .inside-product .list li .tit {
    font-size: 18px;
    height: 30px;
    line-height: 30px;
  }
  .inside-product .list li .txt {
    font-size: 14px;
    line-height: 26px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .inside-product .list li {
    width: 100%;
  }
}
.inside-proshow .index-title {
  padding-bottom: 0.2rem;
}
.inside-proshow-2 {
  padding-bottom: 1rem;
  padding-top: 0.8rem;
}
.inside-proshow-2 .container-2 {
  display: flex;
  justify-content: space-between;
}
.inside-proshow-2 .left {
  width: 50%;
  position: relative;
}
.inside-proshow-2 .left:after {
  content: "";
  display: block;
  padding-bottom: 66.66666667%;
}
.inside-proshow-2 .left .videobtn {
  bottom: -0.5rem;
  right: 0.5rem;
  position: absolute;
}
.inside-proshow-2 .left .videobtn a {
  color: #474747;
  font-weight: 700;
  font-size: 0.18rem;
  height: 0.5rem;
  line-height: 0.5rem;
  min-width: 1.7rem;
  background: #eeeeee;
  display: inline-block;
  border-radius: 0.3rem;
  padding: 0 0.15rem 0 0.1rem;
}
.inside-proshow-2 .left .videobtn img {
  vertical-align: middle;
  max-height: 0.4rem;
}
.inside-proshow-2 .left .videobtn a:hover {
  color: #f40002;
}
.inside-proshow-2 .right {
  width: 40%;
  font-size: 0.16rem;
}
.inside-proshow-2 .right .index-title {
  font-size: 0.3rem;
  line-height: 0.4rem;
}
.inside-proshow-2 .right .wenben {
  padding-top: 0.2rem;
}
.inside-proshow-2 .right .wenben p {
  padding-top: 0.1rem;
}
.inside-proshow-2 .anniu {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.3rem;
}
.inside-proshow-2 .button:first-child {
  padding-left: 0;
}
.inside-proshow-2 .button {
  padding-left: 0.1rem;
}
.inside-proshow-2 .button a {
  padding: 0 0.2rem;
  text-align: left;
  font-size: 0.14rem;
  min-width: 1rem;
  height: 0.36rem;
  line-height: 0.36rem;
}
.inside-proshow-2 .button img {
  float: right;
  margin-top: 0.05rem;
  margin-left: 0.1rem;
}
@media (max-width: 1024px) {
  .inside-proshow-2 .container-2 {
    display: block;
  }
  .inside-proshow-2 .left,
  .inside-proshow-2 .right {
    width: 100%;
  }
  .inside-proshow-2 .right {
    font-size: 14px;
	margin-top: 50px;
  }
  .inside-proshow-2 .button a {
    font-size: 14px;
  }
  .inside-proshow-2 .left .videobtn{
	right: 0;
	bottom: 0;
  }
}
@media (max-width: 500px) {
  .inside-proshow-2 .button {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  .inside-proshow-2 .button a {
    width: 100%;
    min-width: 100%!important;
    display: block;
  }
}
.inside-proshow-3 {
  padding-bottom: 1rem;
}
.inside-proshow-3 .index-tabnav {
  padding-top: 0.3rem;
  position: relative;
}
.inside-proshow-3 .index-tabnav:before {
  top: 0;
  left: 0;
  content: "";
  width: 0.5rem;
  height: 0.08rem;
  position: absolute;
  background: #f40002;
}
.inside-proshow-3 .index-tabnav li a {
  color: #333!important;
  font-size: 0.18rem;
}
.inside-proshow-3 .tabcot {
  display: none;
  position: relative;
}
.inside-proshow-3 .tabcot.show {
  display: block;
}
.inside-proshow-3 .index-title {
font-size: 0.3rem;
text-align: left;
line-height: 0.4rem;
padding-bottom: 0.1rem;
margin-bottom: 0.4rem;
}


/*.inside-proshow-3 .index-title:before {
    top: 100%;
	bottom:0;
    left: 0;
    content: "";
    height: 0.08rem;
    width: 0.5rem;
    position: absolute;
    background: #f40002;
	z-index: 2;
}

.inside-proshow-3 .index-title:after {
  content: " ";
  background: #dadada;
  top: 100%;
	bottom:0;
  left: 0;
  height: 0.08rem;
  width: 100%;
  position: absolute;
  z-index: 1;
}*/


.inside-proshow-3 .index-title2{
  font-size: 0.3rem;
  text-align: left;
  color: #242424;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  padding-left: 0.2rem;
  line-height: 0.4rem;
  position: relative;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  background: #cacbcd;
  border-left:40px solid #d1466d;
}
.inside-proshow-3 .list {
  display: flex;
  margin-top: 0.8rem;
  justify-content: space-between;
}
.inside-proshow-3 .list2 {
  display: flex;
  margin-bottom: 0.8rem;
  justify-content: space-between;
}
.inside-proshow-3 .list .left {
  width: 55%;
}
.inside-proshow-3 .list .left .wenben {
  color: #242424;
  font-size: 0.2rem;
  line-height: 0.3rem;
  /* padding-top: 0.35rem; */
}
.inside-proshow-3 .list .wenben .bigtit{
    font-size: 0.68rem;
    font-weight: 700;
}
.inside-proshow-3 .list .left .wenben .pd2_list_wrap{
	display: flex;gap: 10px;
}
.inside-proshow-3 .list .left .wenben .pd2_list_wrap .pd2_list{
	width: 33%;
	font-size: 0.16rem;
}
.inside-proshow-3 .list .right {
  width: 35%;
}
.inside-proshow-3 .list .right .wenben{
  color: #242424;
  font-size: 0.2rem;
  line-height: 0.3rem;
}

.inside-proshow-3 .list .right .wenben h5{
	color: #f00;
	font-weight:100;
	font-size:13px;
}


.inside-proshow-3 .table {
  margin-top: 0.38rem;
  text-align: center;
  color: #000;
}
.inside-proshow-3 .table .icon {
  max-height: 0.24rem;
}
.inside-proshow-3 .table .tu {
  max-height: 0.2rem;
}
.inside-proshow-3 .table .bt {
  border-bottom: solid 1px #dee1e7;
}
.inside-proshow-3 .table .line {
  display: flex;
}
.inside-proshow-3 .table .line span {
  display: block;
  width: 33.333%;
  padding: 0 0.1rem;
  border-left: solid 1px #dee1e7;
}
.inside-proshow-3 .table .line span:first-child {
  border-color: #f2f2f2;
}
.inside-proshow-3 .table td {
  padding: 0.05rem;
}
.inside-proshow-3 .table th {
  /* color: #fff; */
  font-size: 0.12rem;
  line-height: 0.24rem;
  background: #f40002;
}
.inside-proshow-3 .table table,
.inside-proshow-3 .table th,
.inside-proshow-3 .table td {
  border: solid 1px #777;
  font-weight: 700;
}

.inside-proshow-3 .table .tit{
	transform: rotate(90deg);
	display: inline-block;
}

.inside-proshow-3 .table .color1{
	background: #E2E5E9;
}
.inside-proshow-3 .table .color2{
	background: #E2E5E9;
}

@media (max-width: 1024px) {
  .inside-proshow-3 .list {
    display: block;
  }
  .inside-proshow-3 .list .left {
    width: 100%!important;
  }
  .inside-proshow-3 .list .right {
    width: 100%!important;
    margin-top: 30px;
  }
  .inside-proshow-3 .table {
    -webkit-overflow-scrolling: touch;
    font-size: 12px;
    overflow-x: auto;
  }
  .inside-proshow-3 .table table {
    width: 1200px;
  }
  .inside-proshow-3 .table th {
    font-size: 12px;
  }
}
.inside-technical {
  color: #333;
  padding-top: 1rem;
  padding-bottom: 0.7rem;
}
.inside-technical .text {
  padding-right: 2.7rem;
  padding-top: 0.2rem;
  line-height: 0.32rem;
}
.inside-technical .text p {
  padding-top: 0.3rem;
}
.inside-technical .text-2 {
  color: #242424;
  padding-top: 0.6rem;
}
.inside-technical .text-2 .t1 {
  font-size: 0.3rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-technical .text-2 .t2 {
  padding: 0.1rem 0;
  font-size: 0.24rem;
  font-weight: 700;
}
.inside-technical .text-2 .t3 {
  margin-top: 0.1rem;
  position: relative;
  color: #f40002;
}
.inside-technical .text-2 .t3 a {
  color: #f40002;
}
.inside-technical .text-2 .t3 img {
  margin-top: 0.02rem;
  margin-right: 0.1rem;
  max-height: 0.2rem;
}
.inside-technical .text-2 .t3 a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .inside-technical .text {
    padding-right: 0;
    line-height: 26px;
  }
  .inside-technical .text-2 .t3 img {
    margin-top: 0;
    max-height: 20px;
    margin-right: 10px;
  }
}
.inside-contact {
  padding: 1rem 0 0.8rem 0;
}
.inside-contact ul {
  padding-top: 0.2rem;
  padding-bottom: 0.3rem;
  border-bottom: solid 1px #ebebeb;
}
.inside-contact li {
  padding-top: 0.4rem;
}
.inside-contact li .title {
  color: #212121;
  font-weight:700;
  font-size: 0.26rem;
  /* font-family: "Hanchansans-Bold"; */
  padding-bottom: 0.2rem;
  border-bottom: solid 1px #ebebeb;
}
.inside-contact li .item {
  display: flex;
  padding-top: 0.3rem;
}
.inside-contact li .pic {
  width: 31%;
}
.inside-contact li .text {
  width: 69%;
  color: #242424;
  padding-left: 0.4rem;
}
.inside-contact li .text p {
  padding-top: 0.1rem;
}
.inside-contact li .text a {
  color: #212121;
}
.inside-contact li .text a:hover {
  text-decoration: underline;
}
.inside-contact li .text .name {
  color: #212121;
  padding-top: 0;
  padding-bottom: 0.1rem;
  font-size: 0.22rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
@media (max-width: 1024px) {
  .inside-contact li .text {
    font-size: 14px;
  }
}
@media (max-width: 440px) {
  .inside-contact li .item {
    display: block;
  }
  .inside-contact li .pic,
  .inside-contact li .text {
    width: 100%;
    padding: 0;
  }
  .inside-contact li .text {
    padding-top: 30px;
  }
}
.inside-message {
  color: #242424;
  position: relative;
  padding-bottom: 1.1rem;
}
.inside-message .bt {
  font-size: 0.24rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-message .tishi {
  padding-bottom: 0.2rem;
  line-height: 0.3rem;
  font-size: 0.24rem;
  color: #242424;
}
.inside-message .info {
  padding-top: 0.1rem;
}
.inside-message .info em {
  color: #f40002;
  font-style: normal;
}
.inside-message ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: -0.2rem;
  justify-content: space-between;
}
.inside-message li {
  width: 46%;
  padding-top: 0.45rem;
}
.inside-message li p {
  position: relative;
  border-bottom: solid 1px #dddddd;
}
.inside-message li label {
  left: 0;
  top: 0.08rem;
  position: absolute;
}
.inside-message li img {
  margin-right: 0.1rem;
  max-height: 0.2rem;
}
.inside-message li em {
  color: #f40002;
  font-style: normal;
}
.inside-message li:nth-child(1) .iinput {
  padding-left: 1.3rem;
}
.inside-message li:nth-child(2) .iinput {
  padding-left: 1rem;
}
.inside-message li:nth-child(3) .iinput {
  padding-left: 0.9rem;
}
.inside-message li:nth-child(4) .iinput {
  padding-left: 1.8rem;
}
.inside-message li:nth-child(6) .iinput {
  padding-left: 1.1rem;
}
.inside-message .iinput {
  border: 0;
  color: #242424;
  padding-left: 1.8rem;
  line-height: 0.4rem;
  height: 0.4rem;
  width: 100%;
}
.inside-message .itextarea {
  width: 100%;
}
.inside-message .itextarea textarea {
  width: 100%;
  font-size: 0.16rem;
  padding: 0.2rem;
  height: 2rem;
  border: solid 1px #dddddd;
  font-family: "Hanchansans-Light";
}
.inside-message .privacy,
.inside-message .sending {
  width: 100%;
}
.inside-message .privacy {
  color: #666;
  padding-top: 0.2rem;
}
.inside-message .privacy a {
  color: #f40002;
}
.inside-message .privacy a:hover {
  text-decoration: underline;
}
.inside-message .privacy input {
  opacity: 0.5;
  width: 0.24rem;
  height: 0.24rem;
  margin-left: 0;
}
.inside-message .sending a {
  min-width: 1.4rem;
  height: 0.42rem;
  line-height: 0.4rem;
  display: inline-block;
}
@media (max-width: 500px) {
  .inside-message ul {
    display: block;
    margin-top: 0;
  }
  .inside-message li {
    width: 100%;
  }
  .inside-message li img {
    max-height: 20px;
    margin-right: 10px;
  }
  .inside-message li label {
    top: 10px;
  }
  .inside-message li:nth-child(1) .iinput {
    padding-left: 115px;
  }
  .inside-message li:nth-child(2) .iinput {
    padding-left: 90px;
  }
  .inside-message li:nth-child(3) .iinput {
    padding-left: 85px;
  }
  .inside-message li:nth-child(4) .iinput {
    padding-left: 140px;
  }
  .inside-message li:nth-child(5) .iinput {
    padding-left: 155px;
  }
  .inside-message li:nth-child(6) .iinput {
    padding-left: 95px;
  }
  .inside-message .iinput {
    height: 40px;
    line-height: 40px;
  }
  .inside-message .privacy {
    font-size: 13px;
  }
}
.inside-message-2 li {
  width: 28%;
}
.inside-message-2 li:nth-child(1) .iinput {
  padding-left: 1.2rem;
}
.inside-message-2 li:nth-child(2) .iinput {
  padding-left: 1rem;
}
.inside-message-2 li:nth-child(3) .iinput {
  padding-left: 0.9rem;
}
.inside-message-2 li:nth-child(5) .iinput {
  padding-left: 1.1rem;
}
.inside-message-2 .li-w {
  width: 46%;
}
.inside-message-2 .icheckbox {
  flex-wrap: wrap;
  display: flex;
  width: 100%;
}
.inside-message-2 .icheckbox label {
  top: auto;
  position: relative;
}
.inside-message-2 .icheckbox span {
  width: 33.33%;
  padding-top: 0.05rem;
  display: inline-block;
}
.inside-message-2 .icheckbox input[type="checkbox"] {
  width: 0.2rem;
  height: 0.2rem;
  margin-left: 0;
}
.inside-message-2 .icheckbox label {
  padding-left: 0.05rem;
}
.inside-message-2 .sending {
  text-align: center;
}
@media (max-width: 1024px) {
  .inside-message-2 li {
    width: 100%!important;
  }
  .inside-message-2 li img {
    max-height: 20px;
    margin-right: 10px;
  }
  .inside-message-2 li label {
    top: 10px;
  }
  .inside-message-2 li:nth-child(1) .iinput {
    padding-left: 110px;
  }
  .inside-message-2 li:nth-child(2) .iinput {
    padding-left: 90px;
  }
  .inside-message-2 li:nth-child(3) .iinput {
    padding-left: 85px;
  }
  .inside-message-2 li:nth-child(4) .iinput {
    padding-left: 160px;
  }
  .inside-message-2 li:nth-child(5) .iinput {
    padding-left: 100px;
  }
  .inside-message-2 .iinput {
    height: 40px;
    line-height: 40px;
  }
  .inside-message-2 .icheckbox span {
    width: 100%;
  }
  .inside-message-2 .itextarea textarea {
    font-size: 14px;
  }
}
.inside-message-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.inside-message-3 .title {
  color: #212121;
  font-size: 0.24rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-message-3 .list {
  display: flex;
  justify-content: space-between;
  padding-top: 0.3rem;
}
.inside-message-3 .form-1 {
  width: 49%;
}
.inside-message-3 .form-1 .tishi {
  color: #212121;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-message-3 .form-1 .tishi em {
  color: #f40002;
  font-style: normal;
}
.inside-message-3 .form-1 .itextarea textarea {
  width: 100%;
  padding: 0.1rem;
  height: 2.79rem;
  background: #fafafa;
  border: solid 1px #e4e4e4;
  font-family: "Hanchansans-Light";
}
.inside-message-3 .form-1 li {
  padding-top: 0.08rem;
  padding-bottom: 0.05rem;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.inside-message-3 .form-1 li .item {
  width: 48%;
}
.inside-message-3 .form-1 li .iinput,
.inside-message-3 .form-1 li select {
  width: 100%;
  font-family: "Hanchansans-Light";
  padding: 0 0.1rem;
  height: 0.4rem;
  line-height: 0.38rem;
  background: #fafafa;
  border: solid 1px #e4e4e4;
}
.inside-message-3 .form-1 li select {
  color: #666;
}
.inside-message-3 .form-1 li label {
  display: block;
}
.inside-message-3 .form-1 li em {
  color: #f40002;
  font-style: normal;
}
.inside-message-3 .list-2 {
  padding-top: 0.3rem;
}
.inside-message-3 .list-2 .privacy {
  color: #666;
  padding-bottom: 0.3rem;
  padding-top: 0.3rem;
}
.inside-message-3 .list-2 .privacy a {
  color: #f40002;
}
.inside-message-3 .list-2 .privacy a:hover {
  text-decoration: underline;
}
.inside-message-3 .list-2 .privacy input {
  opacity: 0.5;
  width: 0.24rem;
  height: 0.24rem;
  margin-left: 0;
}
.inside-message-3 .list-2 .button a {
  min-width: 1.4rem;
  height: 0.42rem;
  line-height: 0.4rem;
}
@media (max-width: 1024px) {
  .inside-message-3 .list {
    display: block;
  }
  .inside-message-3 .form-1 {
    width: 100%;
  }
  .inside-message-3 .form-1 li .iinput,
  .inside-message-3 .form-1 li select {
    height: 40px;
    line-height: 38px;
  }
}
@media (max-width: 480px) {
  .inside-message-3 .form-1 li {
    padding-bottom: 0;
    padding-top: 10px;
    display: block;
  }
  .inside-message-3 .form-1 li .item {
    width: 100%;
  }
}
.inside-ditu .tabbox {
  padding-top: 0.3rem;
}
.inside-ditu .tabcot {
  display: none;
}
.inside-ditu .tabcot.show {
  display: block;
}
.inside-ditu .tabcot .tu img {
  width: 100%;
}
@media (max-width: 1024px) {
  .inside-ditu .index-tabnav li {
    padding-right: 20px;
  }
}
.inside-download {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.inside-download .hezi {
  display: flex;
}
.inside-download .text {
  padding-left: 0.3rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
}
.inside-download .text .t1 {
  padding-top: 0.24rem;
}
.inside-download .text .t2 {
  font-size: 0.2rem;
  color: #f40002;
}
.inside-download .list {
  padding-bottom: 0.3rem;
  padding-top: 0.7rem;
}
.inside-download .list .title {
  color: #333;
  padding-bottom: 0.1rem;
  padding-left: 0.2rem;
  position: relative;
  font-size: 0.24rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  border-bottom: solid 1px #e4e4e4;
}
.inside-download .list .title:before {
  left: 0;
  top: 0.12rem;
  content: "";
  width: 0.07rem;
  height: 0.06rem;
  position: absolute;
  background: #f40002;
}
.inside-download .list .title .arrow {
  right: 0;
  top: 0rem;
  border-radius: 50%;
  height: 0.24rem;
  width: 0.24rem;
  position: absolute;
  background: #f40002;
}
.inside-download .list .title .arrow:after {
  content: "";
  top: 0.06rem;
  left: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  position: absolute;
  transform: rotate(45deg);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.inside-download .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.09rem;
  position: relative;
}
.inside-download .list li {
  width: 25%;
  margin-top: 0.4rem;
  padding: 0 0.09rem;
}

.inside-download .list li .item{
  /*box-shadow: 0.07rem 0.1rem 0.07rem rgba(106, 116, 140, 0.16);*/
}

.inside-download .list li .pic {
  position: relative;
  border: solid 1px #ebebeb;
  width: 53%;
  float: left;
  box-shadow: 0.07rem 0.1rem 0.07rem rgba(106, 116, 140, 0.16);
}
.inside-download .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 150.32258065%;
}
.inside-download .list li .nr {
  padding: 0.11rem;
  padding-top:0;
  width: 46%;
  float: right;
}
.inside-download .list li .date {
  color: #999;
  font-size: 0.12rem;
  margin-bottom: 0.2rem;
}
.inside-download .list li .txtbox {
  position: relative;
}
.inside-download .list li .tit {
  color: #333;
  font-size: 0.14rem;
  height: 0.4rem;
  line-height: 0.4rem;
  font-weight:700;
  /* font-family: "Hanchansans-Bold"; */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  padding-right:0.4rem;
}
.inside-download .list li .tit .lang{
	background: #f40002;
    color: #fff;
    padding: 2px 7px;
    position: absolute;
    right: 0;
    top: 10px;
    border-radius: 5px;
    line-height: 1.3;
    font-weight: bold;
    font-size: 0.12rem;
}
.inside-download .list li .btn {
  position: relative;
  font-size: 0.12rem;
}
.inside-download .list li .btn a {
  color: #fff;
  margin-right: 0.06rem;
  width: 0.4rem;
  height: 0.4rem;
  text-align: center;
  padding-top: 0.05rem;
  line-height: 0.14rem;
  border-radius: 0.1rem;
  background: #f40002;
  display: inline-block;
}
.inside-download .list li .btn a:hover {
  background: #cb0002;
}
.inside-download .list li .btn img {
  display: block;
  margin: 0 auto;
  margin-top: -0.04rem;
  max-height: 0.2rem;
}
.inside-download .list .djhover {
  left: 0;
  z-index: 10;
  top: 100%;
  width: 13.1rem;
  display: none;
  background: #fff;
  position: absolute;
  min-height: 1rem;
  padding: 0.4rem 0 1rem 0;
}
.inside-download .list .djhover .box {
  padding-left: 0.1rem;
  font-family: "Hanchansans-Regular";
  flex-wrap: wrap;
  display: flex;
}
.inside-download .list .djhover .box span {
  width: 12.5%;
  display: flex;
  padding: 0 0.1rem;
  margin-top: 0.04rem;
}
.inside-download .list .djhover .box a {
  color: #212121;
  display: flex;
  width: 100%;
  transition: all 500ms ease;
  justify-content: space-between;
  position: relative;
  font-size: 0.2rem;
}
.inside-download .list .djhover .box a:hover {
  color: #f40002;
  text-decoration: underline;
}
.inside-download .list .djhover .box i {
  width: 65%;
  height: 0.24rem;
  line-height: 0.24rem;
  vertical-align: top;
  font-style: normal;
  display: block;
  overflow: hidden;
}
.inside-download .list .djhover .box em {
  color: #fff;
  height: 0.2rem;
  line-height: 0.2rem;
  display: inline-block;
  vertical-align: top;
  font-size: 0.16rem;
  border-radius: 0.03rem;
  padding: 0 0.1rem;
  font-style: normal;
  background: #f40002;
}
@media (max-width: 1024px) {
  .inside-download {
    padding-bottom: 30px;
  }
  .inside-download .hezi {
    display: block;
  }
  .inside-download .text {
    padding-left: 0;
  }
  .inside-download .text .t2 {
    font-size: 16px;
  }
  .inside-download .list .title {
    padding-left: 20px;
    padding-bottom: 10px;
    font-size: 20px;
  }
  .inside-download .list .title:before {
    width: 6px;
    height: 6px;
    top: 10px;
  }
  .inside-download .list .title .arrow {
    width: 24px;
    height: 24px;
  }
  .inside-download .list .title .arrow:after {
    top: 6px;
    left: 8px;
    width: 8px;
    height: 8px;
  }
  .inside-download .list li {
    width: 50%;
    position: relative;
  }
  .inside-download .list li .date {
    font-size: 12px;
  }
  .inside-download .list li .tit {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
  }
  .inside-download .list li .btn {
    font-size: 12px;
  }
  .inside-download .list .djhover {
    width: 100%;
  }
  .inside-download .list .djhover .box {
    height: 100px;
    overflow: auto;
  }
  .inside-download .list .djhover .box span {
    width: 50%;
  }
  .inside-download .list .djhover .box a {
    font-size: 14px;
  }
  .inside-download .list .djhover .box i {
    height: 24px;
    line-height: 24px;
  }
  .inside-download .list .djhover .box em {
    font-size: 14px;
    height: 20px;
    line-height: 20px;
  }
}
@media (max-width: 420px) {
  .inside-download .list li .nr {
    padding: 10px;
    padding-bottom: 20px;
  }
  .inside-download .list li .tit {
    padding-right: 0;
  }
  .inside-download .list li .btn {
    top: auto;
    right: auto;
    position: relative;
  }
  .inside-download .list .djhover .box span {
    width: 100%;
  }
}
.inside-download-2 {
  padding-bottom: 1.5rem;
}
.inside-download-2 li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 0.4rem;
  border-top: solid 1px #ebebeb;
}
.inside-download-2 li .leftbox {
  width: 75%;
  display: flex;
}
.inside-download-2 li .leftbox .pic {
  width: 35%;
}
.inside-download-2 li .leftbox .text {
  width: 65%;
  padding-left: 0.5rem;
}
.inside-download-2 li .leftbox .t1 {
  color: #333;
  font-size: 0.24rem;
  /* font-family: "Hanchansans-Bold"; */
  font-weight:700;
}
.inside-download-2 li .leftbox .t1 span {
  font-size: 0.18rem;
}
.inside-download-2 li .leftbox .t2 {
  font-size: 0.16rem;
  line-height: 0.28rem;
  padding-top: 0.1rem;
}
.inside-download-2 li .leftbox .t2 a {
  color: #f40002;
  text-decoration: underline;
}
.inside-download-2 li .leftbox .t2 a:hover {
  color: #333;
}
.inside-download-2 li .rigthbox {
  width: 25%;
}
@media (max-width: 1024px) {
  .inside-download-2 li {
    display: block;
  }
  .inside-download-2 li .leftbox {
    width: 100%;
  }
  .inside-download-2 li .leftbox .t1 {
    font-size: 18px;
  }
  .inside-download-2 li .leftbox .t2 {
    font-size: 14px;
    line-height: 24px;
  }
  .inside-download-2 li .rigthbox {
    width: 38%;
  }
}
@media (max-width: 420px) {
  .inside-download-2 li .leftbox {
    display: block;
  }
  .inside-download-2 li .leftbox .pic,
  .inside-download-2 li .leftbox .text {
    width: 100%;
    padding-left: 0;
  }
  .inside-download-2 li .leftbox .text {
    padding-top: 30px;
  }
  .inside-download-2 li .rigthbox {
    width: 100%;
    text-align: center;
    padding-top: 30px;
  }
}
.inside-page {
  font-size: 0.12rem;
  text-align: center;
  padding-top: 0.8rem;
}
.inside-page a {
  width: 0.4rem;
  height: 0.4rem;
  color: #202020;
  text-align: center;
  line-height: 0.38rem;
  border-radius: 100%;
  margin: 0 0.05rem;
  display: inline-block;
  transition: all 500ms ease;
  border: solid 1px #e5edf2;
}
.inside-page a:hover,
.inside-page .cur {
  color: #fff;
  border-color: #f40002;
  background: #f40002;
}
.inside-page .prev,
.inside-page .next {
  min-width: 1.1rem;
  position: relative;
  border-radius: 30px;
}
.inside-page .prev:before {
  content: "<";
  margin-right: 0.15rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.inside-page .next:after {
  content: ">";
  margin-left: 0.15rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .inside-page {
    font-size: 12px;
    padding: 30px 0 0 0;
  }
  .inside-page .prev,
  .inside-page .next {
    width: auto;
    border-radius: 0;
  }
  .inside-page a {
    width: auto;
    height: auto;
    padding: 0 5px;
    border-radius: 0;
    margin: 0;
  }
  .inside-page span {
    display: none;
  }
}
.navM .transparent {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
}
.navM .navMCon {
  background-color: #fff;
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  border-left: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 2;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  right: auto;
  left: -100%;
  transition: all .5s;
}
.navM .navMWrap {
  overflow-y: auto;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.navM.open .transparent {
  display: block;
}
.navM.open .closeBtn {
  display: block;
}
.navM.open .navMCon {
  left: 0;
}
.navM .closeBtn {
  display: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #f40002;
  color: #fff;
  position: absolute;
  z-index: 999;
  right: -40px;
  top: 0;
}
.navM .closeBtn:before,
.navM .closeBtn:after {
  content: "";
  display: block;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.navM .closeBtn:before {
  width: 15px;
  height: 1px;
}
.navM .closeBtn:after {
  width: 1px;
  height: 15px;
}
.navM .titleBig {
  text-align: center;
  padding: 10px 0;
  display: none;
}
.navM .navMWrap > .list .title {
  margin-bottom: 10px;
  padding: 5px;
  font-size: 18px;
  border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
  position: relative;
}
.navM .navMWrap > .list .title .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  transition: all .3s ease;
}
.navM .navMWrap > .list .title .icon:after {
  content: "";
  margin: auto;
  height: 8px;
  width: 8px;
  border-top: 1px #aaa solid;
  border-right: 1px #aaa solid;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: center center;
}
.navM .navMWrap > .list .has .title .icon {
  display: block;
}
.navM .navMWrap > .list .active .title .icon {
  transform: rotate(135deg);
}
.navM .child {
  padding: 10px 0px 20px 0px;
  display: none;
  position: relative;
}
.navM .child a {
  color: #333;
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding: 5px 0;
  transition: all .5s;
  position: relative;
}
.navM .child a:hover {
  color: #000;
}
.navM .child-2 .list {
  flex-wrap: wrap;
  display: flex;
}
.navM .child-2 .list li {
  width: 50%;
}
.navM .child-2 .list li a {
  padding: 0;
}
.navM .mSearch {
  padding: 10px 0;
  text-align: left;
  overflow: hidden;
  height: 56px;
  border-bottom: #f3f3f3 1px solid;
  position: relative;
}
.navM .mSearch .btn {
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 10px;
  margin-top: 0;
  right: 0px;
  background: #ccc;
}
.navM .mSearch .btn img {
  max-height: 20px;
  margin-top: 4px;
  vertical-align: middle;
}
.navM .mSearch input {
  height: 40px;
  line-height: 38px;
  border: 0;
  vertical-align: middle;
  box-sizing: border-box !important;
  color: #333;
  appearance: none;
  transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  opacity: 1;
  width: 100%;
  padding: 5px 30px 5px 15px;
  border-radius: 2px;
  font-size: 16px;
  background-color: #fff;
  position: static;
  left: 0;
  right: 0;
}
.navM .other {
  padding: 10px;
}
.navM .languageBtn {
  padding: 10px 0;
}
.navM .languageBtn a {
  display: block;
  width: 50%;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px #ccc solid;
  margin-right: -1px;
  background: #f40002;
}
.inside-map {
  padding: 0.6rem 0;
}
.inside-map li {
  padding: 0.15rem 0;
}
.inside-map li a {
  font-weight: 700;
}
.inside-map li .drop {
  padding-top: 0.1rem;
}
.inside-map li .drop a {
  margin-right: 0.15rem;
  display: inline-block;
  font-weight: normal;
}
.privacyPopup {
  width: 1000px;
  display: none;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  height: 90%;
  text-align: left;
}
.privacyPopup .title {
  text-align: center;
  color: #333;
  font-weight: 700;
  font-size: 0.24rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px #dcdcdc solid;
}
.privacyPopup .nr {
  padding-top: 0.3rem;
}
.privacyPopup .btnDiv {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  text-align: center;
}
.privacyPopup .btnDiv .closedPopup {
  border: 1px #f40002 solid;
  background-color: #f40002;
  color: #fff !important;
  border-radius: 0.03rem;
  line-height: 0.38rem;
  height: 0.4rem;
  padding: 0 0.1rem;
  font-size: 0.16rem;
  display: inline-block;
  text-align: center;
  min-width: 2rem;
}
.privacyPopup .btnDiv .closedPopup:hover {
  border-color: #f40002 !important;
  background: #f40002 !important;
}
.privacyPopup .button {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  text-align: center;
}
.privacyPopup .button a {
  height: 0.36rem;
  line-height: 0.34rem;
  min-width: 1.1rem;
}
@media screen and (max-width: 1024px) {
  .privacyPopup {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .privacyPopup .title {
    font-size: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .privacyPopup .nr {
    padding-top: 30px;
  }
  .privacyPopup .btnDiv {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .privacyPopup .btnDiv .closedPopup {
    border-radius: 3px;
    line-height: 38px;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    min-width: 200px;
  }
}
.layui-layer-setwin .layui-layer-close2 {
  width: 0.4rem;
  height: 0.4rem;
  line-height: 0.28rem;
}
.layui-layer-setwin .layui-layer-close2:hover {
  background: #f40002;
}
.layui-laydate .layui-this > div {
  background: #f40002 !important;
}
.laydate-footer-btns span:hover,
.layui-laydate-header i:hover,
.laydate-set-ym span:hover {
  color: #f40002 !important;
}
.floatRight {
  width: 40px;
  font-size: 16px;
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 40px;
  transition: .5s;
  display:none!important;
}
.floatRight .list li {
  padding-bottom: 2px;
}
.floatRight .list li:hover .icon {
  background: #bb2924;
}
.floatRight .list .box {
  width: 170px;
  transition: .5s;
  display: block;
  display: flex;
  align-items: center;
}
.floatRight .list .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f40002;
}
.floatRight .list .icon img {
  width: 24px;
  height: 24px;
}
.floatRight .list .txt {
  flex: 1;
  width: calc(100% - 40px);
  background: #2b2c30;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.floatRight .hoverLi .box:hover {
  transform: translateX(-130px);
}
@media screen and (max-width: 1024px) {
  .floatRight {
    display: none;
  }
}
.returnTop {
  opacity: 0;
  transition: opacity .5s;
}
.returnTop.show {
  opacity: 1;
}
.videoWindow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999999;
  display: none;
}
.videoWindow video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13.2rem;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  max-height: 70%;
  max-width: 80%;
}
.videoWindow i {
  display: block;
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 0.25rem;
  height: 0.25rem;
  background: url(../images/onlineClose-2.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.inside-ditu .pic img{width:100%;}

.inside-1{
	position: relative;
}
.inside-1 .leftAsideMDiv {
  width: 15.2%;
  float: left;
  background-color: #f9f9f9;
  display: none!important;
  position: sticky;
  top: 0.8rem;
  position: absolute;
  z-index: 99;
  left: 0;
  overflow: hidden;
}
.inside-1 .leftAsideMDiv.leftAsideMDivshow{
	width: auto;
	max-width:15.2%;
}
.inside-1 .leftAsideMDiv.leftAsideMDivfixed{
	position: fixed;
}
.inside-1 .leftAsideMDiv .title1 {
  font-size: 0.26rem;
  line-height: 0.36rem;
  color: #fff;
  padding: 0.15rem 0.35rem;
  background: #f40002;
  font-family: "Hanchansans-Bold";
}
.inside-1 .leftAsideMDiv .title1 img {
  width: 0.58rem;
  margin-right: 0.10rem;
  display: inline-block;
  vertical-align: middle;
}
.inside-1 .classifyAside {
  font-size: 0.18rem;
  position: relative;
  z-index: 1;
  padding: 0 0.15rem;
}
.inside-1 .classifyAside .list > li {
  overflow: hidden;
  border-bottom: 1px #c4c9cc solid;
}
.inside-1 .classifyAside .list > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.inside-1 .classifyAside .list > li .title {
  position: relative;
  z-index: 1;
}
.inside-1 .classifyAside .list > li .title > a {
  display: flex;
  line-height: 0.28rem;
  font-family: "Hanchansans-Bold";
  font-size: 0.18rem;
  color: #333;
  padding: 0.15rem 0.29rem 0.15rem 0;
  position: relative;
  display: block;
}
.inside-1 .classifyAside .list > li .title > a:hover {
  color: #f40002;
}
.inside-1 .classifyAside .list .icon {
  right: 0;
  top: 0.2rem;
  border-radius: 50%;
  height: 0.24rem;
  width: 0.24rem;
  position: absolute;
}
.inside-1 .classifyAside .list .icon:after{
  content: "";
  top: 0.06rem;
  left: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  position: absolute;
  transform: rotate(45deg);
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
}
.inside-1 .classifyAside .list .active .title a {
  color: var(--main-color);
}
.inside-1 .classifyAside .list .active .title .icon:before {
  display: none;
}
.inside-1 .classifyAside .list .active .child {
  display: block;
}
.inside-1 .classifyAside .list .child {
  display: none;
  border-top: solid 1px #e3e3e3;
}
.inside-1 .classifyAside .list .has:hover .child{
	display:block;
}
.inside-1 .classifyAside .list .child .list > li {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
  position: relative;
  border-bottom: solid 1px #e3e3e3;
  z-index: 1;
}
.inside-1 .classifyAside .list .child .list > li a {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap !important;
  overflow: hidden;
  font-family: "Hanchansans-Bold";
  font-size: 0.16rem;
  color: #333;
  line-height: 0.28rem;
  padding: 0.10rem 0 0.10rem 0;
  position: relative;
}
.inside-1 .classifyAside .list .child .list > li a:hover {
  color: #f40002;
}

.inside-1 .leftAsideMDiv .mask{
	background: #f40002;
    color: #fff;
    height: 0.4rem;
    line-height: 0.44rem;
    border-bottom: 1px solid #fff;
    text-align: center;
    font-size: 0.36rem;
	cursor: pointer;
	overflow: hidden;
}
.inside-1 .leftAsideMDiv .mask a{
	width:0.5rem;
	display:block;
	margin:0 auto;
	color:#fff;
	float:right;
}

.nav .drop-news{
	position:relative;
}

.nav .drop-news .drop-2{
	top: 100%;
	left:0;
	padding-top: 0;
}

.nav .drop-news .drop-6{
	padding-left:0;
	height: auto;
	background: #F7F8F9;
}
.nav .drop-news .drop-6 .drop-2-sub>a{
	padding-left:0;
}

.nav .drop-news .drop-6:before{
  display:none;
}

.nav .drop-news .drop-6:after{
	display:none;
}

.nav .drop-news .drop-6 .drop-2-sub:hover>a:after{
	left: 0;
}

.nav .drop-8{
	width:4.5rem;
}

.nav .drop-8:after{
	display:none;
}

.nav .drop-1 .drop-8 .drop-2-sub:hover>a:after{
	content: "";
	position: absolute;
	left:0;
	bottom: 8px;
	width: 100%;
	height: 3px;
	background-color: #f40002;
}

.index-product-show .listpro {
	overflow: initial;
}
.index-product-show .listpro li .newpro{
	left: 16px;
}
.header .searchKey{
    border: 1px #999999 solid;
    background: #fff;
    color: #333;
    width: 50%;
    padding: 0 10px;
    font-size: 0.14rem;
    height: 0.36rem;
    line-height: 0.36rem;
	border-radius: 5px;
    margin-right: 0.1rem;
}

@media (max-width: 1024px) {
	.index-tabnav li{
		width:50%;
		padding-right:0;
	}
  .index-tabnav li a {
    font-size: 15px;
  }
  .inside-proshow-3 .index-tabnav li a{
	  font-size: 16px;
  }
  .index-tabnav .arrow {
    top: -5px;
    height: 24px;
    width: 24px;
  }
  .index-tabnav .arrow:after {
    top: 6px;
    left: 8px;
    width: 8px;
    height: 8px;
  }
  
  .inside-proshow-3 .list .left .wenben .pd2_list_wrap{
		display:block!important;
	}
  
	.inside-proshow-3 .list .left .wenben .pd2_list_wrap .pd2_list{
		width: 100%;
		font-size: 14px;
		margin-bottom:50px;
	}
	
	.inside-proshow-3 .list .left .wenben .pd2_list_wrap .pd2_list .table table{
		width:100%;
	}
	.inside-proshow-3 .list .right .wenben .pd2_list .table table{
		width:100%;
	}
}