* {
  box-sizing: border-box !important;
  font-family:'Microsoft YaHei','微软雅黑',"Arial"!important;
  word-break: break-word !important;
}
body{
  overflow-x: hidden !important;
}
a {
  cursor: pointer;
  text-decoration: none !important;
}
a:focus,
a:active,
a:hover,
a:visited {
  outline: none !important;
  text-decoration: none !important;
}
i {
  font-style: normal;
}
/* scrollbar css */
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 4px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #d7d7d7;
  border-radius: 6px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--wy_Color);
  border-radius: 6px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--wy_Color);
}
/*end*/
.wy_iconfont {
  font-family: 'iconfont' !important;
}
.w_grid-000>div>.p_gridbox {
  overflow: visible;
}
.w_grid-000>div>.p_gridbox:before,
.w_grid-000>div>.p_gridbox:after {
  clear: both;
  display: table;
  content: " ";
  min-height: 0px;
}
/*文字*/
:root {
  --wy_FS_BannerBig: 60px;
  --wy_FSOne: 40px;
  --wy_FSTwo: 38px;
  --wy_FSThree: 30px;
  --wy_FSFour: 20px;
  --wy_FSFive: 18px;
  --wy_FSSix: 16px;
  --wy_Color: #c9151e;
}
h1 span,
h1 * {
  font-size: var(--wy_FSOne) !important;
}
h2 span,
h2 * {
  font-size: var(--wy_FSTwo) !important;
}
h3 span {
  font-size: var(--wy_FSThree) !important;
}
h4 span,
h4 * {
  font-size: var(--wy_FSFour) !important;
}
h5 span,
h5 * {
  font-size: var(--wy_FSFive) !important;
}
h6 span,
h6 * {
  font-size: var(--wy_FSSix) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal !important;
}
a:active,
a:hover {
  color: var(--wy_Color);
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--wy_Color);
  text-decoration: underline;
}

