@charset "utf-8";
/*common*/
.iswindow {
  display: block;
}
.ismobile {
  display: none;
}
@media screen and (max-width: 1680px) {
  .box {
    width: 96%;
  }
}
@media screen and (max-width: 1250px) {
  .iswindow {
    display: none;
  }
  .ismobile {
    display: flex;
  }
  .m_nav.ismobile {
    display: block;
  }
}

/*只关注显示隐藏*/
.isPcBox {
  display: block;
}
.isWapBox {
  display: none;
}
@media screen and (max-width: 1080px) {
  .isPcBox {
    display: none;
  }
  .isWapBox {
    display: block;
  }
}

/*headerPc*/
.headerPc {
  width: 100%;
  position: fixed;
  height: 100px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
.headerPc .itops {
  height: 100%;
}
.headerPc .itops .itop_logo a {
  padding-right: 23px;
}
.headerPc .itops .itop_logo img {
  height: 52px;
}
.headerPc .itops .itop_gp {
  padding-left: 18px;
  border-left: 1px solid #eaeaea;
}
.headerPc .itops .itop_gp .txt2 {
  font-family: "Arial";
  padding-top: 5px;
}
.headerPc .itop_navs,
.headerPc .itop_navs .itop_nav,
.headerPc .itop_navs .itop_nav a {
  height: 100%;
}
.headerPc .itop_navs .itop_nav {
  margin-right: 32px;
}
.headerPc .itop_nav a {
  display: inline-block;
  color: #333;
  margin: 0 20px;
  line-height: 100px;
  position: relative;
}
.headerPc .itop_nav a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  border-radius: 8px;
  background: #03bac6;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  margin: auto;
  top: 72px;
  left: 0;
  right: 0;
}
.headerPc .itop_nav a:hover::after,
.headerPc .itop_nav a.on::after {
  width: 100%;
}
.headerPc .itop_nav a.on,
.headerPc .itop_nav a:hover {
  font-weight: bold;
  color: #03bac6;
}
.headerPc .itop_navs .itop_search {
  border-left: 1px solid #eaeaea;
  height: 25px;
  padding: 0 10px 0 52px;
}
.headerPc .itop_navs .itop_search .a2 {
  margin-left: 22px;
}
.headerPc .itop_navs .itop_search .a1 img {
  width: 18px;
}
.headerPc .itop_navs .itop_search .a2 img {
  width: 16px;
  margin-right: 5px;
}
.searchbox {
  width: 250px;
  height: 40px;
  background: #fff;
  position: absolute;
  border-radius: 3px;
  right: 10px;
  top: 5px;
  z-index: 10000 !important;
  display: none;
  margin-top: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.searchbox input {
  width: 190px;
  height: 40px;
  border: none;
  position: absolute;
  margin: 0 5px;
  color: #666;
}
.searchbox .btn {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 26px !important;
  line-height: 40px;
  color: #999;
  position: relative;
  top: 3px;
  cursor: pointer;
  z-index: 3000;
  position: absolute;
  right: 0;
  top: 0;
}
.searchbox .btn:hover {
  color: hsl(9, 86%, 52%);
}
.searchboxlis:hover .searchbox {
  display: block;
}
@media screen and (max-width: 1440px) {
  .headerPc {
    height: 90px;
  }
  .headerPc .itops .itop_logo a {
    padding-right: 18px;
  }
  .headerPc .itops .itop_logo img {
    height: 45px;
  }
  .headerPc .itops .itop_gp {
    padding-left: 16px;
  }
  .headerPc .itops .itop_gp .txt2 {
    padding-top: 4px;
  }
  .headerPc .itop_navs .itop_nav {
    margin-right: 26px;
  }
  .headerPc .itop_nav a {
    margin: 0 18px;
    line-height: 90px;
    font-size: 16px;
  }
  .headerPc .itop_navs .itop_search {
    height: 25px;
    padding: 0 8px 0 45px;
  }
  .headerPc .itop_navs .itop_search .a2 {
    margin-left: 20px;
  }
  .headerPc .itop_nav a::after {
    top: 65px;
  }
}
@media screen and (max-width: 1366px) {
  .headerPc {
    height: 80px;
  }
  .headerPc .itops .itop_logo a {
    padding-right: 18px;
  }
  .headerPc .itops .itop_logo img {
    height: 35px;
  }
  .headerPc .itops .itop_gp {
    padding-left: 16px;
  }
  .headerPc .itops .itop_gp .txt2 {
    padding-top: 3px;
  }
  .headerPc .itop_navs .itop_nav {
    margin-right: 26px;
  }
  .headerPc .itop_nav a {
    margin: 0 15px;
    line-height: 80px;
    font-size: 16px;
  }
  .headerPc .itop_navs .itop_search {
    height: 25px;
    padding: 0 8px 0 40px;
  }
  .headerPc .itop_navs .itop_search .a2 {
    margin-left: 20px;
  }
  .headerPc .itop_nav a::after {
    top: 60px;
  }
}
@media screen and (max-width: 1440px) {
  .headerPc {
    height: 90px;
  }
  .headerPc .itops .itop_logo a {
    padding-right: 18px;
  }
  .headerPc .itops .itop_logo img {
    height: 45px;
  }
  .headerPc .itops .itop_gp {
    padding-left: 16px;
  }
  .headerPc .itops .itop_gp .txt2 {
    padding-top: 4px;
  }
  .headerPc .itop_navs .itop_nav {
    margin-right: 26px;
  }
  .headerPc .itop_nav a {
    margin: 0 18px;
    line-height: 90px;
    font-size: 16px;
  }
  .headerPc .itop_navs .itop_search {
    height: 25px;
    padding: 0 8px 0 45px;
  }
  .headerPc .itop_navs .itop_search .a2 {
    margin-left: 20px;
  }
  .headerPc .itop_nav a::after {
    top: 65px;
  }
}
@media screen and (max-width: 1366px) {
  .headerPc {
    height: 80px;
  }
  .headerPc .itops .itop_logo a {
    padding-right: 18px;
  }
  .headerPc .itops .itop_logo img {
    height: 35px;
  }
  .headerPc .itops .itop_gp {
    padding-left: 16px;
  }
  .headerPc .itops .itop_gp .txt2 {
    padding-top: 3px;
  }
  .headerPc .itop_navs .itop_nav {
    margin-right: 26px;
  }
  .headerPc .itop_nav a {
    margin: 0 15px;
    line-height: 80px;
    font-size: 16px;
  }
  .headerPc .itop_navs .itop_search {
    height: 25px;
    padding: 0 8px 0 40px;
  }
  .headerPc .itop_navs .itop_search .a2 {
    margin-left: 20px;
  }
  .headerPc .itop_nav a::after {
    top: 60px;
  }
}

/*headerWap*/
.headerWap header {
  height: 60px;
  background: #ffffff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}
.headerWap header .logo {
  margin-left: 0.2rem;
}
.headerWap header .logo a {
  padding-right: 0.15rem;
  border-right: 1px solid #f1f1f1;
  display: block;
}
.headerWap header .logo a img {
  width: auto;
  height: 36px;
}
.headerWap header .logo .number {
  padding-left: 0.15rem;
}
.headerWap header .logo .number .txt1 {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.headerWap header .logo .number .txt2 {
  font-size: 16px;
  color: #333;
}
.headerWap header .navopen {
  width: 30px;
  height: auto;
  margin-right: 0.2rem;
}
.headerWap header .navopen img {
  width: 100%;
  height: 100%;
}
.headerWap .m_nav {
  position: fixed;
  top: 0px;
  box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  z-index: 999000;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  overflow-y: auto;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  top: 0;
  transform: translateX(100%);
}
.headerWap .m_nav.open {
  transform: translateX(0);
}
.headerWap .m_nav .top {
  height: 45px;
  padding: 12px 15px;
  box-sizing: border-box;
}
.headerWap .m_nav .top .closed {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  float: right;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.headerWap .m_nav .logo {
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.headerWap .m_nav .top .closed:hover {
  transform: rotate(-360deg);
  -moz-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
  -o-transform: rotate(-360deg);
}
.headerWap .m_nav .logo img {
  height: 50px;
  display: block;
  margin: -5px auto 0px;
  vertical-align: middle;
}
.headerWap .m_nav .logo img,
.headerWap .m_nav .logo p {
  display: inline-block;
}
.headerWap .m_nav .logo p {
  font-size: 20px;
  color: #b30e08;
  font-weight: bold;
}
.headerWap .m_nav .ul {
  margin-top: 30px;
}
.headerWap .m_nav .ul li {
  padding: 0 20px;
  border-bottom: 1px solid #f5f5f5;
  transform: translateY(0);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  opacity: 0;
}
.headerWap .m_nav.open .ul li {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.headerWap .m_nav .ul li:nth-child(1) {
  -webkit-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li:nth-child(2) {
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li:nth-child(3) {
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li:nth-child(4) {
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li:nth-child(5) {
  -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li:nth-child(6) {
  -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li:nth-child(7) {
  -webkit-transition: all 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li:nth-child(8) {
  -webkit-transition: all 1.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li:nth-child(9) {
  -webkit-transition: all 1.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}
.headerWap .m_nav .ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  font-family: "Montserrat-Medium";
}
.headerWap .m_nav .ul li a i {
  float: right;
}
.headerWap .m_nav .ul li a i img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  transform: rotate(-90deg);
}
.headerWap .m_nav .mnav {
  display: none;
}
.headerWap .m_nav .hasmnav.open .mnav {
  display: block;
}
.headerWap .m_nav .hasmnav.open i img {
  transform: rotate(0deg);
}
.headerWap .m_nav .mnav a.a2 {
  font-size: 16px !important;
  padding-left: 30px;
}
.headerWap .m_nav .ul li.on a,
.m_nav .ul li a:hover {
  color: #c82500 !important;
}
.headerWap .m_nav .on a {
  color: #c82500 !important;
}
.headerWap .mempty {
  width: 100%;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .headerWap header .logo img {
    height: 25px;
  }
  .headerWap header .logo .number .txt1 {
    font-size: 12px;
  }
  .headerWap header .logo .number .txt2 {
    font-size: 14px;
    margin-top: 0.02rem;
  }
.footers .bottomErweimafa2 {top: -165px !important;}
.wapTitle {
    padding-top: 0.2rem !important;
    margin-bottom: 0.2rem !important;
}
}

/*footer*/
.footers {
  width: 100%;
  background: url("../images/footbg.png") top center no-repeat;
  background-size: 100% 100%;
}
.footer {
  height: 333px;
}
.footer_left .footer_left_logo {
  width: 266px;
  height: 133px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  position: relative;
}
.footer_left .footer_left_logo img {
  height: 64px;
}
.footer_left .footer_left_logo::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 0px;
  left: -15px;
  top: 0;
}
.footer_left .footer_left_logo::before {
  background: url(../images/yq3_1.jpg) no-repeat right top;
}
.footer_left .footer_left_logo::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 0px;
  right: -15px;
  top: 0;
}
.footer_left .footer_left_logo::after {
  background: url(../images/yq3_2.jpg) no-repeat right top;
}
.footer_left .footer_left_con {
  margin-top: 36px;
}
.footer_left .footer_left_con ul li {
  overflow: hidden;
  line-height: 24px;
  padding: 6px 0;
}
.footer_left .footer_left_con ul li .txt1 {
  width: 83px;
  float: left;
}
.footer_left .footer_left_con ul li .txt1 img {
  margin: 0 8px 0 2px;
  width: 19px;
}
.footer_left .footer_left_con ul li .txt2 {
  padding-left: 83px;
}
.footer_right {
  padding: 65px 0 0;
  align-items: flex-start;
}
.footer_right .onefoot {
  text-align: left;
}
.footer_right .onefoot.onefoot1 {
  width: 207px;
}
.footer_right .onefoot.onefoot2 {
  width: 215px;
}
.footer_right .onefoot.onefoot3 {
  width: 203px;
}
.footer_right .onefoot.onefoot4 {
  width: 199px;
}
.footer_right .onefoot.onefoot5 {
  width: 118px;
}
.footer_right .onefoot .txt1 {
  display: block;
  margin-bottom: 30px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}
.footer_right .onefoot .txt2 {
  display: block;
  font-size: 18px;
  color: #fff;
  line-height: 24px;
  padding: 6px 0;
}
.footers .copyrights {
  width: 100%;
  border-top: 1px solid #27adba;
}
.footers .copyrights .copyright {
  line-height: 30px;
  padding: 24px 0;
}
.footers .copyrights .copyright,
.footers .copyrights .copyright a {
  color: #fff;
  position: relative;
}
.footers .copyrights .copyright .beian {
  margin-left: 6px;
}
.footers .copyrights .copyright .copyright_right img {
  width: 47px;
}
.footers .copyrights .copyright .copyright_right a.a2 {
  margin-left: 18px;
}
.footers .bottomErweimafa2 {
  width: 150px;
  height: 150px;
  position: absolute;
  background: #eee;
  left: 50%;
  margin-left: -75px;
  top: -150px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.footers .bottomErweimafa2 {
  border-radius: 5px;
  display: none;
}
.footers .bottomErweimafa2 img {
  width: 130px !important;
  height: 130px !important;
  margin: 10px;
}
.footers .copyright_right a:hover .bottomErweimafa2 {
  display: block;
}

@media screen and (max-width: 1440px) {
  .footer {
    height: auto;
  }
  .footer_left .footer_left_logo {
    width: 220px;
    height: 110px;
  }
  .footer_left .footer_left_logo img {
    height: 56px;
  }
  .footer_left .footer_left_con {
    margin-top: 30px;
  }
  .footer_left .footer_left_con ul li {
    line-height: 22px;
    padding: 4px 0;
    font-size: 16px;
  }
  .footer_left .footer_left_con ul li .txt1 {
    width: 72px;
  }
  .footer_left .footer_left_con ul li .txt1 img {
    margin: 0 5px 0 2px;
    width: 16px;
  }
  .footer_left .footer_left_con ul li .txt2 {
    padding-left: 72px;
  }
  .footer_right {
    padding: 45px 0 30px;
    width: 58.875%;
  }
  .footer_right .onefoot.onefoot1 {
    width: 21.97%;
  }
  .footer_right .onefoot.onefoot2 {
    width: 22.82%;
  }
  .footer_right .onefoot.onefoot3 {
    width: 21.55%;
  }
  .footer_right .onefoot.onefoot4 {
    width: 19.96%;
  }
  .footer_right .onefoot.onefoot5 {
    width: 12.53%;
  }
  .footer_right .onefoot .txt1 {
    margin-bottom: 25px;
    font-size: 20px;
  }
  .footer_right .onefoot .txt2 {
    font-size: 16px;
    line-height: 22px;
    padding: 4px 0;
  }
  .footers .copyrights .copyright {
    line-height: 25px;
    padding: 18px 0;
  }
  .footers .copyrights .copyright .copyright_left {
    font-size: 16px;
  }
  .footers .copyrights .copyright .copyright_right img {
    width: 42px;
  }
  .footers .copyrights .copyright .copyright_right a.a2 {
    margin-left: 16px;
  }
}
@media screen and (max-width: 1250px) {
  .footer_left {
    width: 38%;
  }
  .footer_left .footer_left_logo {
    width: 180px;
    height: 90px;
  }
  .footer_left .footer_left_logo img {
    height: 45px;
  }
  .footer_left .footer_left_con {
    margin-top: 20px;
  }
  .footer_left .footer_left_con ul li {
    line-height: 20px;
    padding: 3px 0;
    font-size: 14px;
  }
  .footer_left .footer_left_con ul li .txt1 {
    width: 63px;
  }
  .footer_left .footer_left_con ul li .txt1 img {
    margin: 0 5px 0 2px;
    width: 14px;
  }
  .footer_left .footer_left_con ul li .txt2 {
    padding-left: 63px;
  }
  .footer_right {
    padding: 25px 0 20px;
  }
  .footer_right .onefoot.onefoot1 {
    width: 21.97%;
  }
  .footer_right .onefoot.onefoot2 {
    width: 22.82%;
  }
  .footer_right .onefoot.onefoot3 {
    width: 21.55%;
  }
  .footer_right .onefoot.onefoot4 {
    width: 19.96%;
  }
  .footer_right .onefoot.onefoot5 {
    width: 12.53%;
  }
  .footer_right .onefoot .txt1 {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .footer_right .onefoot .txt2 {
    font-size: 13px;
    line-height: 18px;
    padding: 3px 0;
  }
  .footers .copyrights .copyright {
    line-height: 20px;
    padding: 14px 0;
  }
  .footers .copyrights .copyright .copyright_left {
    font-size: 14px;
  }
  .footers .copyrights .copyright .copyright_right img {
    width: 35px;
  }
  .footers .copyrights .copyright .copyright_right a.a2 {
    margin-left: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 20px;
  }
  .footer_left {
    width: 33%;
  }
  .footer_right .onefoot.onefoot1 {
    width: 19.97%;
  }
  .footer_right .onefoot.onefoot2 {
    width: 24.82%;
  }
  .footer_right .onefoot.onefoot3 {
    width: 21.55%;
  }
  .footer_right .onefoot.onefoot4 {
    width: 19.96%;
  }
  .footer_right .onefoot.onefoot5 {
    width: 12.53%;
  }
  .footer_right {
    width: 65%;
  }
}

@media screen and (max-width: 768px) {
  .footer_left {
    width: 100%;
  }
  .footer_left .footer_left_logo {
    width: 180px;
    height: 90px;
    margin: 0 auto;
  }
  .footer_left .footer_left_logo img {
    height: 45px;
  }
  .footer_left .footer_left_con {
    margin-top: 20px;
  }
  .footer_left .footer_left_con ul li {
    line-height: 20px;
    padding: 3px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer_left .footer_left_con ul li p {
    padding: 0;
  }
  .footer_left .footer_left_con ul li .txt1 {
    width: 63px;
  }
  .footer_left .footer_left_con ul li .txt1 img {
    margin: 0 5px 0 2px;
    width: 14px;
  }
  .footer_left .footer_left_con ul li .txt2 {
    padding: 0;
  }
  .footer_right {
    display: none;
  }
  .footers .copyrights .copyright {
    display: block;
    line-height: 20px;
    padding: 10px 0;
  }
  .footers .copyrights .copyright .copyright_left {
    text-align: center;
  }
  .footers .copyrights .copyright .copyright_right {
    text-align: center;
    display: block;
    margin-top: 10px;
  }
  .footers .copyrights .copyright .copyright_right img {
    width: 35px;
  }
  .footers .copyrights .copyright .copyright_right a.a2 {
    margin-left: 12px;
  }

  /*分页*/
  .pages a,
  .pages span,
  .pages em {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 13px;
    color: #999;
    vertical-align: top;
    margin: 0 3px;
    position: relative;
  }
  /*分页 end*/
}

@media screen and (max-width: 540px) {
  .footer_left .footer_left_logo {
    width: 120px;
    height: 60px;
  }
  .footer_left .footer_left_logo img {
    width: 80%;
    height: auto;
  }
  .footer_left .footer_left_con {
    margin-top: 15px;
  }
  .footer_left .footer_left_con ul li {
    line-height: 16px;
    padding: 3px 0;
    font-size: 14px;
  }
  .footer_left .footer_left_con ul li .txt1 {
    width: 63px;
  }
  .footers .copyrights .copyright {
    line-height: 20px;
    padding: 10px 0;
  }
  .footers .copyrights .copyright .copyright_right img {
    width: 30px;
  }
}

@media screen and (max-width: 375px) {
  .footer_left .footer_left_logo {
    width: 100px;
    height: 50px;
  }
  .footer_left .footer_left_con {
    margin-top: 10px;
  }
  .footer_left .footer_left_con ul li {
    line-height: 16px;
    padding: 2px 0;
    font-size: 12px;
  }
  .footer_left .footer_left_con ul li .txt1 {
    width: 55px;
  }
  .footer_left .footer_left_con ul li .txt1 img {
    width: 12px;
  }
  .footer_left .footer_left_con ul li .txt2 {
    padding-left: 55px;
  }
  .footers .copyrights .copyright {
    line-height: 20px;
    padding: 10px 0;
  }
  .footers .copyrights .copyright .copyright_left {
    font-size: 12px;
  }
  .footers .copyrights .copyright .copyright_right {
    margin-top: 5px;
  }
  .footers .copyrights .copyright .copyright_right img {
    width: 25px;
  }
}

/*section_menu*/
#section_menu {
  position: fixed;
  width: 10px;
  z-index: 9;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 10px;
  font-size: 20px;
}
#section_menu li {
  width: 10px;
  height: 10px;
  margin: 20px 0;
  position: relative;
}
#section_menu li a {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "H_Roman_SemiB";
  background: #03bac6;
  opacity: 0.4;
  border-radius: 10px;
}
#section_menu li.active a {
  opacity: 0.9;
}
@media screen and (max-width: 1250px) {
  #section_menu {
    display: none;
  }
}

/*全局的在内容简介中表现出来的列样式*/
.YQli {
  font-size: 0.22rem;
  line-height: 2.18;
  color: #656565;
}
.YQli p {
  padding-left: 0.2rem;
  position: relative;
}
.YQli p::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #00b3c3;
  position: absolute;
  left: 0;
  top: 18px;
  border-radius: 5px;
}

/*二维码弹出层*/
.qcodePop {
  display: none;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.qcodeboxmask {
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000;
}
.qcodebox {
  width: 250px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  position: fixed;
  background: #fff;
  left: 50%;
  top: 50%;
  margin-left: -125px;
  margin-top: -140px;
  z-index: 100001;
  padding-bottom: 10px;
}
.qcodebox {
  border-radius: 3px;
}
.qcodebox .close {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  width: 15px;
  height: 15px;
  background: url(../images/closed.png) no-repeat center;
  display: block;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}
.qcodebox .close:hover {
  transform: rotate(-360deg);
  -moz-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
  -o-transform: rotate(-360deg);
}
.qcodebox .qcode {
  width: 200px;
  height: 200px;
  margin: 35px 25px 0 25px;
}
.qcodebox .qcode img {
  width: 100%;
  height: 100%;
}
.qcodebox .txt {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  padding: 10px 0;
}

/*turn*/
.turn {
  animation: turn 4s linear infinite;
}
@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*公共*/
.img-cover {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.main-conetnt {
  background: #f7f7f7;
  padding: 0.7rem 0;
  overflow: hidden;
  width: 100%;
}

/*YQbox*/
.YQbox {
  max-width: 1600px;
  margin: 0 auto;
  width: 1600px;
  position: relative;
}
@media screen and (max-width: 1680px) {
  .YQbox {
    width: 80%;
  }
}

@media screen and (max-width: 1250px) {
  .YQbox {
    width: auto;
    margin: 0 0.2rem;
    width: auto !important;
  }
}

/*YQbanner*/
.YQbanner {
  height: 575px;
  margin-top: 100px;
  background: #172b43 url() no-repeat center top;
  background-size: cover;
}
.YQbanner .YQbox {
  height: 100%;
}
.YQbanner .YQbox .txt {
  padding-bottom: 50px;
  position: relative;
  top: -40px;
  text-indent: -5px;
  font-family: Arial;
  font-size: 60px;
  color: #fff;
  line-height: 1;
}
.YQbanner .YQbox .txt::before {
  content: "";
  height: 6px;
  width: 60px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -30px;
}
@media screen and (max-width: 1440px) {
  .YQbanner {
    height: 550px;
    margin-top: 90px;
  }
  .YQbanner .YQbox .txt {
    padding-bottom: 40px;
    top: -40px;
    font-size: 60px;
  }
}
@media screen and (max-width: 1366px) {
  .YQbanner {
    margin-top: 80px;
  }
}

@media screen and (max-width: 1250px) {
  .YQbanner {
    height: 525px;
    margin-top: 60px;
  }
  .YQbanner .YQbox .txt {
    padding-bottom: 30px;
    top: -40px;
    font-size: 55px;
  }
}
@media screen and (max-width: 768px) {
  .YQbanner {
    height: 420px;
    margin-top: 50px;
  }
  .YQbanner .YQbox .txt {
    padding-bottom: 20px;
    top: -20px !important;
    font-size: 40px;
    text-align: center;
    width: 100%;
    left: 0 !important;
  }
  .YQbanner .YQbox .txt::before {
    width: 40px;
    height: 5px;
    left: 50%;
    margin-left: -20px;
  }
}
@media screen and (max-width: 640px) {
  .YQbanner {
    height: 380px;
  }
  .YQbanner .YQbox .txt {
    padding-bottom: 20px;
    top: -40px;
    font-size: 30px;
    text-align: center;
    width: 100%;
  }
  .YQbanner .YQbox .txt::before {
    width: 40px;
    height: 5px;
    left: 50%;
    margin-left: -20px;
  }
}

/*YQnav*/
.YQnav {
  height: 0;
  position: relative;
  z-index: 2;
}
.YQnav .YQbox {
  height: 80px;
  background: #03b9c5;
  opacity: 0.9;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -800px;
}
.YQnav .navLeft {
  height: 100%;
  float: left;
}
.YQnav .navLeft .home {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  width: 100px;
  height: 100%;
  float: left;
  font-size: 24px;
  color: #fff;
  display: flex;
}
.YQnav .navLeft .father {
  height: 100%;
  float: left;
  width: 350px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  display: none;
}
.YQnav .navLeft .father .name {
  height: 100%;
  width: 100%;
  font-size: 24px;
  color: #fff;
  padding-left: 50px;
}
.YQnav .navLeft .father i {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -9px;
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.YQnav .navLeft .father ul {
  position: relative;
  left: -1px;
  display: none;
  z-index: 99;
}
.YQnav .navLeft .father ul a {
  display: flex;
  width: 100%;
  height: 80px;
  background: #03b9c5;
  opacity: 0.9;
  font-size: 24px;
  color: #fff;
  text-indent: 50px;
}
.YQnav .navLeft .father ul a:hover {
  opacity: 1;
}
.YQnav .navLeft .father:hover ul {
  display: block;
}
.YQnav .navright {
  margin-left: 110px;
  height: 100%;
}
.YQnav .navright a {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-right: 10px;
  height: 40px;
  border-radius: 5px;
  line-height: 40px;
  padding-bottom: 30px !important;
  position: relative;
  top: 10px;
}
.YQnav .navright a:hover,
.YQnav .navright a.on {
  background: #fff;
  color: #03bac6;
}
@media screen and (max-width: 1680px) {
  .YQnav .YQbox {
    left: 10%;
    margin-left: 0;
  }
  .YQnav .navright a {
    padding: 10px;
  }
}
@media screen and (max-width: 1250px) {
  .YQnav .YQbox {
    height: auto;
    border-radius: 5px 5px 0 0;
    width: 100% !important;
    left: 0%;
  }
  .YQnav .navLeft {
    display: none;
    margin-left: 0;
  }
  .YQnav .navright {
    margin-left: 0;
    text-align: center;
  }
  .YQnav .navright a {
    margin: 20px 15px;
    height: auto;
    line-height: 1.2;
    border-radius: 5px !important;
  }
  .YQnav .navright a {
    padding-bottom: 10px !important;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .YQnav .YQbox {
    padding: 0 10px;
    box-sizing: border-box;
  }
  .YQnav .navright a {
    font-size: 0.2rem;
    margin: 10px 1px;
  }
}
/*箭头*/
.jt {
  background: url(../images/jt10.png) no-repeat center center;
  background-size: auto 10px;
}

/*YQjt1*/
.YQjt {
  font-family: "iconfont" !important;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.32rem;
  font-style: normal;
  background-color: #00b3c3;
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.YQjt::before {
  content: "\eb8a";
}

/*YQjt2*/
.YQjt2 {
  width: 180px;
  height: 50px;
  background: #00b3c3;
  color: #fff !important;
  border-color: #00b3c3;
  border-radius: 30px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.YQjt2 span:nth-child(2) {
  font-size: 20px;
  margin-left: 10px;
  transition: all 0.3s ease 0s;
  font-weight: 700;
}
.YQjt2 span:nth-child(2)::before {
  content: "\eb94";
}
.YQjt2:hover span:nth-child(2) {
  margin-left: 30px;
}
@media screen and (max-width: 1250px) {
  .YQjt2 {
    font-size: 15px;
    height: 40px;
    padding: 0 10px;
    width: 100px;
  }
}

/*网页底部二级分类*/
.YQsonNav {
  border: 1px solid #ededed;
  text-align: center;
  border-radius: 50px;
  overflow: hidden;
}
.YQsonNav a {
  width: 16.666666666666%;
  display: block;
  float: left;
  font-size: 22px;
  height: 70px;
  line-height: 70px;
  border-radius: 50px;
}
.YQsonNav a.on {
  background: #04bac7;
  color: #fff;
}
.YQsonNav a:hover {
  background: #04bac7;
  color: #fff;
}
@media screen and (max-width: 1680px) {
  .YQsonNav a {
    font-size: 22px;
  }
}
@media screen and (max-width: 1440px) {
  .YQsonNav a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1250px) {
  .YQsonNav a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1080px) {
  .YQsonNav {
    text-align: center;
    border-radius: 0 !important;
    padding: 5px;
  }
  .YQsonNav a {
    width: 33.333333333%;
    font-size: 14px;
    background: #f1f1f1;
    border: 5px solid #fff;
    box-sizing: border-box;
    line-height: 50px;
    height: 60px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .YQsonNav a {
    font-size: 14px;
  }
  .YQsonNav a {
    height: 50px;
    line-height: 40px;
  }
}

/*网页底部加载更多*/
.load-more {
  width: 100%;
  height: 0.8rem;
  text-align: center;
  font-size: 16px;
  color: #333333;
  background: #f5f5f5;
  margin-top: 0.2rem;
  line-height: 0.8rem;
  cursor: pointer;
}
.load-more:hover {
  background-color: #03b9c5;
  color: #fff;
}
.load-more span {
  display: block;
  background: url(../images/mores.png) no-repeat left center;
  width: 150px;
  margin: 0 auto;
  text-align: right;
}
@media screen and (max-width: 1250px) {
  .load-more span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1080px) {
  .load-more span {
    background-size: 0.3rem 0.3rem;
    width: 120px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .load-more span {
    font-size: 14px;
    width: 90px;
  }
}

/*面包屑导航*/
.breadCrumb {
  padding: 0.4rem 0;
  overflow: hidden;
}
.breadCrumb span a,
.breadCrumb {
  color: #787879;
  font-size: 16px;
}
.breadCrumb span a.SkinObject {
  color: #03b9c5;
}
.breadCrumb span a.SkinObject1 {
  color: #8e050c;
}

/*手机端页面区块大标题*/
.wapTitle {
  font-size: 0.42rem;
  color: #333333;
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 0.24rem;
  padding-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.wapTitle::before {
  content: "";
  height: 4px;
  width: 40px;
  background: #18d3e6;
  position: absolute;
  left: 50%;
  margin-top: -10px;
  border-radius: 5px;
  margin-left: -20px;
  bottom: 0;
}
