﻿* {
  box-sizing: border-box !important;
  word-break: break-word !important;
  font-family: "Roboto";
}

@font-face {
  font-family: "Roboto";
  src: url(../font/roboto-regular.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Roboto";
  src: url(../font/roboto-light.ttf);
  font-weight: 100;
}
@font-face {
  font-family: "Roboto";
  src: url(../font/roboto-bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: 'wy_iconfont';  /* Project id 2650718 */
  src: url('../font/font_2650718_qqr679ivdn.woff2') format('woff2'),
    url('../font/font_2650718_qqr679ivdn.woff') format('woff'),
    url('../font/font_2650718_qqr679ivdn.ttf') format('truetype');
}
.wy_iconfont{
  font-family: 'wy_iconfont'!important; 
  font-style:normal!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;
}
/* scrollbar css */
.swiper{
  overflow:hidden;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #d7d7d7;
  border-radius: 6px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--wy_Color);
}
/*end*/
/*文字*/
:root {
  --wy_FS_BannerBig: 72px;
  --wy_FSOne: 50px;
  --wy_FSTwo: 36px;
  --wy_FSThree: 30px;
  --wy_FSFour: 24px;
  --wy_FSFive: 18px;
  --wy_FSSix: 16px;
  --wy_FSSeven: 20px;
  --wy_FSEight: 14px;
  --wy_Color: #E7141A;
}
@media only screen and (max-width:1440px) and (min-width:1025px) {
  :root {
    --wy_FS_BannerBig:40px;
    --wy_FSOne: 34px;
    --wy_FSTwo:30px;
    --wy_FSThree: 22px;
    --wy_FSFour: 18px;
    --wy_FSFive: 16px;
    --wy_FSSix: 14px;
  }


}
@media only screen and (max-width:1024px) and (min-width:769px) {
  :root {
    --wy_FS_BannerBig:32px;
    --wy_FSOne:28px;
    --wy_FSTwo: 24px;
    --wy_FSThree: 20px;
    --wy_FSFour: 18px;
    --wy_FSFive: 16px;
    --wy_FSSix: 14px;
  }
}
/*phone*/
@media only screen and (max-width:768px) {
  :root {
    --wy_FS_BannerBig:28px;
    --wy_FSOne: 26px;
    --wy_FSTwo: 22px;
    --wy_FSThree: 20px;
    --wy_FSFour: 18px;
    --wy_FSFive: 16px;
    --wy_FSSix: 14px;
  }
}
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;
  margin-bottom:0;
}
/*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*/
/*通用样式*/
/*首页标题*/
.home_title{
  width:100%;
  position:relative;
  padding:0px;
  text-align:center;
}
.title_cn{
  font-size:var(--wy_FSTwo);
  color:#363636;
  line-height:1.3;
}
.title_line{
  width:40px;
  height:2px;
  background:var(--wy_Color);
  margin:12px auto;
}
.title_en{
  font-size:var(--wy_FSFive);
  color:#a9a9a9;
  line-height:var(--wy_FSSix);
  text-transform:uppercase;
}
/*end*/
@media only screen and (min-width: 769px){
  .wy_Pchide{
    display:none;
  }
  .wy_Mohide{
    display:block;
  }
  .wy_CateList{
    justify-content:center;
  }
}
@media only screen and (max-width: 768px){
  .wy_Pchide{
    display:block;
  }
  .wy_Mohide{
    display:none;
  }
  .wy_CateList{
    position: fixed!important;
    left: 100%;
    top: 0;
    z-index: 999;
    background: #fff;
    width: 100%;
    height: 100vh;
    display: block !important;
  }
  .s_button3{
    border:none;
    border-bottom:1px solid #eee;
    border-radius:0;
  }
  .p_breadcrumb .p_breadcrumbItem:last-child{
    display:none;
  }
}
.wy_Cate{
  width:100%;
  height:45px;
  line-height:45px;
  text-align:center;
  font-size:14px;
  color:#fff;
  background:var(--wy_Color);
}
.wy_backBtn {
  background: #f5f5f5;
  text-align: right;
  padding: 6px 14px;
  color: #000;
  font-size: 24px;
}

/*end*/
/*面包屑*/
.p_breadcrumb{
  display:flex;
  align-items:center;
  justify-content: flex-start;
}
.p_breadcrumb .p_breadcrumbItem *{
  color:#666;
  font-size:14px;
}
/*分类高亮*/
.s_button3.wy_Click{
  background:var(--wy_Color);
  border-color:var(--wy_Color);
}
.s_button3.wy_Click *{
  color:#fff;
}
/*内页banner*/
.ny_banner .swiper-slide{
  overflow:hidden;
}
.ny_banner .p_info{
  width:94%!important;
  max-width:1400px;
}
.ny_banner .p_subtitle{
  font-size:var(--wy_FSFour)!important;
  color:#fff!important;
  text-transform:uppercase;
  line-height:1;
}
.ny_banner .p_btitle{
  font-size:var(--wy_FSOne);
  color:#fff;
  text-transform:uppercase;
  line-height:1;
}
.ny_banner .p_summary{
  font-size:var(--wy_FSSix);
  color:#666;
}
@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;
  }
}