html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dd,
dl,
dt,
li,
ol,
ul,
fieldset,
form,
label,
legend {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
img {
  border: none;
}
p {
  margin-bottom: 0;
}
body,
a,
input,
select,
button {
  font-family: "Microsoft Yahei", "Droid Sans Fallback", "Arial", "Helvetica", "sans-serif", "宋体";
  font-size: 14px;
  outline: none;
  color: #666;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*去除获取焦点时半透明背景*/
}
ul,
ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
a {
  color: #428bca;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
table {
  text-align: center;
  vertical-align: middle;
}
th {
  text-align: center;
  vertical-align: middle;
}
/*层级*/
/*
定义圆角
@radius 圆角大小
*/
.self_flex_content {
  /*定义父元素*/
  display: box;
  /*（伸缩盒最老版本）*/
  display: -webkit-box;
  /* iOS 6-, Safari 3.1-6 */
  display: -webkit-flex;
  /* Chrome */
  display: -moz-box;
  /* Firefox 19 */
  display: -ms-flexbox;
  display: flex;
  /*flex容器*/
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.AnimationRotate360 {
  -webkit-animation: Rotating 1s linear infinite;
  -moz-animation: Rotating 1s linear infinite;
  -ms-animation: Rotating 1s linear infinite;
  animation: Rotating 1s linear infinite;
}
@keyframes Rotating {
  from {
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes Rotating {
  from {
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-moz-keyframes Rotating {
  from {
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-o-keyframes Rotating {
  from {
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-ms-keyframes Rotating {
  from {
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
/*自定义滚动条样式(不兼容火狐ie)*/
/*超出隐藏*/
/*隐藏滚动条的写法*/
/*用法html结构*/
/*文本两端对齐多行省略*/
/*设置input/textarea的placeholder字体颜色，绑定在input/textarea父元素上*/
/*textarea提示语颜色*/
/*旋转*/
.Rotate_180 {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  display: inline-block;
}
.Rotate_90 {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  display: inline-block;
}
.Rotate_90_ {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  display: inline-block;
}
.Rotate_45 {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  display: inline-block;
}
.Rotate_45_ {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  display: inline-block;
}
/*层级*/
/*不可选中*/
.NoSelect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.small_hand {
  cursor: pointer;
}
/*超出隐藏另外加宽*/
.hideellipsis,
.widthHide2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}
/*去掉input默认上下箭头*/
.input_jiantou_hide input::-webkit-outer-spin-button,
.input_jiantou_hide input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.input_jiantou_hide input[type="number"] {
  -moz-appearance: textfield;
}
.input_jiantou_hide input {
  -webkit-appearance: none;
  /*去除input默认样式*/
}
.input_jiantou_hide input[type="submit"],
.input_jiantou_hide input[type="reset"],
.input_jiantou_hide input[type="button"],
.input_jiantou_hide input {
  -webkit-appearance: none;
}
.input_jiantou_hide input::-ms-clear {
  display: none;
}
/*select去掉默认箭头*/
.select_jiantou_hide {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}
.select_jiantou_hide::-ms-expand {
  display: none;
}
/*边框阴影*/
.box-shadow-round {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.afterClearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.afterClearfix {
  zoom: 1;
}
/*浮动，默认左浮动*/
/*动画*/
/*点击返回顶部按钮*/
.backtop-btn {
  display: none;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: fixed;
  right: 15px;
  bottom: 26%;
  background: #e1e1e1;
  z-index: 1000;
}
.backtop-btn > i {
  display: inline-block;
  float: left;
  width: 32px;
  height: 32px;
  margin: 9px 0 0 9px;
  background: url('../img/icon_backtop.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
html {
  width: 100%;
  color: white;
  overflow-x: hidden;
  font-family: "微软雅黑";
  overflow-y: scroll;
}
:root {
  overflow-y: auto;
  overflow-x: hidden;
}
:root body {
  position: absolute;
}
body {
  width: 100vw;
  overflow: hidden;
}
.mouseCSS {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  overflow-x: hidden;
}
.Rotate_180 {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  display: inline-block;
}
.icon_ {
  display: inline-block;
  width: 16px;
  height: 16px;
}
/*字体定义*/
/*边框线定义*/
.border_all {
  border: 1px solid #e1e1e1;
}
.border_tp {
  border-top: 1px solid #e1e1e1;
}
.border_bt {
  border-bottom: 1px solid #e1e1e1;
}
.border_lt {
  border-left: 1px solid #e1e1e1;
}
.border_rt {
  border-right: 1px solid #e1e1e1;
}
.icon_check {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../img/icon_check.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.icon_checked {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../img/icon_checked.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.wcomm {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
}
.icon_zhankai {
  width: 16px;
  height: 16px;
  line-height: 16px;
  display: inline-block;
  background: url('../img/icon_zhankai36.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: inset 0 0 0 1000px #fff;
}
/*管理模块 20190313 mr*/
.entry-box  {
  margin-bottom: 30px;
  height: 150px;
}
.entry-box .entry-box -sx .entry_ {
  width: 24%;
  margin-left: 1.33333333%;
}
.entry-box .entry-box -sx .entry_.entry_1 .c_1 {
  background: #42A5F5;
}
.entry-box .entry-box -sx .entry_.entry_2 .c_1 {
  background: #00BCD4;
}
.entry-box .entry-box -sx .entry_.entry_3 .c_1 {
  background: #FFC107;
}
.entry-box .entry-box -sx .entry_.entry_4 .c_1 {
  background: #4CAF50;
}
.entry-box  .entry_ {
  float: left;
  width: 18.8%;
  height: 150px;
  margin-left: 1.5%;
  position: relative;
}
.entry-box  .entry_:nth-child(5n+1) {
  margin-left: 0;
}
.entry-box  .entry_.entry_1 .c_1 {
  background: #42A5F5;
}
.entry-box  .entry_.entry_2 .c_1 {
  background: #FFC107;
}
.entry-box  .entry_.entry_3 .c_1 {
  background: #9575CD;
}
.entry-box  .entry_.entry_4 .c_1 {
  background: #00BCD4;
}
.entry-box  .entry_.entry_5 .c_1 {
  background: #4CAF50;
}
.entry-box  .entry_ .c_1 {
  width: 100%;
  height: 150px;
  text-align: center;
}
.entry-box  .entry_ .c_1 img {
  margin-top: 10px;
}
.entry-box  .entry_ .c_1 p {
  line-height: 22px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-top: -10px;
}
.entry-box  .entry_ .c_2 {
  background: #F3F3F3;
  overflow: hidden;
  display: none;
  padding: 10.5px 15px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}
.entry-box  .entry_ .c_2 > .li_ {
  width: 100%;
  height: 26px;
  line-height: 26px;
  float: left;
  color: #555;
  display: inline-block;
  overflow: hidden;
  padding-left: 15px;
  position: relative;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.entry-box  .entry_ .c_2 > .li_:before {
  content: '';
  display: inline-block;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10.5px;
  left: 2px;
  background: #555;
}
.entry-box  .entry_ .c_2 > .li_:hover {
  color: #3cafdf;
}
.entry-box  .entry_ .c_2 > .li_:hover:before {
  background: #3cafdf;
}
.entry-box  .entry_ .c_2 > .empty_ {
  width: 100%;
  height: 26px;
  line-height: 26px;
  float: left;
}
.entry-box  .entry_ .c_2 > .l2_ {
  width: 100%;
  height: 26px;
  line-height: 26px;
  float: left;
  color: #555;
  display: inline-block;
  overflow: hidden;
  padding-left: 15px;
  position: relative;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.entry-box  .entry_ .c_2 > .l2_:before {
  content: '';
  display: inline-block;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10.5px;
  left: 2px;
  background: #555;
}
.entry-box  .entry_ .c_2 > .l2_ > a {
  color: #555;
}
.entry-box  .entry_ .c_2 > .l2_ > a:hover {
  color: #3CAFDF;
}
.entry-box  .entry_ .c_2 > .l2_:hover:before {
  background: #3cafdf;
}
/*学校简介 20190313版*/
.school-introduction  {
  margin-top: 25px;
  overflow: hidden;
  position: relative;
  padding-left: 545px;
  /*box-sizing: content-box|border-box|inherit;*/
  border: 1px solid #faf9f9;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.school-introduction  > .videobox {
  overflow: hidden;
  position: relative;
  height: 300px;
  width: 545px;
  position: absolute;
  top: 0;
  left: 0;
}
.school-introduction  > .videobox > .video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 76px;
  height: 76px;
  background: url('../img/playimg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  margin: -38px 0 0 -38px;
  z-index: 10;
  cursor: pointer;
}
.school-introduction  > .videobox > video {
  height: 304px;
}
.school-introduction  > .schoolDesc {
  padding: 18px 30px 18px 36px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #221b1c;
  background: #faf9f9;
  min-height: 300px;
}
.school-introduction  > .schoolDesc .titles {
  width: 100%;
  height: 55px;
  line-height: 54px;
  border-bottom: 1px solid #e1e1e1;
  font-size: 20px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  margin-bottom: 15px;
}
.school-introduction  > .schoolDesc .cont {
  padding: 0 20px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.school-introduction  > .schoolDesc .cont p {
  line-height: 30px;
  overflow: hidden;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.school-introduction  > .schoolDesc .cont .block {
  display: block;
  overflow: hidden;
}
.school-introduction  > .schoolDesc .cont .block > .more {
  display: inline-block;
  margin-top: 15px;
  float: right;
  width: auto;
  height: 26px;
  line-height: 26px;
  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  padding: 0 15px;
  color: #fff;
  background: #42a3f5;
}
/*校园动态 20190313*/
.lists-box  {
  font-size: 14px;
  color: #333;
}
.lists-box  > h4 {
  width: 100%;
  height: 70px;
  line-height: 66px;
  font-size: 24px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.lists-box  > h4:after {
  content: '';
  display: inline-block;
  width: 46px;
  height: 4px;
  background: #42a3f5;
  position: absolute;
  left: 0;
  bottom: 0;
}
.lists-box  > h4 > b {
  font-size: 24px;
  font-weight: normal;
  color: #212121;
  margin-right: 5px;
}
.lists-box  > h4 > b,
.lists-box  > h4 > span {
  float: left;
}
.lists-box  > h4:after {
  content: '';
  display: inline-block;
  border-bottom: 4px solid #42a3f5;
  width: 46px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.lists-box  > h4 > .more-btn {
  float: right;
  display: inline-block;
  cursor: pointer;
  width: 56px;
  height: 32px;
  background: url('../img/more1.png') 0 0 no-repeat;
  background-size: 100% 100%;
  margin-top: 19px;
}
.lists-box  > h4 > .more-btn:hover {
  background: url('../img/more1_on.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.lists-box  .cont_1 {
  overflow: hidden;
}
.lists-box  .cont_1 .list_ {
  width: 50%;
  margin: 25px 0;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  overflow: hidden;
  position: relative;
  min-height: 144px;
}
.lists-box  .cont_1 .list_ > img.img_ {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 144px;
  z-index: 2;
  max-width: 228px;
}
.lists-box  .cont_1 .list_ > h6 {
  line-height: 50px;
  font-size: 16px;
  height: 50px;
  font-weight: normal;
  border-bottom: 1px solid #e1e1e1;
}
.lists-box  .cont_1 .list_ > h6 span {
  display: inline-block;
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}
.lists-box  .cont_1 .list_ > h6 .more_ {
  display: inline-block;
  float: right;
  width: 24px;
  height: 24px;
  background: url('../img/details.png') 0 0 no-repeat;
  background-size: 100% 100%;
  margin-top: 13px;
}
.lists-box  .cont_1 .list_ > p {
  line-height: 26px;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 10px;
  max-height: 73px;
  overflow: hidden;
}
.lists-box  .cont_1 .list_:nth-child(2n+1) {
  padding-right: 54px;
  padding-left: 243px;
}
.lists-box  .cont_1 .list_:nth-child(2n+1).underway:after {
  left: 173px;
}
.lists-box  .cont_1 .list_:nth-child(2n+2) {
  padding-left: 297px;
}
.lists-box  .cont_1 .list_:nth-child(2n+2).underway:after {
  left: 227px;
}
.lists-box  .cont_1 .list_:nth-child(2n+2) > img.img_ {
  left: 54px;
}
/*公共样式*/
/*.ContainerWarp {
  font-size: 14px;
  color: #333;
  min-width: 1000px;
  overflow: hidden;
}*/
.ContainerWarp{
  width: 100vw;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  color: #333;
}
.ContainerWarp .footer {
  position: absolute;
  padding-top: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 120px;
  background: #656565;
  color: #fff;
}
/*.ContainerWarp .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  height: 180px;
  padding: 40px 0 10px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #656565;
}*/
/*.ContainerWarp .footer .footer-cont {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
}*/
.ContainerWarp .footer .footer-cont .footer-nav {
  overflow: hidden;
  margin-bottom: 20px;
}
.ContainerWarp .footer .footer-cont .footer-nav > li {
  float: left;
  color: #999;
  margin-right: 5px;
  color: #fff;
}
.ContainerWarp .footer .footer-cont .footer-nav > li a {
  color: #fff;
  margin-right: 5px;
}
.ContainerWarp .footer .footer-cont .footer-nav > li a:hover {
  text-decoration: underline;
}
.ContainerWarp .footer .footer-cont .lt {
  width: 65%;
  float: left;
  margin-top: 19px;
}
.ContainerWarp .footer .footer-cont .lt .copyRight {
  color: #fff;
  width: 100%;
  height: 24px;
  line-height: 24px;
  font-style: normal;
  font-size: 14px;
}
.ContainerWarp .footer .footer-cont .lt .copyRight a {
  color: #fff;
}
.ContainerWarp .footer .footer-cont .lt .copyRight a:hover {
  text-decoration: underline;
}
.ContainerWarp .footer .footer-cont .rt {
  width: 35%;
  float: right;
  overflow: hidden;
}
.ContainerWarp .footer .footer-cont .rt .wxbox {
  float: right;
  margin-right: 10px;
}
.ContainerWarp .footer .footer-cont .rt .wxbox:first-child {
  margin-right: 0;
}
.ContainerWarp .footer .footer-cont .rt .wxbox > img {
  width: 80px;
  height: 80px;
}
.ContainerWarp .footer .footer-cont .rt .wxbox > p {
  color: #fff;
  margin-top: 2px;
  font-size: 12px;
  text-align: center;
}
.ContainerWarp .footer .footer-cont .rt .wxbox2,
.ContainerWarp .footer .footer-cont .rt .wxbox3 {
  width: 160px;
  overflow: hidden;
}
.ContainerWarp .footer .footer-cont .rt .wxbox2 img,
.ContainerWarp .footer .footer-cont .rt .wxbox3 img,
.ContainerWarp .footer .footer-cont .rt .wxbox2 p,
.ContainerWarp .footer .footer-cont .rt .wxbox3 p {
  float: left;
}
.ContainerWarp .footer .footer-cont .rt .wxbox2 p,
.ContainerWarp .footer .footer-cont .rt .wxbox3 p {
  line-height: 22px;
  margin: 18px 5px 0 0;
}
.ContainerWarp .footer .footer-cont .rt .wxbox3 {
  width: 135px;
}
.ContainerWarp .footer3 {
  background: #03142e;
  padding-top: 0;
  height: 134px;
}
.ContainerWarp .footer3 .footer-cont {
  height: 134px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 38px;
}
.ContainerWarp .footer3 .footer-cont > li {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #c7d5de;
  font-size: 14px;
}
.ContainerWarp .footer2 {
  padding: 10px 0;
  height: auto;
}
.ContainerWarp .footer_10 {
  height: 160px;
  text-align: center;
  padding-top: 58px;
}
.ContainerWarp .footer_10 .footer-nav {
  display: inline-block;
  overflow: hidden;
  width: auto;
  margin-bottom: 5px !important;
}
.ContainerWarp .footer_10 p {
  color: #fff;
}
.logobox,
.homePage .mainContent .content-top .tp {
  background: #fff;
  height: 100px;
  /*.bg_all('http://dxal.czbanbantong.com/login/default/images/login/tubg1.jpg');*/
}
.logobox .cont,
.homePage .mainContent .content-top .tp .cont {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.logobox .cont > img,
.homePage .mainContent .content-top .tp .cont > img {
  height: 47px;
  margin-top: 26.5px;
}
.logobox .cont .logo3,
.homePage .mainContent .content-top .tp .cont .logo3 {
  height: 75px;
  margin-top: 15px;
}
.logobox .cont > .logo2,
.homePage .mainContent .content-top .tp .cont > .logo2 {
  height: 73px;
  margin-top: 8px;
}
.logobox .cont .loadbtn,
.homePage .mainContent .content-top .tp .cont .loadbtn {
  position: absolute;
  top: 50%;
  left: 10%;
}
.logobox .cont .logo_04,
.homePage .mainContent .content-top .tp .cont .logo_04 {
  height: 49px;
  margin-top: 24px;
}
/*主页样式*/
.homePage header.header {
  display: none;
}
.homePage .mainContent {
  overflow: hidden;
}
.homePage .mainContent .content-top .tp .cont2 {
  text-align: left;
}
.homePage .mainContent .content-top .tp .cont2 > .logo2 {
  height: 69px;
  margin-top: 15px;
  float: left;
}
.homePage .mainContent .content-top .tp .cont2 .logotext {
  float: left;
  font-size: 30px;
  margin: 30px 0 0 10px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
}
.homePage .mainContent .content-top .tp .cont2 .logotext2 {
  font-size: 30px !important;
  color: #333 !important;
}
.homePage .mainContent .content-top .tp .cont2 .logotext2 em {
  font-style: normal;
  font-weight: normal;
}
.homePage .mainContent .content-top .tp .cont2 .title_img {
  float: left;
  margin: 16px 0 0 15px;
}
.homePage .mainContent .content-top .tp .cont2 .link_a {
  float: right;
  line-height: 80px;
  color: #42a3f5;
}
.homePage .mainContent .content-top .tp .cont2 .header_rt {
  display: inline-block;
  font-size: 16px;
  color: #666;
  line-height: 80px;
  float: right;
  overflow: hidden;
}
.homePage .mainContent .content-top .tp .cont2 .header_rt .username {
  float: left;
  margin-right: 10px;
}
.homePage .mainContent .content-top .tp .cont2 .header_rt .username b {
  font-weight: normal;
  margin-right: 5px;
  color: #29BFEE;
}
.homePage .mainContent .content-top .tp .cont2 .header_rt .loginout {
  float: left;
  cursor: pointer;
}
.homePage .mainContent .content-top .tp .cont2 .header_rt .login {
  float: left;
  display: none;
}
.homePage .mainContent .content-top .tp .cont2 .heaer_rt2 {
  padding-top: 25px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*20190313 版*/
}
.homePage .mainContent .content-top .tp .cont2 .heaer_rt2 .l_ {
  float: left;
  overflow: hidden;
  margin-left: 8px;
  display: inline-block;
  padding: 0 10px;
  height: 30px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
  background: #f8f8f8;
}
.homePage .mainContent .content-top .tp .cont2 .heaer_rt2 .l_ label {
  float: left;
  line-height: 28px;
}
.homePage .mainContent .content-top .tp .cont2 .heaer_rt2 .l_ input {
  float: left;
  width: 80px;
  height: 28px;
  line-height: 28px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 5px;
}
.homePage .mainContent .content-top .tp .cont2 .heaer_rt2 .login-btn {
  float: left;
  margin-left: 8px;
  width: auto;
  height: 30px;
  line-height: 30px;
  background: #42a3f5;
  color: #fff;
  padding: 0 25px;
  cursor: pointer;
}
.homePage .mainContent .content-top .tp .cont2 .heaer_rt2 .loginStatus {
  float: left;
  overflow: hidden;
  display: none;
  height: 30px;
  line-height: 30px;
  margin-left: 8px;
}
.homePage .mainContent .content-top .tp .cont2 .heaer_rt2 .loginStatus span b {
  font-weight: normal;
  color: #42a3f5;
}
.homePage .mainContent .content-top .tp .cont2 .heaer_rt2 .loginStatus .out-btn {
  color: #42a3f5;
  margin-left: 5px;
  cursor: pointer;
}
.homePage .mainContent .content-top .bt {
  position: relative;
  overflow: hidden;
  height: 360px;
}
.homePage .mainContent .content-top .bt #sybanner.swiper-container {
  height: 360px;
}
.homePage .mainContent .content-top .bt #sybanner.swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
}
.homePage .mainContent .content-top .bt #sybanner.swiper-container .swiper-wrapper .swiper-slide a {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -960px;
  display: inline-block;
  width: 1920px;
  height: 360px;
}
.homePage .mainContent .content-top .bt #sybanner.swiper-container .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  vertical-align: bottom;
}
.homePage .mainContent .content-top .bt #sybanner.swiper-container .swiper-pagination {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  margin-left: -500px;
  left: 50%;
  text-align: left;
  padding-left: 200px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-top .bt #sybanner.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.homePage .mainContent .content-top .bt #sybanner.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #09BEFD;
}
.homePage .mainContent .content-top .bt .loginBox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
}
.homePage .mainContent .content-top .bt .loginBox > .cont {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box {
  position: absolute;
  background: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  top: 15px;
  right: 0;
  bottom: 15px;
  height: 330px;
  width: 320px;
  z-index: 20;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 10px 15px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 {
  overflow: hidden;
  width: 100%;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 .login-nav {
  height: 42px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 .login-nav > a {
  display: inline-block;
  font-size: 16px;
  color: #333;
  width: 23%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  float: left;
  margin-left: 2.66666667%;
  border-bottom: 2px solid #fff;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 .login-nav > a:first-child {
  margin-left: 0;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 .login-nav > a.active {
  color: #42a2f6;
  border-bottom: 2px solid #42a2f6;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont {
  padding: 15px 0;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 270px;
  width: 100%;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont > li {
  width: 100%;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
  min-height: 36px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont > li:last-child {
  margin-bottom: 0;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont > li > input {
  padding: 0;
  outline: none;
  border: none;
  background: #efefef;
  width: 100%;
  height: 36px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont > li .login-btn {
  border: none;
  outline: none;
  cursor: pointer;
  display: block;
  background: #42a2f6;
  font-size: 16px;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 42px;
  line-height: 42px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont > li .login-btn:hover {
  background: #0997ff;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-1,
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-2,
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-3 {
  position: relative;
  padding-left: 54px;
  background: #efefef;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-1:after,
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-2:after,
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-3:after {
  content: '';
  display: inline-block;
  text-align: left;
  width: 50px;
  height: 24px;
  line-height: 24px;
  position: absolute;
  top: 6px;
  left: 6px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-1:after {
  content: '帐号：';
  /*.bg_all('http://p71zfv16p.bkt.clouddn.com/static/comm/img/icon/icon_user.png');*/
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-2:after {
  content: '密码：';
  /*.bg_all('http://p71zfv16p.bkt.clouddn.com/static/comm/img/icon/icon_pwd.png');*/
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-3 {
  padding-left: 60px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-3:after {
  content: '验证码：';
  width: 56px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-3 input {
  width: 60%;
  padding: 0 10px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-3 .yzm {
  float: right;
  display: inline-block;
  height: 36px;
  width: 40%;
  padding-left: 10px;
  background: #fff;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-3 .yzm .yzmbtn {
  width: 100%;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  background: url('../img/yzmbg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-4 {
  line-height: 36px;
  font-size: 15px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-4 > span {
  float: left;
  display: inline-block;
  height: 36px;
  overflow: hidden;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-4 > span > i {
  margin: 10px 10px 0 0;
  float: left;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-4 > span > em {
  font-style: normal;
  float: left;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step1 > .cont .li-4 > a {
  float: right;
  margin-left: 15px;
  color: #42a2f6;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 {
  overflow: hidden;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .userInfo {
  overflow: hidden;
  height: 72px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .userInfo > dt {
  width: 30%;
  height: 72px;
  float: left;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .userInfo > dt > img {
  height: 100%;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .userInfo > dd {
  width: 68%;
  height: 100%;
  padding: 10px 0;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  font-size: 16px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .userInfo > dd > p {
  line-height: 25px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .userInfo > dd > p > b {
  color: #42a2f6;
  margin-right: 5px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .hand-box > a {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  position: relative;
  padding-left: 26px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .hand-box > a > i {
  display: inline-block;
  width: 23px;
  height: 23px;
  float: left;
  position: absolute;
  top: 12.5px;
  left: 1px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .hand-box > a > p {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  line-height: 47px;
  text-indent: 20px;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .hand-box > a i.goCenter {
  background: url('../img/personalcenter.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .hand-box > a i.goOut {
  background: url('../img/outsystem.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-top .bt .loginBox > .cont .form-box .step2 .productText {
  margin-top: 20px;
  line-height: 25px;
  color: #999;
  padding: 0 4px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-center .total-list {
  background: #F6F6F6;
}
.homePage .mainContent .content-center .total-list .lists {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  height: 60px;
}
.homePage .mainContent .content-center .total-list .lists > li {
  width: 33.33333333%;
  height: 60px;
  line-height: 60px;
  float: left;
  padding: 0 20px;
  overflow: hidden;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
}
.homePage .mainContent .content-center .total-list .lists > li i {
  font-size: 20px;
  font-style: normal;
  margin-right: 5px;
}
.homePage .mainContent .content-center .total-list .lists > li b {
  font-weight: normal;
  margin-right: 4px;
}
.homePage .mainContent .content-center .total-list .lists > li img {
  margin-bottom: -11px;
}
.homePage .mainContent .content-center .total-list .lists2 > li {
  width: auto;
  padding: 0 12px;
}
.homePage .mainContent .content-center .total-list .lists3 > li {
  width: auto;
  padding: 0 40px;
}
.homePage .mainContent .content-center .cont-1 {
  padding: 25px 0;
  /*第六种版本projectIndex6.html的样式*/
}
.homePage .mainContent .content-center .cont-1 ul {
  overflow: hidden;
}
.homePage .mainContent .content-center .cont-1 ul > li {
  float: left;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 31%;
  margin-left: 3.5%;
  overflow: hidden;
  height: 290px;
}
.homePage .mainContent .content-center .cont-1 ul > li:first-child {
  margin-left: 0;
}
.homePage .mainContent .content-center .cont-1 ul li.left_ {
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
}
.homePage .mainContent .content-center .cont-1 ul li.left_.videobox {
  position: relative;
  background: #000;
}
.homePage .mainContent .content-center .cont-1 ul li.left_.videobox .playhandbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  display: inline-block;
  background: url('../img/playimg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 10;
  margin: -39px 0 0 -39px;
  cursor: pointer;
}
.homePage .mainContent .content-center .cont-1 ul li.left_.videobox .playhandbtn:hover {
  background: url('../img/playimg_on.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.center_ > h5 {
  font-size: 22px;
  color: #333;
  padding: 5px 0;
}
.homePage .mainContent .content-center .cont-1 ul li.center_ > p {
  line-height: 30px;
  font-size: 16px;
  max-height: 240px;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ {
  position: relative;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*&>h5{ font-size: @fs24; .wh(40px,290px); float: left; padding: 0 5px; background: #b5b5b5;
                             .box-sizing; color: @white;-webkit-display:flex;display:flex; -webkit-align-items:center;
                                align-items:center;-webkit-justify-content:center;justify-content:center;
                              position: absolute; top: 0; left: 0;
                        }*/
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont {
  width: 100%;
  float: right;
  overflow: hidden;
  padding: 15px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ {
  display: block;
  height: 120px;
  width: 33.33333333%;
  float: left;
  text-align: center;
  margin: 15px 0 5px 0;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_:nth-of-type(1),
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_:nth-of-type(2),
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_:nth-of-type(3) {
  margin-top: 0;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ > i {
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ > i.i_2 {
  width: 90px;
  height: 90px;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ > p {
  height: 30px;
  line-height: 30px;
  color: #333;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon1 {
  background: url('../img/sylist/icon1.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon2 {
  background: url('../img/sylist/icon2.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon3 {
  background: url('../img/sylist/icon3.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon4 {
  background: url('../img/sylist/icon4.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon5 {
  background: url('../img/sylist/icon5.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon6 {
  background: url('../img/sylist/icon6.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon7 {
  background: url('../img/sylist/icon7.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon8 {
  background: url('../img/sylist/icon8.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon9 {
  background: url('../img/sylist/icon9.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon10 {
  background: url('../img/sylist/icon10.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon11 {
  background: url('../img/sylist/icon11.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon12 {
  background: url('../img/sylist/icon12.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon13 {
  background: url('../img/sylist/icon13.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon14 {
  background: url('../img/sylist/icon14.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon15 {
  background: url('../img/sylist/icon15.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon16 {
  background: url('../img/sylist/icon16.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon17 {
  background: url('../img/sylist/icon17.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon18 {
  background: url('../img/sylist/icon18.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon19 {
  background: url('../img/sylist/icon19.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon20 {
  background: url('../img/sylist/icon20.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 ul li.right_ > .list-cont .list_ .icon21 {
  background: url('../img/sylist/icon21.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 {
  /*第六种版本projectIndex6.html统计的样式*/
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 > li {
  height: 236px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .center_ p {
  line-height: 24px;
  text-indent: 34px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box {
  background: #ecf5f8;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  padding: 15px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li {
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 49%;
  height: 40px;
  margin: 10px 0 15px 0;
  padding: 0 5px 0 30px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li:nth-child(2n+1) {
  float: left;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li:nth-child(2n+2) {
  float: right;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li.l_1 {
  background: url('../img/icon/icon_total1.png') 7px 12px no-repeat;
  background-size: 16px 16px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li.l_2 {
  background: url('../img/icon/icon_total2.png') 7px 12px no-repeat;
  background-size: 16px 16px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li.l_3 {
  background: url('../img/icon/icon_total3.png') 7px 12px no-repeat;
  background-size: 16px 16px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li.l_4 {
  background: url('../img/icon/icon_total4.png') 7px 12px no-repeat;
  background-size: 16px 16px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li.l_5 {
  background: url('../img/icon/icon_total5.png') 7px 12px no-repeat;
  background-size: 16px 16px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li.l_6 {
  background: url('../img/icon/icon_total6.png') 7px 12px no-repeat;
  background-size: 16px 16px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_6 .totals-box > li p {
  font-size: 16px;
  width: 100%;
  height: 40px;
  line-height: 39px;
  border-bottom: 1px solid #cedbe0;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ {
  width: 65%;
  margin-right: 4%;
  overflow: hidden;
  height: 410px;
  float: left;
  border: none;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .videobox {
  position: relative;
  margin-right: 4%;
  width: 48%;
  float: left;
  height: 220px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .videobox .playhandbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  display: inline-block;
  background: url('../img/playimg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 10;
  margin: -39px 0 0 -39px;
  cursor: pointer;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .videobox .playhandbtn:hover {
  background: url('../img/playimg_on.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .text-box {
  height: 220px;
  width: 48%;
  float: left;
  overflow: hidden;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .text-box > h5 {
  font-size: 22px;
  color: #333;
  padding: 5px 0;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .text-box > p {
  line-height: 30px;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist {
  background: #f6f9fa;
  width: 100%;
  float: left;
  overflow: hidden;
  height: 165px;
  margin-top: 25px;
  padding: 15px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist h4 {
  font-weight: normal;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 3px solid #42A3F5;
  width: 100%;
  height: 22px;
  line-height: 22px;
  font-size: 18px;
  padding: 0 10px;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist h4 .more_ {
  font-style: normal;
  float: right;
  color: #999;
  font-size: 14px;
  cursor: pointer;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist .lists_ul {
  margin-top: 5px;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist .lists_ul .l_ {
  width: 100%;
  height: 36px;
  margin-left: 0;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist .lists_ul .l_ a {
  display: block;
  position: relative;
  width: 100%;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  color: #666;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist .lists_ul .l_ a i {
  font-style: normal;
  font-size: 12px;
  float: left;
  margin-right: 5px;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist .lists_ul .l_ a .texts_ {
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 80%;
  height: 36px;
  font-weight: normal;
}
.homePage .mainContent .content-center .cont-1 .new_ul .left_ > .newlist .lists_ul .l_ .entry_ {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  position: absolute;
  top: 10px;
  right: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  display: inline-block;
  background: url('../img/icon_zhankai36.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.homePage .mainContent .content-center .cont-1 .new_ul .right_ {
  float: right;
  width: 31%;
  margin-left: 0;
  height: 410px;
  overflow: hidden;
}
.homePage .mainContent .content-center .cont-1 .new_ul .right_ .list-cont {
  height: 410px;
  padding: 0 15px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_10 .left_ {
  height: 250px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_10 .left_ .videobox {
  height: 240px;
  background: #000;
}
.homePage .mainContent .content-center .cont-1 .new_ul_10 .right_ {
  height: 250px;
}
.homePage .mainContent .content-center .cont-1 .new_ul_10 .right_ .list-cont {
  height: 100%;
}
.homePage .mainContent .content-center .cont-1 .new_ul_10 .right_ .list-cont .list_ {
  margin-bottom: 0;
  margin-top: 10px;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box {
  overflow: hidden;
  padding: 20px 0 0 0;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ {
  display: block;
  width: 18.8%;
  overflow: hidden;
  height: 230px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  /*background: #ecf5f8;*/
  float: left;
  margin-left: 1.5%;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_:first-child {
  margin-left: 0;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(1) .entry_cont .lt_ {
  background: #17daba;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(2) .entry_cont .lt_ {
  background: #13d9d5;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(3) .entry_cont .lt_ {
  background: #13cae0;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(4) .entry_cont .lt_ {
  background: #15b8e0;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(5) .entry_cont .lt_ {
  background: #2aabf5;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_:hover .entry_cont {
  margin-left: -100%;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont {
  width: 200%;
  height: 100%;
  overflow: hidden;
  transition: margin-left 0.3s ease-in-out;
  -webkit-transition: margin-left 0.3s ease-in-out;
  -o-transition: margin-left 0.3s ease-in-out;
  -ms-transition: margin-left 0.3s ease-in-out;
  -moz-transition: margin-left 0.3s ease-in-out;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .lt_,
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ {
  width: 50%;
  height: 100%;
  float: left;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .lt_ {
  text-align: center;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .lt_ img {
  margin: 36px 0 15px 0;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .lt_ p {
  line-height: 32px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ {
  padding: 15px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fbfaf8;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l_ {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #555;
  display: inline-block;
  overflow: hidden;
  padding-left: 15px;
  border-bottom: 1px solid #cedbe0;
  position: relative;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l_:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 17px;
  left: 2px;
  background: #555;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l_:hover {
  color: #3cafdf;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l_:hover:before {
  background: #3cafdf;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l2_ {
  width: 100%;
  height: 26px;
  line-height: 26px;
  color: #555;
  display: inline-block;
  overflow: hidden;
  padding-left: 15px;
  position: relative;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l2_:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 2px;
  background: #555;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l2_ > a {
  color: #555;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l2_ > a:hover {
  color: #3CAFDF;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l2_:hover:before {
  background: #3cafdf;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .red_ {
  color: red !important;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .red_ > a {
  color: red !important;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ a.red_:hover {
  color: #3cafdf !important;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l2_.red_ > a:hover {
  color: #3cafdf !important;
}
.homePage .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .green_ {
  color: #3B8C16;
}
.homePage .mainContent .content-center .board-box {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.homePage .mainContent .content-center .board-box .board-list {
  float: left;
  cursor: pointer;
  display: block;
  position: relative;
  line-height: 195px;
  padding-bottom: 65px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 32.66666667%;
  height: 255px;
  text-align: center;
  margin-left: 1%;
}
.homePage .mainContent .content-center .board-box .board-list:nth-child(3n+1) {
  margin-left: 0;
}
.homePage .mainContent .content-center .board-box .board-list.l_1 {
  background: #f0ac28;
}
.homePage .mainContent .content-center .board-box .board-list.l_1:hover {
  background: #f6cd7e;
}
.homePage .mainContent .content-center .board-box .board-list.l_2 {
  background: #08a68d;
}
.homePage .mainContent .content-center .board-box .board-list.l_2:hover {
  background: #6bcabb;
}
.homePage .mainContent .content-center .board-box .board-list.l_3 {
  background: #0096d6;
}
.homePage .mainContent .content-center .board-box .board-list.l_3:hover {
  background: #66c0e6;
}
.homePage .mainContent .content-center .board-box .board-list > img {
  vertical-align: middle;
}
.homePage .mainContent .content-center .board-box .board-list > .text_ {
  width: 100%;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.3);
}
.homePage .mainContent .content-center .showimg {
  height: 340px;
}
.homePage .mainContent .content-center .showimg .wcomm img {
  width: 100%;
  vertical-align: bottom;
}
.homePage .mainContent .content-center .showimg.showimg-1 {
  background: #aad3ff;
}
.homePage .mainContent .content-center .showimg.showimg-2 {
  background: #83bfff;
}
.homePage .mainContent .content-center .showimg.showimg-3 {
  background: #5fa3eb;
}
.homePage .mainContent .content-center .showimg.showimg-4 {
  background: #0796D5;
}
.homePage .mainContent .content-center .showimg.showimg-5 {
  background: #EFAB2D;
}
.homePage .mainContent .content-center .showimg.showimg-6 {
  background: #05A58D;
}
.homePage .mainContent .content-bottom {
  border-bottom: 1px solid #fff;
  background: #656565;
}
.homePage .mainContent .content-bottom .cont_ {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 30px 0;
}
.homePage .mainContent .content-bottom .cont_ h5 {
  line-height: 26px;
  font-weight: normal;
  color: #fff;
  font-size: 14px;
}
.homePage .mainContent .content-bottom .cont_ .lists_ {
  overflow: hidden;
}
.homePage .mainContent .content-bottom .cont_ .lists_ li {
  width: 12.57142857%;
  float: left;
  margin-left: 2%;
}
.homePage .mainContent .content-bottom .cont_ .lists_ li:first-child {
  margin-left: 0;
}
.homePage .mainContent .content-bottom .cont_ .lists_ li a {
  display: inline-block;
  width: 100%;
}
.homePage .mainContent .content-bottom .cont_ .lists_ li a img {
  vertical-align: middle;
  width: 100%;
}
/*主页第七个版本*/
.projeactHome7 .mainContent {
  /*.content-bottom{
        .cont_{ overflow: hidden;
            h5{ float: left; width: 8%;}
            .lists_{ float: left; width: 92%;}
        }
    }*/
}
.projeactHome7 .mainContent .content-top .tp {
  height: 80px;
}
.projeactHome7 .mainContent .content-top .tp.lucheng {
  height: 136px;
}
.projeactHome7 .mainContent .content-top .tp.lucheng .cont .title_img {
  height: 99px;
  margin-top: 18.5px;
}
.projeactHome7 .mainContent .content-top .tp.sanxing {
  height: 102px;
  border-bottom: 1px solid #e1e1e1;
}
.projeactHome7 .mainContent .content-top .tp.sanxing .cont .logo2 {
  width: 70px;
  height: 70px;
  margin-top: 16px;
}
.projeactHome7 .mainContent .content-top .tp.sanxing .cont .logotext2 {
  margin-top: 31px;
}
.projeactHome7 .mainContent .content-top .tp.sanxing .cont .heaer_rt2 {
  padding-top: 36px;
}
.projeactHome7 .mainContent .content-top .tp .cont {
  height: 100%;
}
.projeactHome7 .mainContent .content-top .tp .cont .logo2 {
  margin-top: 12.5px;
  width: 55px;
  height: 55px;
}
.projeactHome7 .mainContent .content-top .tp .cont .logo9 {
  margin-top: 19.5px;
  float: left;
  height: auto;
}
.projeactHome7 .mainContent .content-top .tp .cont .logo10 {
  margin-top: 12px;
  float: left;
  height: 60px;
}
.projeactHome7 .mainContent .content-top .tp .cont .logotext {
  margin: 20px 0 0 10px;
  font-size: 22px;
  color: #707070;
}
.projeactHome7 .mainContent .content-top .bt.school_head {
  background: #29BFEE;
  height: 300px;
  padding: 60px 0;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.projeactHome7 .mainContent .content-top .bt.school_head .wcomm {
  position: relative;
  height: 180px;
  padding-left: 360px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.projeactHome7 .mainContent .content-top .bt.school_head .wcomm .videobox {
  width: 320px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
}
.projeactHome7 .mainContent .content-top .bt.school_head .wcomm .videobox .playhandbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  display: inline-block;
  background: url('../img/playimg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 10;
  margin: -39px 0 0 -39px;
  cursor: pointer;
}
.projeactHome7 .mainContent .content-top .bt.school_head .wcomm .videobox .playhandbtn:hover {
  background: url('../img/playimg_on.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.projeactHome7 .mainContent .content-top .bt.school_head .wcomm .product_ {
  height: 180px;
  overflow: hidden;
  color: #fff;
  padding-right: 350px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.projeactHome7 .mainContent .content-top .bt.school_head .wcomm .product_ h2 {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-indent: 30px;
  font-size: 22px;
  border-bottom: 1px solid #97e0f6;
}
.projeactHome7 .mainContent .content-top .bt.school_head .wcomm .product_ h2 .more_ {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url('../img/arrow.png') 0 0 no-repeat;
  background-size: 100% 100%;
  margin: 0 0 0 5px;
}
.projeactHome7 .mainContent .content-top .bt.school_head .wcomm .product_ .text_ {
  line-height: 30px;
  margin-top: 10px;
  text-indent: 28px;
  max-height: 120px;
  padding-right: 10px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: #fff;
  font-size: 16px;
  width: 100%;
}
.projeactHome7 .mainContent .content-top .bt.school_head .loginBox .cont .form-box {
  top: 24px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box {
  width: 250px;
  height: 252px;
  top: 54px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  z-index: 50;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .login-nav {
  border-bottom: 2px solid #e1e1e1;
  height: 36px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .login-nav > a {
  width: 23%;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  border-bottom: 2px solid #e1e1e1;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .login-nav > a.active {
  border-color: #29BFEE;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont {
  height: 180px;
  padding: 8px 0 0 0;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > li {
  min-height: 30px;
  background: #fff !important;
  margin-bottom: 4px !important;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > li:after {
  top: 3px !important;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > li input {
  height: 30px;
  line-height: 29px;
  border-bottom: 1px solid #707070;
  background: #fff !important;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > li .login-btn {
  margin-left: 5%;
  font-size: 14px;
  width: 90%;
  height: 36px;
  line-height: 36px;
  background: #29BFEE;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > li .login-btn:hover {
  background: #09aadd;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > .li-3 input {
  width: 50%;
  line-height: 29px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > .li-3 .yzm {
  width: 50%;
  height: 30px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > .li-3 .yzm .yzmbtn {
  height: 30px;
  line-height: 30px;
  background: #fff;
  color: #666;
  border: 1px solid #707070;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: normal;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > .li-4 {
  text-align: center;
  height: 20px !important;
  min-height: 20px !important;
  line-height: 20px !important;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step1 .cont > .li-4 a {
  float: none;
  color: #666;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 {
  height: 232px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 .info_ {
  font-size: 14px;
  text-align: center;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 .info_ img {
  width: 56px;
  height: 56px;
  margin-top: 17px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 .info_ p {
  line-height: 26px;
  height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 .info_ p span {
  color: #29BFEE;
  margin-right: 5px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 .hand_ {
  margin-top: 18px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 .hand_ a {
  width: 100%;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  display: block;
  margin-top: 10px;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 .hand_ a:nth-of-type(1) {
  background: #29BFEE;
}
.projeactHome7 .mainContent .content-top .bt .loginBox .cont .form-box .step2 .hand_ a:nth-of-type(2) {
  background: #FF7575;
}
.projeactHome7 .mainContent .content-center .cont-1 {
  /*09版本*/
}
.projeactHome7 .mainContent .content-center .cont-1 .new_ul_7 > li {
  height: 180px;
}
.projeactHome7 .mainContent .content-center .cont-1 .new_ul_7 > li.center_ h5 {
  font-size: 20px;
  line-height: 38px;
  padding: 0 10px;
  text-align: center;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid rgba(180, 181, 181, 0.5);
}
.projeactHome7 .mainContent .content-center .cont-1 .new_ul_7 > li.center_ .text_ {
  text-indent: 28px;
  font-size: 14px;
  line-height: 28px;
  max-height: 140px;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.projeactHome7 .mainContent .content-center .cont-1 .new_ul_7 > li.center_ .text_2 {
  line-height: 22px !important;
  max-height: 132px !important;
  margin-top: 10px;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.projeactHome7 .mainContent .content-center .cont-1 .new_ul_7 > li.right_ .totals-box {
  border: 2px solid #efefef;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  padding: 20px 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .new_ul_7 > li.right_ .totals-box > li {
  width: 50%;
  height: 46px;
  line-height: 46px;
  float: left;
  padding: 0 15px 0 25px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  color: #707070;
  position: relative;
  font-weight: bold;
}
.projeactHome7 .mainContent .content-center .cont-1 .new_ul_7 > li.right_ .totals-box > li:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #707070;
  position: absolute;
  top: 20px;
  left: 15px;
}
.projeactHome7 .mainContent .content-center .cont-1 .entry-box  {
  margin-bottom: 25px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.pt0 {
  padding-top: 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box2 .entry_ {
  height: 177px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box2 .entry_ .entry_cont .lt_ img {
  margin-top: 22px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_ {
  height: 151px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(1) .entry_cont .lt_ {
  background: #42A5F5;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(2) .entry_cont .lt_ {
  background: #FFC107;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(3) .entry_cont .lt_ {
  background: #9575CD;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(4) .entry_cont .lt_ {
  background: #00BCD4;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_:nth-of-type(5) .entry_cont .lt_ {
  background: #4CAF50;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .lt_ img {
  margin: 10px auto 0 auto;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .lt_ p {
  font-size: 16px;
  line-height: 22px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ {
  background: #F3F3F3;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l_ {
  border-bottom: none;
  width: 100%;
  height: 26px;
  line-height: 26px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box .entry_ .entry_cont .rt_ .l_:before {
  top: 10px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 {
  height: 151px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ {
  width: 19.52%;
  height: 151px;
  margin-left: 0.6%;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_:nth-of-type(1) .entry_cont .lt_ {
  background: #42A5F5;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_:nth-of-type(2) .entry_cont .lt_ {
  background: #FFC107;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_:nth-of-type(3) .entry_cont .lt_ {
  background: #00BCD4;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_:nth-of-type(4) .entry_cont .lt_ {
  background: #9575CD;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_:nth-of-type(5) .entry_cont .lt_ {
  background: #4CAF50;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_:first-child {
  margin-left: 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .lt_ img {
  margin-top: 7px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ .box09 {
  width: 48%;
  overflow: hidden;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ .box09:nth-child(2n+1) {
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ .box09:nth-child(2n+2) {
  float: right;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ .box09 .l_ {
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ a {
  font-size: 12px;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ .l_ {
  width: 100%;
  height: 24px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ .l_:before {
  top: 9.5px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ .l_:hover {
  color: #3cafdf;
}
.projeactHome7 .mainContent .content-center .cont-1 .model-entry-box.model-entry-box09 .entry_ .entry_cont .rt_ .l_:hover:before {
  background: #3cafdf;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box {
  padding: 20px 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .head_ {
  width: 100%;
  height: 46px;
  line-height: 46px;
  color: #707070;
  padding-left: 20px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  position: relative;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .head_:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 5px;
  background: #29BFEE;
  position: absolute;
  top: 20px;
  left: 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .head_ .more-school {
  float: right;
  font-size: 16px;
  color: #707070;
  cursor: pointer;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .head_ .more-school i.icon_zhankai {
  margin: 0 0 0 5px;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .head_ .more-school i.icon_zhankai.active {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .tp_ {
  overflow: hidden;
  width: 100%;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .tp_ > li {
  width: 23.5%;
  height: 160px;
  float: left;
  margin-left: 2%;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .tp_ > li:nth-child(4n+1) {
  margin-left: 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .tp_ > li > a {
  display: inline-block;
  width: 100%;
  height: 160px;
  position: relative;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .tp_ > li img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .tp_ > li > a > p {
  width: 100%;
  height: 36px;
  line-height: 36px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 16px;
  color: #fff;
  padding: 0 10px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .bt_ {
  width: 100%;
  overflow: hidden;
  display: none;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .bt_ > li {
  width: 25%;
  height: 46px;
  float: left;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #e1e1e1;
  padding: 0 20px;
  font-size: 16px;
  color: #707070;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .bt_ > li a {
  display: inline-block;
  width: 100%;
  height: 46px;
  line-height: 46px;
  color: #333;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .bt_ > li i,
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .bt_ > li span {
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .school-box .schoolList .bt_ > li i {
  font-size: 24px;
  font-style: normal;
  margin: 0 5px 0 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .schoolTotal {
  overflow: hidden;
  padding: 42px 0 57px 0;
  border: 1px solid #e1e1e1;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.projeactHome7 .mainContent .content-center .cont-1 .schoolTotal > li {
  width: 33.33333333%;
  height: 81px;
  float: left;
  position: relative;
  margin-left: 0;
  padding: 0 46px 0 163px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.projeactHome7 .mainContent .content-center .cont-1 .schoolTotal > li img {
  width: 91px;
  height: 87px;
  position: absolute;
  top: 0;
  left: 46px;
}
.projeactHome7 .mainContent .content-center .cont-1 .schoolTotal > li .t_ {
  line-height: 40px;
  font-weight: 600;
  width: 100%;
  display: inline-block;
  font-size: 20px;
  color: #707070;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists {
  width: 100%;
  margin-top: 20px;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists.w50 {
  overflow: hidden;
  width: 46%;
  margin-bottom: 30px;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists.w50:nth-child(2n+1) {
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists.w50:nth-child(2n+2) {
  float: right;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > h4 {
  width: 100%;
  height: 46px;
  line-height: 46px;
  color: #707070;
  padding-left: 20px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  font-size: 18px;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > h4:before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 5px;
  background: #29BFEE;
  position: absolute;
  top: 20px;
  left: 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 {
  overflow: hidden;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl {
  float: left;
  margin: 28px 0;
  width: 46%;
  position: relative;
  padding-left: 228px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 144px;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl:nth-of-type(1),
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl:nth-of-type(2) {
  margin-top: 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl:nth-child(2n+2) {
  float: right;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl > dt {
  position: absolute;
  top: 0;
  left: 0;
  width: 228px;
  height: 144px;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl > dt > img {
  height: 144px;
  vertical-align: bottom;
  width: 100%;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl > dd {
  padding-left: 25px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #707070;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl > dd > h6 {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: normal;
  border-bottom: 1px solid #e1e1e1;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists>.list-cont1>.list_dl>dd>h6 span {
    float: left;
    display: inline-block;
    width: 88%;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    /*cursor: pointer;*/
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists>.list-cont1>.list_dl>dd>h6 a.more_ {
    display: inline-block;
    float: right;
    width: 24px;
    height: 24px;
    background: url(../img/details.png) 0 0 no-repeat;
    background-size: 100% 100%;
    margin-top: 13px;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > h4 .more_ {
    font-style: normal;
    float: right;
    color: #2196f3;
    font-size: 14px;
    cursor: pointer;
}
.projeactHome7 .mainContent .content-center .cont-1 .newlists > .list-cont1 > .list_dl > dd > p {
  height: 82px;
  line-height: 26px;
  padding: 4px 0;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box-1_0 {
  margin: 20px 0 1px 0;
  overflow: hidden;
  background: #21abf3;
  width: 100%;
  padding-left: 20px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box-1_0 > li {
  font-size: 20px;
  color: #fff;
  width: 20%;
  height: 136px;
  float: left;
  padding: 29px 26px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 0 !important;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box-1_0 > li > em {
  font-style: normal;
  font-weight: bold;
  height: 40px;
  line-height: 20px;
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box-1_0 > li > span {
  font-weight: bold;
  float: left;
  text-align: left;
  width: 100%;
  display: inline-block;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box-1_0 > li > span > b {
  font-size: 40px;
  margin-right: 18px;
  line-height: 40px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box {
  overflow: hidden;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 {
  height: 182px;
  background: #21abf3;
  width: 33.33333333%;
  padding: 10px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .h_title {
  width: 100%;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #fff;
  font-size: 20px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont {
  width: 100%;
  height: 116px;
  overflow: hidden;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .RatioOfPreference {
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists {
  width: 260px;
  height: 110px;
  overflow: hidden;
  float: left;
  margin-left: 15px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li {
  font-size: 12px;
  color: #fff;
  width: 48%;
  height: 33px;
  line-height: 33px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li:nth-child(2n+1) {
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li:nth-child(2n+2) {
  float: right;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li > .i_ {
  display: inline-block;
  width: 13px;
  height: 13px;
  float: left;
  margin: 10px 2px 0 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li > .i_.i_1 {
  background: #80deea;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li > .i_.i_2 {
  background: #bc6dcf;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li > .i_.i_3 {
  background: #023bb6;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li > .i_.i_4 {
  background: #25bcea;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li > .i_.i_5 {
  background: #527ad2;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li > .i_.i_6 {
  background: #e67972;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.likelist .lists > li > span {
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox {
  padding: 0 18px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-tp {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #fff;
  margin: 8px 0 0 0;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-tp > span {
  display: inline-block;
  float: left;
  width: 45%;
  font-size: 12px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-tp > b {
  width: 10%;
  float: left;
  font-size: 16px;
  text-align: center;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-tp > .women {
  text-align: right;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-bt {
  height: 50px;
  overflow: hidden;
  position: relative;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-bt > .men_ {
  display: inline-block;
  width: 55%;
  height: 100%;
  float: left;
  background: #80deea;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-bt > .women_ {
  display: inline-block;
  width: 45%;
  height: 100%;
  float: right;
  background: #bc6dcf;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-bt > .bgGrid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont.ratioBox .cont-bt > .bgGrid.bgGrid_1 {
  background: url('../img/grids1.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist {
  position: relative;
  height: 100%;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball {
  position: absolute;
  display: inline-block;
  -webkit-transition: top 500;
  -o-transition: top 500;
  -ms-transition: top 500;
  -moz-transition: top 500;
  transition: top 500;
  -webkit-transition: left 600;
  -o-transition: left 600;
  -ms-transition: left 600;
  -moz-transition: left 600;
  transition: left 600;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-1 {
  width: 90px;
  height: 90px;
  background: #00bcd4;
  font-size: 16px;
  top: 10%;
  left: 5%;
  padding: 20px 0;
  -webkit-animation: ball-Animation 1.5s 0s infinite;
  -moz-animation: ball-Animation 1.5s 0s infinite;
  -ms-animation: ball-Animation 1.5s 0s infinite;
  animation: ball-Animation 1.5s 0s infinite;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-1 > p {
  height: 25px;
  line-height: 25px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-2 {
  width: 80px;
  height: 80px;
  background: #26a69a;
  font-size: 16px;
  top: 13%;
  left: 40%;
  padding: 15px 0;
  -webkit-animation: ball-Animation 1.5s 0.5s infinite;
  -moz-animation: ball-Animation 1.5s 0.5s infinite;
  -ms-animation: ball-Animation 1.5s 0.5s infinite;
  animation: ball-Animation 1.5s 0.5s infinite;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-2 > p {
  height: 25px;
  line-height: 25px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-3 {
  width: 70px;
  height: 70px;
  background: #9575cd;
  font-size: 16px;
  top: 40%;
  left: 10%;
  padding: 10px 0;
  -webkit-animation: ball-Animation 1.5s 1s infinite;
  -moz-animation: ball-Animation 1.5s 1s infinite;
  -ms-animation: ball-Animation 1.5s 1s infinite;
  animation: ball-Animation 1.5s 1s infinite;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-3 > p {
  height: 20px;
  line-height: 20px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-4 {
  width: 60px;
  height: 60px;
  background: #ab47bc;
  font-size: 16px;
  top: 46%;
  left: 65%;
  padding: 10px 0;
  -webkit-animation: ball-Animation 1.5s 1.5s infinite;
  -moz-animation: ball-Animation 1.5s 1.5s infinite;
  -ms-animation: ball-Animation 1.5s 1.5s infinite;
  animation: ball-Animation 1.5s 1.5s infinite;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-4 > p {
  height: 20px;
  line-height: 20px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-5 {
  width: 50px;
  height: 50px;
  background: #2b36b9;
  font-size: 16px;
  top: 15%;
  left: 70%;
  padding: 6px 0;
  -webkit-animation: ball-Animation 1.5s 2s infinite;
  -moz-animation: ball-Animation 1.5s 2s infinite;
  -ms-animation: ball-Animation 1.5s 2s infinite;
  animation: ball-Animation 1.5s 2s infinite;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-5 > p {
  height: 19px;
  line-height: 19px;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-6 {
  width: 40px;
  height: 40px;
  background: #E67972;
  font-size: 14px;
  top: 50%;
  left: 40%;
  padding: 5px 0;
  -webkit-animation: ball-Animation 1.5s 2.2s infinite;
  -moz-animation: ball-Animation 1.5s 2.2s infinite;
  -ms-animation: ball-Animation 1.5s 2.2s infinite;
  animation: ball-Animation 1.5s 2.2s infinite;
}
.projeactHome7 .mainContent .content-center .cont-1 .total-box > .L_2 .cont .balllist > .ball.ball-6 > p {
  height: 15px;
  line-height: 15px;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box {
  overflow: hidden;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_,
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ {
  height: 180px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ img,
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ .list_,
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ .list_ {
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 14px;
  width: 100%;
  height: 180px;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ .list_ .li_,
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ .list_ .li_ {
  margin-left: 0;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #707070;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ .list_ .li_ .l_,
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ .list_ .li_ .l_ {
  display: inline-block;
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
  float: left;
  color: #707070;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ .list_ .li_ .l_:hover,
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ .list_ .li_ .l_:hover {
  color: #3cafdf;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ .list_ .li_ .r_,
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ .list_ .li_ .r_ {
  float: right;
  font-style: normal;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ {
  padding-left: 320px;
  width: 59%;
  float: left;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ img {
  width: 320px;
  height: 180px;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .lt_ .list_ {
  border: 1px solid #D4D4D4;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ {
  padding-left: 58px;
  width: 39.65%;
  float: right;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ img {
  width: 58px;
  height: 180px;
}
.projeactHome7 .mainContent .content-center .cont-1 .new-notice-box .rt_ .list_ {
  background: #F7F7F7;
}
/*悦读创享与智慧课堂*/
.loadPage .mainContent .content-center .loadimgbox {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  position: relative;
  height: 588px;
}
.loadPage .mainContent .content-center .loadimgbox.loadimgbox2 {
  height: auto;
  margin-bottom: 15px;
}
.loadPage .mainContent .content-center .loadimgbox .img {
  vertical-align: bottom;
  width: 100%;
  height: 588px;
}
.loadPage .mainContent .content-center .loadimgbox .loadbtn {
  position: absolute;
  z-index: 10;
  top: 46%;
  cursor: pointer;
  display: inline-block;
  width: 225px;
  height: 84px;
}
.loadPage .mainContent .content-center .loadimgbox .loadbtn.pcloadbtn {
  background: url('../img/pcloadimg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  left: 50px;
}
.loadPage .mainContent .content-center .loadimgbox .loadbtn.adloadbtn {
  background: url('../img/adloadimg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  left: 295px;
}
.loadPage .mainContent .content-center .loadimgbox .loadbtn.loadbtn1 {
  background: url('../img/loadimg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  left: 175px;
}
.loadPage .mainContent .content-center .loadimgbox .loadbtn.loadbtn2 {
  background: url('../img/loadimg2.png') 0 0 no-repeat;
  background-size: 100% 100%;
  left: 155px;
  top: 54%;
  width: 300px;
  height: 79px;
}
.loadPage .mainContent .content-center .loadimgbox .load_1,
.loadPage .mainContent .content-center .loadimgbox .load_2 {
  position: absolute;
  height: 60px;
  width: 194px;
  z-index: 10;
  top: 54%;
  cursor: pointer;
}
.loadPage .mainContent .content-center .loadimgbox .load_1 {
  left: 8%;
}
.loadPage .mainContent .content-center .loadimgbox .load_2 {
  left: 25%;
}
.loadPage .mainContent .content-center .loadimgbox .time_text {
  position: absolute;
  z-index: 10;
  top: 54%;
  left: 26%;
  display: inline-block;
  font-size: 15px;
  line-height: 60px;
  color: #fff;
  height: 60px;
  width: 194px;
}
.daXingAnLing .model-entry {
  background: #dfebf0;
}
.daXingAnLing .model-entry .list-box {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  padding: 30px 30px;
  overflow: hidden;
}
.daXingAnLing .model-entry .list-box > li {
  width: 16.66666667%;
  float: left;
  text-align: center;
}
.daXingAnLing .model-entry .list-box > li:first-child {
  margin-left: 0;
}
.daXingAnLing .model-entry .list-box > li a {
  display: inline-block;
  width: 152px;
  padding: 20px 10px 10px 10px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  background: #fff;
}
.daXingAnLing .model-entry .list-box > li a:link {
  -webkit-box-shadow: 0 0 10px rgba(125, 178, 198, 0.6);
  -moz-box-shadow: 0 0 10px rgba(125, 178, 198, 0.6);
  box-shadow: 0 0 10px rgba(125, 178, 198, 0.6);
}
.daXingAnLing .model-entry .list-box > li a:active {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}
.daXingAnLing .model-entry .list-box > li a p {
  font-size: 20px;
  font-weight: bold;
  color: #555;
}
.daXingAnLing .total-info {
  background: #00131b;
}
.daXingAnLing .total-info .lists-box {
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  padding: 16px 0;
  /*.title_{ .wh_lh(100%,56px); text-align: center; margin-bottom: 10px; font-size: @fs22; color: #51f5ff; position: relative;.fontSpacing(@size:2px);
                &:before{ content: ''; position: absolute; top: 21px; left: 0; .wh(44%,14px); .bg_all('../img/dxal/total_bg1.png');}
                &:after{ content: ''; position: absolute; top: 21px; right: 0; .wh(44%,14px); .bg_all('../img/dxal/total_bg1.png');}
            }*/
}
.daXingAnLing .total-info .lists-box .title_ {
  text-align: center;
  border-top: 2px solid #3d535c;
  margin-bottom: 15px;
}
.daXingAnLing .total-info .lists-box .title_ legend {
  font-size: 22px;
  color: #51f5ff;
  padding: 0 20px;
}
.daXingAnLing .total-info .lists-box .lists_ {
  overflow: hidden;
  padding: 0 15px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.daXingAnLing .total-info .lists-box .lists_ > li {
  float: left;
  width: 32%;
  height: 88px;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
  margin-left: 2%;
  border: 2px solid #3d535c;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
.daXingAnLing .total-info .lists-box .lists_ > li:nth-child(3n+1) {
  margin-left: 0;
}
.daXingAnLing .total-info .lists-box .lists_ > li .l_1 {
  position: absolute;
  top: 8px;
  left: 6%;
}
.daXingAnLing .total-info .lists-box .lists_ > li .l_2 {
  position: absolute;
  top: 14px;
  left: 5%;
}
.daXingAnLing .total-info .lists-box .lists_ > li .l_3 {
  position: absolute;
  top: 9px;
  left: 6%;
}
.daXingAnLing .total-info .lists-box .lists_ > li .l_4 {
  position: absolute;
  top: 12px;
  left: 9%;
}
.daXingAnLing .total-info .lists-box .lists_ > li .l_5 {
  position: absolute;
  top: 20px;
  left: 8%;
}
.daXingAnLing .total-info .lists-box .lists_ > li .l_6 {
  position: absolute;
  top: 12px;
  left: 9%;
}
.daXingAnLing .total-info .lists-box .lists_ > li .data_ {
  font-size: 22px;
  color: #51f5ff;
  line-height: 50px;
  position: absolute;
  top: 19px;
  left: 60%;
}
.daXingAnLing .total-info .lists-box .lists_ > li .data_ b {
  font-size: 22px;
  margin-right: 5px;
}
.daXingAnLing .total-info .lists-box .lists_ > li .name_ {
  position: absolute;
  left: 31%;
  top: 40%;
  font-size: 16px;
  color: #93baca;
  font-style: normal;
}
.daXingAnLing .introduce_ {
  width: 100%;
  height: 364px;
  background: url('../img/dxal/introduce_bg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  margin: 20px 0 20px 0;
  position: relative;
}
.daXingAnLing .introduce_ .left_ {
  position: absolute;
  top: 35px;
  left: 5%;
  width: 40%;
  height: 275px;
}
.daXingAnLing .introduce_ .left_ .playhandbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  display: inline-block;
  background: url('../img/playimg.png') 0 0 no-repeat;
  background-size: 100% 100%;
  z-index: 10;
  margin: -39px 0 0 -39px;
  cursor: pointer;
}
.daXingAnLing .introduce_ .left_ .playhandbtn:hover {
  background: url('../img/playimg_on.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.daXingAnLing .introduce_ .left_ video {
  max-height: 100%;
  max-width: 100%;
}
.daXingAnLing .introduce_ .right_ {
  position: absolute;
  top: 35px;
  right: 5%;
  width: 40%;
  height: 275px;
  color: #555;
}
.daXingAnLing .introduce_ .right_ h4 {
  font-size: 22px;
  line-height: 60px;
}
.daXingAnLing .introduce_ .right_ .text_ {
  line-height: 30px;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  height: 210px;
  overflow: hidden;
}
.daXingAnLing .box-head {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #555;
  font-size: 22px;
  position: relative;
}
.daXingAnLing .box-head .img_ {
  float: left;
  margin-top: 15px;
}
.daXingAnLing .box-head .t_ {
  float: left;
  margin-left: 10px;
}
.daXingAnLing .box-head .add-btn {
  display: inline-block;
  width: 56px;
  height: 32px;
  float: right;
  margin: 14px 0 0 0;
}
.daXingAnLing .box-head .add-btn:link {
  background: url('../img/dxal/add_btn.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.daXingAnLing .box-head .add-btn:active {
  background: url('../img/dxal/add_btn1.png') 0 0 no-repeat;
  background-size: 100% 100%;
}
.daXingAnLing .hot-shcool .school-list {
  overflow: hidden;
}
.daXingAnLing .hot-shcool .school-list > li {
  text-align: center;
  float: left;
  font-weight: bold;
  margin-bottom: 20px;
  width: 31%;
  height: 90px;
  line-height: 90px;
  margin-left: 3.5%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background: #3cbcf3;
  /* Old browsers */
  background: -moz-linear-gradient(left, #3cbcf3 0%, #3cf2ed 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #3cbcf3 0%, #3cf2ed 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3cbcf3 0%, #3cf2ed 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3cbcf3', endColorstr='#3cf2ed', GradientType=1);
  /* IE6-9 */
}
.daXingAnLing .hot-shcool .school-list > li:nth-child(3n+1) {
  margin-left: 0;
}
.daXingAnLing .hot-shcool .school-list > li a {
  color: #fff;
  font-size: 22px;
}
.daXingAnLing .school-news .new-list {
  overflow: hidden;
}
.daXingAnLing .school-news .new-list > .list_ {
  width: 50%;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  color: #555;
  height: 144px;
  margin-bottom: 60px;
}
.daXingAnLing .school-news .new-list > .list_:nth-child(2n+1) {
  padding: 0 56px 0 228px;
}
.daXingAnLing .school-news .new-list > .list_:nth-child(2n+2) {
  padding: 0 0 0 284px;
}
.daXingAnLing .school-news .new-list > .list_:nth-child(2n+2) > .lt_ {
  left: 56px;
}
.daXingAnLing .school-news .new-list > .list_ > .lt_ {
  width: 228px;
  height: 144px;
  position: absolute;
  top: 0;
  left: 0;
}
.daXingAnLing .school-news .new-list > .list_ > .rt_ {
  padding-left: 15px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.daXingAnLing .school-news .new-list > .list_ > .rt_ .t_t_ {
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #dfebf0;
  padding: 0 10px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 20px;
  margin-bottom: 10px;
}
.daXingAnLing .school-news .new-list > .list_ > .rt_ .text_ {
  line-height: 26px;
  font-size: 16px;
  height: 75px;
  padding: 0 10px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE*/
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
/*应用下载*/
.portablePage .mainContent .navigation-box {
  background: #f6f9fa;
}
.portablePage .mainContent .navigation {
  height: 60px;
  line-height: 60px;
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
  background: url('../img/icon_home.png') 8px 20px no-repeat;
  background-size: 20px 19px;
}
.portablePage .mainContent .navigation > em {
  font-style: normal;
  display: inline-block;
}
.portablePage .mainContent .navigation > .l_ {
  float: left;
  margin-left: 5px;
  font-size: 16px;
  color: #666;
}
.portablePage .mainContent .navigation > .l_:first-child {
  margin-left: 36px;
}
.portablePage .mainContent .content-center .software_.diff_ {
  background: #f6f9fa;
}
.portablePage .mainContent .content-center .software_ .wcomm {
  padding: 0 130px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.portablePage .mainContent .content-center .software_ h5 {
  color: #333;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  line-height: 60px;
  margin-top: 30px;
  position: relative;
}
.portablePage .mainContent .content-center .software_ h5:after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: #0096d6;
  position: absolute;
  top: 53px;
  left: 50%;
  margin-left: -1.5px;
}
.portablePage .mainContent .content-center .software_ .small-text {
  line-height: 50px;
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #7f7f7f;
}
.portablePage .mainContent .content-center .software_ .desc_ {
  font-size: 16px;
  color: #464647;
  text-indent: 32px;
  line-height: 26px;
}
.portablePage .mainContent .content-center .software_ .desc_.mbt {
  margin-bottom: 15px;
}
.portablePage .mainContent .content-center .software_ .desc_table {
  width: 70%;
  margin: 10px auto 0 auto;
  border: 2px solid #464647;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-collapse: collapse;
  table-layout: fixed;
}
.portablePage .mainContent .content-center .software_ .desc_table tr {
  border: 2px solid #464647;
  border-top: 0;
}
.portablePage .mainContent .content-center .software_ .desc_table tr:last-child {
  border-bottom: 0;
}
.portablePage .mainContent .content-center .software_ .desc_table tr th {
  font-weight: normal;
}
.portablePage .mainContent .content-center .software_ .desc_table tr th,
.portablePage .mainContent .content-center .software_ .desc_table tr td {
  font-size: 16px;
  padding: 0 5px;
  height: 48px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #464647;
}
.portablePage .mainContent .content-center .software_ .desc_table tr th:nth-of-type(1),
.portablePage .mainContent .content-center .software_ .desc_table tr td:nth-of-type(1) {
  font-weight: 600;
  color: #464647;
  text-align: center;
}
.portablePage .mainContent .content-center .software_ .desc_table tr th:nth-of-type(2),
.portablePage .mainContent .content-center .software_ .desc_table tr td:nth-of-type(2) {
  color: #333;
  text-align: left;
}
.portablePage .mainContent .content-center .software_ .bottom_1 {
  height: 300px;
  position: relative;
}
.portablePage .mainContent .content-center .software_ .bottom_1 > .img_ {
  position: absolute;
  bottom: 0;
  right: 43%;
}
.portablePage .mainContent .content-center .software_ .bottom_1 .upload-box {
  position: absolute;
  top: 32px;
  left: 60%;
}
.portablePage .mainContent .content-center .software_ .bottom_2 {
  height: 360px;
  position: relative;
}
.portablePage .mainContent .content-center .software_ .bottom_2 > .img_ {
  position: absolute;
  top: 52px;
  left: 17%;
}
.portablePage .mainContent .content-center .software_ .bottom_2 .upload-box {
  position: absolute;
  top: 55px;
  left: 60%;
}
.portablePage .mainContent .content-center .software_ .bottom_3 {
  height: 380px;
  position: relative;
}
.portablePage .mainContent .content-center .software_ .bottom_3 > .img_ {
  position: absolute;
  top: 20px;
  left: 24%;
}
.portablePage .mainContent .content-center .software_ .bottom_3 .upload-box {
  position: absolute;
  top: 80px;
  left: 60%;
}
.portablePage .mainContent .content-center .software_ .upload-box {
  width: 156px;
}
.portablePage .mainContent .content-center .software_ .upload-box .head_ {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}
.portablePage .mainContent .content-center .software_ .upload-box .head_ img {
  margin: 10px 5px 0 28px;
  float: left;
}
.portablePage .mainContent .content-center .software_ .upload-box .head_ span {
  float: left;
  font-size: 16px;
}
.portablePage .mainContent .content-center .software_ .upload-box .upload-btn {
  width: 100%;
  height: 48px;
  line-height: 48px;
  cursor: pointer;
  margin-bottom: 13px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  background: #0096d6;
  padding: 0 20px 0 24px;
  /*box-sizing: content-box|border-box|inherit;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.portablePage .mainContent .content-center .software_ .upload-box .upload-btn img {
  float: left;
}
.portablePage .mainContent .content-center .software_ .upload-box .upload-btn img.icon_and {
  margin: 12px 5px 0 0;
}
.portablePage .mainContent .content-center .software_ .upload-box .upload-btn img.icon_windows {
  margin: 14px 5px 0 0;
}
.portablePage .mainContent .content-center .software_ .upload-box .upload-btn span,
.portablePage .mainContent .content-center .software_ .upload-box .upload-btn a {
  float: left;
  font-size: 16px;
  color: #fff;
}
.portablePage .mainContent .content-center .software_ .upload-box .upload-btn:last-child {
  margin-bottom: 0;
}
.portablePage .mainContent .content-center .software-list-head {
  min-height: 60px;
  border-bottom: 1px solid #e1e1e1;
  overflow: hidden;
}
.portablePage .mainContent .content-center .software-list-head > .ls_ {
  width: auto;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  padding: 0 15px;
  font-size: 16px;
  color: #666;
  margin-right: 25px;
  border-bottom: 4px solid rgba(0, 0, 0, 0);
}
.portablePage .mainContent .content-center .software-list-head > .ls_:last-child {
  margin-right: 0;
}
.portablePage .mainContent .content-center .software-list-head > .ls_.active {
  border-bottom-color: #00b3ff;
  font-weight: 600;
}

.lucheng .cont2{
  width: 100%;
  max-width: 1200px;
  min-width: 1180px;
  margin: 0 auto;
}
#nameAndrole{
  color: #29BFEE;
  margin-right: 5px;
}

.lucheng .cont2 .header_rt{
  display: inline-block;
  font-size: 16px;
  color: #666;
  float: right;
  overflow: hidden;
}
.lucheng .cont2 .header_rt .username {
  float: left;
  margin-right: 10px;
}
.lucheng .cont2 .header_rt .username b {
  font-weight: normal;
  margin-right: 5px;
  color: #29BFEE;
}
.lucheng .cont2 .header_rt .loginout {
  float: left;
  cursor: pointer;
}
.lucheng .cont2 .header_rt .login {
  float: left;
  display: none;
}
.schoolsy .contentCenter {
  overflow: hidden;
}
.schoolsy .contentCenter .asideNav {
  width: 15%;
  float: left;
  padding: 80px 20px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.schoolsy .contentCenter .contentbox {
  width: 85%;
  float: right;
}
.schoolsy .contentCenter .contentbox .navigation {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: url(../img/icon_home.png) 8px 20px no-repeat;
  background-size: auto;
  background-size: 20px 19px;
}
.schoolsy .contentCenter .contentbox .navigation > .l_:first-child {
  margin-left: 36px;
}
.schoolsy .contentCenter .contentbox .navigation > .l_ {
  float: left;
  margin-left: 5px;
  color: #666;
}
.schoolsy .contentCenter .contentbox .schoolsynopsis, .schoolsy .contentCenter .contentbox .schoolDynamicDetails {
 /* text-align: center;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #e1e1e1;
  padding: 30px 100px;
}
.schoolsy .contentCenter .contentbox .navigation > em {
  font-style: normal;
  display: inline-block;
  font-size: 12px;
}
.schoolsy .contentCenter .contentbox .schoolsynopsis h4, .schoolsy .contentCenter .contentbox .schoolDynamicDetails h4 {
  color: #333;
  text-align: center;
  width: 100%;
  font-size: 16px;
}
.schoolsy .contentCenter .contentbox .schoolsynopsis .time_ {
  text-align: center;
  color: #999;
  line-height: 22px;
}
.schoolsy .contentCenter .asideNav {
  width: 15%;
  float: left;
  padding: 80px 20px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.schoolsy .contentCenter .asideNav > a {
  display: block;
  width: 100%;
  height: 44px;
  line-height: 44px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 4px solid #fff;
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  cursor: pointer;
}
.schoolsy .contentCenter .asideNav > a.active {
  border-right-color: #2196f3;
  color: #2196f3;
}
.schoolsy .contentCenter .asideNav > a > i.school_1 {
  background: url(../img/s1.png) 0 0 no-repeat;
  background-size: auto;
  background-size: 100% 100%;
}
.schoolsy .contentCenter .asideNav > a.active i.school_1 {
  background: url(../img/s1_on.png) 0 0 no-repeat;
  background-size: auto;
  background-size: 100% 100%;
}
.schoolsy .contentCenter .asideNav > a > i {
  display: inline-block;
  width: 24px;
  height: 24px;
  float: left;
  margin: 10px 14px 0 0;
}
.schoolsy .contentCenter .asideNav > a.active i.school_2 {
  background: url(../img/s2_on.png) 0 0 no-repeat;
  background-size: auto;
  background-size: 100% 100%;
}
.schoolsy .contentCenter .asideNav > a > i.school_2 {
  background: url(../img/s2.png) 0 0 no-repeat;
  background-size: 100% 100%;
}
.schoolsy .nav-content{
  border-top: 1px solid #e1e1e1;
}
.schoolsy .contentCenter .contentbox .schoolDynamicList {
}
.schoolsy .contentCenter .contentbox .schoolDynamicList .lists-box {
  overflow: hidden;
}
.schoolsy .contentCenter .contentbox .schoolDynamicList .lists-box .list_:nth-child(2n+2) {
  float: right;
}
.schoolsy .contentCenter .contentbox .schoolDynamicList .lists-box .list_:nth-child(2n+1) {
  float: left;
}
.schoolsy .contentCenter .contentbox .schoolDynamicList .lists-box .list_ {
  padding: 15px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e1e1e1;
  width: 49%;
  margin-bottom: 20px;
}
.schoolsy .contentCenter .contentbox .schoolDynamicList .lists-box .list_ dt {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.schoolsy .contentCenter .contentbox .schoolDynamicList .lists-box .list_ dt p {
  overflow: hidden;   /*隐藏*/
  white-space: nowrap;  /*不换行*/
  text-overflow: ellipsis; /*超出部分省略号*/
  display: inline-block;
  width: 80%;
}
.schoolsy .contentCenter .contentbox .schoolDynamicList .lists-box .list_ dt .details {
  float: right;
  cursor: pointer;
  display: block;
  margin-top: 10px;
  width: 24px;
  height: 24px;
  background: url(../img/details-btn.png) 0 0 no-repeat;
  background-size: auto;
  background-size: 100% 100%;
}
.schoolsy .contentCenter .contentbox .schoolDynamicList .lists-box .list_ dd {
  line-height: 24px;
  padding: 10px 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 64px;
  border-top: 1px solid #e1e1e1;
  overflow: hidden;
  text-align: justify;
  text-justify: inter-ideograph;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/*分页start*/
.page_box {
  overflow: hidden;
  position: relative;
}
.page_box.page_box2 .pageOne {
  text-align: right;
}
.page_box .page_box_tips {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  height: 39px;
  line-height: 39px;
}
.page_box .pageOne {
  width: 100%;
  text-align: center;
  overflow: hidden;
  display: inline-block;
  /*float: right;*/
  list-style: none;
}
.page_box .pageOne > li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  width: 32px;
  height: 29px;
  line-height: 29px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
}
.page_box .pageOne li:nth-of-type(1),
.page_box .pageOne li:nth-of-type(2),
.page_box .pageOne li:nth-last-child(1),
.page_box .pageOne li:nth-last-child(2) {
  width: auto;
  padding: 0 12px;
}
.page_box .pageOne .pageItem {
  border: 1px solid #cdcdcd;
  margin: 4px;
  background: #fff;
  color: #404040;
}
.page_box .pageOne .pageItemActive {
  border: 1px solid #2d92e9;
  margin: 4px;
  background-color: #2d92e9;
  color: white;
}
.page_box .pageOne .pageItemActive:hover {
  background-color: #62b0f3;
}
.page_box .pageOne .pageItem:hover {
  border: 1px solid #62b0f3;
  background-color: #62b0f3;
  color: white;
}
.page_box .pageOne .pageItemDisable {
  border: 1px solid #cdcdcd;
  margin: 4px;
  background-color: #eff7ff;
}
.title_img{
  margin: 10px 0px 10px 0px;
}
