@charset "utf-8";
/* 
@名称: base 
@功能: 重设浏览器默认样式 
*/
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
  color: black;
  background: white;
  color: #333333;
}
::-webkit-scrollbar {
  width: 10px;
  /*对垂直流动条有效*/
  height: 10px;
  /*对水平流动条有效*/
}
/*定义滚动条的轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #dfdcd8;
  background-color: #E8E8E8;
  border-radius: 3px;
}
/*定义滑块颜色、内阴影及圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 7px;
  -webkit-box-shadow: inset 0 0 6px #dfdcd8;
  background-color: #977f5e;
}
.component .formBox > button[type="button"]:hover {
  box-shadow: 0 0 10px 0 rgba(240, 198, 126, 0.5);
  -moz-box-shadow: 0 0 10px 0 rgba(240, 198, 126, 0.5);
  -webkit-box-shadow: 0 0 10px 0 rgba(240, 198, 126, 0.5);
}
/*定义右下角汇合处的样式*/
::-webkit-scrollbar-corner {
  background: khaki;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
  font: 14px/1.5 'microsoft yahei', SimSun, tahoma, arial, sans-serif;
}
input,
select,
textarea {
  font-size: 100%;
}
/* 去掉各Table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align*/
th {
  text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
  border: none;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: inline-block;
  vertical-align: middle;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: none;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
/* 去掉列表前的标识, li 会继承 */
ol,
ul {
  list-style: none;
}
/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
i,
em {
  font-style: normal;
}
q:before,
q:after {
  content: '';
}
/* 统一上标和下标 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
  text-decoration: underline;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}
/* IE6,7焦点点状线去除 */
a:focus,
*:focus {
  outline: none;
}
/* 清除浮动 */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  overflow: hidden;
}
.clearfix {
  zoom: 1;
  /* for IE6 IE7 */
}
.clearfix_01:after {
  /*伪元素是行内元素 正常浏览器清除浮动方法*/
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix_01 {
  *zoom: 1;
  /*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  height: 0;
  line-height: 0;
  font-size: 0;
}
/* 设置显示和隐藏, 通常用来与 JS 配合 */
.hide {
  display: none !important;
  visibility: hidden;
}
/* 设置内联, 减少浮动带来的bug */
a {
  color: #666;
}
a:hover {
  text-decoration: none;
}
/* 圆角 */
/*单行载断溢出省略号*/
/* 背景自适应 */
/* 透明度渐变 */
/*阴影*/
/* 内阴影 */
/* input提示字体颜色修改 */
.MainTitle {
  font-size: 24px;
  color: #FFFFFF;
}
@media (max-width: 780px) {
  .MainTitle {
    font-size: 20px;
  }
}
.Title_H2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
}
@media (max-width: 780px) {
  .Title_H2 {
    font-size: 28px;
    line-height: 38px;
  }
}
h2 {
  text-align: center;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 600;
  color: #353535;
  margin-bottom: 1em;
}
h2 span {
  display: inline-block;
}
h2:before,
h2:after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  -webkit-background-size: auto 100%;
  -moz-background-size: auto 100%;
  -o-background-size: auto 100%;
  -ms-background-size: auto 100%;
}
h2:before {
  background-image: url("../images/com_title_left.png");
  margin-right: 0.5em;
}
h2:after {
  background-image: url("../images/com_title_right.png");
  margin-left: 0.5em;
}
h2.white {
  color: #fff;
}
h2.white:before,
h2.white:after {
  -webkit-filter: grayscale(1);
  /* Webkit */
  filter: gray;
  /* IE6-9 */
  filter: grayscale(1);
  /* W3C */
}
@media (max-width: 1000px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  h2 {
    font-size: 22px;
  }
  h2::before,
  h2::after {
    display: none;
  }
}
.btnBox {
  text-align: center;
  margin-top: 30px;
}
.btnBox .btn0,
.btnBox .btn1 {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  height: 3em;
  line-height: 3;
  width: 13.33333333em;
  max-width: 44%;
  margin: 0.5em;
  border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  -webkit-border-radius: 1.5em;
  -ms-border-radius: 1.5em;
  -o-border-radius: 1.5em;
}
@media (min-width: 1200px) {
  .btnBox .btn0,
  .btnBox .btn1 {
    transition: all 0.3s;
  }
  .btnBox .btn0:hover,
  .btnBox .btn1:hover {
    transform: scale(1.03);
  }
}
@media (max-width: 1000px) {
  .btnBox .btn0,
  .btnBox .btn1 {
    font-size: 14px;
  }
}
.btnBox .btn0 {
  color: #fff;
  background: -webkit-linear-gradient(left, #f15646, #dc431b);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f15646, #dc431b);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f15646, #dc431b);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f15646, #dc431b);
  /* 标准的语法 */
}
.btnBox .btn1 {
  color: #e34929;
  background-color: #fff;
  border: solid 1px #e54b2e;
}
@media (max-width: 1200px) {
  .btnBox {
    margin-top: 20px;
  }
}
span.special {
  color: #999999;
  font-size: 14px;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    width: 96%;
  }
}
@media (max-width: 780px) {
  .container {
    width: auto;
    padding: 0 15px;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
  75% {
    transform: scale(1.3);
  }
  78%,
  100% {
    opacity: 0;
  }
}
/* total-course*/
.total-course {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  height: 500px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding-top: 45px;
}
.total-course img {
  max-width: 96%;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .total-course {
    height: auto;
    padding: 2.35% 0 2.1%;
  }
}
.annualVidConKy {
  padding: 50px 0;
}
.annualVidConKy .annual-content {
  display: table;
  width: 100%;
}
.annualVidConKy .annual-content > div {
  display: table-cell;
  vertical-align: top;
}
.annualVidConKy .annual-content .member-video div {
  width: 100%;
}
.annualVidConKy .annual-content .member-video div article {
  width: 100%;
  height: 100%;
}
.annualVidConKy .annual-content .blank-space {
  width: 18px;
}
.annualVidConKy .annual-content .collogue-plan {
  width: 350px;
}
.annualVidConKy .annual-content .collogue-plan > h6 {
  background-color: #405fba;
  box-shadow: 0px 4px 15px 0px rgba(170, 179, 191, 0.3);
  border-radius: 8px 8px 0px 0px;
  color: #FFFFFF;
  font-size: 24px;
  text-align: center;
  padding: 8px 0;
}
.annualVidConKy .annual-content .collogue-plan > div {
  padding: 20px;
  background-color: #f7f8fb;
  border-radius: 0px 0px 8px 8px;
}
.annualVidConKy .annual-content .collogue-plan > div > span {
  color: #999999;
  font-size: 13px;
}
.annualVidConKy .annual-content .collogue-plan > div dl {
  overflow: hidden;
  margin: 20px 0 24px;
}
.annualVidConKy .annual-content .collogue-plan > div dl dt {
  background-color: #e6ecf5;
  border-radius: 4px;
  padding: 6px;
  color: #6581e9;
  font-size: 14px;
  text-align: center;
  float: left;
  margin: 0 10px 0 0;
  width: 64px;
}
.annualVidConKy .annual-content .collogue-plan > div dl dd {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  float: left;
}
.annualVidConKy .annual-content .collogue-plan > div dl dd span {
  color: #f86906;
}
.annualVidConKy .annual-content .collogue-plan > div dl dd i {
  display: block;
  white-space: nowrap;
}
@media (max-width: 1040px) {
  .annualVidConKy .annual-content .collogue-plan {
    width: 300px;
  }
  .annualVidConKy .annual-content .collogue-plan > div {
    padding: 10px;
  }
  .annualVidConKy .annual-content .collogue-plan > div > span {
    font-size: 12px;
  }
  .annualVidConKy .annual-content .collogue-plan > div dl {
    margin: 10px 0 15px;
  }
  .annualVidConKy .annual-content .collogue-plan > div dl dt {
    width: 58px;
  }
  .annualVidConKy .annual-content .collogue-plan > div dl dd {
    width: 180px;
    line-height: 20px;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .annualVidConKy {
    padding: 15px 0;
  }
  .annualVidConKy .annual-content {
    display: block;
  }
  .annualVidConKy .annual-content > div {
    display: block;
  }
  .annualVidConKy .annual-content .collogue-plan {
    width: 100%;
    margin-top: 15px;
  }
  .annualVidConKy .annual-content .collogue-plan > div dl dd {
    width: auto;
  }
}
@media (max-width: 460px) {
  .annualVidConKy .annual-content .collogue-plan > div {
    padding: 0;
    background: transparent;
    margin: 12px 0 0;
  }
  .annualVidConKy .annual-content .collogue-plan > div dl dd {
    max-width: 70%;
  }
  .annualVidConKy .annual-content .collogue-plan > h6 {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0px;
    color: #405fba;
    font-size: 20px;
    text-align: left;
    padding: 0px 0 0 10px;
    position: relative;
  }
  .annualVidConKy .annual-content .collogue-plan > h6::before {
    position: absolute;
    left: 0;
    top: 16%;
    width: 4px;
    height: 73%;
    background: #405fba;
    content: '';
  }
}
.chooseKY {
  padding: 0 0 50px;
  transition: all 0.3s;
}
.chooseKY:hover {
  transform: translateY(-4px);
}
.chooseKY .choose-title {
  background: url(../images/l.jpg) no-repeat;
  width: 360px;
  height: 56px;
}
.chooseKY .choose-title h6 {
  font-size: 24px;
  color: #FFFFFF;
  padding: 10px 15px;
}
@media (max-width: 780px) {
  .chooseKY .choose-title h6 {
    font-size: 20px;
  }
}
.chooseKY .choose-content {
  background: #ffffff url(../images/bg.png) no-repeat right top;
  box-shadow: 0px -2px 10px 0px rgba(136, 175, 233, 0.15);
  position: relative;
  padding: 30px 0;
  display: table;
  width: 100%;
}
.chooseKY .choose-content > div {
  display: table-cell;
  vertical-align: middle;
}
.chooseKY .choose-content::after {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  content: '';
  height: 8px;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.1);
}
.chooseKY .choose-content .choose-left {
  width: 70%;
  overflow: hidden;
}
.chooseKY .choose-content .choose-left > div {
  padding: 0 30px;
  position: relative;
}
.chooseKY .choose-content .choose-left > div::after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  height: 200px;
  width: 1px;
  background: url(../images/line.png) no-repeat center center;
}
.chooseKY .choose-content .choose-left > div ul {
  width: 50%;
  float: left;
}
.chooseKY .choose-content .choose-left > div ul li {
  font-size: 16px;
  padding: 5px 5px 5px 27px;
  background: url(../images/gou.png) no-repeat left 9px;
  margin-bottom: 15px;
}
.chooseKY .choose-content .choose-left > div ul li:last-of-type {
  margin-bottom: 0;
}
.chooseKY .choose-content .choose-btn {
  width: 30%;
  text-align: center;
}
.chooseKY .choose-content .choose-btn button {
  background-color: #e6ecf5;
  border-radius: 4px;
  width: 200px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  color: #666666;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto 15px;
  transition: all 0.3s;
}
.chooseKY .choose-content .choose-btn button:hover {
  transform: translateY(-2px);
  background: #e1edff;
}
.chooseKY .choose-content .choose-btn a {
  background-color: #f95c42;
  border-radius: 4px;
  width: 200px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: all 0.3s;
}
.chooseKY .choose-content .choose-btn a:hover {
  transform: translateY(-2px);
  background: #f24427;
}
@media (max-width: 1080px) {
  .chooseKY .choose-content .choose-btn button {
    width: 180px;
    font-size: 15px;
  }
  .chooseKY .choose-content .choose-btn a {
    width: 180px;
    font-size: 15px;
  }
  .chooseKY .choose-content .choose-left {
    width: 74%;
  }
  .chooseKY .choose-content .choose-left > div ul li {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .chooseKY .choose-title {
    width: auto;
    height: auto;
    background-size: 100% auto;
  }
  .chooseKY .choose-content {
    display: block;
    padding: 20px 0;
  }
  .chooseKY .choose-content > div {
    display: block;
  }
  .chooseKY .choose-content .choose-btn {
    width: auto;
    margin: 15px 0 0;
  }
  .chooseKY .choose-content .choose-btn button {
    display: inline-block;
    width: 160px;
    margin-right: 3px;
    font-size: 14px;
  }
  .chooseKY .choose-content .choose-btn a {
    display: inline-block;
    width: 160px;
    font-size: 14px;
  }
  .chooseKY .choose-content .choose-left {
    width: auto;
  }
  .chooseKY .choose-content .choose-left > div {
    padding: 0 10px;
  }
  .chooseKY .choose-content .choose-left > div:after {
    display: none;
  }
  .chooseKY .choose-content .choose-left > div ul {
    width: auto;
  }
  .chooseKY .choose-content .choose-left > div ul li {
    margin-bottom: 8px;
  }
}
.qualityShSwKy {
  background-color: #f7f8fb;
  padding: 40px 0 50px;
}
.qualityShSwKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  background: url(../images/1.png) no-repeat top center;
}
@media (max-width: 780px) {
  .qualityShSwKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.qualityShSwKy .TeamTab {
  margin-bottom: 35px;
}
.qualityShSwKy .TeamTab > div {
  overflow-x: auto;
}
.qualityShSwKy .TeamTab #move-animate-left {
  text-align: center;
}
.qualityShSwKy .TeamTab #move-animate-left li {
  width: 162px;
  height: 40px;
  border-radius: 4px;
  border: solid 1px #dcdcdc;
  color: #666666;
  font-size: 16px;
  line-height: 40px;
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 25px;
}
.qualityShSwKy .TeamTab #move-animate-left .current {
  background-color: #4160ba;
  border: solid 1px #4160ba;
  color: #FFFFFF;
  transition: all 0.3s;
}
.qualityShSwKy .TeamTab .tabcon {
  overflow: hidden;
  width: 1160px;
}
.qualityShSwKy .TeamTab .tabcon .subbox {
  width: 10000px;
  position: relative;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist {
  width: 1160px;
  float: left;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li {
  width: 20%;
  float: left;
  margin: 0 2.5%;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div {
  padding: 100px 40px 25px;
  background: #FFFFFF url(../images/bg2.png) no-repeat right bottom;
  position: relative;
  height: 205px;
  transition: all 0.3s;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div:hover {
  transform: translateX(-4px);
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div .formTitle {
  position: absolute;
  top: 20px;
  left: -5px;
  width: 110%;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div .formTitle p {
  width: 171px;
  height: 56px;
  background-color: #4160ba;
  border-radius: 0px 28px 28px 0px;
  float: left;
  padding-left: 20px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 20px;
  line-height: 56px;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div .formTitle span {
  width: 56px;
  height: 56px;
  background-color: #fa5d43;
  display: block;
  color: #FFFFFF;
  font-size: 16px;
  text-align: center;
  float: left;
  position: relative;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div .formTitle span i {
  padding: 4px 0;
  display: block;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div .formTitle span::after {
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 5px;
  height: 5px;
  background: url(../images/dian.png) no-repeat;
  content: '';
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div > ul {
  padding-left: 20px;
  position: relative;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div > ul::before {
  position: absolute;
  left: 0px;
  width: 1px;
  height: 96%;
  top: 4px;
  background: #eff0f7;
  content: '';
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div > ul li {
  position: relative;
  margin: 0 0 20px;
  font-size: 16px;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div > ul li::before {
  position: absolute;
  left: -28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 4px;
  background: #eff0f7;
  content: '';
  z-index: 0;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-one > li > div > ul li::after {
  position: absolute;
  left: -24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 8px;
  background: #5e69ad;
  content: '';
  z-index: 10;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .move-animate li {
  width: 120px;
  height: 40px;
  border-radius: 4px 4px 0 0;
  color: #666666;
  font-size: 16px;
  line-height: 40px;
  cursor: pointer;
  display: inline-block;
  margin: 0 13px 0px 0;
  background: #e6ecf5;
  text-align: center;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .move-animate .current {
  background-color: #ecbd7e;
  color: #FFFFFF;
  transition: all 0.3s;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .subTeacher {
  border-radius: 0 2px 2px 2px;
  overflow: hidden;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .subTeacher > div {
  position: relative;
  width: 100000px;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .subTeacher > div > div {
  float: left;
  width: 1100px;
  padding: 30px;
  background: #ffffff;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .subTeacher li {
  width: 22.75%;
  height: 240px;
  background: #e6ecf5;
  float: left;
  margin-right: 3%;
  position: relative;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .subTeacher li img {
  width: 100%;
  height: 210px;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .subTeacher li:last-of-type {
  margin-right: 0;
}
.qualityShSwKy .TeamTab .tabcon .subbox .sublist .form-two .subTeacher li span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #73767a;
  color: #FFFFFF;
  text-align: center;
  padding: 7px 0;
  font-size: 17px;
}
@media (max-width: 768px) {
  .qualityShSwKy {
    padding: 20px 0 30px;
  }
  .qualityShSwKy .TeamTab #move-animate-left li {
    width: 96px;
    margin: 0 3px 25px;
    font-size: 14px;
  }
}
.courseKy {
  padding: 40px 0 50px;
}
.courseKy .container > div {
  overflow: hidden;
  overflow-x: auto;
}
.courseKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  background: url(../images/2.png) no-repeat top center;
}
@media (max-width: 780px) {
  .courseKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.courseKy .course-items {
  min-width: 900px;
  max-width: 990px;
  margin: 0 auto;
}
.courseKy .course-items li {
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(136, 175, 233, 0.2);
  border-radius: 8px;
  overflow: hidden;
  padding-left: 310px;
  position: relative;
  height: 88px;
  margin-bottom: 28px;
  transition: all 0.3s;
}
.courseKy .course-items li:hover {
  transform: scale(1.03);
}
.courseKy .course-items li > span {
  margin: 22px 30px 0 22px;
  display: block;
}
.courseKy .course-items li > span i {
  color: #f86906;
}
.courseKy .course-items li .course-title {
  width: 320px;
  height: 88px;
  background: url(../images/l.png) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  color: #FFFFFF;
}
.courseKy .course-items li .course-title i {
  position: absolute;
  left: 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: normal;
  margin: 2px 19px;
  display: block;
}
.courseKy .course-items li .course-title div {
  width: 280px;
  text-align: center;
}
.courseKy .course-items li .course-title div h5 {
  font-size: 24px;
  font-weight: 600;
  margin: 13px 0 0;
}
.courseConSwKy {
  background-color: #f7f8fb;
  padding: 40px 0 50px;
}
.courseConSwKy .container {
  width: 1060px;
}
@media (max-width: 1160px) {
  .courseConSwKy .container {
    width: 96%;
  }
}
@media (max-width: 780px) {
  .courseConSwKy .container {
    width: auto;
    padding: 0 15px;
  }
}
.courseConSwKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  background: url(../images/3.png) no-repeat top center;
}
@media (max-width: 780px) {
  .courseConSwKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.courseConSwKy .course-navigation ul {
  display: table;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}
.courseConSwKy .course-navigation ul li {
  display: table-cell;
  width: 48%;
  vertical-align: middle;
  padding: 25px;
}
.courseConSwKy .course-navigation ul li .l {
  display: table-cell;
  width: 96px;
  height: 96px;
  background: url(../images/book.png) no-repeat;
  border-radius: 8px;
  text-align: center;
  margin-right: 20px;
  vertical-align: top;
}
.courseConSwKy .course-navigation ul li .l img {
  margin-top: 12px;
}
.courseConSwKy .course-navigation ul li .r {
  display: table-cell;
  vertical-align: top;
  padding-left: 25px;
}
.courseConSwKy .course-navigation ul li .r h5 {
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
}
.courseConSwKy .course-navigation ul li .r dl {
  margin-top: 10px;
  display: table;
  width: 100%;
}
.courseConSwKy .course-navigation ul li .r dl dd {
  font-size: 14px;
  width: 50%;
  line-height: 28px;
  color: #FFFFFF;
  display: table-cell;
}
.courseConSwKy .course-navigation ul li .r dl dd:first-of-type {
  padding-right: 20px;
}
@media (max-width: 768px) {
  .courseConSwKy .course-navigation ul li .r dl dd {
    display: block;
    width: 100%;
  }
}
.courseConSwKy .course-navigation ul li .r dl dd span {
  display: block;
}
@media (max-width: 1000px) {
  .courseConSwKy .course-navigation ul li .r dl dd span {
    display: inline;
  }
}
.courseConSwKy .course-navigation ul li:first-of-type {
  background: #4160ba;
}
.courseConSwKy .course-navigation ul li:last-of-type {
  background-color: #ecbd7e;
}
.courseConSwKy .course-navigation ul li:last-of-type h5 {
  color: #b34e22;
}
.courseConSwKy .course-navigation ul li:last-of-type dl dd {
  color: #b34e22;
}
.courseConSwKy .course-navigation ul .course-gap {
  width: 3%;
  background: #f7f8fb;
  padding: 0;
}
.courseConSwKy .course-category {
  margin-bottom: 30px;
}
.courseConSwKy .course-category .swiper-category {
  margin-top: 35px;
}
.courseConSwKy .course-category .swiper-category .swiper-pagination-bullets {
  bottom: 0px;
}
.courseConSwKy .course-category .swiper-category .swiper-pagination-bullet-active {
  background: #f86906;
}
.courseConSwKy .course-category .swiper-category .swiper-slide ul {
  max-width: 1020px;
  margin: 0 auto;
}
.courseConSwKy .course-category .swiper-category .swiper-slide ul li {
  width: 22.75%;
  margin-right: 3%;
  margin-bottom: 30px;
  height: 150px;
  background-color: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(170, 179, 191, 0.2);
  float: left;
  text-align: center;
  padding: 30px 0;
  transition: all 0.2s;
}
.courseConSwKy .course-category .swiper-category .swiper-slide ul li:hover {
  transform: scale(1.04);
}
.courseConSwKy .course-category .swiper-category .swiper-slide ul li h5 {
  font-size: 20px;
  color: #353535;
  font-weight: 700;
}
.courseConSwKy .course-category .swiper-category .swiper-slide ul li p {
  padding: 0 20px;
}
.courseConSwKy .course-category .swiper-category .swiper-slide ul li:nth-of-type(4n) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .courseConSwKy {
    padding: 30px 0 30px;
  }
  .courseConSwKy .course-navigation ul li {
    display: block;
    width: auto;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 15px;
  }
  .courseConSwKy .course-navigation ul li .l {
    width: 80px;
    height: 80px;
    background-size: 100%;
  }
  .courseConSwKy .course-navigation ul li .l img {
    width: 35px;
  }
  .courseConSwKy .course-navigation ul li .r {
    padding-left: 15px;
  }
  .courseConSwKy .course-navigation ul li .r h5 {
    font-size: 18px;
  }
  .courseConSwKy .course-category {
    margin-bottom: 0px;
  }
  .courseConSwKy .course-category .swiper-category .swiper-slide ul li {
    width: 48%;
    margin-right: 4%;
  }
  .courseConSwKy .course-category .swiper-category .swiper-slide ul li p {
    padding: 0 10px;
  }
  .courseConSwKy .course-category .swiper-category .swiper-slide ul li:nth-of-type(4n) {
    margin-right: 0%;
  }
  .courseConSwKy .course-category .swiper-category .swiper-slide ul li:nth-of-type(2n) {
    margin-right: 0%;
  }
}
.teachingTableKy {
  padding: 40px 0 50px;
}
.teachingTableKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  background: url(../images/4.png) no-repeat top center;
}
@media (max-width: 780px) {
  .teachingTableKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.teachingTableKy .teaching-table {
  max-width: 1100px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 2px 10px 0px rgba(136, 175, 233, 0.15);
  margin: 0 auto 40px;
  padding: 25px;
}
.teachingTableKy .teaching-table table {
  width: 100%;
  border: solid 1px #eeeeee;
  text-align: center;
}
.teachingTableKy .teaching-table table tr th {
  width: 241px;
  height: 48px;
  background-color: #4160ba;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  font-weight: 600;
}
.teachingTableKy .teaching-table table:first-of-type {
  border-bottom: none;
}
.teachingTableKy .teaching-table table:first-of-type tr td {
  border: solid 1px #eee;
  font-size: 14px;
  height: 65px;
}
.teachingTableKy .teaching-table table:first-of-type tr td:nth-of-type(1) {
  color: #666666;
}
.teachingTableKy .teaching-table table:first-of-type tr td:nth-of-type(1) i {
  display: block;
  color: #f86906;
}
.teachingTableKy .teaching-table table:first-of-type tr td:nth-of-type(2) {
  color: #4160ba;
}
.teachingTableKy .teaching-table table:first-of-type tr:nth-of-type(2) td:nth-of-type(2) {
  color: #666666;
  font-weight: bold;
  font-size: 17px;
}
.teachingTableKy .teaching-table table:first-of-type tr:nth-of-type(2) td:nth-of-type(3) {
  color: #4160ba;
}
.teachingTableKy .teaching-table table:first-of-type tr:nth-of-type(5) td:nth-of-type(2) {
  color: #666666;
  font-weight: bold;
  font-size: 17px;
}
.teachingTableKy .teaching-table table:first-of-type tr:nth-of-type(5) td:nth-of-type(3) {
  color: #4160ba;
}
.teachingTableKy .teaching-table table:last-of-type tr td {
  width: 145px;
  height: 50px;
  color: #333333;
  line-height: 19px;
  border: solid 1px #eee;
}
@media (max-width: 800px) {
  .teachingTableKy .teaching-table {
    box-shadow: none;
    padding: 0;
    width: 100%;
    overflow-x: auto;
  }
  .teachingTableKy .teaching-table table {
    min-width: 680px;
  }
}
@media (max-width: 768px) {
  .teachingTableKy {
    padding: 30px 0;
  }
  .teachingTableKy .teaching-table {
    margin-bottom: 0px;
  }
}
.frameBImgKy {
  background: #f7f8fb;
  padding: 40px 0 50px;
}
.frameBImgKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  background: url(../images/5.png) no-repeat top center;
}
@media (max-width: 780px) {
  .frameBImgKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.frameBImgKy .frame-pic {
  max-width: 1030px;
  margin: 0 auto 20px;
  text-align: center;
}
.frameBImgKy .frame-pic > div {
  padding: 45px;
  background: #FFFFFF;
}
.frameBImgKy .frame-pic > div p {
  background-color: #ecbd7e;
  border-radius: 4px;
  color: #b34e22;
  font-size: 18px;
  text-align: center;
  padding: 25px 50px;
  line-height: 30px;
}
.frameBImgKy .frame-pic > div i {
  font-size: 16px;
  color: #999999;
}
.frameBImgKy .frame-pic > div img {
  max-width: 100%;
  min-width: 600px;
}
@media (max-width: 768px) {
  .frameBImgKy {
    padding: 20px 0 30px;
  }
  .frameBImgKy .frame-pic > div {
    padding: 20px;
  }
  .frameBImgKy .frame-pic > div p {
    font-size: 16px;
    padding: 15px;
  }
  .frameBImgKy .frame-pic > div i {
    max-width: 300px;
    display: block;
    margin: 10px auto;
  }
  .frameBImgKy .frame-pic > div > div {
    overflow-x: auto;
  }
}
.classOneSwKy {
  padding: 30px 0 50px;
  text-align: center;
}
@media (max-width: 780px) {
  .classOneSwKy .container {
    padding: 0;
  }
  .classOneSwKy .container P {
    padding: 0 15px;
  }
  .classOneSwKy .container .btnBox {
    padding: 0 15px;
  }
}
.classOneSwKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  background: url(../images/6.png) no-repeat top center;
}
@media (max-width: 780px) {
  .classOneSwKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.classOneSwKy .service-roll {
  max-width: 1016px;
  margin: 0 auto;
  background: url(../images/di.png) no-repeat bottom center;
  padding-bottom: 35px;
}
.classOneSwKy .service-roll .swiper-service {
  max-width: 951px;
}
.classOneSwKy .service-roll .swiper-service .swiper-wrapper {
  max-width: 931px;
}
.classOneSwKy .service-roll .swiper-service .swiper-wrapper img {
  max-width: 100%;
}
.classOneSwKy .service-roll .swiper-service .swiper-button-next {
  width: 40px;
  height: 40px;
  --swiper-navigation-size: 20px;
  color: #333333;
  background-color: #FFFFFF;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  box-shadow: 0px 4px 15px 0px rgba(170, 179, 191, 0.3);
}
.classOneSwKy .service-roll .swiper-service .swiper-button-prev {
  width: 40px;
  height: 40px;
  --swiper-navigation-size: 20px;
  color: #333333;
  background-color: #FFFFFF;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  box-shadow: 0px 4px 15px 0px rgba(170, 179, 191, 0.3);
}
.classOneSwKy p {
  margin: 20px auto;
  max-width: 678px;
  line-height: 24px;
  color: #666666;
  font-size: 16px;
  color: #666;
}
.classOneSwKy p i {
  color: #f86906;
}
.globalTableKy {
  background: #FFFFFF url(../images/bgr.png) no-repeat top center;
}
.globalTableKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  background: url(../images/7.png) no-repeat top center;
}
@media (max-width: 780px) {
  .globalTableKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.globalTableKy .global-part_01 {
  padding: 40px 0 50px;
}
.globalTableKy .global-part_01 div {
  text-align: center;
  overflow-x: auto;
}
.globalTableKy .global-part_01 div table {
  max-width: 1000px;
  min-width: 550px;
  margin: 0 auto;
  border: solid 1px #eeeeee;
}
.globalTableKy .global-part_01 div table tr:nth-of-type(2n+1) {
  background-color: #f3f6f9;
}
.globalTableKy .global-part_01 div table tr:nth-of-type(2n) {
  background-color: #FFFFFF;
}
.globalTableKy .global-part_01 div table tr th {
  height: 56px;
  background-color: #4160ba;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
}
.globalTableKy .global-part_01 div table tr th:first-of-type {
  width: 160px;
}
.globalTableKy .global-part_01 div table tr th:nth-child(3) {
  width: 140px;
}
.globalTableKy .global-part_01 div table tr td {
  border: solid 1px #eee;
  line-height: 26px;
  color: #666666;
  font-size: 14px;
}
.globalTableKy .global-part_01 div table tr td i {
  color: #f86906;
}
.globalTableKy .global-part_01 div table tr td:first-of-type {
  font-size: 17px;
  color: #666666;
  font-weight: bold;
}
.globalTableKy .global-part_01 div table tr td:nth-child(2) {
  text-align: left;
  padding: 16px 30px;
}
.globalTableKy .global-part_02 h2 {
  margin-bottom: 5px;
}
.globalTableKy .global-part_02 .global-line {
  margin: 20px 0 40px;
  text-align: center;
}
.globalTableKy .global-part_02 .global-line img {
  max-width: 100%;
}
.globalTableKy .global-part_02 .global-line .phone {
  display: none;
}
@media (max-width: 768px) {
  .globalTableKy {
    background: #FFFFFF;
  }
  .globalTableKy .container {
    padding: 0;
  }
  .globalTableKy .global-part_01 {
    padding: 30px 15px 20px;
    background: #f7f7fb;
  }
  .globalTableKy .global-part_01 div table tr th {
    font-size: 18px;
  }
  .globalTableKy .global-part_01 div table tr th:first-of-type {
    width: 100px;
  }
  .globalTableKy .global-part_01 div table tr td:first-of-type {
    font-size: 16px;
  }
  .globalTableKy .global-part_01 div table tr td:last-of-type {
    padding: 10px 15px;
    line-height: 20px;
  }
  .globalTableKy .global-part_02 {
    padding: 30px 15px 0;
  }
  .globalTableKy .global-part_02 .global-line .phone {
    display: inline;
  }
  .globalTableKy .global-part_02 .global-line .pc {
    display: none;
  }
}
.oneBImgKy {
  background-color: #f7f7fb;
  padding: 40px 0 50px;
}
.oneBImgKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  background: url(../images/8.png) no-repeat top center;
}
@media (max-width: 780px) {
  .oneBImgKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.oneBImgKy .Tutoring-table {
  margin: 0 auto 30px;
  max-width: 1090px;
  overflow-x: hidden;
}
.oneBImgKy .Tutoring-table table {
  width: 1080px;
  border: 1px solid #eeeeee;
  text-align: center;
  margin: 0 auto;
}
.oneBImgKy .Tutoring-table table thead {
  display: block;
  width: 100%;
}
.oneBImgKy .Tutoring-table table thead tr {
  width: 100%;
  display: table;
}
.oneBImgKy .Tutoring-table table thead tr th {
  font-size: 18px;
  line-height: 46px;
  color: #ffffff;
  height: 56px;
  background-color: #ecbd7e;
  display: table-cell;
}
.oneBImgKy .Tutoring-table table thead tr th:first-of-type {
  width: 200px;
}
.oneBImgKy .Tutoring-table table thead tr th:nth-of-type(2) {
  width: 580px;
}
.oneBImgKy .Tutoring-table table thead tr th:nth-of-type(3) {
  width: 148px;
}
.oneBImgKy .Tutoring-table table tbody {
  max-height: 604px;
  overflow-y: scroll;
  display: block;
  width: 100%;
}
.oneBImgKy .Tutoring-table table tbody tr {
  width: 99.9%;
  display: table;
}
.oneBImgKy .Tutoring-table table tbody tr td {
  border: 1px solid #eeeeee;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  padding: 8px 30px;
  background: #FFFFFF;
}
.oneBImgKy .Tutoring-table table tbody tr td:first-of-type {
  color: #666666;
  font-weight: bold;
  font-size: 16px;
}
.oneBImgKy .Tutoring-table table tbody tr td:nth-of-type(2) {
  text-align: left;
}
.oneBImgKy .Tutoring-table table tbody tr td:first-of-type {
  width: 140px;
}
.oneBImgKy .Tutoring-table table tbody tr td:nth-of-type(2) {
  width: 520px;
}
.oneBImgKy .Tutoring-table table tbody tr td:nth-of-type(3) {
  width: 88px;
}
@media (max-width: 1080px) {
  .oneBImgKy .Tutoring-table {
    overflow-x: auto;
  }
}
.historyTempThreeKy {
  padding: 20px 0 60px;
}
.historyTempThreeKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
}
@media (max-width: 780px) {
  .historyTempThreeKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.historyTempThreeKy .cpa-content .cpa-items {
  max-width: 1030px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.historyTempThreeKy .cpa-content .cpa-items li {
  float: left;
  width: 23.875%;
  margin-right: 1.5%;
  height: 120px;
  border-radius: 4px 4px 0px 0px;
  color: #666666;
  background-color: #e4e9ef;
  text-align: center;
  cursor: pointer;
}
.historyTempThreeKy .cpa-content .cpa-items li:last-of-type {
  margin-right: 0;
}
.historyTempThreeKy .cpa-content .cpa-items li div {
  padding: 23px 30px;
}
.historyTempThreeKy .cpa-content .cpa-items li div h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.historyTempThreeKy .cpa-content .cpa-items li div p {
  line-height: 22px;
}
.historyTempThreeKy .cpa-content .cpa-items .current {
  background-color: #4160ba;
  color: #FFFFFF;
}
.historyTempThreeKy .cpa-content .cpa-Box {
  max-width: 1060px;
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(170, 179, 191, 0.3);
  border-radius: 0px 0px 8px 8px;
  margin: 0 auto;
  position: relative;
}
.historyTempThreeKy .cpa-content .cpa-Box::before {
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../images/j1.png);
  left: 0px;
  top: -15px;
  content: "";
}
@media (max-width: 780px) {
  .historyTempThreeKy .cpa-content .cpa-Box::before {
    display: none;
  }
}
.historyTempThreeKy .cpa-content .cpa-Box::after {
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../images/j2.png);
  right: 0px;
  top: -15px;
  content: "";
}
@media (max-width: 780px) {
  .historyTempThreeKy .cpa-content .cpa-Box::after {
    display: none;
  }
}
.historyTempThreeKy .cpa-content .cpa-Box > div {
  width: 100%;
  display: none;
  transition: all 0.3s;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul {
  padding: 30px;
  overflow: hidden;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul li {
  float: left;
  position: relative;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(1) {
  width: 31.86%;
  margin-right: 2.2%;
  margin-bottom: 25px;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(2) {
  width: 31.86%;
  margin-right: 2.2%;
  margin-bottom: 25px;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(3) {
  width: 31.86%;
  margin-bottom: 15px;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(4) {
  width: 48.9%;
  margin-right: 2.2%;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(5) {
  width: 48.9%;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul li img {
  width: 100%;
  display: block;
}
.historyTempThreeKy .cpa-content .cpa-Box > div ul li span {
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0px;
  color: #FFFFFF;
  padding: 6px 20px;
  background: rgba(0, 0, 0, 0.4);
}
.historyTempThreeKy .cpa-content .cpa-Box .current {
  display: block;
}
.historyTempThreeKy .bottom {
  text-align: center;
  margin: 20px auto;
  max-width: 678px;
  line-height: 24px;
  color: #666;
  font-size: 16px;
}
.historyTempThreeKy .bottom i {
  color: #f86906;
}
@media (max-width: 768px) {
  .historyTempThreeKy .cpa-content .cpa-items li {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 15px;
    height: 126px;
    border-radius: 4px;
  }
  .historyTempThreeKy .cpa-content .cpa-items li:nth-of-type(2) {
    margin-right: 0;
  }
  .historyTempThreeKy .cpa-content .cpa-items li div {
    padding: 15px;
  }
  .historyTempThreeKy .cpa-content .cpa-items li div p {
    line-height: 20px;
  }
  .historyTempThreeKy .cpa-content .cpa-Box > div ul {
    padding: 0;
  }
  .historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(2) {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 10px;
  }
  .historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(3) {
    width: 49%;
    margin-bottom: 10px;
  }
  .historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(4) {
    width: 49%;
    margin-right: 2%;
  }
  .historyTempThreeKy .cpa-content .cpa-Box > div ul li:nth-of-type(5) {
    width: 49%;
  }
}
.serviceTempBImgKy {
  background: url(../images/com_bg0102.jpg) no-repeat center center;
  background-size: cover;
  padding: 40px 0 50px;
}
.serviceTempBImgKy h2.title {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
  color: #fff;
}
@media (max-width: 780px) {
  .serviceTempBImgKy h2.title {
    font-size: 28px;
    line-height: 38px;
  }
}
.serviceTempBImgKy img {
  display: block;
  margin: 0px auto 40px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .serviceTempBImgKy {
    padding: 10px 0 40px;
  }
  .serviceTempBImgKy img {
    max-width: 96%;
    margin: 0px auto 20px;
  }
}
.serviceTempShSwKy {
  padding: 30px 0;
}
.serviceTempShSwKy h2.title {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
}
@media (max-width: 780px) {
  .serviceTempShSwKy h2.title {
    font-size: 28px;
    line-height: 38px;
  }
}
.serviceTempShSwKy .ztwrap {
  max-width: 980px;
  width: 96%;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .serviceTempShSwKy .ztwrap {
    margin-bottom: 0;
  }
}
.serviceTempShSwKy .ztwrap > ol {
  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-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.serviceTempShSwKy .ztwrap > ol li {
  width: 23%;
  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: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  padding: 25px 0;
  background-color: #ffffff;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: dashed 1px #5e69ad;
}
.serviceTempShSwKy .ztwrap > ol li:hover {
  border: solid 1px #5e69ad;
}
.serviceTempShSwKy .ztwrap > ol li h3 {
  font-size: 24px;
  margin-top: 0.5em;
  color: #353535;
}
.serviceTempShSwKy .ztwrap > ol li p {
  font-size: 16px;
  color: #888888;
}
@media (max-width: 768px) {
  .serviceTempShSwKy .ztwrap > ol {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .serviceTempShSwKy .ztwrap > ol li {
    width: 47%;
    margin-bottom: 15px;
    padding: 15px 0;
  }
  .serviceTempShSwKy .ztwrap > ol li > img {
    max-height: 30px;
  }
  .serviceTempShSwKy .ztwrap > ol li h3 {
    font-size: 20px;
    margin-top: 0.3em;
  }
  .serviceTempShSwKy .ztwrap > ol li p {
    font-size: 14px;
  }
}
.serviceTempShSwKy .ztwrap .recording .kyz_zixun {
  width: 370px;
}
.serviceTempShSwKy .ztwrap .recording .kyz_zixun a:first-child {
  width: 190px;
}
@media (max-width: 540px) {
  .serviceTempShSwKy .ztwrap .recording .kyz_zixun {
    width: 285px;
  }
  .serviceTempShSwKy .ztwrap .recording .kyz_zixun a:first-child {
    width: 155px;
  }
}
.serviceTempShSwKy .ztwrap .recording .recording_content {
  margin: 50px auto 0;
  zoom: 1;
}
.serviceTempShSwKy .ztwrap .recording .recording_content:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_left {
  float: left;
  width: 170px;
  padding: 40px 0;
  background-color: #4160ba;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_left span {
  display: block;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_left span.active,
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_left span:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
@media (min-width: 1200px) {
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_right {
    float: right;
    width: 80%;
    overflow: hidden;
    padding-bottom: 15px;
    background-color: #ffffff;
  }
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #444;
  text-align: center;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div {
  position: relative;
  display: none;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div.showOrHide {
  display: block;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .bd .tempWrap {
  width: 100%;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .bd ul {
  zoom: 1;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .bd ul:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .bd ul li {
  width: 234px;
  margin: 10px;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
  float: left;
  border-radius: 10px;
  overflow: hidden;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .bd ul li img {
  width: 100%;
  display: block;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .bd ul li .title {
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .bd ul li:hover {
  transform: scale(1.05);
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .hd {
  position: relative;
  width: 100%;
  display: none;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .hd ul {
  position: absolute;
  margin-left: 50%;
  transform: translateX(-50%);
  zoom: 1;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .hd ul:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .hd ul li {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  float: left;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
  background: rgba(113, 128, 177, 0.5);
}
.serviceTempShSwKy .ztwrap .recording .recording_content .recording_right > div .hd ul li.on {
  background: #7180b1;
}
@media (max-width: 1200px) {
  .serviceTempShSwKy .ztwrap .recording .recording_content {
    margin-top: 0;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_left {
    float: none;
    width: auto;
    height: auto;
    background: none;
    max-width: 600px;
    margin: 20px auto;
    padding: 0px 0;
    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-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_left span {
    float: left;
    color: #444;
    width: 32%;
    height: 2em;
    line-height: 2em;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_left span.active {
    color: #fff;
    background-color: #7180b1;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content h3 {
    display: none;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_right {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    float: none;
    border: none;
    height: 200px;
  }
}
@media (max-width: 1000px) {
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_right {
    max-width: 520px;
  }
}
@media (max-width: 640px) {
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_left {
    margin: 10px auto;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_left span {
    font-size: 14px;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_left span em {
    display: none;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_right {
    max-width: 260px;
  }
  .serviceTempShSwKy .ztwrap .recording .recording_content .recording_right .hd {
    display: block !important;
  }
}
.zlPluralKy {
  padding-bottom: 0;
  background-color: #fff;
}
.zlPluralKy h2.title {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
}
@media (max-width: 780px) {
  .zlPluralKy h2.title {
    font-size: 28px;
    line-height: 38px;
  }
}
.zlPluralKy .ztwrap {
  max-width: 1100px;
  margin: 0 auto;
}
.zlPluralKy .swiper-container {
  font-size: 16px;
}
.zlPluralKy .swiper-container .swiper-wrapper .swiper-slide {
  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-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.zlPluralKy .swiper-container .swiper-wrapper .swiper-slide li {
  font-size: 14px;
  width: 8.21428571em;
  margin: 0 0.5em 2.14285714em;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
}
.zlPluralKy .swiper-container .swiper-wrapper .swiper-slide li > img {
  display: block;
  margin: 0 auto 0.35714286em;
  width: 3.28571429em;
  height: 3.14285714em;
}
.zlPluralKy .swiper-container .swiper-wrapper .swiper-slide li p {
  text-align: center;
  color: #666666;
}
@media (max-width: 1200px) {
  .zlPluralKy .swiper-container {
    max-width: 900px;
  }
}
@media (max-width: 1000px) {
  .zlPluralKy .swiper-container {
    max-width: 768px;
  }
  .zlPluralKy .swiper-container .swiper-wrapper .swiper-slide::after {
    content: '';
    width: 8.21428571em;
  }
  .zlPluralKy .swiper-container .swiper-wrapper .swiper-slide::before {
    content: '';
    width: 8.21428571em;
    order: 50;
  }
}
@media (max-width: 768px) {
  .zlPluralKy .swiper-container {
    max-width: 500px;
  }
  .zlPluralKy .swiper-container .swiper-wrapper .swiper-slide::after {
    content: '';
    max-width: 31.33%;
    margin: 0 1% 2.14285714em;
  }
  .zlPluralKy .swiper-container .swiper-wrapper .swiper-slide::before {
    content: '';
    max-width: 31.33%;
    margin: 0 1% 2.14285714em;
    order: 50;
  }
  .zlPluralKy .swiper-container .swiper-wrapper .swiper-slide li {
    font-size: 12px;
    max-width: 31.33%;
    margin: 0 1% 2.14285714em;
  }
  .zlPluralKy .swiper-container .swiper-pagination {
    bottom: 20px;
    width: 100%;
    height: 20px;
  }
  .zlPluralKy .swiper-container .swiper-pagination span {
    width: 60px;
    height: 5px;
    background: #e5e5e5;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  .zlPluralKy .swiper-container .swiper-pagination span.swiper-pagination-bullet-active {
    background: #fe9700;
  }
}
.formBox {
  margin: 0 auto;
  max-width: 980px;
  padding: 1.5em 2em 0em;
  font-size: 16px;
}
@media (max-width: 866px) {
  .formBox {
    text-align: center;
  }
}
.formBox > h3 {
  color: #353535;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 0.8em;
}
.formBox > input[type="text"] {
  width: 20.5%;
  border: solid 1px #e0e2fb;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 1em;
  margin-right: 2%;
}
.formBox > input[type="text"]:hover {
  box-shadow: 0 0 10px 0 rgba(94, 105, 173, 0.2);
  -moz-box-shadow: 0 0 10px 0 rgba(94, 105, 173, 0.2);
  -webkit-box-shadow: 0 0 10px 0 rgba(94, 105, 173, 0.2);
}
@media (max-width: 866px) {
  .formBox > input[type="text"] {
    width: 19.5%;
    margin-right: 1.5%;
  }
}
.formBox > button[type="button"] {
  font-size: 1.125em;
  width: 20.5%;
  height: 3.111em;
  border-radius: 1.6em;
  -moz-border-radius: 1.6em;
  -webkit-border-radius: 1.6em;
  -ms-border-radius: 1.6em;
  -o-border-radius: 1.6em;
  color: #fff;
  border: none;
  background: -webkit-linear-gradient(left, #f0c67e, #d59943);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #f0c67e, #d59943);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #f0c67e, #d59943);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #f0c67e, #d59943);
  /* 标准的语法 */
  cursor: pointer;
}
.formBox > button[type="button"]:hover {
  box-shadow: 0 0 10px 0 rgba(240, 198, 126, 0.5);
  -moz-box-shadow: 0 0 10px 0 rgba(240, 198, 126, 0.5);
  -webkit-box-shadow: 0 0 10px 0 rgba(240, 198, 126, 0.5);
}
@media (max-width: 1200px) {
  .formBox {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .formBox {
    font-size: 12px;
    text-align: center;
  }
  .formBox > input[type="text"] {
    width: 80%;
    margin-right: 0;
    margin-bottom: 1em;
  }
  .formBox > button[type="button"] {
    width: 80%;
  }
}
.moreShConKy {
  background: #f7f7fb;
  padding-bottom: 40px;
  margin: 40px 0 0;
  overflow: hidden;
}
.moreShConKy h2 {
  font-size: 33px;
  color: #353535;
  text-align: center;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 30px 0 15px;
}
@media (max-width: 780px) {
  .moreShConKy h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
.moreShConKy .ztwrap {
  max-width: 1020px;
  margin: 0px auto 0;
}
.moreShConKy .ztwrap .comTabNav {
  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-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  margin: 0px auto 30px;
}
.moreShConKy .ztwrap .comTabNav li {
  font-size: 16px;
  width: 11em;
  height: 3em;
  line-height: 3em;
  text-align: center;
  border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  -webkit-border-radius: 1.5em;
  -ms-border-radius: 1.5em;
  -o-border-radius: 1.5em;
  margin: 0 0.625em;
  color: #888888;
  background-color: #e6ecf5;
  cursor: pointer;
}
.moreShConKy .ztwrap .comTabNav li.on {
  color: #ffffff;
  background-color: #4160ba;
}
.moreShConKy .ztwrap .comTabNav li:hover {
  color: #ffffff;
  background-color: #4160ba;
}
@media (max-width: 768px) {
  .moreShConKy .ztwrap .comTabNav {
    margin: 0px auto 15px;
  }
  .moreShConKy .ztwrap .comTabNav li {
    font-size: 14px;
  }
}
.moreShConKy .ztwrap .itemBox ul.comTabItem {
  display: none;
}
.moreShConKy .ztwrap .itemBox ul.comTabItem.on {
  display: block;
}
.moreShConKy .ztwrap .itemBox ul.comTabItem li {
  width: 22.06%;
  margin: 0 1.47% 20px;
  float: left;
}
.moreShConKy .ztwrap .itemBox ul.comTabItem li > a {
  width: 100%;
  height: 100%;
  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: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  padding: 26px 0;
  background-color: #fdfefe;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 0px 4px 15px 0px rgba(236, 238, 242, 0.7);
}
.moreShConKy .ztwrap .itemBox ul.comTabItem li > a img {
  width: auto;
  max-height: 80px;
}
.moreShConKy .ztwrap .itemBox ul.comTabItem li > a p {
  font-size: 16px;
  margin-top: 10px;
  color: #5e69ad;
}
.moreShConKy .ztwrap .itemBox ul.comTabItem li:hover {
  transform: scale(1.1);
}
.moreShConKy .ztwrap .itemBox ul.comTabItem li:last-child a {
  background-color: none;
  box-shadow: none;
}
.moreShConKy .ztwrap .itemBox ul.comTabItem li:last-child a p {
  color: #888888;
}
@media (max-width: 1000px) {
  .moreShConKy .ztwrap .itemBox ul.comTabItem li {
    width: 30.33%;
    margin: 0 1.5% 20px;
  }
}
@media (max-width: 640px) {
  .moreShConKy .ztwrap .itemBox ul.comTabItem li {
    width: 47%;
  }
  .moreShConKy .ztwrap .itemBox ul.comTabItem li > a img {
    max-height: 60px;
  }
  .moreShConKy .ztwrap .itemBox ul.comTabItem li > a p {
    font-size: 14px;
  }
}