.background_info {
  background: #f7f7f7;
}
.borderT_default {
  border-top: 1px solid #eee;
}
.wy_animation{
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  /* Firefox 4 */
  -webkit-transition: all 0.3s;
  /* Safari 和 Chrome */
  -o-transition: all 0.3s;
  /* Opera */
}
.wy_all * {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 和 Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}
.wy_all *:before {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 和 Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}
.wy_all *:after {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 和 Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}
.wy_Clear:before,
.wy_Clear:after {
  display: table;
  clear: both;
  content: "";
}
/*通用*/
.wy_Width {
  margin: 0 auto;
  width: 94%;
  max-width: 1200px;
}
.wy_floatL {
  float: left;
}
.wy_floatR {
  float: right;
}
.wy_positionR {
  position: relative;
}
.wy_positionA {
  position: absolute;
}
.wy_Title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wy_Summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
/*Flex弹性布局*/
.wy_flex {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wy_flexWrap {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}
.wy_flexJbetween {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.wy_flexJend {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.wy_flexJcenter {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.wy_flexAend {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.wy_flexAcenter {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
/*end*/
/*图片样式*/
.wy_ImgContain,
.wy_ImgCover {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.wy_ImgContain img {
  position: absolute;
  max-height: 100%;
  max-width: 100%;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.wy_ImgCover img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*end*/
/*内页banner鼠标效果*/
.wy_Scroll_icon {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 45px;
  width: 28px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  border: solid 2px;
  -webkit-transition: .4s;
  transition: .4s;
  margin: 6% 0 0 !important
}
.wy_Scroll_icon::after {
  content: '';
  width: 5px;
  height: 2px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-animation: scroll-icon 2.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
  animation: scroll-icon 2.2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
}
@keyframes scroll-icon {
  0% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    opacity: 0;
  }
  30%,
  70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
    opacity: 0;
  }
}
/*end*/
/*内页分类导航*/
.wy_PageNav {
  margin: var(--wy_FSSix) 0;
}
.wy_PageNav a {
  display: block;
  line-height: 48px;
  color: #fff;
  margin: 5px 14px 5px 0px;
  padding: 0 calc(1vw + 14px);
  background: #00aff0;
  transition: all 0.6s ease;
}
.wy_PageNav a:hover {
  background: #f56e22;
  transition: all 0.6s ease;
  color: #fff;
}
.wy_PageNav .wy_Click {
  background: #f56e22 !important;
  color: #fff !important;
}
.p_problemCategory .p_image {
  display: none;
}
.p_categoryBox .p_linkBox.click {
  background: #f5f5f5;
  color: var(--wy_Color);
}
.mouse_bac:hover {
  background: #f5f5f5;
  color: var(--wy_Color);
}
.p_categoryBox .p_linkBox.click .color_assist,
.p_categoryBox .p_linkBox.click a {
  color: var(--wy_Color);
}
/*end*/
/*table样式*/
.wy_Table {
  overflow: auto;
}
table {
  min-width: 768px !important;
  background: #f7f7f7 !important;
  border: 1px solid #eee !important;
}
table * {
  text-align: center !important;
}
table th {
  background: var(--wy_Color) !important;
}
table th * {
  color: #fff !important;
}
table td {
  padding: 6px 0;
}
/*end*/
/*表单设置*/
input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #ccc;
  font-size: 14px;
}
input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ccc;
  font-size: 14px;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ccc;
  font-size: 14px;
}
input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #ccc;
  font-size: 14px;
}
/*end*/
@media only screen and (min-width:769px) {
  .wy_List4 {
    display: block;
    width: calc((100% - 105px) / 4);
    margin-right: 35px;
    margin-bottom: 35px;
  }
  .wy_List4:nth-child(4n) {
    margin-right: 0;
  }
  .wy_List3 {
    display: block;
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .wy_List3:nth-child(3n) {
    margin-right: 0;
  }
  .p_problemCategory {
    display: none;
  }
}
@media only screen and (max-width:768px) {
  .p_problemCategory {
    display: block;
  }
  .wy_PageNav_Box {
    display: none !important;
  }
  .wy_List3 {
    display: block;
    width: 100% !important;
    margin-right: 0px;
    margin-bottom: 18px;
  }
  .wy_List4 {
    display: block;
    width: calc((100% - 10px) / 2) !important;
    margin-right:10px;
    margin-bottom:10px;
  }
  .wy_List4:nth-child(2n) {
    margin-right: 0;
  }
}
/*页码*/
@media only screen and (min-width: 769px) {
  .p_page .pre {
    display: inline-table;
    position: relative;
    left: 0;
    top: 0;
    float: left;
    height: 38px;
    margin: 0 5px 0 18px;
    text-align: center;
    padding: 0 10px;
    border-radius: 0px;
    border: 1px solid #f0f0f0;
    background: #f0f0f0;
    color: #333;
  }
  .p_page .pre:active {
    background: var(--wy_Color);
    border-color: var(--wy_Color);
    color: #fff;
  }
  .p_page .pre:hover {
    color: #fff;
    background: var(--wy_Color);
    border-color: var(--wy_Color);
    cursor: pointer;
  }
  .p_page .next {
    display: inline-table;
    position: relative;
    left: 0;
    top: 0;
    float: left;
    height: 38px;
    border: 1px solid #f0f0f0;
    background: #f0f0f0;
    color: #333;
    text-align: center;
    padding: 0 10px;
    border-radius: 0px;
  }
  .p_page .next:active {
    background: var(--wy_Color);
    border-color: var(--wy_Color);
    color: #fff;
  }
  .p_page .next:hover {
    background: var(--wy_Color);
    border-color: var(--wy_Color);
    color: #fff;
    cursor: pointer;
  }
  .p_page .pageNum {
    position: relative;
    float: left;
    height: 38px;
    min-width: 38px;
    margin: 0 5px 0 0;
    padding: 0 5px;
    background-size: 100% 100%;
    color: #595959;
    border: 1px solid #d9d9d9;
    cursor: pointer;
    line-height: 38px;
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    font-weight: inherit;
    text-decoration: none;
    background-color: #fff;
    text-align: center;
    border-radius: 0px;
  }
  .p_page .pageNum:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--wy_Color);
    border-color: var(--wy_Color);
  }
  .p_page .pageNum:hover {
    color: #fff;
    border-color: var(--wy_Color);
    cursor: pointer;
    text-decoration: none;
    background-color: var(--wy_Color);
  }
  .p_page .pageNum.active {
    text-decoration: none;
    background-color: var(--wy_Color);
    color: #fff;
    border-color: var(--wy_Color);
  }
  .p_page .next .iconfont:before{
    display:block;
    transform:rotate(-180deg);
  }
}
@media screen and (max-width: 768px) {
  .p_pagebox .NumBox {
    display: none !important;
  }
  .p_pagebox {
    width: 100%;
    text-align: center;
  }
  .p_pagebox .js_pageBtnDisable,
  .p_pagebox .js_pageBtnDisable:hover,
  .p_pagebox .js_pageBtnDisable:active {
    background: #f5f5f5 !important;
    border-color: #d9d9d9 !important;
    color: #bfbfbf !important;
    cursor: default;
  }
  .p_pagebox .js_pageBtnDisable .iconfont {
    color: #ddd !important;
  }
  .p_pagebox .js_pageBtnDisable:hover .iconfont {
    color: #bfbfbf !important;
  }
  .p_pagebox .pre {
    width: 48%;
    margin-right: 2%;
    background-color: var(--wy_Color);
  }
  .p_pagebox .pre:hover {
    color: rgba(255, 255, 255, 1);
    border-color:var(--wy_Color);
    background-color: var(--wy_Color);
    cursor: pointer;
  }
  .p_pagebox .pre:active {
    background-color:var(--wy_Color);
  }
  .p_pagebox .next {
    width: 48%;
    margin-left: 2%;
    background-color: var(--wy_Color);
  }
  .p_pagebox .next:hover {
    background-color: var(--wy_Color);
  }
  .p_pagebox .next:active {
    background-color: var(--wy_Color);
  }
}
/*页码end*/
.p_ProductDetail img,
.p_NewsDetail img,
.p_contentBox img {
  max-width: 100%;
}
.p_content .reset_style {
  line-height: 2;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open>.dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open>.dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open>.dropdown-toggle.btn-primary.focus .p_pagebox .next,
.p_pagebox .pre {
  background-color: #060606;
}
.btn-primary {
  color: #fff;
  background-color: var(--wy_Color) !important;
  border-color: var(--wy_Color) !important;
  border-radius: 0px;
  width: 100%;
  line-height: 30px;
}
.btn-primary:hover {
  color: #fff;
  background-color: var(--wy_Color) !important;
  border-color: var(--wy_Color) !important;
  border-radius: 0px;
  width: 100%;
  line-height: 30px;
}
.e_FlowCommonStyleBox-001 .stylebox_title {
  color: var(--wy_Color);
  background: #f5f5f5;
  padding: 8px 0;
  text-align: center;
}
.e_FlowCommonStyleBox-001 .stylebox_top {
  color: var(--wy_Color);
  background: #f5f5f5;
  height: auto;
  text-align: center;
}
.color_info {
  color: var(--wy_Color);
}
.e_FlowCommonStyleBox-001 .title_main {
  color: #2a2a2a;
  font-weight: bold !important;
  text-align: center;
  font-size: var(--wy_FSFour) !important;
}
.e_FlowCommonStyleBox-001 .stylebox_content {
  margin-top: var(--wy_FSSix);
  border: none;
}
.e_FlowCommonStyleBox-001 .stylebox_bottom_line {
  border-width: 0px;
  display: none;
}
/*pad*/
@media only screen and (max-width:1440px) and (min-width:1025px) {
  :root {
    --wy_FSOne: 36px;
    --wy_FSTwo:30px;
    --wy_FSThree: 24px;
    --wy_FSFour: 18px;
    --wy_FSFive: 16px;
    --wy_FSSix: 14px;
  }
}
@media only screen and (max-width:1024px) and (min-width:769px) {
  :root {
    --wy_FSOne:34px;
    --wy_FSTwo: 28px;
    --wy_FSThree: 22px;
    --wy_FSFour: 18px;
    --wy_FSFive: 16px;
    --wy_FSSix: 14px;
  }
}
/*phone*/
@media only screen and (max-width:768px) {
  :root {
    --wy_FS_BannerBig: 30px;
    --wy_FSOne: 26px;
    --wy_FSTwo: 22px;
    --wy_FSThree: 20px;
    --wy_FSFour: 16px;
    --wy_FSFive: 14px;
    --wy_FSSix: 13px;
  }
}
