@charset "utf-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  -ms-overflow-style: scrollbar;
}

html,
body {
  font-family: "Segoe UI", SegoeUI, "Microsoft YaHei", 微软雅黑,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1f1142;
  font-size: 14px;
}

.htmlOverHide {
  overflow: hidden;
}

@media (max-width: 767px) {
  html,
  body {
    font-size: 14px;
  }
}

.prism-big-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
}

.prism-player video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform-origin: center;
  -moz-transform-origin: center;
  -webkit-transform-origin: center;
  -o-transform-origin: center;
}

.prism-player .prism-big-play-btn .outter {
  width: 50px;
  height: 50px;
}
.prism-player .prism-big-play-btn {
  width: 50px;
  height: 50px;
}

/*浏览器滚动条样式*/
::-webkit-scrollbar {
  width: 4px;
  height: 1px;
}

::-webkit-scrollbar-track-piece {
  width: 4px;
  background-color: #dddada;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  width: 8px;
  background-color: #979797;
  border-radius: 6px;
}

/*全局去输入框去虚框阴影样式*/
input {
  outline: 0;
}

input:focus {
  border: 0;
}

/*全局超链接样式*/
a:focus {
  outline: 0;
}

a:link {
  text-decoration: none;
  color: #1f1142;
  font-size: 1rem;
  outline: none;
  transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
}

a:visited {
  text-decoration: none;
  color: #1f1142;
}

a:hover {
  text-decoration: none;
  color: #d43532;
}

a:active {
  text-decoration: none;
  color: #d43532;
  outline: none;
}

::-ms-clear,
::-ms-reveal {
  display: none;
}

/*在bootstrap下，全局去padding-left:15px、padding-right:15px、margin-left：-15px、margin-right:-15px，将值设为0*/
.clear_padding_left {
  padding-left: 0;
}

.clear_padding_right {
  padding-right: 0;
}

.clear_margin_left {
  margin-left: 0;
}

.clear_margin_right {
  margin-right: 0;
}

/*全局增区域顶部外部距离样式*/
.public_margin_top {
  margin-top: 80px;
}

