.btn {
  border: none;
}
.flex-h-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-v-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-v-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
html,
body {
  margin: 0 auto;
  padding: 0;
  /* font-family: "Helvetica Neue For Number", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    "Helvetica Neue", Helvetica, Arial, sans-serif; */
  font-family: "HK", serif;
  font-size: 0.3rem;
  color: #000;
  width: 100%;
  background: #fff;
  max-width: 640px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
h1 {
  color: #00a9ee;
  font-size: 0.35rem;
}
h2 {
  color: #313131;
  font-size: 0.3rem;
}
h3 {
  font-size: 0.25rem;
}
p {
  margin: 0;
  padding: 0;
}
i {
  color: #989898;
}
a {
  color: #000;
  text-decoration: none;
}
/* ul {
  margin: 0;
  padding: 0;
} */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  margin: 20px 0;
  text-align: center;
  width: 100%;
  font-weight: normal;
}
.page a {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 2px;
  font-size: 12px;
  background: #fff;
  border: 1px solid #aaa;
  color: #333;
}

.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.clearfix2:before,
.clearfix2:after {
  display: table;
  content: "";
}
.clearfix2:after {
  clear: both;
}
.text-right {
  text-align: right;
}
.flex-v-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-justify {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ellipsis {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis2 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hidden {
  display: none;
}
.no-margin {
  margin: 0 !important;
}
.mt1 {
  margin-top: 1px !important;
}
.mt2 {
  margin-top: 2px !important;
}
.mt3 {
  margin-top: 3px !important;
}
.mt4 {
  margin-top: 4px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt6 {
  margin-top: 6px !important;
}
.mt7 {
  margin-top: 7px !important;
}
.mt8 {
  margin-top: 8px !important;
}
.mt9 {
  margin-top: 9px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt11 {
  margin-top: 11px !important;
}
.mt12 {
  margin-top: 12px !important;
}
.mt13 {
  margin-top: 13px !important;
}
.mt14 {
  margin-top: 14px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt16 {
  margin-top: 16px !important;
}
.mt17 {
  margin-top: 17px !important;
}
.mt18 {
  margin-top: 18px !important;
}
.mt19 {
  margin-top: 19px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt21 {
  margin-top: 21px !important;
}
.mt22 {
  margin-top: 22px !important;
}
.mt23 {
  margin-top: 23px !important;
}
.mt24 {
  margin-top: 24px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt26 {
  margin-top: 26px !important;
}
.mt27 {
  margin-top: 27px !important;
}
.mt28 {
  margin-top: 28px !important;
}
.mt29 {
  margin-top: 29px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt31 {
  margin-top: 31px !important;
}
.mt32 {
  margin-top: 32px !important;
}
.mt33 {
  margin-top: 33px !important;
}
.mt34 {
  margin-top: 34px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt36 {
  margin-top: 36px !important;
}
.mt37 {
  margin-top: 37px !important;
}
.mt38 {
  margin-top: 38px !important;
}
.mt39 {
  margin-top: 39px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt41 {
  margin-top: 41px !important;
}
.mt42 {
  margin-top: 42px !important;
}
.mt43 {
  margin-top: 43px !important;
}
.mt44 {
  margin-top: 44px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt46 {
  margin-top: 46px !important;
}
.mt47 {
  margin-top: 47px !important;
}
.mt48 {
  margin-top: 48px !important;
}
.mt49 {
  margin-top: 49px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt1 {
  margin-bottom: 1px !important;
}
.mt2 {
  margin-bottom: 2px !important;
}
.mt3 {
  margin-bottom: 3px !important;
}
.mt4 {
  margin-bottom: 4px !important;
}
.mt5 {
  margin-bottom: 5px !important;
}
.mt6 {
  margin-bottom: 6px !important;
}
.mt7 {
  margin-bottom: 7px !important;
}
.mt8 {
  margin-bottom: 8px !important;
}
.mt9 {
  margin-bottom: 9px !important;
}
.mt10 {
  margin-bottom: 10px !important;
}
.mt11 {
  margin-bottom: 11px !important;
}
.mt12 {
  margin-bottom: 12px !important;
}
.mt13 {
  margin-bottom: 13px !important;
}
.mt14 {
  margin-bottom: 14px !important;
}
.mt15 {
  margin-bottom: 15px !important;
}
.mt16 {
  margin-bottom: 16px !important;
}
.mt17 {
  margin-bottom: 17px !important;
}
.mt18 {
  margin-bottom: 18px !important;
}
.mt19 {
  margin-bottom: 19px !important;
}
.mt20 {
  margin-bottom: 20px !important;
}
.mt21 {
  margin-bottom: 21px !important;
}
.mt22 {
  margin-bottom: 22px !important;
}
.mt23 {
  margin-bottom: 23px !important;
}
.mt24 {
  margin-bottom: 24px !important;
}
.mt25 {
  margin-bottom: 25px !important;
}
.mt26 {
  margin-bottom: 26px !important;
}
.mt27 {
  margin-bottom: 27px !important;
}
.mt28 {
  margin-bottom: 28px !important;
}
.mt29 {
  margin-bottom: 29px !important;
}
.mt30 {
  margin-bottom: 30px !important;
}
.mt31 {
  margin-bottom: 31px !important;
}
.mt32 {
  margin-bottom: 32px !important;
}
.mt33 {
  margin-bottom: 33px !important;
}
.mt34 {
  margin-bottom: 34px !important;
}
.mt35 {
  margin-bottom: 35px !important;
}
.mt36 {
  margin-bottom: 36px !important;
}
.mt37 {
  margin-bottom: 37px !important;
}
.mt38 {
  margin-bottom: 38px !important;
}
.mt39 {
  margin-bottom: 39px !important;
}
.mt40 {
  margin-bottom: 40px !important;
}
.mt41 {
  margin-bottom: 41px !important;
}
.mt42 {
  margin-bottom: 42px !important;
}
.mt43 {
  margin-bottom: 43px !important;
}
.mt44 {
  margin-bottom: 44px !important;
}
.mt45 {
  margin-bottom: 45px !important;
}
.mt46 {
  margin-bottom: 46px !important;
}
.mt47 {
  margin-bottom: 47px !important;
}
.mt48 {
  margin-bottom: 48px !important;
}
.mt49 {
  margin-bottom: 49px !important;
}
.mt50 {
  margin-bottom: 50px !important;
}
table,
td,
th {
  border: none;
  padding: 2px;
  font-size: 0.3rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  padding: 5px;
}
table img {
  max-width: 100%;
  border-collapse: collapse;
}
iframe {
  max-width: 100%;
}
@-webkit-keyframes zoom-out {
  0% {
    width: 200px;
    height: 200px;
    background: blue;
    opacity: 0;
  }
  100% {
    width: 400px;
    height: 400px;
    background: red;
    opacity: 1;
  }
}
@-moz-keyframes zoom-out {
  0% {
    width: 200px;
    height: 200px;
    background: blue;
    opacity: 0;
  }
  100% {
    width: 400px;
    height: 400px;
    background: red;
    opacity: 1;
  }
}
@keyframes zoom-out {
  0% {
    width: 200px;
    height: 200px;
    background: blue;
    opacity: 0;
  }
  100% {
    width: 400px;
    height: 400px;
    background: red;
    opacity: 1;
  }
}

.nux-sp-menu {
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  color: #fff;
  width: 90%;
  margin: 0 auto;
  background: #0082df;
}
.nux-sp-menu:before,
.nux-sp-menu:after {
  display: table;
  content: "";
}
.nux-sp-menu:after {
  clear: both;
}
.nux-sp-menu .menu-item {
  float: left;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
  height: 100%;
  min-width: 100px;
}
.nux-sp-menu .menu-item:hover {
  background: #006fd8;
}
.nux-sp-menu .menu-item:hover .submenu {
  padding: 10px 0;
  display: block;
}
.nux-sp-menu .active {
  background: #006fd8;
}
.nux-sp-menu .submenu {
  display: none;
  position: absolute;
  left: 0;
  background: #0082df;
  z-index: 100;
  width: 100%;
  text-align: center;
}
.nux-sp-menu .submenu-item {
  padding: 10px 0;
}
.nux-sp-menu .submenu-item:hover {
  background: #006fd8;
}
.nux-sp-menu2 {
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  color: #fff;
  width: 90%;
  margin: 0 auto;
  background: #0082df;
}
.nux-sp-menu2:before,
.nux-sp-menu2:after {
  display: table;
  content: "";
}
.nux-sp-menu2:after {
  clear: both;
}
.nux-sp-menu2 .menu-item {
  float: left;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
  height: 100%;
  min-width: 100px;
}
.nux-sp-menu2 .menu-item:hover {
  background: #006fd8;
}
.nux-sp-menu2 .active {
  background: #006fd8;
}
.nux-sp-menu2 .submenu {
  display: none;
  position: absolute;
  left: 0;
  background: #0082df;
  z-index: 100;
  width: 100%;
  text-align: center;
}
.nux-sp-menu2 .submenu-item {
  padding: 10px 0;
}
.nux-sp-menu2 .submenu-item:hover {
  background: #006fd8;
}
.pro {
  width: 200px;
  height: 200px;
  background: blue;
  opacity: 0;
  -webkit-animation: zoom-out 2s 3s infinite;
  -moz-animation: zoom-out 2s 3s infinite;
  animation: zoom-out 2s 3s infinite;
}
.head {
  width: 100%;
  position: fixed;
  top: 0;
  text-align: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
}
.top {
  width: 100%;
  padding: 0 0.2rem;
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 999;
}
.top .logo {
  padding-top: 0.15rem;
  width: 80%;
  color: #222;
  font: normal normal 0.3rem/0.8rem "微软雅黑", sans-serif;
}
.top .logo img {
  width: 2.5rem;
  height: 0.7rem;
  margin-right: 0.1rem;
  float: left;
}
.top .menu {
  padding-top: 0.25rem;
  width: 11%;
  height: 1rem;
}
.top .menu img {
  width: 0.6rem;
  height: 0.45rem;
}
.banner {
  width: 100%;
  margin-top: 1rem;
}
.swiper-container {
  width: 100%;
}
.swiper-slide img {
  display: block;
  width: 100%;
}
.swiper-pagination {
  bottom: 10px !important;
}
.swiper-pagination-bullet .swiper-pagination-bullet-active {
  background: #00a9ee !important;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #fff;
}
.swiper-pagination-bullet {
  width: 10px;
  opacity: 0.8 !important;
  height: 10px;
  border: 1px solid #fff;
  margin: 0 8px !important;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.swiper-pagination-bullet-active {
  background: #00a9ee !important;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
}
.page-footer {
  width: 100%;
  padding: 0.1rem 0 0;
  background: #3d3d3d;
  color: #fff;
}
.page-footer .footer {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  padding: 0.2rem 1%;
  color: #fff;
}
.page-footer .footer .fl {
  width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 5px;
}
.page-footer .footer .fl img {
  width: 100%;
}
.page-footer .footer .fl a {
  width: 100%;
  line-height: 0.3rem;
  font-size: 0.3rem;
  color: #999;
}
.page-footer .footer a {
  line-height: 0.4rem;
  color: #fff;
}
.page-footer .clearfix2 {
  width: 100%;
  background: #000;
  padding: 0.3rem 0;
}
.page-footer .clearfix2 .bottom_l {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 0.25rem;
  line-height: 0.4rem;
}
.page-footer .clearfix2 .bottom_l a {
  height: 1rem;
  font-size: 0.25rem;
  line-height: 0.5rem;
  color: #fff;
  margin: 0 auto;
}
.clearfix .title {
  text-align: left;
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1rem;
  color: #000;
  background: url(../img/bg_title.png) bottom center no-repeat;
  -webkit-background-size: 75% 75%;
  background-size: 75%;
  margin: 0 0 0.4rem;
}
.clearfix .title h2 {
  font-size: 0.4rem;
  text-align: center;
  line-height: 1rem;
}
.index_p1 {
  width: 100%;
  margin: 0.3rem auto 0.13rem;
}
.index_p1 .clearfix {
  width: 95%;
  margin: 0 auto;
}
.index_p1 .clearfix .content {
  overflow: hidden;
  margin-top: 0.2rem;
}
.index_p1 .clearfix .content ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.index_p1 .clearfix .content ul li {
  display: block;
  width: 47%;
  float: left;
  margin: 0.13rem 1.5%;
}
.index_p1 .clearfix .content ul li a {
  display: block;
  background: #d5d5d5;
  border: 1px solid #808080;
  overflow: hidden;
  width: 100%;
}
.index_p1 .clearfix .content ul li a img {
  display: block;
  width: 100%;
  height: 2.6rem;
}
.index_p1 .clearfix .content ul li a h2 {
  text-align: center;
  color: #000;
  padding: 0 0.1rem;
  font-size: 0.3rem;
  height: 0.5rem;
  line-height: 0.5rem;
}
.index_p1 .clearfix .content ul li a:hover {
  background: rgba(0, 169, 238, 0.5);
}
.index_p2 {
  width: 100%;
  padding: 0.5rem 0;
}
.index_p2 .clearfix {
  width: 90%;
  margin: 0 auto;
}
.index_p2 .clearfix .content {
  padding: 0.1rem 0;
}
.index_p2 .clearfix .content ul {
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.index_p2 .clearfix .content ul li {
  display: block;
  width: 100%;
  padding: 0.2rem 0;
  border-bottom: 1px dotted #d4d4d4;
}
.index_p2 .clearfix .content ul li a {
  width: 100%;
  display: block;
  overflow: hidden;
}
.index_p2 .clearfix .content ul li a img {
  display: block;
  width: 23%;
  height: 1.2rem;
  margin-right: 3%;
  float: left;
}
.index_p2 .clearfix .content ul li a h2 {
  width: 74%;
  line-height: 0.37rem;
  font-size: 0.25rem;
  float: left;
}
.index_p3 {
  width: 100%;
  padding: 0.5rem 0 0.7rem;
  background: url(../img/bg-news.jpg) top center no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
}
.index_p3 .clearfix {
  width: 90%;
  margin: 0 auto;
}
.index_p3 .clearfix .content {
  padding: 0.1rem 0;
}
.index_p3 .clearfix .content ul {
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.index_p3 .clearfix .content ul li {
  display: block;
  width: 100%;
  padding: 0.1rem 0;
}
.index_p3 .clearfix .content ul li a {
  width: 100%;
  display: block;
  background: #fff;
  padding: 0.1rem;
  overflow: hidden;
}
.index_p3 .clearfix .content ul li a img {
  display: block;
  width: 20%;
  height: 0.8rem;
  margin-right: 3%;
  float: left;
}
.index_p3 .clearfix .content ul li a h2 {
  width: 74%;
  line-height: 0.4rem;
  font-size: 0.25rem;
  float: left;
}
.index_p3 .clearfix .content ul li a:hover {
  background: #00a9ee;
}
.index_p3 .clearfix .content ul li a:hover h2 {
  color: #fff;
}
.clearfix {
  width: 90%;
  margin: 0 auto;
}
.index_p4 {
  background: #00a9ee;
  width: 100%;
  padding: 0.5rem 0 0.7rem;
}
.index_p4 .clearfix .title {
  background: url(../img/bg_title2.png) bottom center no-repeat;
  -webkit-background-size: 75% 75%;
  background-size: 75%;
}
.index_p4 .clearfix .title h2 {
  color: #fff;
}
.index_p4 .clearfix .content {
  overflow: hidden;
}
.index_p4 .clearfix .content .text {
  width: 98%;
  margin: 0 auto;
  overflow: hidden;
}
.index_p4 .clearfix .content .text h2 {
  margin: 0.3rem 0 0;
  font-size: 0.4rem;
  line-height: 0.8rem;
  color: #fff;
}
.index_p4 .clearfix .content .text span {
  display: block;
  width: 3.2rem;
  height: 2px;
  background: #fff;
}
.index_p4 .clearfix .content .text h3 {
  margin-top: 0.2rem;
  line-height: 0.4rem;
  font-size: 0.3rem;
  color: #fff;
}
.index_p4 .clearfix .content .text h3 a {
  color: #fff;
}
.index_p4 .clearfix .content .text h4 {
  border: 1px solid #fff;
  width: 2rem;
  text-align: center;
  line-height: 0.5rem;
  margin-top: 0.2rem;
}
.index_p4 .clearfix .content .text h4 a {
  color: #fff;
}
.index_p4 .clearfix .content .video {
  width: 100%;
  height: 4rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.index_p4 .clearfix .content .video .video-bg {
  width: 100%;
  height: 4rem;
  -webkit-box-shadow: 0 0 70px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.2);
  background: #000;
}
.index_p4 .clearfix .content .video .video-bg .movie-clip {
  height: 4rem;
  width: 100%;
}
.index_p4 .clearfix .content .video .video-bg .vjs-big-play-button {
  left: 50%;
  top: 50%;
  margin-left: -28px;
  border: none;
  margin-top: -28px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.index_p4 .clearfix .content .video .video-bg .vjs-big-play-button:focus {
  outline: 0;
}
.index_p5 .clearfix {
  width: 92%;
  margin: 0 auto;
}
.index_p6 {
  margin: 0.3rem auto 0.7rem;
  width: 100%;
}
.index_p6 .clearfix h2 {
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.6rem;
  font-weight: bold;
  color: #000;
  margin-top: 0.3rem;
}
.index_p6 .clearfix h3 {
  text-align: center;
  font-size: 0.3rem;
  line-height: 0.35rem;
  color: #000;
}
.index_p6 .clearfix h3 a {
  color: #000;
}
.swiper-container2 {
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
.swiper-container2 .swiper-wrapper {
  width: 90%;
  position: relative;
}
.swiper-container2 .swiper-slide .product {
  background: #d5d5d5;
}
.swiper-container2 .swiper-slide a {
  display: block;
  border: 1px solid #808080;
  width: 100% !important;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}
.swiper-container2 .swiper-slide a img {
  display: block;
  height: 2.2rem;
  margin: 0 auto;
}
.swiper-container2 .swiper-slide a .text {
  width: 100%;
  text-align: center;
}
.swiper-container2 .swiper-slide a .text h1 {
  color: #313131;
  font-size: 0.3rem;
  line-height: 0.6rem;
}
.swiper-container2 .swiper-slide a h2 {
  color: #000;
  line-height: 0.5rem;
}
.swiper-container2 .swiper-slide a:hover .text h1 {
  color: #00a9ee;
}
.swiper-button-next,
.swiper-button-prev {
  display: none;
  position: absolute;
  top: 50%;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background: url(../img/jiantou2.png) left center no-repeat;
  width: 0.3rem;
  height: 0.8rem;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background: url(../img/jiantou.png) right center no-repeat;
  width: 0.3rem;
  height: 0.8rem;
}
.swiper-pagination2 .swiper-pagination-bullet {
  display: none;
}
.mobile_nav {
  width: 100%;
  margin: 0.2rem auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.2rem 0;
  position: relative;
  overflow: hidden;
  background: white;
}
.mobile_nav .cat {
  width: 90%;
  overflow: hidden;
  margin: 0.1rem auto;
}
.mobile_nav .cat ul {
  overflow: hidden;
}
.mobile_nav .cat ul li {
  width: 25%;
  float: left;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0.15rem 0;
}
.mobile_nav .cat ul li a {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.mobile_nav .cat ul li a h2 {
  width: 77%;
  background: #00a9ee;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  height: 1.3rem;
  font-size: 0.25rem;
  margin: 0 auto;
}
.mobile_nav .cat ul li a h2 img {
  min-width: 40%;
  max-height: 50%;
  margin-top: 25%;
}
.mobile_nav .cat ul li a h1 {
  font-size: 0.3rem;
  line-height: 0.6rem;
  font-weight: 400;
}
.mobile_nav .cat ul li a h2:hover {
  background: #b20000;
}
.mobile_nav .cat ul li .active h2 {
  background: #b20000;
}
.inside_about {
  width: 100%;
  background: #fff;
  padding: 0.5rem 0 0;
}
.inside_about .clearfix .contant {
  margin: 0.3rem 0;
}
.inside_about .clearfix .contant img {
  max-width: 100%;
}
.class_video {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 1.2rem;
}
.class_video .video-bg {
  width: 100%;
  height: 4rem;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background: #000;
}
.class_video .video-bg .movie-clip {
  width: 100%;
  margin-top: 0.1rem;
  height: 4rem;
}
.class_video .video-bg .vjs-big-play-button {
  left: 50%;
  top: 50%;
  margin-left: -28px;
  border: none;
  margin-top: -28px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.class_video .video-bg .vjs-big-play-button:focus {
  outline: 0;
}
.class {
  width: 92%;
  margin: 0.5rem auto;
  overflow: hidden;
}
.class .class_content {
  overflow: hidden;
}
.class .class_content ul li {
  float: left;
  margin: 0.1rem auto 0.3rem;
  background: white;
  width: 100%;
}
.class .class_content ul li a {
  width: 100%;
  height: 2.5rem;
  display: block;
}
.class .class_content ul li a img {
  display: block;
  width: 40%;
  height: 2.5rem;
  float: left;
}
.class .class_content ul li a .text {
  float: left;
  height: 1.5rem;
  width: 60%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.1rem 0.3rem;
  background: #fff;
}
.class .class_content ul li a .text h1 {
  font-size: 0.3rem;
  line-height: 0.8rem;
  font-weight: normal;
}
.class .class_content ul li a .text h2 {
  font-size: 0.25rem;
  line-height: 0.3rem;
}
.class .class_content ul li a .text h3 {
  font-size: 0.25rem;
  color: #000;
  border: 1px solid #000;
  width: 1.5rem;
  height: 0.5rem;
  margin-top: 0.2rem;
  text-align: center;
  line-height: 0.5rem;
}
.inside_addv {
  width: 92%;
  margin: 0.5rem auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.6rem 0.3rem;
  background: #fff;
  overflow: hidden;
}
.inside_addv ul li {
  width: 50%;
  text-align: center;
  float: left;
  overflow: hidden;
  height: 2.2rem;
  margin: 0.1rem auto;
}
.inside_addv ul li img {
  width: 19%;
  margin-bottom: 0.1rem;
}
.inside_addv ul li h1 {
  line-height: 0.5rem;
  font-size: 0.35rem;
  font-weight: normal;
}
.inside_addv ul li h2 {
  line-height: 0.4rem;
  width: 90%;
  margin: 0 auto;
}
.cate {
  width: 100%;
  border-top: 1px solid #ccc;
  overflow: hidden;
  margin: 1rem auto 0;
  background: #f4f4f4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cate ul {
  overflow: hidden;
  padding: 0.2rem 0;
}
.cate ul li {
  overflow: hidden;
  display: block;
  margin: 5px 5px;

  float: left;
}
.cate ul li a {
  text-align: left;
  background: rgb(235, 199, 112);
  max-width: 100%;
  font-size: 0.28rem;
  padding: 0.2rem 0.3rem;
  color: #000;
  line-height: 0.3rem;
  float: left;
}
.cate ul li a:hover {
  color: #fff;
}
.cate ul li a.active {
  color: #fff;
}
.cate ul li .active {
  color: #fff !important;
  background: #00a9ee;
}
.act_in {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.5rem 0;
  overflow: hidden;
  background: #fff;
}
.act_in .act_content {
  padding: 0.2rem 0;
  margin-top: 0.3rem;
}
.act_in .act_content ul li {
  float: left;
  margin: 0 2.5% 0.3rem;
  width: 45%;
}
.act_in .act_content ul li a {
  width: 100%;
  display: block;
}
.act_in .act_content ul li a img {
  display: block;
  width: 100%;
  height: 2.2rem;
}
.act_in .act_content ul li a h1 {
  color: #313131;
  width: 85%;
  font-size: 0.35rem;
  line-height: 0.7rem;
  margin: 0 auto;
  text-align: center;
}
.video_in {
  width: 92%;
  margin: 0.5rem auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.6rem auto;
  overflow: hidden;
}
.video_in .act_content ul li {
  float: left;
  margin: 0 2.5% 0.3rem;
  background: white;
  width: 45%;
  overflow: hidden;
}
.video_in .act_content ul li a {
  width: 100%;
  height: 3rem;
  display: block;
  position: relative;
}
.video_in .act_content ul li a img {
  display: block;
  width: 100%;
  height: 2.2rem;
}
.video_in .act_content ul li a h1 {
  font-size: 0.3rem;
  line-height: 0.8rem;
  text-align: center;
}
.video_in .act_content ul li a .mask {
  width: 100%;
  height: 2.2rem;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
}
.video_in .act_content ul li a .video_icon {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 0.5rem;
  height: 0.5rem;
}
.video_in .act_content ul li a .video_icon img {
  width: 0.5rem;
  height: 0.5rem;
}
.news_in {
  width: 100%;
  padding: 0.5rem 0;
  overflow: hidden;
  background: white;
}
.news_in .news_content {
  margin-top: 0rem;
}
.news_in .news_content ul {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.news_in .news_content ul li {
  float: left;
  padding: 0.2rem 0;
  width: 100%;
  display: block;
  border-bottom: 1px dashed #bdbdbd;
}
.news_in .news_content ul li a {
  width: 100%;
  display: block;
}
.news_in .news_content ul li a .text {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.1rem 0;
  background: #fff;
}
.news_in .news_content ul li a .text h2 {
  font-size: 0.3rem;
  line-height: 0.6rem;
  font-weight: normal;
  color: black;
}
.news_in .news_content ul li a .text h3 {
  font-size: 0.25rem;
  line-height: 0.4rem;
  color: #666;
}
.news_in .news_content ul li a .text h4 {
  color: #999;
  font-size: 0.25rem;
}
.teacher_in {
  width: 92%;
  margin: 0.5rem auto 0;
  overflow: hidden;
}
.teacher_in .teacher_content ul li {
  float: left;
  margin: 0 1.5% 0.3rem;
  width: 30.33%;
}
.teacher_in .teacher_content ul li a {
  width: 100%;
  overflow: hidden;
  display: block;
}
.teacher_in .teacher_content ul li a img {
  display: block;
  width: 100%;
  height: 3rem;
}
.teacher_in .teacher_content ul li a h1 {
  width: 92%;
  overflow: hidden;
  margin: 0 auto;
  font-size: 0.3rem;
  line-height: 0.8rem;
  text-align: center;
}
.inside_pro_con {
  width: 100%;
  padding: 0.5rem 0;
  background: #fff;
}
.inside_pro_detail {
  width: 90%;
  margin: 30px auto;
  background: #fff;
}
.inside_pro_detail .title h2 {
  font-size: 0.35rem;
  color: #000;
}
.inside_pro_detail .swiper-container3 {
  width: 100%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.inside_pro_detail .swiper-container3 .swiper-slide {
  width: 100%;
}
.inside_pro_detail .swiper-container3 .swiper-slide img {
  width: 100%;
  display: block;
}
.inside_pro_detail .swiper-container3 .swiper-pagination3 {
  position: absolute;
  text-align: center;
  z-index: 9999;
  margin: 0 auto;
  bottom: 10px;
}
.inside_pro_detail
  .swiper-container3
  .swiper-pagination-bullet
  .swiper-pagination-bullet-active {
  border: none !important;
  background: #00a9ee !important;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.inside_pro_detail .swiper-container3 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 10px !important;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.inside_pro_detail .swiper-container3 .swiper-pagination-bullet-active {
  background: #00a9ee !important;
  border: none;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
}
.inside_pro_detail .pro_det_con {
  padding: 0.4rem 0;
}
.inside_pro_detail .pro_det_con img {
  max-width: 100%;
}
.inside_pro_detail .pro_det_con span {
  margin: 10px 0;
}
.inside_pro_detail .pro_det_con ul {
  padding-left: 15px;
  margin: 5px;
  max-width: 100%;
  word-wrap: break-word;
}
.inside_pro_detail .pro_det_con ul p {
  word-wrap: break-word;
}
.detail_content td,
.inside_pro_detail .pro_det_con td {
  display: block;
  width: 100%;
}
.inside_pro_detail .pro_det_con td img {
  display: block;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}
.exc {
  width: 100%;
}
.exc span {
  width: 100% !important;
}
.detail_content .exc td,
.inside_pro_detail .pro_det_con .exc td {
  display: revert;
}

.exc td {
  border: 1px solid #000 !important;
  border-width: 1px;
  border-color: windowtext;
}
.exc tr {
  border: 1px solid #000 !important;
  border-width: 1px;
  border-color: windowtext;
}
.about_in {
  width: 92%;
  margin: 0.8rem auto;
}
.about_in .inside_content {
  padding: 0.4rem 0;
  color: #8e8e8e;
}
.about_in .inside_content img {
  max-width: 92%;
  margin: 0 auto;
}
.news_detail {
  width: 100%;
  padding: 0.5rem 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}
.class_detail {
  background: #fff;
  width: 92%;
  margin: 0.5rem auto 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5%;
  text-align: center;
}
.class_detail img {
  max-width: 80%;
  margin: 0 auto;
}
.nux-pagination {
  color: #999999;
  margin: 0.2rem auto 0;
  text-align: center;
}
.nux-pagination .current {
  background: #006ec7;
  border-color: #006ec7;
  color: #fff;
}
.nux-pagination .prev,
.nux-pagination .next,
.nux-pagination .current {
  display: inline-block;
  min-width: 0.3rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  margin: 0 0.05rem;
  -webkit-border-radius: 0.05rem;
  border-radius: 0.05rem;
  border: 1px solid #d9d9d9;
}
.nux-pagination .num {
  display: inline-block;
  min-width: 0.3rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  margin: 0 0.05rem;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  color: #222;
}
.nux-pagination .prev,
.nux-pagination .next {
  padding: 0 5px;
}
.pagination p {
  margin: 0;
  cursor: pointer;
}
.pagination {
  display: inline-block;
  padding: 0.1rem 0px;
  margin: 0.2rem 0 0;
}
.pagination a {
  display: block;
  float: left;
  margin-right: 0.1rem;
  padding: 0.05rem 0.15rem;
  border: 1px #000 solid;
  text-decoration: none;
  color: #000;
  font-size: 0.25rem;
  line-height: 0.3rem;
}
.pagination a:hover {
  color: #b20000;
  border: 1px #000 solid;
}
.pagination a.cur {
  border: none;
  color: #fff;
  background: #00a9ee;
  border: 1px #00a9ee solid;
}
.pagination p {
  float: left;
  padding: 0.05rem 0.15rem;
  font-size: 0.25rem;
  line-height: 0.3rem;
  color: #999;
  border: 1px #808080 solid;
  margin-right: 8px;
}
.pagination p.pageRemark {
  border-style: none;
  background: none;
  margin-right: 0px;
  padding: 4px 0px;
  line-height: 0.3rem;
  color: #666;
}
.pagination p.pageRemark b {
  color: red;
}
.pagination p.pageEllipsis {
  border-style: none;
  background: none;
  padding: 4px 0px;
  color: #808080;
}
.dates li {
  font-size: 14px;
  margin: 20px 0;
}
.dates li span {
  float: right;
}
.pages {
  margin-top: 0.2rem;
  font-size: 0.25rem;
  color: #9d9d9d;
}
.pages .next a {
  width: 75%;
  color: #9d9d9d;
}
.prev a {
  width: 75%;
  color: #9d9d9d;
}
.pages a:hover {
  color: #ffd102;
}
.pages span {
  line-height: 2;
  display: block;
}
.pages span a:hover {
  text-decoration: underline;
}
.detail {
  font-size: 0.3rem;
  color: #9d9d9d;
  line-height: 2;
}
.detail .d-title {
  font-weight: normal;
  text-align: center;
  color: #000;
  line-height: 0.4rem;
  font-size: 0.3rem;
}
.detail_content {
  padding: 0.2rem 0;
  background: #fff;
  margin: 0.4rem auto;
}
.detail_content img {
  max-width: 95%;
}
.detail_content span {
  line-height: 0.6rem !important;
  margin: 0.1rem 0;
  display: block;
  min-width: 180px;
}

.detail .d-time {
  font-size: 0.25rem;
  font-weight: normal;
  line-height: 2;
  color: #9d9d9d;
  text-align: center;
}
.field-ctl {
  overflow: hidden;
  display: block;
}
.btn {
  display: inline-block;
  width: 2rem;
  height: 0.7rem;
  margin-top: 0.1rem;
  line-height: 0.7rem;
  font-size: 0.3rem;
  text-align: center;
  background: #00a9ee;
  color: #fff !important;
  outline: 0px;
  font-family: "HK", serif;
  -webkit-appearance: none;
}
form a:hover {
  color: #fff;
}
.input-ctl {
  width: 100%;
}
/* input {
  -webkit-border-radius: 0.3rem;
  border-radius: 0.3rem;
} */
.me {
  width: 100%;
  display: block;
}
iframe {
  max-width: 100%;
}
form {
  width: 70%;
  margin: 0 auto 0.3rem;
}
form h1 {
  font-size: 0.3rem;
  text-align: center;
  font-weight: bold;
  line-height: 0.6rem;
  color: #434343;
}
form label {
  font-size: 0.3rem;
  line-height: 0.4rem;
}
.form-control-m {
  line-height: 0.5rem;
  width: 95%;

  border: 1px solid #999;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: rgba(0, 0, 0, 0.01);
  text-indent: 0.2rem;
  outline: none;
}
.input-ctl-m {
  height: 0.5rem;
  border: 1px solid #999;
  width: 30%;
}
.full {
  width: 95%;
  height: 0.5rem;
  font-size: 0.25rem;
  outline: none;
  background-color: rgba(0, 0, 0, 0.01);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  margin-bottom: 0.1rem;
  padding: 0 0.1rem;
  float: left;
  border: 1px solid #999;
  color: #b2b2b2;
}
.half {
  width: 44.5%;
  height: 0.5rem;
  font-size: 0.25rem;
  outline: none;
  background-color: rgba(0, 0, 0, 0.01);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  margin-right: 0.2rem;
  margin-bottom: 0.1rem;
  padding: 0 0.1rem;
  float: left;
  border: 1px solid #999;
  color: #b2b2b2;
}
.form-control {
  width: 91%;
  height: 0.5rem;
  outline: none;
  background-color: rgba(0, 0, 0, 0.01);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  margin-right: 0.2rem;
  padding: 0 0.1rem;
  float: left;
  border: 1px solid #999;
  color: #b2b2b2;
}

.proform form {
  width: 100%;
  margin: 30px 0;
}

.pro_det_con .clearfix {
  width: 100%;
}

.proform form label {
  display: block;
}

.field-ctl {
  margin: 0 0 10px 0;
}

.proform form img {
  height: 35px;
  display: inline-block;
  vertical-align: middle;
  margin: -5px 0 0 0;
}

.proform form .input-ctl-m {
  height: 0.7rem;
}
video {
  max-width: 100%;
  max-height: 5rem;
}
