/* 样式初始化 */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
table,
th,
td,
form,
input,
textarea,
button {
  margin: 0;
  padding: 0;
}
html {
  overflow-y: scroll;
  overflow-x: hidden;
}
body {
  background: #f6f9ff;
  color: #333;
  font-size: 14px;
  font-family: "Microsoft YaHei", Arial, sans-serif, Helvetica;
  min-width: 1200px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-size: 100%;
}
img {
  border: none;
  vertical-align: middle;
}
li,
ol,
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  outline: 0;
  font-size: 14px;
  font-family: "Microsoft YaHei", Arial, sans-serif, Helvetica;
}
video {
  outline: 0;
}
button {
  border: 0;
  cursor: pointer;
}
table {
  border-collapse: collapse;
}
a {
  color: #333;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:active,
a:focus,
a:hover,
a:link,
a:visited {
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  text-decoration: none;
}
/* 公共class */
.fl {
  float: left;
}
.fr {
  float: right;
}
.al {
  text-align: left;
}
.ac {
  text-align: center;
}
.ar {
  text-align: right;
}
.hide {
  display: none;
}
.no-space {
  margin: 0;
  padding: 0;
}
.clear-float {
  content: "";
  display: table;
  clear: both;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: "";
  display: table;
  clear: both;
}
.clear:before {
  content: "";
  display: table;
  clear: both;
}
.w1200 {
  width: 1400px;
  margin: 0 auto;
  position: relative;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.no-data {
  text-align: center;
  font-size: 26px;
  color: #ccc;
  line-height: 250px;
}
.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.not-allow-select {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* 滚动条 */
.scroll::-webkit-scrollbar-track-piece {
  background-color: #fff;
  -webkit-border-radius: 3px;
}
.scroll::-webkit-scrollbar {
  width: 12px;
  height: 10px;
}
.scroll::-webkit-scrollbar-thumb {
  height: 30px;
  background-color: #999;
  -webkit-border-radius: 7px;
  outline: 2px solid #fff;
  outline-offset: -2px;
  border: 2px solid #fff;
}
.scroll::-webkit-scrollbar-thumb:hover {
  height: 30px;
  background-color: #9f9f9f;
  -webkit-border-radius: 8px;
}
/* 自动旋转 */
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotate {
  animation: rotate 1s linear infinite;
  -webkit-animation: rotate 1s linear infinite;
}
/*图标字体*/
@font-face {
  font-family: 'iconfont';
  src: url('../fonts/iconfont.eot');
  src: url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'), url('../fonts/iconfont.woff2') format('woff2'), url('../fonts/iconfont.woff') format('woff'), url('../fonts/iconfont.ttf') format('truetype'), url('../fonts/iconfont.svg#iconfont') format('svg');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*头部*/
.header {
  height: 180px;
}
.header .top-bar {
  background-color: #f7f7f7;
  height: 30px;
  line-height: 30px;
}
.header .top-bar .user-info a {
  color: #333333;
  padding: 0 7px;
  border-right: 1px solid #999;
  height: 10px;
  line-height: 10px;
  display: inline-block;
}
.header .top-bar .user-info img{
  vertical-align:text-bottom;
}
.header .top-bar .user-info a:hover {
  color: #d88e2e;
  text-decoration: none;
}
.header .top-bar .user-info a:last-child {
  border-right: 0;
}
.header .logo-wrap {
  height: 100px;
  background: #fff;
}
.header .logo-wrap .logo {
  margin-top: 12px;
  margin-left: 13px;
  float: left;
}
.header .logo-wrap .logo img{
  height: 35px;
  width: auto;
  margin-top:20px;
}
.header .logo-wrap .search {
  margin-top: 30px;
  float: right;
  position: relative;
  border-radius: 20px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.header .logo-wrap .search input {
  width: 250px;
  height: 40px;
  padding: 0 40px 0 20px;
  border: 0;
}
.header .logo-wrap .search .search-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 40px;
  text-align: center;
  color: #999;
  cursor: pointer;
}
.header .logo-wrap .search .search-btn:hover {
  color: #333333;
}
.header .nav-bar-wrap {
  height: 50px;
  background: #35a7f2;
  font-size: 17px;
  bottom: 0px;
  width: 100%;
}
.header .nav-bar-wrap li {
  float: left;
  position: relative;
}
.header .nav-bar-wrap li > a {
  height: 50px;
  line-height: 50px;
  border-bottom: 4px solid transparent;
  display: block;
  color: #fff;
  padding: 0 22px;
  font-size: 18px;
}
.header .nav-bar-wrap li.active a,
.header .nav-bar-wrap li:hover a{
  background: #2992d8;
  text-decoration: none;
}
.header .nav-bar-wrap li:hover .nav-bar-menu {
  display: block;
}
.header .nav-bar-wrap li .nav-bar-menu {
  display: none;
  position: absolute;
  width: 150px;
  left: calc(50% - 75px);
  line-height: 40px;
}
.header .nav-bar-wrap li .nav-bar-menu > a {
  display: block;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.header .nav-bar-wrap li .nav-bar-menu > a:hover {
  background: rgba(0, 0, 0, 0.4);
}
/*尾部*/
.footer-text {
  color: #ccc;
  background: #333;
  position: relative;
  z-index: 20;
  line-height: 30px;
  height: 105px;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid #999;
  text-align: center;
}
/*登录框*/
.loginModal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 666;
}
.loginModal .login-dialog {
  width: 480px;
  height: 404px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -202px 0 0 -240px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.loginModal .login-dialog .login-title {
  height: 60px;
  line-height: 60px;
  background-color: #35a7f2;
  padding-left: 20px;
  color: #fff;
}
.loginModal .login-dialog .login-title .iconfont {
  cursor: pointer;
  margin-right: 20px;
  float: right;
}
.loginModal .login-dialog .login-form {
  padding: 30px;
}
.loginModal .login-dialog .login-form .ui-form {
  font-size: 14px;
  display: block;
  padding: 10px;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item {
  margin-bottom: 20px;
  min-height: 36px;
  position: relative;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .ui-input-inline {
  width: 195px;
  float: left;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .ui-form-btn {
  width: 400px;
  border-radius: 20px;
  margin-top: 20px;
  height: 44px;
  line-height: 44px;
  background: #35a7f2;
  color: #fff;
  text-align: center;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .ui-form-btn .iconfont {
  position: static;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .captcha {
  cursor: pointer;
  margin-left: 10px;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .captcha span {
  vertical-align: middle;
  display: inline-block;
  color: #35a7f2;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .ui-input {
  display: block;
  width: 100%;
  padding: 0 15px 0 35px;
  height: 40px;
  line-height: 1.3;
  border: 1px solid #e1e1e1;
  background-color: #f8f9fa;
  -webkit-appearance: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .ui-form-notice {
  display: none;
  position: absolute;
  font-size: 12px;
  top: 40px;
  left: 0;
  right: 0;
  height: 20px;
  line-height: 20px;
  border: 0;
  background-color: transparent;
  padding-left: 10px;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .ui-notice-warning {
  display: initial;
  color: #f90;
}
.loginModal .login-dialog .login-form .ui-form .ui-form-item .iconfont {
  position: absolute;
  top: 12px;
  left: 10px;
}
.loginModal .login-dialog .login-form p {
  padding: 0 10px;
}
.loginModal .login-dialog .login-form p a {
  color: #35a7f2;
  font-size: 12px;
  text-decoration: underline;
}
/*条件筛选*/
.filter {
  padding: 20px 0;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.filter .filter-item {
  position: relative;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  zoom: 1;
}
.filter .filter-item:after {
  content: "";
  display: table;
  clear: both;
}
.filter .filter-item:before {
  content: "";
  display: table;
  clear: both;
}
.filter .filter-item .filter-label {
  line-height: 30px;
  width: 120px;
  position: absolute;
  top: 13px;
  left: 10px;
  text-align: right;
}
.filter .filter-item .filter-list {
  position: relative;
  margin-left: 120px;
  min-height: 27px;
  zoom: 1;
}
.filter .filter-item .filter-list:after {
  content: "";
  display: table;
  clear: both;
}
.filter .filter-item .filter-list:before {
  content: "";
  display: table;
  clear: both;
}
.filter .filter-item .filter-list .filter-option {
  float: left;
  cursor: pointer;
  color: #333;
  margin: 2px 5px;
  padding: 3px 8px;
}
.filter .filter-item .filter-list .filter-option:hover,
.filter .filter-item .filter-list .filter-option.active {
  color: #fff;
  background: #02b687;
}
/*分页*/
.ui-pager {
  text-align: center;
  font-size: 14px;
  user-select: none;
  -webkit-user-select: none;
  padding: 12px 0;
  line-height: normal;
}
.ui-pager span {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid #ccc;
  margin: 0 3px;
  color: #666;
  text-decoration: none;
  cursor: pointer;
}
.ui-pager span.active {
  background: #02b687;
  border-color: #02b687;
  color: #fff;
}
.ui-pager span.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ui-pager .ui-pager-input {
  width: 40px;
  margin: 0 3px;
  padding: 5px;
  color: #333;
  border: 1px solid #ddd;
  text-align: center;
}
.ui-pager .ui-pager-button {
  text-align: center;
  margin-left: 5px;
  background: #02b687;
  color: #fff;
  padding: 5px;
  cursor: pointer;
}
/*弹出层*/
.modal-shadow {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  width: 310px;
  height: 180px;
  overflow: hidden;
}
.modal-title {
  cursor: move;
  padding: 0 80px 0 20px;
  height: 42px;
  line-height: 42px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  background-color: #F8F8F8;
  border-radius: 2px 2px 0 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
  user-select: none;
  -webkit-user-select: none;
}
.modal-close {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
}
.modal-close:before {
  content: "\2716";
}
.modal-content {
  position: relative;
  height: calc(100% - 42px);
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  word-break: break-all;
  padding: 20px 20px 0;
  line-height: 24px;
  text-align: justify;
}
.modal-btn ~ .modal-content {
  height: calc(100% - 87px);
  padding-bottom: 20px;
}
.modal-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: right;
  padding: 0 15px 12px;
  user-select: none;
  -webkit-user-select: none;
  background: #fff;
}
.modal-btn span {
  display: inline-block;
  vertical-align: top;
  height: 28px;
  line-height: 28px;
  margin: 5px 5px 0;
  padding: 0 15px;
  border: 1px solid #dedede;
  background-color: #fff;
  color: #333;
  border-radius: 2px;
  cursor: pointer;
}
.modal-btn .modal-btn-0 {
  border-color: #35a7f2;
  background-color: #35a7f2;
  color: #fff;
}
.modal-resize {
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: 0;
  cursor: se-resize;
  border: 8px solid  transparent;
  border-bottom-color: #ddd;
  border-right-color: #ddd;
}
.modal-msg {
  position: fixed;
  padding: 12px 25px;
  min-width: 100px;
  max-width: 360px;
  background-color: rgba(0, 0, 0, 0.6);
  line-height: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20000;
  text-align: center;
  word-break: break-all;
}
.loader {
  position: fixed;
  width: 50px;
  height: 50px;
  transform: rotate(165deg);
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 10001;
}
.loader:after,
.loader:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
}
.loader:before {
  animation: before 2s infinite;
  -webkit-animation: before 2s infinite;
}
.loader:after {
  animation: after 2s infinite;
  -webkit-animation: after 2s infinite;
}
@keyframes before {
  0% {
    width: 10px;
    box-shadow: 20px -10px rgba(225, 20, 98, 0.75), -20px 10px rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 50px;
    box-shadow: 0 -10px rgba(225, 20, 98, 0.75), 0 10px rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 10px;
    box-shadow: -20px -10px rgba(225, 20, 98, 0.75), 20px 10px rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 20px -10px rgba(225, 20, 98, 0.75), -20px 10px rgba(111, 202, 220, 0.75);
  }
}
@keyframes after {
  0% {
    height: 10px;
    box-shadow: 10px 20px rgba(61, 184, 143, 0.75), -10px -20px rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 50px;
    box-shadow: 10px 0 rgba(61, 184, 143, 0.75), -10px 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 10px;
    box-shadow: 10px -20px rgba(61, 184, 143, 0.75), -10px 20px rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 10px 20px rgba(61, 184, 143, 0.75), -10px -20px rgba(233, 169, 32, 0.75);
  }
}
.lesson_wrap {
  position: relative;
}
.lesson_wrap .lesson_list {
  display: none;
  position: absolute;
  top: 50;
  left: 0;
  z-index: 10;
}
.lesson_wrap .lesson_list a {
  width: 134px;
  display: block;
  text-align: center;
  line-height: 40px;
  color: #333 !important;
  background: rgba(255, 255, 255, 1) !important;
}
.lesson_wrap .lesson_list a:hover {
  background: #e0faed !important;
}
.lesson_wrap:hover .lesson_list {
  display: block;
}
o-wrap .banner {
  height: 600px;
  overflow: hidden;
}
.banner_wrap{width:1920px;height:600px;margin:0 auto;text-align: center;}
/* .flex-viewport img{width:1920px;height:600px !important;} */
.statistics {width: 100%;height: 370px;margin-top:25px;background:url(../images/statistics_bg.png);margin-bottom: 30px;}
.statistics ul {width:1400px;margin:0 auto;
  display:flex;justify-content:space-between;
}
.statistics ul li {width:350px;height: 150px;text-align: center;color: #fff;margin-top:100px;}
/* .statistics ul li p{font-size: 32px;color:#333;padding-bottom: 0px !important;} */
.statistics ul li div {
  font-size: 50px;
  color: #fbc71c;
}
.intro {
  margin:80px auto;
  width: 1400px;
  height: 462px;
  
}
.intro .intitle{margin-top:10px;}
.intro .intitle p{font-size: 32px;color:#222;}
.intro .intitle span{color:#ccc;font-size: 16px;}
.intro .w1200 {
  height: 400px;margin-top:50px;background:#fff;
  display: flex;justify-content: space-evenly;
}
.intro .w1200 .intro-text-wrap {
  width: 860px;
  height: 400px;
  padding: 0px;
  box-sizing: border-box;margin-top:20px;
}
.intro .w1200 .intro-text-wrap .intro-content {
  width:666px;height: 290px;margin:30px 35px 0 0px;
  overflow-y: auto;
  color: #666;
  font-size: 18px;
  line-height: 36px;
  text-indent: 2em;
}
.intro .w1200 .intro-text-wrap .intro-content::-webkit-scrollbar { width: 0 !important }
.intro .w1200 .video {
  width: 610px;
  height: 462px;
  position: relative;
}
.intro .w1200 .video video {
  width: 550px;
  height: 400px;
}
.intro .w1200 .video .video-bg {
  width: 610px;
  height: 462px;
  background: url(../images/video-bg.jpg)  no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.intro .w1200 .video:hover {
  cursor: pointer;
}
.users{
  width: 1400px;margin:50px auto 0 auto;
  height: 200px;border:1px solid #ddd;
}
.users ul{list-style-type: none;}
.users ul li{float:left;width:349px;border-right:1px solid #ddd;height:199px;text-align: center;transition:0.4s;}
.users ul li:last-child{border-right:none;width:350px;}
.users ul li:hover{box-shadow: 0 4px 8px 0 rgba(93, 93, 93, 0.3);background:#fff;cursor: pointer;}
.users ul li p{font-size: 24px;color:#333;}
.users ul li span{font-size: 15px;color:#b3afaf;margin-top:20px;}
.users img {width:80px;height:80px;border-radius: 100%;margin:25px 0 10px 0;}
.users img:hover {
  cursor: pointer;
}
.hot-list-wrap { padding: 30px 0 0px;}
.hot-list-wrap .title {margin:50px auto;text-align: center;}
.hot-list-wrap .title strong{font-size: 32px;font-weight: 500;color:#333;}
.hot-list-wrap .title p{font-weight: normal;font-size: 18px;color:#ccc;margin:0 !important;}
.hot-list-wrap .title a:hover{text-decoration: none;}
.hot-list-wrap .hot-list {
  width: 1400px;
  overflow: hidden !important;
  min-height: 280px;
  display: flex;justify-content: start;flex-wrap:wrap;
}
.hot-list-wrap .hot-list .citem {
  width: 264px;
  height: 251px;
  background: white;
  margin: 0 16px 20px 0px;
  border-radius: 2px;
  cursor: pointer;transition:0.4s;
}
.hot-list-wrap .hot-list .citem .index-info,.hot-list-wrap .hot-list .citem .index-data{padding:0 10px;overflow: hidden;text-overflow:ellipsis;white-space:nowrap;}
.hot-list-wrap .hot-list .citem:last-child{margin-right:0 !important;}
.hot-list-wrap .hot-list .citem .index-pic {
  height: 166px;
  overflow: hidden;
}
.hot-list-wrap .hot-list .citem .index-pic img {
  width: 100%;border-top-left-radius: 2px;border-top-right-radius: 2px;
  height: 166px;border:1px solid #ddd;
  transition: transform 0.3s linear;
}
.hot-list-wrap .hot-list .citem h4 {
  font-size: 16px;
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hot-list-wrap .hot-list .citem .index-data {
  color: #949494;
}
.hot-list-wrap .hot-list .citem:hover{
  box-shadow: 0 4px 8px 0 rgba(93, 93, 93, 0.3);
}
.hot-list-wrap .hot-list .citem:hover .index-pic img {
  transform: scale(1.1);
}
.hot-list-wrap .hot-list .citem:hover h4 {
  color: #5d9be0;
}
.special {
  height: 447px;
  background: url(../images/special-bg.png) no-repeat center;
  text-align: center;
}
.special div > a {
  display: block;
  position: relative;
  float: left;
  width: 185px;
  height: 447px;
  overflow: hidden;
}
.special div > a img {
  width: 185px;
  height: 447px;
  transition: transform 0.3s linear;
}
.special div > a:hover img {
  transform: scale(1.1);
}
.cjdw {
  padding-top:30px;
  width: 100%;
  min-height:400px;
  background: url(../images/index/cjdwbg.png) no-repeat top center;
  font-size: 15px;
}
.cjdw .cjdw-bj {
  width: 100%;
  min-height: 180px;
  padding-bottom: 30px;
}
.cjdw .cjdw-bj .w1200 div {
  margin-bottom: 10px;
}
.cjdw .cjdw-bj .w1200 .title {
  text-align: center;
  padding: 50px 0 35px 0;
}
.cjdw .cjdw-bj p strong{font-size: 32px;font-weight: 500;color:#333;}
.cjdw .cjdw-bj p i{font-weight: normal;font-size: 20px;color:#5d9be0;margin-left:10px;}
.cjdw .cjdw-bj h3{color:#222;font-size: 32px;margin:20px 0 20px 0;text-align: center;}
.cjdw .cjdw-bj h3 span{margin-right:5px;}
.cjdw .cjdw-bj .w1200 ul{margin-left:20px;}
.cjdw .cjdw-bj .w1200 li {margin: 0 2% 10px 0;float: left;width:402px;height:100px;background: #fff;border:1px solid#eee;}
.cjdw .cjdw-bj li img{height:100px;}
.car-library {
  height: 720px;
}
.car-library h3 {
  padding: 40px 0;
  line-height: 25px;
  font-size: 28px;
}
.car-library h3 span {
  font-size: 16px;
}
.car-library .car-list {
  overflow: hidden;
}
.car-library .car-list a {
  float: left;
  background: #fff;
  width: 380px;
  height: 270px;
  margin: 0 20px 20px 0;
  overflow: hidden;
}
.car-library .car-list a img {
  width: 100%;
  height: 220px;
  transition: transform 0.3s linear;
}
.car-library .car-list a p {
  text-align: center;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
}
.car-library .car-list a:hover img {
  transform: scale(1.1);
}
.car-library .car-list a:hover p {
  color: #5a74e3;
}
.navigation {
  height: 415px;
}
.navigation h3 {
  padding: 40px 0;
  line-height: 25px;
  font-size: 28px;
}
.navigation h3 span {
  font-size: 16px;
}
.navigation div > a {
  display: block;
  position: relative;
  float: left;
  height: 320px;
  width: 25%;
  min-width: 200px;
}
.navigation div > a img {
  width: 100%;
  height: 100%;
}
.charts {
  background: #fff;
  height: 500px;
  padding: 40px;
}
.charts h4 {
  font-size: 16px;
  line-height: 50px;
  font-weight: bold;
}
.charts .chart-box {
  height: 400px;
}
.rank {
  background: #fff;
  padding-bottom: 40px;
}
.rank .rank-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 100px;
  text-align: center;
}
.rank .rank-title span {
  display: inline-block;
  width: 24.5%;
}
footer {
  color: #ccc;
  background: #333;
  line-height: 100px;
  height: 100px;
  text-align: center;
}
footer .w1200 {
  padding-top: 50px;
}
footer .footer-bg {
  position: absolute;
  left: -360px;
  top: 0;
  z-index: 10;
}
footer .department {
  position: relative;
  z-index: 20;
}
footer .department .department-title {
  line-height: 50px;
}
footer .department ul {
  max-height: 150px;
  overflow: hidden;
}
footer .department ul.open {
  max-height: none;
}
footer .department ul li {
  line-height: 36px;
  width: 240px;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
footer .department ul li a {
  color: #345aff;
}
footer .department .footer-show-more {
  height: 30px;
  line-height: 30px;
  background: #444;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
footer .department .footer-show-more:hover {
  background: #555;
}
footer .department .footer-show-more span:nth-child(1),
footer .department .footer-show-more.active span:nth-child(2) {
  display: block;
}
footer .department .footer-show-more span:nth-child(2),
footer .department .footer-show-more.active span:nth-child(1) {
  display: none;
}
.ui-table {
  width: 280px;
  margin: 0 10px;
  float: left;
}
.ui-table-wrap {
  white-space: nowrap;
  margin: 0 auto;
}
.ui-table-tr {
  height: 38px;
  line-height: 38px;
  font-size: 0;
}
.ui-table-tr:after {
  clear: both;
  content: '';
  display: table;
}
.ui-table-body .ui-table-tr:nth-child(odd) .ui-table-td {
  background-color: #ffffff;
}
.ui-table-body .ui-table-tr:nth-child(even) .ui-table-td,
.ui-table-th {
  background-color: #f0f3fa;
}
.ui-table-body .ui-table-tr:hover .ui-table-td {
  background-color: #e2e8f5;
}
.ui-table-th,
.ui-table-td {
  font-size: 14px;
  display: inline-block;
  padding: 0 5px;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666;
}
.ui-table-th {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.lesson_wrap {
  position: relative;
}
.lesson_wrap .lesson_list {
  display: none;
  position: absolute;
  top: 50;
  left: 0;
  z-index: 10;
}
.lesson_wrap .lesson_list a {
  padding: 0 30px;
  display: block;
  text-align: center;
  line-height: 40px;
  color: #333 !important;
  background: rgba(255, 255, 255, 0.5) !important;
}
.lesson_wrap .lesson_list a:hover {
  background: rgba(247, 247, 247, 0.8) !important;
}
.lesson_wrap:hover .lesson_list {
  display: block;
}
/* 特色子库 */
.vr_experience{width:100%;height:410px;background:url(../images/special-bg.png) no-repeat center top;}
.vr_experienceWrap{margin: 0 auto;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;padding:1px 20px;}
.vr_experienceWrap .vr_content{width:100%;display: flex;justify-content: space-between;margin-top:27px;}
.vr_experienceWrap .vr_content a{color:white;}
.vr_experienceWrap .vr_content a:hover{cursor: pointer;color:#f6c600;}
.vr_experienceWrap .vr_content a dt{overflow: hidden;width:403px;height:266px;position:relative;}
.vr_experienceWrap .vr_content a dt>img:nth-child(1){width: 403px;height: 266px;}
.vr_experienceWrap .vr_content a dt>div:nth-child(2){opacity: 0;width: 403px;height: 266px;position:absolute;top:0;left:0;background:rgba(0,0,0,.3);display: flex;align-items: center;justify-content: space-around;}
.vr_experienceWrap .vr_content a:hover dt>div:nth-child(2){opacity: 1;transition: all .35s linear;}
.vr_experienceWrap .vr_content a dd{font-weight:bold;font-size:16px;width:403px;text-align: center;font-size:21px;padding-top:35px;margin-left:0;}

/* 新闻中心 */
.newsList{margin-bottom: 20px;}
.newsList .news_item{width: 665px;height: 140px;background: #F5F5F5;margin-bottom: 40px;padding: 20px;position: relative;}
.newsList .news_item:nth-child(2n){float: right;margin-right: 20px}
.newsList .news_item:nth-child(2n+1){float: left;margin-left: 20px}
.newsList .news_pic{position: absolute;width: 100px;height: 100px;overflow: hidden;top: 20px;left: 20px}
.newsList .news_pic img{width: 100%;height: 100%}
.newsList .news_info{padding-left: 120px}
.newsList .news_date{line-height: 50px;font-weight: bold;border-bottom: 1px solid #ccc}
.newsList .news_date .fl{font-size: 24px}
.newsList .news_date .fr{font-size: 14px}
.newsList .news_info h4{font-size: 16px;font-weight: bold;line-height: 40px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis}
.newsList .news_info p{height: 60px;line-height: 30px;color: #999;text-indent: 2rem;overflow: hidden;text-align: justify}
