html {
  /*标准字体大小设置 14 像素「rem 参照对象」*/
  font-size: 14px;
  /*滚动事件发生在 html 元素上；JS 中可以监听 html 的滚动*/
  overflow-y: auto;
  /*让 html 和浏览器窗口高度一致*/
  height: 100%;
  /*少数浏览器默认背景色为浅灰色，所以设置默认背景颜色为纯白*/
  background-color: #fff;
}
html,
body {
  /*body 宽度大 html 度时，某些浏览器会出现内部滚动条；所以设置「html、body」宽度相同且「overflow-x: hidden」*/
  width: 100%;
  /*取消部分浏览器点击有阴影*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*优化移动端滚动事件*/
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
body {
  /*设置基本字体配置*/
  font: 1rem 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', Arial, sans-serif;
  /*让绝对定位元素，根据 body 定位*/
  position: relative;
  /*设置网页基本字体颜色为浅灰色*/
  color: #666;
  /*使字体渲染更顺滑*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/**
   * 移除常用标签的浏览器默认的「margin、padding」
   * pre、code、legend、fieldset、blockquote … 等标签不是很常用，所以就不一一列举，如果项目中使用到，可以自己单独写
   */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dd,
ul,
ol,
th,
td,
button,
figure,
input,
textarea,
form {
  margin: 0;
  padding: 0;
}
/**
   * 不同浏览器的 input、select、textarea 的盒子模型宽度计算方式不同，统一为最常见的 content-box
   */
input,
select,
textarea {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
table {
  /*table 相邻单元格的边框间的距离设置为 0*/
  border-spacing: 0;
  /*默认情况下给 tr 设置 border 没有效果，如果 table 设置了边框为合并模式：「border-collapse: collapse;」就可以了*/
  border-collapse: collapse;
}
/**
   * 移除浏览器部分元素的默认边框
   * acronym、fieldset … 等其他标签不是很常用，就不会一一列举；如果项目中用到，可以自己单独写
   */
img,
input,
button,
textarea {
  border: none;
  -webkit-appearance: none;
}
input {
  /*由于 input 默认不继承父元素的居中样式，所以设置：「text-align: inherit」*/
  text-align: inherit;
}
textarea {
  /*textarea 默认不可以放缩*/
  resize: none;
}
/**
   * 由于以下元素的部分属性没有继承父节点样式，所以声明这些元素的这些属性为父元素的属性
   * 取消这些元素 `outline` 样式
   */
a,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
button,
option,
textarea,
optgroup {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  color: inherit;
  outline: none;
}
/**
   * 取消超链接元素的默认文字装饰
   * 另外 del、ins 标签的中划线、下划线还是挺好的，就不去掉
   */
a {
  text-decoration: none;
}
ol,
ul {
  /*开发中 UI 设计的列表都是和原生的样式差太多，所以直接给取消 ol，ul 默认列表样式*/
  list-style: none;
}
button,
input[type='submit'],
input[type='button'] {
  /*鼠标经过是「小手」形状表示可点击*/
  cursor: pointer;
}
input::-moz-focus-inner {
  /*取消火狐浏览器部分版本 input 聚焦时默认的「padding、border」*/
  padding: 0;
  border: 0;
}
/*取消部分浏览器数字输入控件的操作按钮*/
input[type='number'] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
/*输入控件 placeholder 色设置 #999*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
template {
  /*由于部分浏览 template 会显示出来，所以要隐*/
  display: none;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/*滚动条美化*/
body::-webkit-scrollbar {
  width: 10px !important;
}
body::-webkit-scrollbar-track {
  background-color: #f3f3f3;
}
body::-webkit-scrollbar-track-piece {
  background-color: #f3f3f3;
  -webkit-border-radius: 4px;
}
body::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border: solid 1px #C0C0C0;
  border-radius: 4px;
}
body::-webkit-scrollbar-corner {
  background-color: #ddd;
}
body::-webkit-resizer {
  background-repeat: no-repeat;
  background-position: bottom right;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #F3F3E0;
}
::-webkit-scrollbar {
  width: 15px;
}
body,
html {
  min-width: 1660px;
}
.banner a {
  display: block;
}
.banner a img {
  width: 100%;
  display: block;
}
.content {
  max-width: 1380px;
  margin: 0 auto;
}
.inside_content {
  max-width: 1380px;
}
.clear {
  clear: both;
}
.bread_nav {
  background-color: #fafafa;
}
.bread_nav .content {
  height: 50px;
  line-height: 50px;
}
.bread_nav .content a {
  font-size: 14px;
  color: #585858;
}
.bread_nav .content a:hover {
  color: #070944;
}
.header .content {
  height: 90px;
}
.header .content .logo {
  margin-top: 20px;
  float: left;
}
.header .content .logo a {
  display: block;
}
.header .content .logo a img {
  display: block;
  width: 169px;
  height: 50px;
}
.header .content .nav {
  float: right;
}
.header .content .nav > ul > li {
  float: left;
  height: 90px;
  line-height: 90px;
  width: 116px;
  text-align: center;
  margin-left: 20px;
  position: relative;
}
.header .content .nav > ul > li:hover > a,
.header .content .nav > ul > li.active > a {
  position: relative;
  color: #070944;
}
.header .content .nav > ul > li:hover > a::after,
.header .content .nav > ul > li.active > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #070944;
  border-radius: 2px;
}
.header .content .nav > ul > li:hover .son_nav {
  display: block;
}
.header .content .nav > ul > li .son_nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 257px;
  padding: 24px 20px;
  background-color: #ffffff;
  z-index: 5;
  display: none;
}
.header .content .nav > ul > li .son_nav ul li {
  line-height: 1;
  margin-bottom: 30px;
  text-align: left;
}
.header .content .nav > ul > li .son_nav ul li:last-child {
  margin-bottom: 0;
}
.header .content .nav > ul > li .son_nav ul li a {
  font-size: 16px;
  color: #585858;
  transition: all 0.5s linear;
}
.header .content .nav > ul > li .son_nav ul li a:hover {
  color: #070944;
  position: relative;
  padding-left: 26px;
}
.header .content .nav > ul > li .son_nav ul li a:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: #070944;
  transition: all 0.5s linear;
}
.header .content .nav > ul > li > a {
  display: block;
  font-size: 18px;
  color: #212930;
}
.header .content .search {
  float: right;
  margin-left: 100px;
}
.header .content .search form {
  margin-top: 25px;
}
.header .content .search form:hover .search_txt {
  width: 200px;
  padding-left: 10px;
}
.header .content .search form .search_txt {
  width: 0px;
  height: 40px;
  border-bottom: 1px solid #070944;
  font-size: 14px;
  color: #333;
  transition: all 0.5s linear;
  box-sizing: border-box;
}
.header .content .search form .search_btn {
  width: 40px;
  height: 40px;
  background: url(../images/header_search.png) no-repeat center;
}
.swiper-button-prev,
.swiper-button-next {
  width: 64px;
  height: 64px;
  background: #070944;
  opacity: 1 !important;
  line-height: 64px;
  text-align: center;
  display: none;
}
.swiper-button-prev i,
.swiper-button-next i {
  font-size: 32px;
  color: #fff;
}
.swiper-button-prev {
  left: 1px;
}
.swiper-button-next {
  right: 1px;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  background: rgba(0, 0, 0, 0);
  border: solid 1px #ffffff;
}
.swiper-container:hover .swiper-button-prev,
.slide:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next,
.slide:hover .swiper-button-next {
  display: block;
}
.index_banner .swiper-container .pagination {
  height: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  line-height: 30px;
  padding: 0 30px;
}
.index_banner .swiper-container .pagination .swiper-pagination {
  position: static;
}
.index_banner .swiper-container .pagination .swiper-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: 1;
  margin: 0 15px;
  position: relative;
  transition: all 0.5s linear;
}
.index_banner .swiper-container .pagination .swiper-pagination .swiper-pagination-bullet::after {
  width: 0px;
  height: 2px;
  background-color: #222222;
  content: "";
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
  display: none;
  transition: all 0.5s linear;
}
.index_banner .swiper-container .pagination .swiper-pagination .swiper-pagination-bullet-active {
  color: #222222;
  margin-left: 60px;
}
.index_banner .swiper-container .pagination .swiper-pagination .swiper-pagination-bullet-active::after {
  display: block;
  width: 60px;
}
.index .title {
  padding: 46px 0 0 50px;
  background: url(../images/title_img.png) no-repeat left top;
}
.index .title h5 {
  font-size: 14px;
  line-height: 1;
  color: #070944;
  margin-bottom: 20px;
}
.index .title h6 {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: #222222;
}
.index .item1 {
  background: url(../images/index_item1_bg.png) no-repeat center;
}
.index .item1 .content {
  height: 390px;
}
.index .item1 .content .left {
  float: left;
  padding-top: 100px;
}
.index .item1 .content .left .link {
  margin-top: 30px;
  margin-left: 50px;
}
.index .item1 .content .left .link ul li {
  float: left;
  margin-right: 30px;
}
.index .item1 .content .left .link ul li a {
  padding-left: 10px;
  display: block;
  height: 30px;
  border-left: 1px solid #cccccc;
  line-height: 30px;
  font-size: 18px;
  color: #222222;
}
.index .item1 .content .right {
  width: 672px;
  float: right;
  margin-top: 120px;
  margin-right: 148px;
}
.index .item1 .content .right .word h5 {
  font-size: 18px;
  line-height: 32px;
  color: #222222;
  margin-bottom: 10px;
}
.index .item1 .content .right .word p {
  font-size: 14px;
  line-height: 32px;
  color: #585858;
  margin-bottom: 10px;
}
.index .item2 .content {
  padding: 40px 0 100px;
}
.index .item2 .content .slide {
  position: relative;
}
.index .item2 .content .slide .swiper-container .swiper-slide a {
  display: block;
  position: relative;
}
.index .item2 .content .slide .swiper-container .swiper-slide a:hover .cover {
  opacity: 1;
}
.index .item2 .content .slide .swiper-container .swiper-slide a .pic {
  height: 396px;
  text-align: center;
  line-height: 396px;
}
.index .item2 .content .slide .swiper-container .swiper-slide a .pic img {
  max-width: 100%;
  max-height: 100%;
}
.index .item2 .content .slide .swiper-container .swiper-slide a .cover {
  transition: all 0.5s linear;
  opacity: 0;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(230, 0, 18, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.index .item2 .content .slide .swiper-button-prev {
  left: -32px;
}
.index .item2 .content .slide .swiper-button-next {
  right: -32px;
}
.index .item2 .content .slide .swiper-button-next.swiper-button-disabled,
.index .item2 .content .slide .swiper-button-prev.swiper-button-disabled {
  background-color: #585858;
  border: solid 1px #585858;
}
.index .item3 {
  background-color: #bb000f;
}
.index .item3 .content {
  height: 691px;
  overflow: hidden;
}
.index .item3 .content .title {
  background: url(../images/title_img_c.png) no-repeat left top;
  margin: 40px 0;
}
.index .item3 .content .title h5 {
  color: #fa979f;
}
.index .item3 .content .title h6 {
  color: #fff;
}
.index .item3 .content .list {
  overflow: hidden;
}
.index .item3 .content .list ul {
  margin: 0 -12px;
}
.index .item3 .content .list ul li {
  padding: 0 12px;
}
.index .item3 .content .list ul li a {
  display: block;
  height: 397px;
  background-color: #ffffff;
  position: relative;
  text-align: center;
}
.index .item3 .content .list ul li a:hover .cover {
  opacity: 1;
}
.index .item3 .content .list ul li a .word {
  height: 100%;
  padding-top: 60px;
  position: relative;
}
.index .item3 .content .list ul li a .word .arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  border: solid 1px #cccccc;
  text-align: center;
  line-height: 30px;
}
.index .item3 .content .list ul li a .word h5 {
  font-size: 26px;
  line-height: 1;
  color: #212930;
  margin-bottom: 60px;
}
.index .item3 .content .list ul li a .cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 70px 47px 0;
  opacity: 0;
  transition: all 0.5s linear;
}
.index .item3 .content .list ul li a .cover h5 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  margin: 28px 0;
}
.index .item3 .content .list ul li a .cover p {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
}
.index .item3 .content .list ul li a .cover .arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 138px;
  height: 34px;
  background-color: #070944;
  text-align: center;
  line-height: 34px;
}
.index .item4 {
  background: url(../images/index_item4_bg.jpg) no-repeat center;
}
.index .item4 .content {
  overflow: hidden;
  height: 870px;
}
.index .item4 .content .title {
  margin: 60px 0;
}
.index .item4 .content .center {
  padding-left: 140px;
}
.index .item4 .content .center .left {
  width: 675px;
  float: left;
}
.index .item4 .content .center .left .word {
  margin-top: 10px;
}
.index .item4 .content .center .left .word p {
  font-size: 16px;
  line-height: 32px;
  color: #585858;
}
.index .item4 .content .center .left .more {
  margin-top: 90px;
}
.index .item4 .content .center .left .more a {
  display: block;
  width: 300px;
  height: 50px;
  border: solid 1px #070944;
  text-align: center;
  line-height: 50px;
}
.index .item4 .content .center .right {
  float: right;
}
.index .item4 .content .center .right .list ul {
  width: 817px;
  height: 533px;
  position: relative;
}
.index .item4 .content .center .right .list ul li {
  position: absolute;
}
.index .item4 .content .center .right .list ul li a {
  display: block;
  width: 396px;
  height: 254px;
  background: url(../images/index_item4_li.png) no-repeat center;
  text-align: center;
  padding-top: 25px;
}
.index .item4 .content .center .right .list ul li a img {
  margin-bottom: 25px;
}
.index .item4 .content .center .right .list ul li a h5 {
  font-size: 32px;
  line-height: 1;
  color: #222222;
  margin-bottom: 13px;
}
.index .item4 .content .center .right .list ul li a p {
  font-size: 16px;
  line-height: 30px;
  color: #585858;
}
.index .item4 .content .center .right .list ul .s1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.index .item4 .content .center .right .list ul .s2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.index .item4 .content .center .right .list ul .s3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.index .item4 .content .center .right .list ul .s4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.index .item5 {
  height: 830px;
  background: url(../images/index_item5_bg.jpg) no-repeat left;
  position: relative;
}
.index .item5 .content {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
}
.index .item5 .content .title {
  background: url(../images/title_img_cc.png) no-repeat left top;
  margin: 40px 0 70px;
}
.index .item5 .content .title h5 {
  color: #fa979f;
}
.index .item5 .content .title h6 {
  color: #fff;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word {
  width: 624px;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word h5 {
  font-size: 36px;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word h6 {
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  margin: 20px 0 40px;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word p {
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word a {
  display: block;
  width: 300px;
  height: 50px;
  border: solid 1px #ffffff;
  text-align: center;
  line-height: 50px;
  transition: all 0.5s linear;
  margin-top: 200px;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word a .img_c {
  display: none;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word a:hover {
  background: #fff;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word a:hover .img {
  display: none;
}
.index .item5 .content .slide .swiper-container .swiper-wrapper .swiper-slide .word a:hover .img_c {
  display: inline-block;
}
.index .item5 .big_pic {
  float: right;
  width: 50%;
}
.index .item5 .big_pic .swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  height: 830px;
}
.index .item5 .arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.index .item5 .arrow .swiper-button-prev,
.index .item5 .arrow .swiper-button-next {
  position: static;
  width: 50px;
  height: 50px;
  border: solid 1px #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  background: none;
}
.index .item5 .arrow .swiper-button-prev i,
.index .item5 .arrow .swiper-button-next i {
  color: #fff;
}
.index .item5 .arrow .swiper-button-next.swiper-button-disabled,
.index .item5 .arrow .swiper-button-prev.swiper-button-disabled {
  border: solid 1px #212930;
}
.index .item5 .arrow .swiper-button-next.swiper-button-disabled i,
.index .item5 .arrow .swiper-button-prev.swiper-button-disabled i {
  color: #212930;
}
.index .item6 .content {
  padding-bottom: 100px;
}
.index .item6 .content .top {
  padding: 60px 0;
  overflow: hidden;
}
.index .item6 .content .top .title {
  float: left;
}
.index .item6 .content .top .more {
  float: right;
  margin-top: 100px;
}
.index .item6 .content .top .more a {
  font-size: 14px;
  color: #585858;
}
.index .item6 .content .top .more a:hover {
  color: #070944;
}
.index .item6 .content .slide {
  position: relative;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a:hover .pic .cover {
  opacity: 1;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a:hover .pic .cover .s1 {
  width: calc(100% - 20px);
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a:hover .pic .cover .s2 {
  height: calc(100% - 20px);
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a:hover .pic .cover .s3 {
  width: calc(100% - 20px);
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a:hover .pic .cover .s4 {
  height: calc(100% - 20px);
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a:hover .word .data h5 {
  color: #070944;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic {
  position: relative;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic .cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic .cover i {
  position: absolute;
  display: block;
  transition: all ease-out 500ms;
  background: #fff;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic .cover .s1 {
  top: 10px;
  left: 10px;
  height: 1px;
  width: 0px;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic .cover .s2 {
  top: 10px;
  right: 10px;
  width: 1px;
  height: 0px;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic .cover .s3 {
  bottom: 10px;
  right: 10px;
  height: 1px;
  width: 0px;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic .cover .s4 {
  bottom: 10px;
  left: 10px;
  width: 1px;
  height: 0px;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic img {
  width: 100%;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .word {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
  margin-top: 20px;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .word .data h5 {
  font-size: 40px;
  line-height: 1;
  color: #212930;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .word .data h6 {
  font-size: 14px;
  line-height: 1;
  color: #585858;
}
.index .item6 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .word .txt {
  width: 400px;
  font-size: 20px;
  color: #212930;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 25px;
  max-height: 50px;
}
.index .item6 .content .slide .swiper-button-prev {
  left: -32px;
  top: 157px;
  margin-top: 0;
}
.index .item6 .content .slide .swiper-button-next {
  right: -32px;
  top: 157px;
  margin-top: 0;
}
.index .item6 .content .slide .swiper-button-next.swiper-button-disabled,
.index .item6 .content .slide .swiper-button-prev.swiper-button-disabled {
  background-color: #585858;
  border: solid 1px #585858;
}
.index .item7 {
  background: url(../images/index_item6_bg.jpg) no-repeat center;
}
.index .item7 .content {
  height: 598px;
  overflow: hidden;
}
.index .item7 .content .title {
  margin: 40px 0;
}
.index .item7 .content .slide {
  margin-top: 25px;
}
.index .item7 .content .slide .swiper-container {
  padding-bottom: 80px;
}
.index .item7 .content .slide .swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
}
.index .item7 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic {
  height: 84px;
  text-align: center;
  line-height: 84px;
}
.index .item7 .content .slide .swiper-container .swiper-wrapper .swiper-slide a .pic img {
  max-height: 84px;
}
.index .item7 .content .slide .swiper-container .swiper-pagination {
  bottom: 0;
}
.index .item7 .content .slide .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #9d9d9d;
  opacity: 1;
}
.index .item7 .content .slide .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #070944;
}
.index .item8 {
  height: 649px;
  background-color: #f7f7f7;
}
.index .item8 .content {
  padding: 87px 140px 100px;
}
.index .item8 .content .left {
  width: 264px;
  float: left;
}
.index .item8 .content .left .pic {
  margin-bottom: 20px;
}
.index .item8 .content .left .word {
  padding-bottom: 20px;
}
.index .item8 .content .left .word p {
  font-size: 14px;
  line-height: 28px;
  color: #222222;
  margin-bottom: 20px;
}
.index .item8 .content .left .tel,
.index .item8 .content .left .email {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
}
.index .item8 .content .left .tel img,
.index .item8 .content .left .email img {
  margin-right: 10px;
}
.index .item8 .content .left .tel .num p,
.index .item8 .content .left .email .num p {
  font-size: 18px;
  color: #222222;
}
.index .item8 .content .right {
  width: 959px;
  height: 462px;
  background-color: #ffffff;
  padding: 47px 0 0 58px;
  float: right;
}
.index .item8 .content .right .form form div {
  margin-bottom: 24px;
  width: 808px;
  overflow: hidden;
}
.index .item8 .content .right .form form div input {
  width: 392px;
  height: 42px;
  border: solid 1px #e5d2c9;
  padding-left: 10px;
  font-size: 16px;
  color: #333333;
  display: block;
  float: left;
  box-sizing: border-box;
}
.index .item8 .content .right .form form div input:last-child {
  float: right;
}
.index .item8 .content .right .form form div textarea {
  display: block;
  width: 100%;
  height: 116px;
  border: solid 1px #e5d2c9;
  resize: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #333333;
  box-sizing: border-box;
}
.index .item8 .content .right .form form div .btn_sub {
  height: 42px;
  background: #070944 url(../images/index_item7_3.png) no-repeat left 164px center;
  font-size: 16px;
  color: #ffffff;
  padding-left: 198px;
  border: none;
}
.map img {
  width: 100%;
}
.footer {
  background-color: #212930;
}
.footer .content {
  height: 100px;
  line-height: 100px;
}
.footer .content .foot_nav {
  float: left;
}
.footer .content .foot_nav ul li {
  float: left;
  margin-right: 40px;
}
.footer .content .foot_nav ul li a {
  font-size: 14px;
  color: #ffffff;
}
.footer .content .foot_nav ul li a:hover {
  color: #070944;
}
.footer .content .beian {
  float: right;
}
.footer .content .beian a {
  font-size: 14px;
  color: #ffffff;
}
.footer .content .beian a:hover {
  color: #070944;
}
.partner_page .content {
  padding-bottom: 30px;
}
.partner_page .content .title {
  text-align: center;
  font-size: 34px;
  line-height: 1;
  color: #222222;
  padding: 60px 0;
}
.partner_page .content .items .item {
  margin-bottom: 35px;
}
.partner_page .content .items .item .item_tit {
  font-size: 24px;
  line-height: 1;
  color: #222222;
  padding-left: 15px;
  border-left: 4px solid #070944;
}
.partner_page .content .items .item .list {
  overflow: hidden;
  margin-top: 40px;
}
.partner_page .content .items .item .list ul {
  margin: 0 -14.5px;
}
.partner_page .content .items .item .list ul li {
  padding: 0 14.5px;
  margin-bottom: 25px;
}
.partner_page .content .items .item .list ul li a {
  display: block;
}
.partner_page .content .items .item .list ul li a:hover .pic {
  border: solid 1px #070944;
}
.partner_page .content .items .item .list ul li a .pic {
  background-color: #ffffff;
  border: solid 1px #e5e5e5;
  text-align: center;
}
.partner_page .content .items .item .list ul li a .pic img {
  max-width: 100%;
}
.team_page .item1 .content {
  padding: 60px 0 35px;
}
.team_page .item1 .content h5 {
  font-size: 34px;
  line-height: 1;
  color: #222222;
  margin-bottom: 20px;
}
.team_page .item1 .content p {
  font-size: 18px;
  line-height: 36px;
  color: #585858;
}
.team_page .item2 {
  padding-bottom: 120px;
}
.team_page .item2 .list ul li {
  background: #f8f6f6;
}
.team_page .item2 .list ul li:nth-child(2n) {
  background: #fff;
}
.team_page .item2 .list ul li .content {
  padding: 20px 0 20px 20px;
  overflow: hidden;
}
.team_page .item2 .list ul li .content .pic {
  float: left;
}
.team_page .item2 .list ul li .content .pic img {
  width: 356px;
  height: 356px;
}
.team_page .item2 .list ul li .content .word {
  width: 920px;
  float: right;
  padding-top: 40px;
}
.team_page .item2 .list ul li .content .word h5 {
  font-size: 34px;
  line-height: 1;
  color: #212930;
}
.team_page .item2 .list ul li .content .word h6 {
  font-size: 20px;
  line-height: 1;
  color: #212930;
  margin: 20px 0 30px;
}
.team_page .item2 .list ul li .content .word p {
  font-size: 18px;
  line-height: 36px;
  color: #585858;
}
.about_page {
  padding-bottom: 60px;
}
.about_page .item1 .content {
  padding: 60px 0;
}
.about_page .item1 .content .center {
  overflow: hidden;
}
.about_page .item1 .content .center .pic {
  float: left;
}
.about_page .item1 .content .center .pic img {
  width: 676px;
  height: 500px;
}
.about_page .item1 .content .center .word {
  float: right;
  width: 680px;
  background: url(../images/about_2.png) no-repeat right top;
  padding-top: 40px;
  text-align: initial;
}
.about_page .item1 .content .center .word .tit {
  margin-bottom: 20px;
}
.about_page .item1 .content .center .word .tit h5 {
  font-size: 34px;
  line-height: 1;
  color: #333333;
  margin-bottom: 10px;
}
.about_page .item1 .content .center .word .tit h6 {
  font-size: 16px;
  line-height: 1;
  color: #333333;
}
.about_page .item1 .content .center .word p {
  font-size: 18px;
  line-height: 36px;
  color: #585858;
  margin-bottom: 10px;
}
.about_page .item1 .content .list {
  margin-top: 60px;
}
.about_page .item1 .content .list ul li:last-child a::after {
  display: none;
}
.about_page .item1 .content .list ul li a {
  position: relative;
  display: block;
  text-align: center;
}
.about_page .item1 .content .list ul li a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 2px;
  height: 30px;
  background-color: #bb000f;
}
.about_page .item1 .content .list ul li a .word {
  font-size: 18px;
  color: #212930;
  line-height: 1;
  margin-top: 9px;
}
.about_page .item2 {
  padding: 60px 0 20px;
  background-color: #f8f6f6;
}
.about_page .item2 .content .list {
  overflow: hidden;
}
.about_page .item2 .content .list ul {
  margin: 0 -20px;
}
.about_page .item2 .content .list ul li {
  padding: 0 20px;
  margin-bottom: 40px;
}
.about_page .item2 .content .list ul li a {
  display: block;
}
.about_page .item2 .content .list ul li a:hover .pic img {
  transform: scale(1.1);
}
.about_page .item2 .content .list ul li a .pic {
  height: 433px;
  overflow: hidden;
}
.about_page .item2 .content .list ul li a .pic img {
  max-height: 433px;
  max-width: 100%;
  transition: all 0.5s linear;
}
.cultrue_page {
  padding-bottom: 60px;
}
.cultrue_page .item1 .content {
  padding: 60px 0;
}
.cultrue_page .item1 .content .tit {
  font-size: 34px;
  line-height: 1;
  color: #222222;
}
.cultrue_page .item1 .content .center {
  margin-top: 60px;
  overflow: hidden;
}
.cultrue_page .item1 .content .center .pic {
  float: left;
}
.cultrue_page .item1 .content .center .word {
  width: 955px;
  float: right;
}
.cultrue_page .item1 .content .center .word img {
  display: block;
  margin: 0 auto 40px;
}
.cultrue_page .item1 .content .center .word .text h5 {
  font-size: 20px;
  line-height: 1;
  color: #212930;
  margin-bottom: 15px;
}
.cultrue_page .item1 .content .center .word .text p {
  font-size: 18px;
  color: #585858;
  line-height: 36px;
  margin-bottom: 10px;
}
.cultrue_page .item2 {
  height: 594px;
  background: #f8f6f6 url(../images/culture_3.png) no-repeat center;
}
.news_page .content {
  padding-bottom: 50px;
}
.news_page .content .title {
  text-align: center;
  font-size: 34px;
  line-height: 1;
  color: #222222;
  padding: 60px 0;
}
.news_page .content .list ul li {
  margin-bottom: 40px;
}
.news_page .content .list ul li a {
  display: block;
  height: 364px;
  border: solid 1px #e5e5e5;
  padding: 20px;
  transition: all 0.5s linear;
}
.news_page .content .list ul li a:hover {
  border: solid 1px #070944;
}
.news_page .content .list ul li a:hover .pic img {
  transform: scale(1.1);
}
.news_page .content .list ul li a:hover .word h5 {
  color: #070944;
}
.news_page .content .list ul li a:hover .word .arrow {
  width: 200px;
  height: 46px;
  border: solid 1px #070944;
  background: none;
}
.news_page .content .list ul li a:hover .word .arrow .img {
  display: none;
}
.news_page .content .list ul li a:hover .word .arrow .img_c {
  display: inline-block;
}
.news_page .content .list ul li a .pic {
  float: left;
  overflow: hidden;
}
.news_page .content .list ul li a .pic img {
  width: 429px;
  height: 324px;
  transition: all 0.5s linear;
}
.news_page .content .list ul li a .word {
  width: 832px;
  float: left;
  margin-left: 30px;
  padding-top: 44px;
}
.news_page .content .list ul li a .word .data {
  font-size: 16px;
  line-height: 1;
  color: #585858;
  margin-bottom: 15px;
}
.news_page .content .list ul li a .word h5 {
  font-size: 36px;
  color: #212930;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.3em;
  max-height: 2.6em;
  margin-bottom: 60px;
}
.news_page .content .list ul li a .word .arrow {
  transition: all 0.5s linear;
  width: 46px;
  height: 46px;
  border: solid 1px #070944;
  background-color: #070944;
  text-align: center;
  line-height: 46px;
}
.news_page .content .list ul li a .word .arrow .img_c {
  display: none;
}
.newsdetail_page {
  padding: 60px 0;
  background: #f8f8f8;
}
.newsdetail_page .center {
  overflow: hidden;
}
.newsdetail_page .center .left {
  width: 955px;
  background: #fff;
  float: left;
  padding: 30px;
  overflow: hidden;
}
.newsdetail_page .center .left .tit {
  margin: 20px 0 40px;
}
.newsdetail_page .center .left .tit h5 {
  font-size: 42px;
  color: #333333;
  margin-bottom: 10px;
}
.newsdetail_page .center .left .tit .data {
  font-size: 16px;
  color: #666666;
}
.newsdetail_page .center .left .pic img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.newsdetail_page .center .left .detail {
  overflow: hidden;
  margin-top: 40px;
}
.newsdetail_page .center .left .detail .up_next {
  width: 200px;
  float: left;
}
.newsdetail_page .center .left .detail .up_next .up {
  text-align: center;
  border-bottom: 1px dashed #e2e6e9;
  margin-bottom: 1px;
  padding-bottom: 20px;
}
.newsdetail_page .center .left .detail .up_next .up h5 {
  font-size: 18px;
  line-height: 1;
  color: #555555;
  margin-bottom: 20px;
}
.newsdetail_page .center .left .detail .up_next .up a {
  display: block;
}
.newsdetail_page .center .left .detail .up_next .up a:hover .pic img {
  transform: scale(1.1);
}
.newsdetail_page .center .left .detail .up_next .up a:hover .word {
  color: #070944;
}
.newsdetail_page .center .left .detail .up_next .up a .pic {
  overflow: hidden;
}
.newsdetail_page .center .left .detail .up_next .up a .pic img {
  width: 200px;
  height: 150px;
  transition: all 0.5s linear;
}
.newsdetail_page .center .left .detail .up_next .up a .word {
  font-size: 18px;
  color: #333333;
  text-align: left;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 28px;
  max-height: 56px;
}
.newsdetail_page .center .left .detail .up_next .next {
  text-align: center;
  border-bottom: 1px dashed #e2e6e9;
  margin-bottom: 1px;
  padding-bottom: 20px;
  border-top: 1px dashed #e2e6e9;
  border-bottom: 0 solid #000;
  padding-top: 20px;
}
.newsdetail_page .center .left .detail .up_next .next h5 {
  font-size: 18px;
  line-height: 1;
  color: #555555;
  margin-bottom: 20px;
}
.newsdetail_page .center .left .detail .up_next .next a {
  display: block;
}
.newsdetail_page .center .left .detail .up_next .next a:hover .pic img {
  transform: scale(1.1);
}
.newsdetail_page .center .left .detail .up_next .next a:hover .word {
  color: #070944;
}
.newsdetail_page .center .left .detail .up_next .next a .pic {
  overflow: hidden;
}
.newsdetail_page .center .left .detail .up_next .next a .pic img {
  width: 200px;
  height: 150px;
  transition: all 0.5s linear;
}
.newsdetail_page .center .left .detail .up_next .next a .word {
  font-size: 18px;
  color: #333333;
  text-align: left;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 28px;
  max-height: 56px;
}
.newsdetail_page .center .left .detail .word_center {
  width: 645px;
  float: right;
  text-align: initial;
}
.newsdetail_page .center .left .detail .word_center p {
  font-size: 18px;
  line-height: 36px;
  color: #555555;
}
.newsdetail_page .center .left .detail .word_center img {
  max-width: 100%;
  height: auto;
}
.newsdetail_page .center .right {
  float: right;
  width: 374px;
}
.newsdetail_page .center .right .poster {
  margin-bottom: 60px;
}
.newsdetail_page .center .right .poster a {
  display: block;
  overflow: hidden;
}
.newsdetail_page .center .right .poster a:hover img {
  transform: scale(1.1);
}
.newsdetail_page .center .right .poster a img {
  transition: all 0.5s linear;
  width: 100%;
}
.newsdetail_page .center .right .latest_news {
  padding: 30px;
  background: #fff;
}
.newsdetail_page .center .right .latest_news h5 {
  font-size: 26px;
  line-height: 1;
  color: #333333;
  margin-bottom: 30px;
}
.newsdetail_page .center .right .latest_news .list {
  overflow: hidden;
}
.newsdetail_page .center .right .latest_news .list ul {
  margin: 0 -10px;
}
.newsdetail_page .center .right .latest_news .list ul li {
  padding: 0 10px;
  margin-bottom: 20px;
}
.newsdetail_page .center .right .latest_news .list ul li a {
  display: block;
}
.newsdetail_page .center .right .latest_news .list ul li a:hover .pic img {
  transform: scale(1.1);
}
.newsdetail_page .center .right .latest_news .list ul li a:hover .word {
  color: #070944;
}
.newsdetail_page .center .right .latest_news .list ul li a .pic {
  overflow: hidden;
}
.newsdetail_page .center .right .latest_news .list ul li a .pic img {
  width: 147px;
  height: 111px;
  transition: all 0.5s linear;
}
.newsdetail_page .center .right .latest_news .list ul li a .word {
  font-size: 18px;
  color: #333333;
  text-align: left;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 28px;
  max-height: 56px;
}
.contact_page .item1 {
  overflow: hidden;
}
.contact_page .item1 .left {
  width: 50%;
  float: left;
  height: 611px;
  background: url(../images/contact_1.png) no-repeat center;
}
.contact_page .item1 .right {
  width: 50%;
  float: right;
  padding: 69px 0 0 40px;
}
.contact_page .item1 .right .tit {
  margin-bottom: 108px;
}
.contact_page .item1 .right .tit h5 {
  font-size: 38px;
  line-height: 1;
  color: #212930;
  margin-bottom: 32px;
  font-weight: bold;
}
.contact_page .item1 .right h4 {
  font-size: 24px;
  color: #212930;
  font-weight: bold;
  margin-bottom: 38px;
}
.contact_page .item1 .right .info {
  margin-bottom: 20px;
}
.contact_page .item1 .right .info .pic {
  display: inline-block;
  width: 21px;
  text-align: center;
  margin-right: 20px;
}
.contact_page .item1 .right .info .pic img {
  position: relative;
  top: -3px;
}
.contact_page .item1 .right .info p {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: #212930;
}
.contact_page .item2 {
  background-color: #f7f7f7;
}
.contact_page .item2 .content {
  height: 434px;
  padding-top: 60px;
}
.contact_page .item2 .content .left {
  float: left;
}
.contact_page .item2 .content .left .tit {
  margin-bottom: 40px;
}
.contact_page .item2 .content .left .tit h5 {
  font-size: 24px;
  line-height: 1;
  color: #212930;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact_page .item2 .content .left .qrcode {
  float: left;
  text-align: center;
}
.contact_page .item2 .content .left .qrcode .pic img {
  width: 116px;
  height: 116px;
}
.contact_page .item2 .content .left .qrcode p {
  font-size: 14px;
  color: #585858;
}
.contact_page .item2 .content .right {
  float: right;
}
.contact_page .item2 .content .right .form form div {
  width: 689px;
  margin-bottom: 24px;
  overflow: hidden;
}
.contact_page .item2 .content .right .form form div input {
  width: 333px;
  height: 42px;
  border: solid 1px #585858;
  padding-left: 10px;
  font-size: 16px;
  color: #585858;
  display: block;
  float: left;
  box-sizing: border-box;
  background: none;
}
.contact_page .item2 .content .right .form form div input:last-child {
  float: right;
}
.contact_page .item2 .content .right .form form div textarea {
  display: block;
  background: none;
  width: 100%;
  height: 116px;
  border: solid 1px #585858;
  resize: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #585858;
  box-sizing: border-box;
}
.contact_page .item2 .content .right .form form div .btn_sub {
  height: 42px;
  background: #070944 url(../images/index_item7_3.png) no-repeat left 164px center;
  font-size: 16px;
  color: #ffffff;
  padding-left: 198px;
  border: none;
}
.header .content {
  position: relative;
}
.service_content {
  max-width: 1520px;
}
.service_nav {
  display: none;
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  right: 0;
  width: 1379px;
  border-top: 2px solid #070944;
}
.service_nav > ul > li {
  height: 224px;
  border-left: 1px solid #e6e6e6;
}
.service_nav > ul > li:first-child {
  border-left: 0 solid #000;
}
.service_nav > ul > li .item {
  padding: 24px 0 0 30px;
}
.service_nav > ul > li .item h5 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #212930;
}
.service_nav > ul > li .item ul li a {
  font-size: 14px;
  line-height: 32px;
  color: #585858;
  transition: all 0.5s linear;
}
.service_nav > ul > li .item ul li a:hover {
  color: #070944;
  position: relative;
  padding-left: 26px;
}
.service_nav > ul > li .item ul li a:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: #070944;
  transition: all 0.5s linear;
}
.service_page .content {
  padding: 60px 0;
}
.service_page .content .left_nav {
  width: 116px;
  float: left;
}
.service_page .content .left_nav .left_tit {
  width: 116px;
  height: 100px;
  background: url(../images/service_1.jpg) no-repeat center;
  font-size: 28px;
  color: #ffffff;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service_page .content .left_nav ul li.active a {
  position: relative;
}
.service_page .content .left_nav ul li.active a::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100px;
  background-color: #070944;
}
.service_page .content .left_nav ul li a {
  margin-top: 1px;
  display: block;
  width: 116px;
  min-height: 100px;
  background-color: #f8f6f6;
  font-size: 18px;
  color: #212930;
  padding: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service_page .content .mid_center {
  float: left;
  width: 900px;
  margin-left: 25px;
}
.service_page .content .mid_center .list .item {
  border: solid 1px #e5e3e3;
  padding: 0 30px 40px;
}
.service_page .content .mid_center .list .item .item_tit {
  font-size: 30px;
  line-height: 1;
  color: #212930;
  font-weight: bold;
  padding: 35px 0 40px;
  position: relative;
}
.service_page .content .mid_center .list .item .item_tit::after {
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  left: -30px;
  content: "";
  width: 4px;
  height: 40px;
  background-color: #070944;
}
.service_page .content .mid_center .list .item ul .more {
  display: flex;
  justify-content: space-between;
}
.service_page .content .mid_center .list .item ul .mid {
  width: 405px;
}
.service_page .content .mid_center .list .item ul .small {
  width: 187px;
}
.service_page .content .mid_center .list .item ul .last {
  margin-left: 0;
}
.service_page .content .mid_center .list .item ul .big {
  margin-top: 30px;
}
.service_page .content .mid_center .list .item ul li {
  background-color: #fafafa;
}
.service_page .content .mid_center .list .item ul li h5 {
  height: 48px;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  line-height: 48px;
  font-size: 18px;
  color: #212930;
}
.service_page .content .mid_center .list .item ul li .word {
  padding: 20px;
}
.service_page .content .mid_center .list .item ul li .word p {
  font-size: 18px;
  color: #777777;
  margin-bottom: 10px;
  line-height: 30px;
}
.service_page .content .right_tel {
  width: 399px;
  float: right;
}
.service_page .content .right_tel .item1 {
  margin-bottom: 40px;
  padding: 0  20px;
  background: url(../images/service_2.jpg) no-repeat center;
}
.service_page .content .right_tel .item1 h5 {
  height: 56px;
  line-height: 56px;
  font-size: 24px;
  color: #212930;
  border-bottom: 1px solid #d3d8e6;
}
.service_page .content .right_tel .item1 h6 {
  height: 63px;
  line-height: 63px;
  font-size: 32px;
  color: #bb000f;
}
.service_page .content .right_tel .item1 h6 span {
  font-size: 14px;
  color: #212930;
}
.service_page .content .right_tel .item2 a {
  display: block;
}
.service_page .content .right_tel .item2 a img {
  display: block;
  width: 100%;
}
