/*LuKang.less > Versions 2.0*/
/***网页默认设置***/
/*字体颜色*/
/*什么字体*/
/*字体大小*/
/*边框颜色*/
/*渐变样式，在手机端不能使用，只针对于背景颜色和字体颜色*/
/*动画*/
/*旋转样式*/
/*3D旋转样式-IE10以下不支持*/
/*快速形成一个3d磁场*/
/*快速设置宽高度*/
/*快速设置一个正方形*/
/*快速设置浮动*/
@import "animate.css";
@import "style.css";
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
/*快速设置鼠标点击小手样式*/
/*快速设置圆角 IE9以下不支持此样式*/
/*快速设置一个按钮*/
/*快速设置一个进度条*/
/*快速设置一个banner切换 配合 jquery.SuperSlide.2.1.1.js 插件*/
/*快速设置一个导航菜单,包括导航下拉菜单。*/
/*快速设置字体颜色和字体大小*/
/*快速设置背景阴影*/
/*快速设置字体阴影*/
/*快速设置内边距*/
/*快速设置外边距*/
/*快速设置对齐*/
.text-align-center {
  text-align: center;
}
.text-align-left {
  text-align: left;
}
.text-align-right {
  text-align: right;
}
/*删除边框*/
.borderDel {
  border: 0px;
}
/*透明 ps:请输入0-1 比如：0.5*/
/*边框的线样式快速设置*/
/*设置居上的px,用于上下居中*/
/*----------------------------------------------------------*/
/*修改自带标签的一些特性*/
* {
  margin: 0px;
  padding: 0px;
  font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
div,
table,
p {
  margin: 0px auto;
}

li {
  list-style: none;
}
img {
  border: 0px;
  vertical-align: middle;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
a {
  text-decoration: none;
}
/*修改自带标签的一些特性*/
/*自己写的常用样式*/
.dib {
  display: inline-block;
  background-repeat: no-repeat;
}
.fl {
  float: left !important;
}
.fr {
   float: right !important;
}
.lk {
  width: 100%;
  overflow: hidden;
  text-align: center;
  /*note: "..此处里面的样式有问题,请联系鲁康。"*/
}
.lk .main {
  width: 1180px;
  /*note:"..此处调整整体宽度.."*/
}
/*自己写的常用样式*/
/*--------------------------------快速写的渐入-----------------------------*/
.tran {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.tranUp {
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  transform: translateY(-100px);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
}
.tranDown {
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
}
.tranLeft {
  -webkit-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
}
.tranRight {
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  -o-transform: translateX(-100px);
  transform: translateX(-100px);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
}
.tranDelay0 {
  transition-delay: 0s !important;
}
.tranDelay5 {
  transition-delay: 0.2s;
}
.tranDelay10 {
  transition-delay: 0.4s;
}
.tranDelay15 {
  transition-delay: 0.6s;
}
.tranDelay20 {
  transition-delay: 0.8s;
}
.tranDelay25 {
  transition-delay: 1s;
}
.tranDelay30 {
  transition-delay: 1.2s;
}
.tranDelay35 {
  transition-delay: 1.4s;
}
.tranDelay40 {
  transition-delay: 1.6s;
}
.tranDelay45 {
  transition-delay: 1.8s;
}
.tranDelay50 {
  transition-delay: 2s;
}
.tranDelay55 {
  transition-delay: 2.2s;
}
.tranDelay60 {
  transition-delay: 2.4s;
}
.container .section {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.container .section .main {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 50%;
  left: 0;
  bottom:0;/*增加这个，确保底部不会超过屏幕*/
  margin: 0 auto;
}

.container .section .main .abs {
  position: absolute;
  left: 50%;
}
.container .section.active .show {
  transform: translateX(0) translateY(0) !important;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
.container .section1 .main {
  text-align: center;
  margin-top: -185.5px;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.container .section1 .main .img {
  width: 400px;
}
.container .section1 .main .img1 {
  width: 460px;
  position: absolute;
  top: 87px;
  left: 50%;
  margin-left: -230px;
  z-index: 99;
}
.container .section1 .main:hover {
  transform: scale(1.05, 1.05);
}
.container .section1 .banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
.container .section1 .banner .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.container .section2 .main {
  margin-top: -168px;
}
.container .section2 .title1 {
  margin-bottom: 15px;
}
.container .section2 .title1 span {
  margin-left: 5px;
  margin-right: 5px;
}
.container .section2 .title1 .s1 {
  font-size: 46px;
  color: #fff;
}
.container .section2 .title1 .s2 {
  font-size: 46px;
  color: #9f9f9f;
}
.container .section2 .title2 {
  font-size: 50px;
  color: #373737;
  margin-bottom: 60px;
}
.container .section2 .btn {
  width: 1180px;
  position: relative;
}
.container .section2 .btn .figure {
  margin-top: 25px;
  margin-bottom: 25px;
  width: 25%;
  text-align: center;
  float: left !important;
}
.container .section2 .btn .figure:hover span {
  background-color: #fff;
}
.container .section2 .btn .figure:hover .s1 {
  background-image: url("../img/s2-11.png");
}
.container .section2 .btn .figure:hover .s2 {
  background-image: url("../img/s2-22.png");
}
.container .section2 .btn .figure:hover .s3 {
  background-image: url("../img/s2-33.png");
}
.container .section2 .btn .figure:hover .s4 {
  background-image: url("../img/s2-44.png");
}
.container .section2 .btn .figure:hover .s5 {
  background-image: url("../img/s2-55.png");
}
.container .section2 .btn .figure:hover .s6 {
  background-image: url("../img/s2-66.png");
}
.container .section2 .btn .figure:hover .s7 {
  background-image: url("../img/s2-77.png");
}
.container .section2 .btn .figure:hover .s8 {
  background-color: transparent !important;
}
.container .section2 .btn .figure span {
  cursor: pointer;
  display: inline-block;
  background-repeat: no-repeat;
  width: 171px;
  height: 171px;
  border: 2px solid #fff;
  border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  background-position: center center;
}
.container .section2 .btn .figure span.s1 {
  background-image: url("../img/s2-1.png");
}
.container .section2 .btn .figure span.s2 {
  background-image: url("../img/s2-2.png");
}
.container .section2 .btn .figure span.s3 {
  background-image: url("../img/s2-3.png");
}
.container .section2 .btn .figure span.s4 {
  background-image: url("../img/s2-4.png");
}
.container .section2 .btn .figure span.s5 {
  background-image: url("../img/s2-5.png");
}
.container .section2 .btn .figure span.s6 {
  background-image: url("../img/s2-6.png");
}
.container .section2 .btn .figure span.s7 {
  background-image: url("../img/s2-7.png");
}
.container .section2 .btn .figure span.s8 {
  background-image: url("../img/s2-8.png");
  border: 2px solid #c9c9c9;
}
.container .section2 .btn .figure p {
  margin-top: 10px;
}

.container .section3 {
  background-image: url("../img/s7-1.png");/*../img/bj2.png*/
}
.container .section3 .main {
  text-align: center;
  /*margin-top: -185px;*/
 	margin-top: -6rem;
}
.container .section3 .main .showImg {
  z-index: 60;
  position: absolute;
  height: 518px;
  overflow: inherit !important;
  left: 0;
  right: 0;
  width: 1180px;
  height: 698px;
  top: -147px;
}
.container .section3 .main .showImg .s_img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 15px #d8d8d8;
  -moz-box-shadow: 0px 0px 15px #d8d8d8;
  -webkit-box-shadow: 0px 0px 15px #d8d8d8;
}
.container .section3 .main .showImg .c {
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: #fff;
  right: 1px;
  top: 1px;
  cursor: pointer;
}
.container .section3 .main .showImg .s_img {
  box-shadow: 0px 0px 0px #d8d8d8;
  -moz-box-shadow: 0px 0px 0px #d8d8d8;
  -webkit-box-shadow: 0px 0px 0px #d8d8d8;
}
.container .section3 .main .s3Btn {
  /*cursor: pointer;*/
  /**/
 	width: 5rem;
}
.container .section3 .main .s3Btn img{
	width: 3.5rem;
}
.container .section3 .main .s3Btn span{
	display: block;
	font-size: 0.6rem;
	line-height: 0.6rem;
	color: black;
	font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
	margin-top: -0.3rem;
}
.container .section3 .main .s2 {
  margin-right: 3.5rem;
  margin-top: 0rem;
  width: 16rem;
}
.container .section3 .main .s1 {
  /*top: -105px;
  margin-left: -309.5px;*/
 	top: -1rem;
	margin-left: -7rem;
	width: 15rem;
}
.container .section3 .main .s3 {
  margin-left: -3rem;
  /*margin-top: 140px;*/
 margin-top: 4.5rem;
  width: 7rem;
}
.container .section3 .main .d1 {
    /*margin-left: -519px;
    margin-top: 260px;*/
   margin-left: -12rem;
   margin-top: -11.5rem;
}
.container .section3 .main .d2 {
    /*margin-left: -477px;
    margin-top: 67px;*/
   margin-left: -11.5rem;
   margin-top: -17rem;
}
.container .section3 .main .d3 {
    /*margin-left: -416px;
    margin-top: -82px;*/
   margin-left: -9rem;
   margin-top: -22rem;
}
.container .section3 .main .d4 {
    /*margin-left: -109px;
    margin-top: -172px;*/
   margin-left: -1.8rem;
   margin-top: -24.5rem;

}
.container .section3 .main .d5 {
   /*margin-left: 211px;
   margin-top: -95px;*/
  margin-left: 5rem;
   margin-top: -22rem;
}
/*.container .section3 .main .d6 {
  margin-left: 290px;
  margin-top: -5px;
}*/
/**/
.container .section3 .main .title .t {
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -140px;
  color: #F1F1F1;
  font-size: 50px;
  line-height: 45px;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}
.container .section3 .main .title .t small {
  color: #3276B1;
  font-size: 40px;
}

.container .section3 .main .d7 {
     /*margin-left: 312px;
    margin-top: 86px;*/
   	margin-left: 8rem;
	margin-top: -16.5rem;
}
.container .section3 .main .d8 {
  /*margin-left: 313px;
  margin-top: 260px;*/
	margin-left: 8rem;
	margin-top: -11.5rem;
}
.container .section4 .main {
  margin-top: -305px;
}
.container .section4 .main .t1 {
  text-align: center;
  font-size: 40px;
  color: #373737;
}
.container .section4 .main .t1 span {
  color: #fff;
  font-size: 46px;
}
.container .section4 .main .t2 {
  margin-top: 22px;
  text-align: center;
  color: #9f9f9f;
  font-size: 44px;
}
.container .section4 .main .bj {
  margin-top: 210px;
  width: 1195px;
  height: 200px;
  background-image: url("../img/s4-bj.png");
}
.container .section4 .main .s1 {
  margin-left: -400px;
  top: 155px;
}
.container .section4 .main .s2 {
  margin-left: 185px;
  top: 155px;
}
.container .section4 .main .s3 {
  margin-left: -365px;
  top: 490px;
}
.container .section4 .main .s4 {
  margin-left: 265px;
  top: 470px;
}
.container .section4 .main .s5 {
  margin-left: -154.5px;
  top: 670px;
  cursor: pointer;
}
.container .section5 {
  background-image: url("../img/s5-bj.png");
}
.container .section5 .main {
  margin-top: -8rem;/*-240px*/
}
.container .section5 .main .t1 {
  font-size: 1rem;
  color: #fff;
}
.container .section5 .main .t2 {
  font-size: 1rem;
  color: #fff;
  margin-top: 1rem;
}

.container .section5 .main .div .figure {
  width: 20%;
  text-align: center;
  float: left !important;
  margin-top: 50px;
}

.container .section8 .main .title {
  position: relative;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
  font-size: 16px;
  color: #353535;
  line-height: 28px;
}
.container .section8 .main .title .t {
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -140px;
  color: #373737;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}
.container .section8 .main .title .t small {
  color: #E21921;
  font-size: 1.2rem;
}

.container .section7 .footer {
  height: 325px;
}
.container .section7 .footer .fig {
  width: 1180px;
  overflow: hidden;
  margin: 0px auto;
  padding-top: 83px;
}
.container .section7 .footer .fig .figure {
  float: left !important;
  width: 33.33333333%;
  text-align: center;
}
.container .section7 .footer .fig .figure .logo {
  margin-top: 17px;
}
.container .section7 .footer .fig .figure .zi {
  margin-top: 17px;
}
.container .section7 .footer .fig .figure .zi p {
  color: #6a6a6a;
  text-align: left;
  margin-bottom: 10px;
}
.container .section7 .footer .fig .figure .zi .i {
  color: #00e2ca;
  font-size: 30px;
}
.container .section7 .footer .fig .figure .zi .t {
  font-weight: bold;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.container .section7 .footer .fig .figure .zi .c {
  font-size: 14px;
  line-height: 30px;
  color: #6a6a6a;
}
.container .section7 .footer .copy {
  height: 40px;
  line-height: 40px;
  color: #5a5a5a;
  font-size: 12px;
  border-top: 1px solid #dcdcdc;
  text-align: center;
  width: 1180px;
  margin-top: 50px;
  padding-top: 20px;
}
.container .section8 {
  background-image: url("../img/s7-1.png");
}
.container .section8 .main {
  margin-top: -7rem;/*-170px*/
}
.container .section8 .main .footer {
  height: 325px;
}
.container .section8 .main .footer .fig {
  width: 1180px;
  overflow: hidden;
  margin: 0px auto;
  padding-top: 25px;
}
.container .section8 .main .footer .fig .figure {
  float: left !important;
  width: 33.33333333%;
  text-align: center;
}
.container .section8 .main .footer .fig .figure .logo {
  margin-top: 17px;
}
.container .section8 .main .footer .fig .figure .zi {
  /*margin-top: 17px;*/
 margin-top: 0.5rem;
 padding: 0 0.5rem;
}
.container .section8 .main .footer .fig .figure .zi p {
  color: #6a6a6a;
  text-align: left;
  margin-bottom: 10px;
}
.container .section8 .main .footer .fig .figure .zi .i {
  color: #00e2ca;
  font-size: 30px;
}
.container .section8 .main .footer .fig .figure .zi .t {
  font-weight: bold;
  font-size: 0.6rem;
  padding: 10px;
}
.container .section8 .main .footer .fig .figure .zi .c {
  font-size: 0.5rem;
  line-height: 1rem;
  color: #6a6a6a;
}
.container .section8 .main .footer .copy {
  height: 40px;
  line-height: 40px;
  color: #5a5a5a;
  font-size: 12px;
  border-top: 1px solid #dcdcdc;
  text-align: center;
  width: 1180px;
  margin-top: 50px;
  padding-top: 20px;
}
.navber {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  z-index: 19960924;
  padding-left: 1rem;
  padding-right: 2rem;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.7s;
  -moz-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  transition-duration: 0.7s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.navber.active {
  background-color: rgba(0, 1, 17, 0.7);
}
.navber .logo {
  float: left !important;
  /*height: 100%;*/
  margin-top: 17.5px;
  cursor:pointer;
}
.navber .nav {
  float: left !important;
  height: 70px;
  padding-left: 34px;
}
.navber .nav a {
  float: left !important;
  display: inline-block;
  background-repeat: no-repeat;
  height: 70px;
  line-height: 70px;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 0.5rem;
}
.navber .nav a:hover {
  background-color: #E02D39;
}
.navber .fr {
  margin-top: 17.5px;
}
.navber .fr a {
  float: left !important;
  display: inline-block;
  background-repeat: no-repeat;
  height: 35px;
  line-height: 32px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 35px;
  -o-border-radius: 35px;
  -moz-border-radius: 35px;
  -webkit-border-radius: 35px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: 25px;
}
.navber .fr a:hover {
  background-color: #E02D39;
}
.navber .fr a:last-child {
  background-image: url("../img/dh.png");
  background-repeat: no-repeat;
  background-size: auto 15px;
  background-position: 20px center;
}
.navber .gh {
  margin-top: 18px;
  margin-right: 0px;
  margin-left: 25px;
}
.navber .gh a {
  background-color: #fff;
}
.navber .gh a:after,
.navber .gh a:before {
  background-color: #fff;
}
.wrapper-scroll {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  padding-top: 70px;
  background-color: #fff;
}
.wrapper-scroll .content {
  height: 100%;
  width: 20000px;
}
.wrapper-scroll .content .section {
  float: left !important;
  width: 620px;
  border-right: 1px solid #e8e8e8;
  height: 100%;
  padding: 45px 35px;
  position: relative;
}
.wrapper-scroll .content .section.comma:before {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  width: 26px;
  height: 16px;
  background-image: url("../img/comma1.png");
  position: absolute;
  top: 20px;
  left: 20px;
}
.wrapper-scroll .content .section.comma:after {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  width: 26px;
  height: 16px;
  background-image: url("../img/comma2.png");
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.wrapper-scroll .content .section.one {
  text-align: center;
  line-height: 500px;
}
.wrapper-scroll .content .section .cont {
  width: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  max-height: 100% !important;
  font-size: 16px;
  line-height: 25px;
}
.wrapper-scroll .content .section .cont .p {
  width: 100%;
  display: inline-block;
  background-repeat: no-repeat;
}
.wrapper-scroll .content .section .cont .p img {
  width: 100%;
  margin-bottom: 5px;
}
.wrapper-scroll .content .section .cont .p.t {
  color: #00bb9a;
  font-size: 20px;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
}
.wrapper-scroll .content .section .cont .p.c {
  color: #3d3d3d;
  font-size: 16px;
  text-align: left;
  line-height: 24px;
  text-indent: 2em;
}
.wrapper-scroll .content .section .cont .p.h1 {
  font-size: 30px;
  line-height: 38px;
  color: #5e5e5e;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .section2 .main {
    margin-top: -168px !important;
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  .section3 .main {
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  .section4 .main {
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  .section6 .main {
    margin-top: -290px !important;
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
}
  .section6 .title p{
	padding-left:50px;
	padding-right:50px;
	font-size:16px;
}




.AlertContentBox {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  z-index: 60;
  position: absolute;
  width: 1180px;
  height: 295px;
  padding: 20px;
  top:3%;
  left: 5%;
  right: 0;
  background-color: #fff;
  box-shadow: 0px 0px 15px #d8d8d8;
  -moz-box-shadow: 0px 0px 15px #d8d8d8;
  -webkit-box-shadow: 0px 0px 15px #d8d8d8;
  display:none;
}
.AlertContentBox .Content {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 485px;
  margin-top:5px;
  
 
}
.AlertContentBox .Content p {
  text-align: left !important;
  font-size: 16px !important;
  line-height: 24px;
}
.AlertContentBox .s_img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}
.AlertContentBox .Close {
  width: 28px;
  height: 28px;
  position: absolute;
  background-color: #fff;
  right: 10px;
  top: -2px;
  cursor: pointer;
}

.p_center{
	  text-align: center !important;
}

.p_left{
	  text-align: left !important;
}



::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.sh_im{
	width:768px;
	margin-left:-384px;
	height:500px;
    text-algin:center;
	position:absolute;
	left: 50%;
	top:-20%;
}
.sh_im .lazy{
	position:relative;
    top: 0;
    left:0;
	z-index:333;
}
.sh_im  img.sh_close{
	  position:relative;
	  top: 125px;
	  z-index:999;
	  zoom: 0.2;
    float: right;
    display: block;
	
}