@media (max-width: 767px) {
  .public_margin_top {
    margin-top: 45px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .public_margin_top {
    margin-top: 45px;
  }
}

/*全局超链接按钮样式*/
a.custom-btn {
  color: #fff;
  padding: 12px 30px;
  box-shadow: 2px 6px 15px rgba(255, 255, 255, 0.25);
  border-radius: 5px 5px 5px 5px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #d43532;
  background: linear-gradient(90deg, #d43532, #ea6764);
  transition: color 0.5s ease, background-color 0.5s ease, background 0.5s ease;
}

@media (max-width: 767px) {
  a.custom-btn {
    padding: 10px 20px;
  }
}

a.custom-btn:hover {
  background-color: #d43532;
  background: linear-gradient(45deg, #d43532, #ea6764);
  color: #fff;
}

/**
超链接滑块样式
*/
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff9223;
  /* border-radius: 4px; */
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: #fff;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/*超链按钮接样式*/
a.button-gradient {
  position: relative;
  z-index: 1;
  border-radius: 25px 25px 0 25px;
  padding: 12px 35px;
  color: #fff;
  display: inline-block;
  text-align: center;
}
a.button-gradient:link,
a.button-gradient:visited,
a.button-gradient:hover,
a.button-gradient:active,
a.button-gradient:focus {
  color: #fff;
}
@media (max-width: 767px) {
  a.button-gradient {
    padding: 10px 30px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  a.button-gradient {
    padding: 10px 30px;
    width: 100%;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  a.button-gradient {
    padding: 12px 30px;
  }
}

a.button-gradient:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px 25px 0 25px;
  background: linear-gradient(90deg, #d43532, #ea6764);
  z-index: -1;
  transition: opacity 0.5s ease;
}

a.button-gradient:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px 25px 0 25px;
  background: linear-gradient(-90deg, #d43532, #ea6764);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
a.button-gradient:hover:before {
  opacity: 0;
  color: #fff;
  transition: opacity 0.5s ease;
}
a.button-gradient:hover:after {
  opacity: 1;
  color: #fff;
  transition: opacity 0.5s ease;
}

/*发光动画*/
@-webkit-keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(245, 0, 0, 0.3),
      0 0 0 8px rgba(245, 0, 0, 0.3);
    box-shadow: 0 0 0 0 rgba(245, 0, 0, 0.3), 0 0 0 8px rgba(245, 0, 0, 0.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(245, 0, 0, 0.3),
      0 0 0 15px rgba(245, 0, 0, 0);
    box-shadow: 0 0 0 8px rgba(245, 0, 0, 0.3), 0 0 0 15px rgba(245, 0, 0, 0);
  }
}

@keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(245, 0, 0, 0.4),
      0 0 0 8px rgba(245, 0, 0, 0.4);
    box-shadow: 0 0 0 0 rgba(245, 0, 0, 0.4), 0 0 0 8px rgba(245, 0, 0, 0.4);
  }

  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(245, 0, 0, 0.4),
      0 0 0 15px rgba(245, 0, 0, 0);
    box-shadow: 0 0 0 8px rgba(245, 0, 0, 0.4), 0 0 0 15px rgba(245, 0, 0, 0);
  }
}

/*
*点自由移动动画
*/
@keyframes animOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(75deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(35deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(75deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(110deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(145deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@-webkit-keyframes animTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@keyframes animThree {
  0% {
    transform: translate(165px, -179px);
  }
  100% {
    transform: translate(-346px, 617px);
  }
}

@-webkit-keyframes animThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
  }
}

@keyframes animFour {
  0% {
    transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    transform: translate(251px, -200px) rotate(180deg);
  }
}

@-webkit-keyframes animFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}

@keyframes animFive {
  0% {
    transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    transform: translate(-1px, 0px) rotate(180deg);
  }
}

@-webkit-keyframes animFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
  }
}

/*抖动动画*/
@-webkit-keyframes hover {
  0% {
    webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    -webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
  }
  25% {
    webkit-transform: translateY(-6.25px);
    -webkit-transform: translateY(-6.25px);
    transform: translateY(-6.25px);
    webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    -webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
  }
  50% {
    webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    -webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
  }
  75% {
    webkit-transform: translateY(6.25px);
    -webkit-transform: translateY(6.25px);
    transform: translateY(6.25px);
    webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    -webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
  }
  100% {
    webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hover {
  0% {
    webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    -webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
  }
  25% {
    webkit-transform: translateY(-6.25px);
    -webkit-transform: translateY(-6.25px);
    transform: translateY(-6.25px);
    webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    -webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
  }
  50% {
    webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    -webkit-animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
    animation-timing-function: cubic-bezier(0.3, 0.36, 0.6, 1);
  }
  75% {
    webkit-transform: translateY(6.25px);
    -webkit-transform: translateY(6.25px);
    transform: translateY(6.25px);
    webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    -webkit-animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
    animation-timing-function: cubic-bezier(0.51, -0.05, 0.85, 0.82);
  }
  100% {
    webkit-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*全局一级标题字号*/
.h1title {
  font-size: 2.5rem;
}

@media (max-width: 767px) {
  .h1title {
    font-size: 1.5rem;
  }
}

/*全局body区域一级标题字号*/
.bodyh1title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 15px 0 25px 0;
  color: rgba(31, 17, 66, 0.75);
}

@media (max-width: 767px) {
  .bodyh1title {
    font-size: 1.2rem;
    margin: 15px 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .bodyh1title {
    font-size: 1.6rem;
  }
}

/*全局二级标题字号*/
.bodyh2title {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(31, 17, 66, 0.7);
}

@media (max-width: 767px) {
  .bodyh2title {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .bodyh2title {
    font-size: 1.6rem;
  }
}

/*全局三级标题字号*/
.bodyh3title {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(31, 17, 66, 0.7);
}

@media (max-width: 767px) {
  .bodyh3title {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .bodyh3title {
    font-size: 1.3rem;
  }
}

/*全局用分割线*/
.split_line {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.08);
  margin: 12px auto 12px auto;
}

/*全局正文_文字*/
.article_text {
  font-size: 1.1rem;
  line-height: 30px;
  color: rgba(31, 17, 66, 0.7);
}

@media (max-width: 767px) {
  .article_text {
    font-size: 1rem;
    line-height: 25px;
  }
}

/*阴影边框*/
.shadowborder {
  box-shadow: 1px 1px 40px 0 rgba(0, 0, 0, 0.15);
}

/*弹层_start*/
.layui-m-layerchild.customlayer {
  font-size: 1rem;
  border-radius: 5px;
  color: rgba(31, 17, 66, 0.7);
  background-color: #17161b;
  overflow: hidden;
}

@media (max-width: 767px) {
  .layui-m-layerchild.customlayer {
    font-size: 0.875rem;
  }
}
.layui-m-layerchild.customlayer h3 {
  border-radius: 0;
  background-color: #ff9223;
  color: #fff;
  font-weight: 800;
}

.layui-m-layerchild.customlayer .layui-m-layercont {
  padding: 30px 50px 30px 50px;
}

@media (max-width: 767px) {
  .layui-m-layerchild.customlayer .layui-m-layercont {
    padding: 15px 20px;
  }
}

.layui-m-layerchild.customlayer .titles {
  text-align: left;
  font-size: 1rem;
  color: rgba(31, 17, 66, 0.7);
}

.layui-m-layerchild.customlayer .inpubox {
  border-bottom: 1px solid rgba(228, 228, 228, 0.8);
  margin-bottom: 2px;
  position: relative;
}

@media (max-width: 767px) {
  .layui-m-layerchild.customlayer .inpubox {
    margin-bottom: 3px;
  }
}

.layui-m-layerchild.customlayer .inpubox .vaildatevode {
  position: absolute;
  right: -5px;
  bottom: 3px;
  border: 0;
  color: #ff9223;
  background: none;
  /* font-size: 1rem; */
}

/* @media (max-width: 767px) {
  .layui-m-layerchild.customlayer .inpubox .vaildatevode {
    font-size: 0.875rem;
  }
} */

.layui-m-layerchild.customlayer .msgprompt {
  text-align: left;
  color: #ff9223;
  height: 20px;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.layui-m-layerchild.customlayer .msgprompt .iconfont {
  font-size: 0.875rem;
  color: #ff9223;
}
.layui-m-layerchild.customlayer .msgprompt span {
  color: #ff9223;
}

.layui-m-layerchild.customlayer .formlayerinput,
.layui-m-layerchild.customlayer .formlayertextarea {
  border: none;
  width: 100%;
  outline: none;
  color: rgba(31, 17, 66, 0.7);
  margin: 0;
  padding: 0;
  height: 25px;
  resize: none;
  line-height: 25px;
}

.layui-m-layerchild.customlayer .formlayertextarea.resetarea {
  resize: none;
  height: 30px;
}
.layui-m-layerchild.customlayer .layui-m-layerbtn span {
  font-size: 1rem;
}

/* @media (max-width: 767px) {
  .layui-m-layerchild.customlayer .layui-m-layerbtn span {
    font-size: 0.875rem;
  }
} */

.layui-m-layerchild.customlayer .layui-m-layerbtn span[yes] {
  color: #ff9223;
  transition: color 0.5s ease;
}

.layui-m-layerchild.customlayer .layui-m-layerbtn span[yes]:hover {
  color: #ff9223;
}

.layui-m-layerchild.customlayer .layui-m-layerbtn span[no] {
  color: rgba(31, 17, 66, 0.7);
}
.layui-m-layerchild.customlayer a.link_a {
  color: #ff9223;
  font-weight: 800;
  font-size: 1.3rem;
}
.layui-m-layerchild.customlayer a.link_a:hover {
  color: #ff9223;
}
/*弹层_end*/

/*主体区域容器_start*/
.ny_body_main_container {
  width: 100%;
  padding-left: 225px;
  padding-right: 225px;
}

@media (max-width: 767px) {
  .ny_body_main_container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ny_body_main_container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .ny_body_main_container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (min-width: 1200px) and (max-width: 1280px) {
  .ny_body_main_container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (min-width: 1281px) and (max-width: 1290px) {
  .ny_body_main_container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (min-width: 1291px) and (max-width: 1360px) {
  .ny_body_main_container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (min-width: 1361px) and (max-width: 1560px) {
  .ny_body_main_container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

/*主体区域容器_end*/

/*..... pc_Navigate ......*/
.ny_pc_main_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1118;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 10px -10px rgba(0, 0, 0, 0.6);
  transition: background-color 0.5s ease, box-shadow 0.5s ease,
    padding-top 0.5s ease, padding-bottom 0.5s ease;
}

@media (min-width: 1361px) and (max-width: 1560px) {
  .ny_body_main_container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (max-width: 1360px) and (min-width: 1291px) {
  .ny_pc_main_nav {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (min-width: 1281px) and (max-width: 1290px) {
  .ny_pc_main_nav {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 1280px) and (min-width: 1200px) {
  .ny_pc_main_nav {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .ny_pc_main_nav {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.ny_pc_main_nav .nav_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.ny_pc_main_nav .nav_row .logo_area {
  padding: 0 0;
}
.ny_pc_main_nav .nav_container {
  position: relative;
  width: 100%;
}

.ny_pc_main_nav .nav_container > ul {
  font-size: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ny_pc_main_nav .nav_container > ul > li {
  position: relative;
  padding: 0 25px 0 25px;
  color: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

@media (max-width: 1360px) and (min-width: 1291px) {
  .ny_pc_main_nav .nav_container > ul > li {
    padding: 0 20px 0 20px;
  }
}

@media (min-width: 1281px) and (max-width: 1290px) {
  .ny_pc_main_nav .nav_container > ul > li {
    padding: 0 20px 0 20px;
  }
}

@media (max-width: 1280px) and (min-width: 1200px) {
  .ny_pc_main_nav .nav_container > ul > li {
    padding: 0 20px 0 20px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .ny_pc_main_nav .nav_container > ul > li {
    padding: 0 13px 0 13px;
  }
}

.ny_pc_main_nav .nav_container > ul > li .re_nav_link {
  font-size: 1.1rem;
  display: block;
  color: rgba(31, 17, 66, 1);
}

.ny_pc_main_nav .nav_container > ul > li:hover .re_nav_link {
  -moz-transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
  color: #d43532;
}

/*顶部电话*/
.ny_pc_main_nav .nav_container > ul > li.phone_c {
  padding-right: 0;
}

.ny_pc_main_nav .nav_container > ul > li.phone_c .bg_phone_c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.ny_pc_main_nav .nav_container > ul > li.phone_c .iconfont {
  font-size: 1.1rem;
  color: #d43532;
}

.ny_pc_main_nav .nav_container > ul > li.phone_c .phone {
  margin-left: 5px;
}

.ny_pc_main_nav .nav_container > ul > li.phone_c .phone a {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #d43532;
  cursor: default;
}
.ny_pc_main_nav .nav_container > ul > li.phone_c .phone a:hover {
  color: #d43532;
}

/*下拉菜单*/
.ny_pc_main_nav .nav_container > ul > li.sub_arrow_c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.ny_pc_main_nav .nav_container > ul > li.sub_arrow_c .sub_arrow {
  display: inline-block;
  border: solid rgba(31, 17, 66, 0.75);
  border-width: 0 2px 2px 0;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  position: relative;
  top: -1px;
  left: 6px;
  cursor: pointer;
  transition: transform 0.5s ease, border 0.5s ease, border-width 0.5s ease;
}

.ny_pc_main_nav .nav_container > ul > li.sub_arrow_c:hover .sub_arrow {
  border: solid #d43532;
  border-width: 0 2px 2px 0;
  /* border-width: 2px 0 0 2px; */
  /*transform: rotate(-135deg); */
}

.ny_pc_main_nav .nav_container > ul > li .showlayer_c {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 100%;
  cursor: default;
  white-space: nowrap;
  z-index: 1120;
  -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  -o-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ny_pc_main_nav .nav_container > ul > li .showlayer_c .drop_down_area {
  position: relative;
  box-shadow: 0px 0px 15px rgba(17, 58, 93, 0.25);
  background-color: #fff;
  border-radius: 8px;
  margin-top: 65px;
  transition: margin-top 0.5s ease;
}

.ny_pc_main_nav .nav_container > ul > li .showlayer_c .drop_down_area.arrow {
  position: relative;
}
.ny_pc_main_nav
  .nav_container
  > ul
  > li
  .showlayer_c
  .drop_down_area.arrow:before {
  content: "";
  position: absolute;
  background: #ffffff;
  display: block;
  height: 12px;
  width: 12px;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
  -webkit-transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
  -moz-transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
  -ms-transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
  -o-transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
}
.drop_ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  /* flex-wrap: wrap; */
  flex-direction: column;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.drop_ul li {
  padding: 10px 40px 10px 40px;
  color: rgba(31, 17, 66, 0.7);
  font-size: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(31, 17, 66, 0.12);
  transition: background-color 0.5s ease;
}
.drop_ul li.nobottomline {
  border-bottom: 0;
}
.drop_ul li .imgc {
  margin-right: 5px;
  margin-top: 1px;
  border-radius: 3px;
}

.drop_ul li.current_bg {
  background-color: #0c5adb;
}
.drop_ul li.current_bg .link.re_drop_link {
  color: #fff;
}
.drop_ul li .link.re_drop_link {
  color: rgba(31, 17, 66, 0.7);
  font-size: 1rem;
}

.drop_ul li:hover .link.re_drop_link {
  color: #fff;
}
.drop_ul li:hover {
  color: #fff;
  background-color: #0c5adb;
}

.ny_pc_main_nav .nav_container > ul > li:hover .showlayer_c {
  opacity: 1;
  visibility: visible;
  -moz-transition: opacity 0.5s ease, visibility 0.5s ease;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  -o-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ny_pc_main_nav .nav_container > ul > li:hover .drop_down_area {
  margin-top: 45px;
  transition: margin-top 0.5s ease;
}

.ny_pc_main_nav .nav_container > ul > li > .search_area .s_text {
  color: rgba(31, 17, 66, 0.7);
  margin-right: 8px;
  padding: 5px 68px 5px 18px;
  border: 0;
  background: none;
  outline: 0 none;
  font-size: 0.875rem;
  width: 100%;
  height: 35px;
}

@media (max-width: 767px) {
  .ny_pc_main_nav .nav_container > ul > li > .search_area .s_text {
    width: 100%;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .ny_pc_main_nav .nav_container > ul > li > .search_area .s_text {
    width: 100%;
  }
}

/*PC端导航条滑出样式*/
.ny_pc_main_nav.ny_pc_main_nav_fixed {
  position: fixed;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(255, 255, 255, 1);
  /* box-shadow: 0px 5px 15px 0px rgba(17, 58, 93, 0.35); */
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.6);
}

/*移动端顶部导航条_start*/
.ny_mobile_main_nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 168;
  background-color: rgba(255, 255, 255, 1);
  padding-right: 15px;
  padding-left: 15px;
  /* box-shadow: 0px 5px 15px 0px rgba(17, 58, 93, 0.15); */
  /* box-shadow: 0 3px 10px -5px rgb(0, 0, 0, 0.6); */
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

.ny_mobile_main_nav.ny_mobile_main_nav_fixed {
  position: fixed;
  padding-top: 0;
  /* box-shadow: 0px 5px 15px 0px rgba(17, 58, 93, 0.2); */
  background-color: rgba(255, 255, 255, 1);
}

.ny_mobile_main_nav > .mobile_parent_nav_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.ny_mobile_main_nav > .mobile_parent_nav_container .mobile_top_icon {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.ny_mobile_main_nav > .mobile_parent_nav_container .mobile_top_icon .iconfont {
  color: rgba(31, 17, 66, 1);
  font-size: 1.3rem;
}
.ny_mobile_main_nav > .mobile_parent_nav_container .mobile_logo_area {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0px;
}

.ny_mobile_main_nav > .mobile_parent_nav_container .menu_btn {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.ny_mobile_main_nav > .mobile_parent_nav_container .menu_btn .btnline {
  width: 25px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ny_mobile_main_nav > .mobile_parent_nav_container .menu_btn .btnline span {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(31, 17, 66, 1);
}

.ny_mobile_main_nav
  > .mobile_parent_nav_container
  .menu_btn
  .btnline
  span:before,
.ny_mobile_main_nav
  > .mobile_parent_nav_container
  .menu_btn
  .btnline
  span:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(31, 17, 66, 1);
}

.ny_mobile_main_nav
  > .mobile_parent_nav_container
  .menu_btn
  .btnline
  span:before {
  transform: translate(15%, -8px);
  -ms-transform: translate(15%, -8px);
  -moz-transform: translate(15%, -8px);
  -webkit-transform: translate(15%, -8px);
  -o-transform: translate(15%, -8px);
}

.ny_mobile_main_nav
  > .mobile_parent_nav_container
  .menu_btn
  .btnline
  span:after {
  transform: translate(15%, 7px);
  -ms-transform: translate(15%, 7px);
  -moz-transform: translate(15%, 7px);
  -webkit-transform: translate(15%, 7px);
  -o-transform: translate(15%, 7px);
}

/*移动端右侧滑出菜单_start*/

/*移动端右侧滑出菜单遮照层*/
.menu_overlayer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

/*移动端右侧滑出菜单遮照层出现*/
.menu_overlayer_show {
  left: 0;
}

/*移动端右侧滑出菜单容器*/
.menu_box {
  position: absolute;
  top: 90px;
  right: 15px;
  width: 160px;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
  background-color: #fff;
  word-break: break-all;
  -moz-transition: top 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  -webkit-transition: top 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  -o-transition: top 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  transition: top 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  border-radius: 8px;
  box-shadow: -1px 3px 20px 0px rgba(77, 93, 116, 0.15);
  padding: 8px 0;
}

.menu_box.arrow:before {
  content: "";
  position: absolute;
  background: #ffffff;
  display: block;
  height: 12px;
  width: 12px;
  top: -5px;
  right: 3px;
  transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
  -webkit-transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
  -moz-transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
  -ms-transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
  -o-transform: translateX(-50%) rotate(128deg) skew(-6deg, 10deg);
}

.menu_box.show_menu_box {
  top: 60px;
  opacity: 1;
  visibility: visible;
  box-shadow: 1px 1px 40px 0 rgba(0, 0, 0, 0.15);
}

/*移动端右侧滑出菜单容器显示*/
.menu_box_show {
  right: 0;
  -moz-transition: right 0.25s ease;
  -webkit-transition: right 0.25s ease;
  -o-transition: right 0.25s ease;
  transition: right 0.25s ease;
}

/*移动端右侧滑出菜单列表*/
.menu_box .menu_list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu_box .menu_list ul {
  width: 100%;
}
.menu_box .menu_list ul li .firstele {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.menu_box .menu_list ul li {
  padding: 10px 18px 10px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(31, 17, 66, 0.12);
}
.menu_box .menu_list ul li .plusele {
  font-weight: normal;
}
.menu_box .menu_list ul li .sublist {
  margin-top: 10px;
  padding-left: 10px;
}

.menu_box .menu_list ul li .sublist.hide {
  display: none;
}

.menu_box .menu_list ul li .sublist a.links {
  font-weight: normal;
  padding: 2px 0;
  display: block;
  /* font-size: 1rem; */
}
.menu_box .menu_list ul li .sublist a.links:hover {
  color: #0252b3;
}
.menu_box .menu_list ul li.nonebottom {
  border-bottom: 0 solid rgba(0, 0, 0, 0.18);
}
.menu_box .menu_list ul li a {
  font-size: 1.2rem;
  /*   font-weight: 800; */
  color: rgba(31, 17, 66, 0.7);
  transition: color 0.5s ease;
}

.menu_box .menu_list ul li a:hover {
  color: #ff9223;
}

/*内页banner*/
.inner_page_banner {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  height: 50%;
  /* margin-top: 75px; */
  display: flex;
  align-items: center;
}

.inner_page_banner::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 17, 66, 0.48);
}

@media (max-width: 767px) {
  .inner_page_banner {
    /*   margin-top: 44px; */
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .inner_page_banner {
    /*   margin-top: 44px; */
  }
}

.inner_page_banner .showtxt .h1title {
  color: rgba(255, 255, 255, 1);
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(88, 88, 88, 0.95);
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .inner_page_banner .showtxt .h1title {
    font-size: 1.6rem;
  }
}

.inner_page_banner .showtxt .h3title {
  color: rgba(255, 255, 255, 1);
  text-shadow: 1px 1px 2px rgba(88, 88, 88, 0.95);
  margin: 15px auto 0 auto;
  line-height: 22px;
  text-align: center;
}

@media (max-width: 767px) {
  .inner_page_banner .showtxt .h3title {
    font-size: 1.1rem;
  }
}

.bodyh1title.re_inner_bodyh1title {
  font-weight: 800;
  font-size: 3rem;
  /* text-shadow: 1px 1px 2px rgb(31, 17, 66, 0.65); */
  text-transform: uppercase;
  text-align: center;
  margin: 30px auto;
  color: inherit;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 767px) {
  .bodyh1title.re_inner_bodyh1title {
    font-size: 2.5rem;
    margin: 20px auto;
  }
}

.bodyh3title.re_inner_bodyh3title {
  text-transform: uppercase;
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 26px;
  font-weight: normal;
}

/**
*底部
*/
.footerbg {
  background-color: #3a3939;
  background: linear-gradient(to top, rgb(35, 35, 35), #5d5d5d);
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
  .footerbg {
    margin-top: 40px;
  }
}

.footer_container {
  padding: 65px 15px 30px 15px;
}

@media (max-width: 767px) {
  .footer_container {
    padding: 35px 15px 45px 15px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .footer_container {
    padding: 35px 15px 45px 15px;
  }
}

.footer_container .sub_title {
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.footer_container .split_line.re_bottom_split_line {
  background-color: rgba(255, 255, 255, 0.2);
  width: 60%;
  margin: 15px auto 15px auto;
}

@media (max-width: 767px) {
  .footer_container .split_line.re_bottom_split_line {
    width: 90%;
  }
}

.footer_container .split_line.re_bottom_split_line.re_change {
  width: 95%;
}

.footer_container .item_li {
  margin: 15px auto;
  text-align: center;
}

.footer_container .link.re_bottom_link {
  color: rgba(255, 255, 255, 0.7);
}
.footer_container .link.re_bottom_link:hover {
  color: #d43532;
}

.footer_container .ulc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .footer_container .ulc {
    display: block;
  }
}

.footer_container .ulc .c_li {
  margin: 0 15px;
}

@media (max-width: 767px) {
  .footer_container .ulc .c_li {
    margin-bottom: 25px;
  }
}

.footer_container .ulc .c_li img {
  border-radius: 8px;
}
.footer_container .ulc .c_li .titlename {
  text-align: center;
  margin: 15px auto;
}

.footer_container .contactinfo .contact_li {
  text-align: center;
  margin-bottom: 10px;
}

.footer_container .contactinfo .contact_li span {
  display: block;
  font-size: 0;
}

.footer_container .contactinfo .contact_li span.textc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer_container .contactinfo .contact_li .iconfont {
  font-size: 1.8rem;
}

/*底部版权*/
.footer_container .footer_copyright {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .footer_container .footer_copyright {
    margin-top: 10px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .footer_container .footer_copyright {
    margin-top: 15px;
  }
}

.footer_container .footer_copyright .split_line.re_copyright_split_line {
  background-color: rgba(255, 255, 255, 0.15);
}

.footer_container .copyright {
  padding: 5px 0 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
}

.footer_container .copyright a.link.re_copyright_link {
  color: rgba(255, 255, 255, 0.25);
}

.footer_container .copyright a.link.re_copyright_link:hover {
  color: #ff9933;
}
/*底部_end*/

/*PC端右侧客服栏_start*/
.right_fixed_tool {
  position: fixed;
  /* top: 50%;
  transform: translateY(-50%); */
  bottom: 100px;
  right: 15px;
  z-index: 180;
  width: 55px;
  opacity: 0.98;
  background: #d43532;
  border-radius: 8px;
  box-shadow: 0px 0px 30px #f44336;
}

.right_fixed_tool > ul > li {
  position: relative;
  text-align: center;
  padding: 5px 0;
  width: 55px;
  height: 55px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.right_fixed_tool > ul > li .icon_item .iconfont {
  color: #fff;
  font-size: 1.5rem;
}

/* .right_fixed_tool > ul > li:hover {
  background-color: #ff9223;
} */

.right_fixed_tool > ul > li .infobox {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 25px;
  transition: padding-right 0.5s ease;
}
.right_fixed_tool > ul > li:hover .infobox {
  padding-right: 15px;
}
.right_fixed_tool > ul > li .infobox .subbox {
  position: relative;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  box-shadow: 0px 0 20px 0px rgba(53, 53, 53, 0.35);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.right_fixed_tool > ul > li .infobox .subbox.change_subbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
}
.right_fixed_tool > ul > li .infobox .subbox.change_subbox .itemc .iconfont {
  font-size: 2.5rem;
  color: #1479d7;
}
.right_fixed_tool > ul > li:hover .infobox .subbox {
  opacity: 1;
  visibility: visible;
}

.right_fixed_tool > ul > li .infobox .subbox::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(132deg);
  right: -4px;
  background-color: #fff;
  box-shadow: -6px -6px 15px rgba(0, 0, 0, 0.1);
}

.right_fixed_tool > ul > li .infobox .subbox .imgc {
  border-radius: 8px;
  overflow: hidden;
}
.right_fixed_tool > ul > li .infobox .subbox .title_name {
  padding-top: 5px;
  padding-bottom: 5px;
  color: rgba(31, 17, 66, 0.7);
}
.right_fixed_tool > ul > li .infobox .subbox .phone_text {
  padding: 0 15px;
  color: rgba(31, 17, 66, 0.85);
  font-weight: 800;
  font-size: 1.2rem;
}
.right_fixed_tool > ul > li .infobox .subbox .phonec {
  padding: 0 15px;
  color: rgba(31, 17, 66, 0.75);
  font-size: 1.2rem;
  font-weight: 800;
}

.right_fixed_tool .icon_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right_fixed_tool .icon_item .iconfont {
  font-size: 2rem;
}
/*PC端右侧客服栏_end*/

/*移动端底部客服栏_start*/
.bottom_fixed_tool {
  position: fixed;
  bottom: 0;
  z-index: 180;
  width: 100%;
  opacity: 0.98;
  background: #1479d7;
  color: #fff;
  box-shadow: 0px -8px 15px 0px rgba(53, 53, 53, 0.45);
}
.bottom_fixed_tool .ul_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom_fixed_tool .ul_container li {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 0 8px 0;
  flex: 1;
}

.bottom_fixed_tool .ul_container li.none_border_right {
  border-right: 0;
}

.bottom_fixed_tool .ul_container li .item_c {
  text-align: center;
  line-height: 18px;
}
.bottom_fixed_tool .ul_container li .item_c.textc {
  font-size: 0.75rem;
}
.bottom_fixed_tool .ul_container li .item_c .iconfont {
  font-size: 1.3rem;
}
/*移动端底部客服栏_end*/

/*分页样式start*/
.jogger {
  padding: 8px 0;
  margin: 0 auto;
}

.jogger a {
  padding: 6px 10px 6px 10px;
  margin: 2px;
  color: #fff;
  background-color: #818384;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.jogger a:hover {
  padding: 6px 10px 6px 10px;
  margin: 2px;
  color: #6d643c;
  background-color: #ccc;
  border-radius: 4px;
}

.jogger a:active {
  padding: 6px 10px 6px 10px;
  margin: 2px;
  color: #6d643c;
  background-color: #ccc;
}

.jogger span.currentpage {
  padding: 6px 10px 6px 10px;
  margin: 2px;
  color: #6d643c;
  background-color: #ccc;
  border-radius: 4px;
  font-size: 14px;
}
/*end*/

.pages3 {
  text-align: center;
  margin: 25px auto 0 auto;
  overflow: hidden;

  overflow: hidden;
}
@media (max-width: 767px) {
  .pages3 {
    margin: 0 auto 0 auto;
  }
}
.row_conainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/*内页公共样式*/
.bodyh1title.re_bodyh1title {
  position: relative;
  text-align: center;
}
.bodyh1title .tipspan {
  color: #0c5adb;
}

.bodyh3title.re_bodyh3title {
  text-transform: uppercase;
  text-align: center;
  color: #0c5adb;
  font-size: 1.1rem;
  letter-spacing: 5px;
  font-family: "Muli", sans-serif;
}

.split_line.re_split_line {
  position: relative;
}

.split_line.re_split_line.pro_re_split_line {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .split_line.re_split_line.pro_re_split_line {
    margin-bottom: 15px;
  }
}

.split_line.re_split_line .posline {
  position: absolute;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 4px;
  background-color: #d43532;
  margin-top: -2px;
}

.article_text.re_article_text {
  text-align: center;
}

.more_btnc.re_more_btnc {
  text-align: center;
  margin-top: 55px;
}

@media (max-width: 767px) {
  .more_btnc.re_more_btnc {
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .more_btnc.re_more_btnc {
    margin-top: 20px;
  }
}

/*内页公共样式*/
.left_content {
  border-radius: 5px;
  /* box-shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.025); */
  background-color: #fff;
  overflow: hidden;
}

@media (max-width: 767px) {
  .left_content {
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .left_content {
    margin-bottom: 15px;
  }
}

.left_content .h2title.re_left_content_h2title {
  font-weight: 800;
  text-align: center;
  padding: 15px 15px;
  background-color: #0c5adb;
  color: #fff;
}

@media (max-width: 767px) {
  .left_content .h2title.re_left_content_h2title {
    font-size: 1.2rem;
  }
}
.left_content .ul_lists {
  padding: 18px 40px;
}

@media (max-width: 767px) {
  .left_content .ul_lists {
    padding: 15px 15px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .left_content .ul_lists {
    padding: 15px 15px;
  }
}

.left_content .ul_lists li {
  padding: 12px 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .left_content .ul_lists li {
    padding: 8px 0;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .left_content .ul_lists li {
    padding: 8px 0;
  }
}

.left_content .ul_lists li.nobottomborder {
  border-bottom: 0 solid rgba(0, 0, 0, 0.045);
}
.left_content .ul_lists li.memeberlist {
  border-bottom: none;
}
.left_content .ul_lists li.memeberlist .lis {
  margin-top: 10px;
}
.left_content .ul_lists li.memeberlist .lis li {
  border: none;
  padding: 10px 0;
}

.left_content .ul_lists li a.currentlinkcolor {
  color: #d43532;
}

.left_content .ul_lists li a:hover {
  color: #d43532;
}
