/* line 1, ../sass/chocolate/_reset.scss */
html, body, div, col-md-, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea, span, i {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: 1.6;
}

/* line 22, ../sass/chocolate/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 26, ../sass/chocolate/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 29, ../sass/chocolate/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 32, ../sass/chocolate/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 37, ../sass/chocolate/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 41, ../sass/chocolate/_reset.scss */
ul, li {
  list-style: none;
}

/* line 44, ../sass/chocolate/_reset.scss */
input:hover, input:focus, button:hover, button:focus, textarea:hover, textarea:focus {
  outline: none;
}

/* line 48, ../sass/chocolate/_reset.scss */
a {
  color: inherit;
  text-decoration: none;
}
/* line 51, ../sass/chocolate/_reset.scss */
a:hover {
  color: #3584D8;
  text-decoration: none;
}

/* line 56, ../sass/chocolate/_reset.scss */
img {
  max-width: 100%;
  vertical-align: top;
}

/* line 62, ../sass/chocolate/_reset.scss */
html {
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
}

/* line 68, ../sass/chocolate/_reset.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 5, ../sass/chocolate/_button.scss */
.btn {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: bottom;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  height: 36px;
  line-height: 36px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid transparent;
  border-radius: 3px;
  background-color: #F9B648;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 23, ../sass/chocolate/_button.scss */
.btn.btns {
  border-radius: 3px;
}
/* line 27, ../sass/chocolate/_button.scss */
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  /* outline: thin dotted; */
  outline: none;
  /* outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; */
  outline: none;
}
/* line 39, ../sass/chocolate/_button.scss */
.btn.focus {
  text-decoration: none;
}
/* line 43, ../sass/chocolate/_button.scss */
.btn:active, .btn.active {
  background-image: none;
  outline: 0;
}
/* line 50, ../sass/chocolate/_button.scss */
.btn.disabled, .btn:disabled, fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: .65;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 57, ../sass/chocolate/_button.scss */
.btn.round {
  border-radius: 1000px;
}
/* line 59, ../sass/chocolate/_button.scss */
.btn.round i {
  padding-right: .7rem;
}

/* line 64, ../sass/chocolate/_button.scss */
a.btn.disaabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 6, ../sass/chocolate/_modal.scss */
.fade {
  opacity: 0;
  transition: opacity .15s linear;
}
/* line 10, ../sass/chocolate/_modal.scss */
.fade.in {
  opacity: 1;
}

/* line 15, ../sass/chocolate/_modal.scss */
.collapse {
  display: none;
}
/* line 18, ../sass/chocolate/_modal.scss */
.collapse.in {
  display: block;
}

/* line 24, ../sass/chocolate/_modal.scss */
.modal-open {
  overflow: hidden;
}

/* line 29, ../sass/chocolate/_modal.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: none;
  overflow: hidden;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
/* line 45, ../sass/chocolate/_modal.scss */
.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform .3s ease-out;
}
/* line 48, ../sass/chocolate/_modal.scss */
.modal.fade .modal-dialog.middle {
  transform: translate(-50%, -100%);
}
/* line 52, ../sass/chocolate/_modal.scss */
.modal.in .modal-dialog {
  transform: translate(0, 0);
}
/* line 54, ../sass/chocolate/_modal.scss */
.modal.in .modal-dialog.middle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 61, ../sass/chocolate/_modal.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 !important;
}

/* line 68, ../sass/chocolate/_modal.scss */
.modal-dialog {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 2%;
}

/* line 76, ../sass/chocolate/_modal.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  padding: 30px 40px;
  border-radius: 6px;
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
  outline: 0;
}

/* line 88, ../sass/chocolate/_modal.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  background-color: #000;
}
/* line 98, ../sass/chocolate/_modal.scss */
.modal-backdrop.fade {
  opacity: 0;
}
/* line 99, ../sass/chocolate/_modal.scss */
.modal-backdrop.in {
  opacity: 0.45;
}

/* line 2, ../sass/layout/_page_base.scss */
html, body {
  height: 100%;
}

/* line 5, ../sass/layout/_page_base.scss */
body {
  color: #232323;
  padding-top: 132px;
  font-size: 14px;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100% !important;
  -ms-text-size-adjust: 100% !important;
  -webkit-text-size-adjust: 100% !important;
  /*min-width: 1180px;*/
  font-family: Helvetica,Arial,"PingFang SC","Hiragino Sans GB","Source Han Sans CN",Roboto,"Microsoft Yahei",sans-serif;
}

/* line 18, ../sass/layout/_page_base.scss */
input {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* line 22, ../sass/layout/_page_base.scss */
.container {
  max-width: 1180px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* line 32, ../sass/layout/_page_base.scss */
.header {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
  color: #fff;
}

/* line 40, ../sass/layout/_page_base.scss */
.header-top {
  height: 76px;
  position: relative;
  padding-right: 0px;
}
/* line 44, ../sass/layout/_page_base.scss */
.header-top .logo {
  display: inline-block;
  margin-top: 9px;
  float: left;
}
/* line 48, ../sass/layout/_page_base.scss */
.header-top .logo img {
  width: 120px;
}
/* line 52, ../sass/layout/_page_base.scss */
.header-top .logo-des {
  display: inline-block;
  margin-top: 30px;
  float: left;
  margin-left: 15px;
  position: relative;
  overflow: hidden;
}
/* line 59, ../sass/layout/_page_base.scss */
.header-top .logo-des b {
  position: absolute;
  left: -58px;
}
/* line 65, ../sass/layout/_page_base.scss */
.header-top .top-nav {
  font-size: 13px;
  float: right;
  margin-top: 23px;
}
/* line 69, ../sass/layout/_page_base.scss */
.header-top .top-nav li {
  float: left;
}
/* line 71, ../sass/layout/_page_base.scss */
.header-top .top-nav li a {
  display: block;
  padding: 5px 15px;
  opacity: 0.7;
}
/* line 75, ../sass/layout/_page_base.scss */
.header-top .top-nav li a:hover {
  color: #fff;
  opacity: 1;
}
/* line 82, ../sass/layout/_page_base.scss */
.header-top .btn-post {
  position: absolute;
  right: 0px;
  top: 20px;
  font-weight: bold;
}
/* line 87, ../sass/layout/_page_base.scss */
.header-top .btn-post:hover {
  color: #fff;
}

/* line 92, ../sass/layout/_page_base.scss */
.global-nav {
  background-color: #2672c4;
  height: 56px;
  font-weight: bold;
}
/* line 97, ../sass/layout/_page_base.scss */
.global-nav .container {
  overflow: hidden;
}
/* line 100, ../sass/layout/_page_base.scss */
.global-nav .nav-title {
  margin-top: 15px;
  line-height: normal;
  float: left;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 0;
  padding-right: 23px;
}
/* line 107, ../sass/layout/_page_base.scss */
.global-nav .nav-title img {
  width: 16px;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  top: 3px;
}
/* line 115, ../sass/layout/_page_base.scss */
.global-nav .nav-menu {
  float: left;
}
/* line 117, ../sass/layout/_page_base.scss */
.global-nav .nav-menu > li {
  float: left;
}
/* line 120, ../sass/layout/_page_base.scss */
.global-nav .nav-menu > li.active a:before {
  display: block;
}
/* line 125, ../sass/layout/_page_base.scss */
.global-nav .nav-menu > li:last-child a {
  padding-right: 0px;
}
/* line 129, ../sass/layout/_page_base.scss */
.global-nav .nav-menu > li a {
  height: 56px;
  line-height: 56px;
  display: block;
  padding: 0 23px;
  position: relative;
}
/* line 135, ../sass/layout/_page_base.scss */
.global-nav .nav-menu > li a:before {
  display: none;
  position: absolute;
  content: '';
  width: 38px;
  height: 2px;
  bottom: 7px;
  left: 35px;
  background-color: #F9B648;
}
/* line 145, ../sass/layout/_page_base.scss */
.global-nav .nav-menu > li a:hover {
  color: #fff;
}
/* line 147, ../sass/layout/_page_base.scss */
.global-nav .nav-menu > li a:hover:before {
  display: block;
}

/* line 155, ../sass/layout/_page_base.scss */
.sub-menu {
  background-color: #2672c4;
  overflow: hidden;
  height: 0px;
  min-width: 1180px;
  -moz-transition: height 200ms ease-out;
  -o-transition: height 200ms ease-out;
  -webkit-transition: height 200ms ease-out;
  transition: height 200ms ease-out;
  position: absolute;
  width: 100%;
  z-index: 5;
}
/* line 165, ../sass/layout/_page_base.scss */
.sub-menu.active {
  min-height: 278px;
  height: auto;
  padding-bottom: 30px;
}
/* line 170, ../sass/layout/_page_base.scss */
.sub-menu .container {
  padding-left: 123px;
}
/* line 173, ../sass/layout/_page_base.scss */
.sub-menu .sub-item {
  border-top: 2px solid #3E83D7;
  padding-top: 25px;
  color: #fff;
  overflow: hidden;
  display: none;
}
/* line 179, ../sass/layout/_page_base.scss */
.sub-menu .sub-item.active {
  display: block;
}
/* line 182, ../sass/layout/_page_base.scss */
.sub-menu .sub-item ul {
  width: 250px;
  float: left;
  margin-right: 0px;
}
/* line 186, ../sass/layout/_page_base.scss */
.sub-menu .sub-item ul:last-child {
  margin-right: 0px;
}
/* line 191, ../sass/layout/_page_base.scss */
.sub-menu .sub-item li a {
  display: block;
  padding: 10px 15px;
  border-radius: 3px;
}
/* line 195, ../sass/layout/_page_base.scss */
.sub-menu .sub-item li a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* line 203, ../sass/layout/_page_base.scss */
.header-bg {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 410px;
  background: url(../images/header-bg.jpg);
  background-size: cover;
  background-position: center;
  /*min-width: 1180px;*/
}

/* line 221, ../sass/layout/_page_base.scss */
.page-nav {
  text-align: center;
  padding: 50px 0;
}
/* line 224, ../sass/layout/_page_base.scss */
.page-nav ul {
  display: inline-block;
}
/* line 226, ../sass/layout/_page_base.scss */
.page-nav ul li {
  float: left;
}
/* line 228, ../sass/layout/_page_base.scss */
.page-nav ul li a {
  display: inline-block;
  padding: 5px 18px;
  position: relative;
}
/* line 232, ../sass/layout/_page_base.scss */
.page-nav ul li a.previous:before, .page-nav ul li a.next:before {
  display: none !important;
}
/* line 235, ../sass/layout/_page_base.scss */
.page-nav ul li a:before {
  content: '';
  position: absolute;
  bottom: 0px;
  width: 16px;
  height: 2px;
  background-color: #3584D8;
  left: 50%;
  margin-left: -8px;
  display: none;
}
/* line 248, ../sass/layout/_page_base.scss */
.page-nav ul li.active a {
  color: #3584D8;
  font-weight: bold;
}
/* line 251, ../sass/layout/_page_base.scss */
.page-nav ul li.active a:before {
  display: block;
}

/* line 263, ../sass/layout/_page_base.scss */
.modal-header {
  position: relative;
}
/* line 265, ../sass/layout/_page_base.scss */
.modal-header .close {
  position: absolute;
  right: -30px;
  top: -20px;
  font-size: 24px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  opacity: 0.2;
  transition: all 0.2s;
}
/* line 278, ../sass/layout/_page_base.scss */
.modal-header .close:hover {
  opacity: 1;
}
/* line 282, ../sass/layout/_page_base.scss */
.modal-header h4 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* line 288, ../sass/layout/_page_base.scss */
.send-tips {
  background-color: #FEF5E8;
  padding: 15px 20px;
  font-size: 13px;
}
/* line 293, ../sass/layout/_page_base.scss */
.send-tips b {
  font-weight: bold;
  display: inline-block;
  opacity: 0.5;
}
/* line 298, ../sass/layout/_page_base.scss */
.send-tips p {
  margin-top: 5px;
  opacity: 0.5;
}

/* line 303, ../sass/layout/_page_base.scss */
.send-form {
  padding: 20px 0;
}

/* line 306, ../sass/layout/_page_base.scss */
.form-li {
  padding: 10px 0;
}
/* line 308, ../sass/layout/_page_base.scss */
.form-li input {
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 10px 15px;
  width: 300px;
}
/* line 314, ../sass/layout/_page_base.scss */
.form-li .upload {
  display: inline-block;
  width: 240px;
  height: 80px;
  line-height: 80px;
  background-color: rgba(0, 0, 0, 0.04);
  text-align: center;
  color: #3584D8;
  border-radius: 4px;
  border: 1px dashed #e2e2e2;
  cursor: pointer;
}
/* line 325, ../sass/layout/_page_base.scss */
.form-li .upload img {
  position: relative;
  width: 28px;
  top: 29px;
  margin-right: 8px;
}

/* line 335, ../sass/layout/_page_base.scss */
.modal-footer .btn-save {
  width: 100%;
  background-color: #3584D8;
  color: #fff;
  font-weight: bold;
  height: 50px;
  border-radius: 4px;
}

/* line 348, ../sass/layout/_page_base.scss */
.chat-side {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 33;
}
/* line 353, ../sass/layout/_page_base.scss */
.chat-side a:hover {
  color: inherit;
}

/* line 357, ../sass/layout/_page_base.scss */
.chat-bar {
  background-color: #FAF3E8;
  border-radius: 5px;
  width: 146px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(53, 132, 216, 0.55);
  transition: background-image 0.2s ease;
  background: linear-gradient(223deg, #9ce8dd, #a993da, #f0cb54, #6d93a3);
  background-size: 500% 500%;
  animation: bg-generator 8s ease infinite;
}
/* line 370, ../sass/layout/_page_base.scss */
.chat-bar .btn {
  border-radius: 5px;
  display: block;
}

/* line 376, ../sass/layout/_page_base.scss */
.chat-editors {
  display: inline-block;
  margin-top: 15px;
  padding-left: 10px;
}
/* line 380, ../sass/layout/_page_base.scss */
.chat-editors img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  margin-left: -10px;
  float: left;
}

/* line 389, ../sass/layout/_page_base.scss */
.chat-des {
  font-size: 13px;
  margin-top: 2px;
  padding-bottom: 10px;
}

@keyframes bg-generator {
  0% {
    background-position: 0% 84%;
  }
  50% {
    background-position: 100% 17%;
  }
  100% {
    background-position: 0% 84%;
  }
}
/* line 1, ../sass/layout/_page_index.scss */
.main-wrap {
  position: relative;
  z-index: 3;
}
.main-wrap > .container {
  position: relative;
}
/* line 4, ../sass/layout/_page_index.scss */
.main-wrap.single-main {
  background-color: #fff;
}

/* line 8, ../sass/layout/_page_index.scss */
.search-wrap {
  padding: 60px 0;
  max-width: 810px;
  margin: 0 auto;
}

/* line 13, ../sass/layout/_page_index.scss */
.search-input {
  position: relative;
}
/* line 15, ../sass/layout/_page_index.scss */
.search-input img {
  position: absolute;
  left: 23px;
  top: 20px;
  width: 16px;
  opacity: 0.5;
}
/* line 22, ../sass/layout/_page_index.scss */
.search-input input {
  display: block;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  height: 56px;
  padding: 10px 10px 10px 55px;
}

/* line 33, ../sass/layout/_page_index.scss */
.search-des {
  margin-top: 20px;
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
}
/* line 38, ../sass/layout/_page_index.scss */
.search-des label {
  display: inline-block;
  margin-right: 30px;
}
/* line 42, ../sass/layout/_page_index.scss */
.search-des img {
  width: 20px;
  margin-right: 8px;
  opacity: 0.4;
  position: relative;
  top: 2px;
}

/* line 51, ../sass/layout/_page_index.scss */
.features-wrap {
  border: 1px solid #ececec;
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden;
  padding: 27px 0;
  position: relative;
  z-index: 2;
}
/* line 59, ../sass/layout/_page_index.scss */
.features-wrap .item {
  padding: 0px 40px;
  width: 33.33%;
  float: left;
  border-right: 1px dashed #ececec;
}
/* line 64, ../sass/layout/_page_index.scss */
.features-wrap .item:last-child {
  border-right: 0px;
}
/* line 67, ../sass/layout/_page_index.scss */
.features-wrap .item .f-title {
  font-size: 20px;
  font-weight: bold;
  color: #3584D8;
  margin-bottom: 15px;
}
/* line 73, ../sass/layout/_page_index.scss */
.features-wrap .item .f-des {
  margin-bottom: 30px;
}
/* line 76, ../sass/layout/_page_index.scss */
.features-wrap .item img {
  width: 80px;
}

/* line 82, ../sass/layout/_page_index.scss */
.site-des {
  position: absolute;
  z-index: 1;
  margin-bottom: 0px;
  width: 500px;
  margin-top: -9000px;
}

/* line 89, ../sass/layout/_page_index.scss */
.index-news .section-title, .recommend-header .section-title, .partner-wrap .section-title {
  margin-left: -127px;
}

/* line 94, ../sass/layout/_page_index.scss */
section {
  overflow: hidden;
}
section.section-recommend {
  margin-top: 70px;
}
section.section-hezuo {
  margin-top: 0px;
}

/* line 98, ../sass/layout/_page_index.scss */
.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 32px;
}

/* line 104, ../sass/layout/_page_index.scss */
.section-recommend .section-title {
  float: left;
}

/* line 108, ../sass/layout/_page_index.scss */
.recommend-header {
  overflow: hidden;
}

/* line 111, ../sass/layout/_page_index.scss */
.recommend-nav {
  float: right;
  margin-top: 18px;
  margin-right: -10px;
}
/* line 115, ../sass/layout/_page_index.scss */
.recommend-nav li {
  float: left;
}
/* line 117, ../sass/layout/_page_index.scss */
.recommend-nav li a {
  display: block;
  padding: 0 12px;
  color: #9d9d9d;
}

/* line 124, ../sass/layout/_page_index.scss */
.recommend-magazine {
  overflow: hidden;
  margin-left: -30px;
  margin-right: -30px;
  max-height: 756px;
}
/* line 128, ../sass/layout/_page_index.scss */
.recommend-magazine .item {
  float: left;
  width: 20%;
  padding: 0 30px;
  margin-bottom: 60px;
}
/* line 133, ../sass/layout/_page_index.scss */
.recommend-magazine .item .pic {
  height: 243px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
}
/* line 137, ../sass/layout/_page_index.scss */
.recommend-magazine .item .pic img {
  width: 100%;
}
/* line 142, ../sass/layout/_page_index.scss */
.recommend-magazine .item h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 25px;
  overflow: hidden
}
/* line 148, ../sass/layout/_page_index.scss */
.recommend-magazine .item p {
  color: #9d9d9d;
  font-size: 13px;
  height: 20px;
  overflow: hidden;
}

/* line 155, ../sass/layout/_page_index.scss */
.section-nq {
  margin-top: 30px;
}

/* line 158, ../sass/layout/_page_index.scss */
.section-list {
  margin-left: -60px;
  margin-right: -60px;
}
/* line 161, ../sass/layout/_page_index.scss */
.section-list .section-item {
  width: 50%;
  float: left;
  padding: 0 60px;
}
/* line 165, ../sass/layout/_page_index.scss */
.section-list .section-item:first-child {
  border-right: 1px dashed #ececec;
}
/* line 169, ../sass/layout/_page_index.scss */
.section-list .read-more {
  margin-top: 30px;
  color: #9d9d9d;
}

/* line 177, ../sass/layout/_page_index.scss */
.index-news .news-pic .pic {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}
/* line 184, ../sass/layout/_page_index.scss */
.index-news .news-pic p {
  margin-top: 10px;
  color: #9d9d9d;
}
/* line 189, ../sass/layout/_page_index.scss */
.index-news ul li {
  padding: 20px 0;
  border-bottom: 1px dashed #ececec;
}
/* line 192, ../sass/layout/_page_index.scss */
.index-news ul li b {
  font-size: 16px;
  display: block;
}

/* line 200, ../sass/layout/_page_index.scss */
.index-quetion ul li {
  cursor: pointer;
  padding: 20px 0;
  border-bottom: 1px dashed #ececec;
}
/* line 205, ../sass/layout/_page_index.scss */
.index-quetion ul li.active p {
  display: block;
}
/* line 208, ../sass/layout/_page_index.scss */
.index-quetion ul li.active b img {
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 212, ../sass/layout/_page_index.scss */
.index-quetion ul li b {
  font-size: 16px;
  display: block;
  padding-left: 18px;
  position: relative;
}
/* line 218, ../sass/layout/_page_index.scss */
.index-quetion ul li b img {
  width: 8px;
  position: absolute;
  left: 0px;
  top: 9px;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
/* line 226, ../sass/layout/_page_index.scss */
.index-quetion ul li p {
  display: none;
  margin-top: 6px;
  color: #9d9d9d;
  cursor: text;
  padding-left: 18px;
}

/* line 238, ../sass/layout/_page_index.scss */
.partner-wrap {
  margin-top: 90px;
  background: url(../images/bg-partner.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
}
/* line 246, ../sass/layout/_page_index.scss */
.partner-wrap .partner-list {
  margin-left: -10px;
  margin-right: -10px;
}
/* line 249, ../sass/layout/_page_index.scss */
.partner-wrap .partner-list h2 {
  float: left;
  width: 20%;
  margin-bottom: 30px;
}
/* line 254, ../sass/layout/_page_index.scss */
.partner-wrap .partner-list a {
  padding: 10px 15px;
  border-radius: 3px;
}
/* line 257, ../sass/layout/_page_index.scss */
.partner-wrap .partner-list a:hover {
  color: inherit;
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 265, ../sass/layout/_page_index.scss */
.footer-wrap {
  /*padding-top: 80px;*/
}

/* line 269, ../sass/layout/_page_index.scss */
.footer {
  position: relative;
  padding-left: 380px;
  min-height: 300px;
  border-top: 1px solid #ececec;
  padding-top: 60px;
}
/* line 273, ../sass/layout/_page_index.scss */
.footer .rows {
  overflow: hidden;
}
/* line 275, ../sass/layout/_page_index.scss */
.footer .rows dl {
  float: left;
  width: 33.33%;
}
/* line 278, ../sass/layout/_page_index.scss */
.footer .rows dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
/* line 283, ../sass/layout/_page_index.scss */
.footer .rows dl dd {
  padding: 6px 0;
}
/* line 288, ../sass/layout/_page_index.scss */
.footer .rows .wechat img {
  width: 110px;
  margin-left: -7px;
  margin-top: -7px;
}
/* line 293, ../sass/layout/_page_index.scss */
.footer .rows .wechat span {
  display: block;
  padding-top: 4px;
  margin-bottom: 12px;
}
/* line 300, ../sass/layout/_page_index.scss */
.footer .rows .mail a {
  display: block;
  padding: 2px 0;
}

/* line 307, ../sass/layout/_page_index.scss */
.footer-partner {
  position: absolute;
  left: 0px;
  width: 280px;
}
/* line 311, ../sass/layout/_page_index.scss */
.footer-partner img {
  width: 100px;
  margin-right: 35px;
  margin-bottom: 35px;
}

/* line 318, ../sass/layout/_page_index.scss */
.copy-right {
  padding: 25px 0;
  overflow: hidden;
  border-top: 1px solid #ececec;
}
/* line 322, ../sass/layout/_page_index.scss */
.copy-right .footer-company {
  float: left;
}
/* line 325, ../sass/layout/_page_index.scss */
.copy-right .footer-des {
  float: right;
}
/* line 327, ../sass/layout/_page_index.scss */
.copy-right .footer-des span {
  margin-left: 20px;
}
/* line 330, ../sass/layout/_page_index.scss */
.copy-right .footer-des img {
  width: 51px;
  margin-right: 5px;
  margin-left: 5px;
  position: relative;
  top: 4px;
}

/* line 2, ../sass/layout/_page_post.scss */
.filter-header {
  color: #fff;
}
/* line 4, ../sass/layout/_page_post.scss */
.filter-header .title {
  font-size: 36px;
  font-weight: bold;
  margin-top: 37px;
  margin-bottom: 20px;
}
/* line 10, ../sass/layout/_page_post.scss */
.filter-header dl {
  overflow: hidden;
  margin-bottom: 12px;
  font-size: 13px;
}
/* line 15, ../sass/layout/_page_post.scss */
.filter-header dt {
  float: left;
  width: 75px;
  padding: 2px 0;
  opacity: 0.6;
}
/* line 21, ../sass/layout/_page_post.scss */
.filter-header dd {
  float: left;
  margin-right: 10px;
}
/* line 25, ../sass/layout/_page_post.scss */
.filter-header dd.active a {
  background-color: rgba(255, 255, 255, 0.2);
}
/* line 29, ../sass/layout/_page_post.scss */
.filter-header dd a {
  padding: 2px 8px;
  display: inline-block;
  border-radius: 2px;
}
/* line 33, ../sass/layout/_page_post.scss */
.filter-header dd a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* line 41, ../sass/layout/_page_post.scss */
.filter-box {
  background-color: #fff;
  border: 1px solid #ececec;
  margin-top: 25px;
  padding: 20px 50px 0 50px;
  border-radius: 6px;
  margin-bottom: 100px;
  min-height: 200px;
}

/* line 50, ../sass/layout/_page_post.scss */
.post-item {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px dashed #ececec;
  min-height: 238px;
  overflow: hidden;
}
/* line 56, ../sass/layout/_page_post.scss */
.post-item:last-child {
  border-bottom: none;
}
/* line 59, ../sass/layout/_page_post.scss */
.post-item .post-image {
  float: left;
  width: 168px;
  height: 238px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  margin-right: 50px;
}
/* line 67, ../sass/layout/_page_post.scss */
.post-item .post-info {
  float: left;
  padding-top: 30px;
  width: 520px;
}
/* line 72, ../sass/layout/_page_post.scss */
.post-item .post-info .info-title h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 2px;
}
/* line 77, ../sass/layout/_page_post.scss */
.post-item .post-info .info-title .des {
  font-size: 14px;
  color: #9d9d9d;
  margin-bottom: 20px;
}
/* line 83, ../sass/layout/_page_post.scss */
.post-item .post-info .info-meta {
  overflow: hidden;
}
/* line 85, ../sass/layout/_page_post.scss */
.post-item .post-info .info-meta ul {
  float: left;
  width: 50%;
  padding-right: 15px;
}
/* line 89, ../sass/layout/_page_post.scss */
.post-item .post-info .info-meta ul li {
  padding: 5px 0;
  color: #a9a9a9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 93, ../sass/layout/_page_post.scss */
.post-item .post-info .info-meta ul li span {
  color: #232323;
}
/* line 99, ../sass/layout/_page_post.scss */
.post-item .post-info .btn-chat {
  position: absolute;
  bottom: 30px;
  right: 0px;
}

/* line 108, ../sass/layout/_page_post.scss */
.btn-chat {
  background-color: #3584D8;
  border-radius: 1000px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: 0 4px 8px rgba(53, 132, 216, 0.45);
}
/* line 118, ../sass/layout/_page_post.scss */
.btn-chat:hover {
  color: #fff;
  box-shadow: 0 4px 13px rgba(53, 132, 216, 0.75);
}
/* line 122, ../sass/layout/_page_post.scss */
.btn-chat img {
  width: 16px;
  position: relative;
  top: 12px;
  margin-right: 12px;
}

/* line 129, ../sass/layout/_page_post.scss */
.btn-go {
  background-color: #F9B648;
  box-shadow: 0 4px 8px rgba(249, 182, 72, 0.45);
  border-radius: 1000px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: 0 4px 8px rgba(249, 182, 72, 0.45);
}
/* line 140, ../sass/layout/_page_post.scss */
.btn-go:hover {
  color: #fff;
  box-shadow: 0 4px 13px rgba(249, 182, 72, 0.75);
}
/* line 144, ../sass/layout/_page_post.scss */
.btn-go img {
  width: 16px;
  position: relative;
  top: 12px;
  margin-right: 12px;
}

/* line 154, ../sass/layout/_page_post.scss */
.post-top {
  background-color: rgba(0, 0, 0, 0.03);
  position: relative;
}

/* line 158, ../sass/layout/_page_post.scss */
.post-about {
  position: relative;
  padding-left: 370px;
  padding-top: 130px;
  padding-bottom: 25px;
}
/* line 163, ../sass/layout/_page_post.scss */
.post-about h1 {
  font-size: 36px;
  font-weight: bold;
}
/* line 167, ../sass/layout/_page_post.scss */
.post-about .en-name {
  font-size: 13px;
  color: #9d9d9d;
}
/* line 171, ../sass/layout/_page_post.scss */
.post-about .des {
  margin-top: 20px;
}
/* line 174, ../sass/layout/_page_post.scss */
.post-about .pic {
  position: absolute;
  left: 0px;
  top: 80px;
  width: 280px;
  height: 395px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
}
/* line 183, ../sass/layout/_page_post.scss */
.post-about .pic img {
  width: 100%;
}

/* line 188, ../sass/layout/_page_post.scss */
.post-meta {
  padding-left: 370px;
  padding-top: 15px;
}
/* line 10, ../sass/chocolate/_mixins.scss */
.post-meta .meta-ul:before, .post-meta .meta-ul:after {
  content: " ";
  display: table;
  line-height: 0;
}
/* line 11, ../sass/chocolate/_mixins.scss */
.post-meta .meta-ul:after {
  clear: both;
}
/* line 194, ../sass/layout/_page_post.scss */
.post-meta .meta-ul > ul {
  float: left;
  width: 50%;
}
/* line 197, ../sass/layout/_page_post.scss */
.post-meta .meta-ul > ul li {
  margin: 10px 0;
}
/* line 199, ../sass/layout/_page_post.scss */
.post-meta .meta-ul > ul li span {
  color: #9d9d9d;
}

/* line 206, ../sass/layout/_page_post.scss */
.post-operate {
  padding-top: 28px;
}
/* line 10, ../sass/chocolate/_mixins.scss */
.post-operate:before, .post-operate:after {
  content: " ";
  display: table;
  line-height: 0;
}
/* line 11, ../sass/chocolate/_mixins.scss */
.post-operate:after {
  clear: both;
}
/* line 209, ../sass/layout/_page_post.scss */
.post-operate .btn {
  padding-left: 60px;
  padding-right: 60px;
  margin-right: 60px;
}

/* line 216, ../sass/layout/_page_post.scss */
.article-box {
  padding: 90px 0;
}
/* line 218, ../sass/layout/_page_post.scss */
.article-box .container {
  overflow: hidden;
}

/* line 223, ../sass/layout/_page_post.scss */
.post-section {
  margin-bottom: 60px;
}
/* line 226, ../sass/layout/_page_post.scss */
.post-section .section-con p {
  margin-bottom: 25px;
  line-height: 1.8;
}
/* line 231, ../sass/layout/_page_post.scss */
.post-section h6 {
  font-size: 20px;
  font-weight: bold;
  padding-left: 7px;
  position: relative;
  margin-bottom: 20px;
}
/* line 237, ../sass/layout/_page_post.scss */
.post-section h6:before {
  position: absolute;
  display: inline-block;
  top: 6px;
  left: 0px;
  height: 20px;
  width: 3px;
  background-color: #3584D8;
  content: '';
}
/* line 249, ../sass/layout/_page_post.scss */
.post-section .recruit li {
  margin-bottom: 15px;
}

/* line 255, ../sass/layout/_page_post.scss */
.post-contact {
  margin-bottom: 50px;
}
/* line 257, ../sass/layout/_page_post.scss */
.post-contact ul {
  margin-top: -15px;
}
/* line 260, ../sass/layout/_page_post.scss */
.post-contact li {
  padding: 15px 0;
  border-bottom: 1px dashed #ececec;
}

/* line 265, ../sass/layout/_page_post.scss */
.tag-item {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  padding: 4px 12px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.42);
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* line 1, ../sass/layout/_page_search.scss */
.result-box {
  background-color: #fff;
  border: 1px solid #ececec;
  padding: 20px 50px 0 50px;
  border-radius: 6px;
  margin-bottom: 100px;
  min-height: 200px;
}
/* line 8, ../sass/layout/_page_search.scss */
.result-box .result-title {
  margin-top: 10px;
  font-size: 16px;
  color: #9d9d9d;
}
/* line 12, ../sass/layout/_page_search.scss */
.result-box .result-title span {
  color: #3584D8;
}

/* line 3, ../sass/layout/_page_news.scss */
.news-title {
  font-size: 36px;
  font-weight: bold;
  padding-top: 70px;
  margin-bottom: 10px;
}

/* line 10, ../sass/layout/_page_news.scss */
.news-item {
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px dashed #ececec;
}
/* line 14, ../sass/layout/_page_news.scss */
.news-item .news-left {
  float: left;
}
/* line 18, ../sass/layout/_page_news.scss */
.news-item .news-left h2 {
  font-size: 16px;
  font-weight: bold;
}
/* line 23, ../sass/layout/_page_news.scss */
.news-item .news-left span {
  display: inline-block;
  padding: 5px 0;
  border-top: 1px solid #ececec;
  color: #9d9d9d;
}
/* line 30, ../sass/layout/_page_news.scss */
.news-item .news-right {
}
/* line 33, ../sass/layout/_page_news.scss */
.news-item .news-right .pic {
  height: 255px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
/* line 38, ../sass/layout/_page_news.scss */
.news-item .news-right .pic img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* line 46, ../sass/layout/_page_news.scss */
.news-item .news-right p {
  color: #9d9d9d;
  font-size: 13px;
}

/* line 53, ../sass/layout/_page_news.scss */
.article-wrap {
  overflow: hidden;
  padding: 80px 0;
}

/* line 57, ../sass/layout/_page_news.scss */
.single-con {
  float: left;
  width: 680px;
}

/* line 63, ../sass/layout/_page_news.scss */
.news-article .news-article-title h1 {
  font-size: 36px;
  font-weight: bold;
}
/* line 67, ../sass/layout/_page_news.scss */
.news-article .news-article-title .meta {
  font-size: 13px;
  color: #9d9d9d;
  display: inline-block;
  margin-top: 5px;
}
/* line 74, ../sass/layout/_page_news.scss */
.news-article .news-article-con {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.7;
}
/* line 78, ../sass/layout/_page_news.scss */
.news-article .news-article-con blockquote {
  border-left: 3px solid #ececec;
  padding-left: 25px;
  font-weight: bold;
  font-size: 18px;
  font-style: italic;
}
/* line 85, ../sass/layout/_page_news.scss */
.news-article .news-article-con dl {
  margin-bottom: 30px;
}
/* line 87, ../sass/layout/_page_news.scss */
.news-article .news-article-con dl dd {
  font-size: 14px;
  color: #9d9d9d;
  padding-top: 15px;
}
/* line 93, ../sass/layout/_page_news.scss */
.news-article .news-article-con img {
  height: auto;
}
/* line 96, ../sass/layout/_page_news.scss */
.news-article .news-article-con p {
  margin-bottom: 30px;
  line-height: 1.7;
}
/* line 100, ../sass/layout/_page_news.scss */
.news-article .news-article-con h1, .news-article .news-article-con h2, .news-article .news-article-con h3, .news-article .news-article-con h4, .news-article .news-article-con h5, .news-article .news-article-con h6 {
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.7;
  margin-top: 50px;
}
/* line 106, ../sass/layout/_page_news.scss */
.news-article .news-article-con h1 {
  font-size: 24px;
}
/* line 109, ../sass/layout/_page_news.scss */
.news-article .news-article-con h2 {
  font-size: 20px;
}
/* line 112, ../sass/layout/_page_news.scss */
.news-article .news-article-con h3 {
  font-size: 18px;
}
/* line 115, ../sass/layout/_page_news.scss */
.news-article .news-article-con h4 {
  font-size: 16px;
}
/* line 118, ../sass/layout/_page_news.scss */
.news-article .news-article-con h5 {
  font-size: 14px;
}
/* line 121, ../sass/layout/_page_news.scss */
.news-article .news-article-con h6 {
  font-size: 14px;
}
/* line 124, ../sass/layout/_page_news.scss */
.news-article .news-article-con strong {
  font-weight: bold;
}

/* line 129, ../sass/layout/_page_news.scss */
.power-by {
  color: #9d9d9d;
  font-size: 13px;
  border-top: 1px solid #ececec;
  padding-top: 5px;
  margin-top: 60px;
}

/* line 136, ../sass/layout/_page_news.scss */
.single-side {
  width: 310px;
  float: right;
}
/* line 139, ../sass/layout/_page_news.scss */
.single-side .side-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #9d9d9d;
}
/* line 145, ../sass/layout/_page_news.scss */
.single-side .side-item {
  position: relative;
  margin-bottom: 30px;
}
/* line 148, ../sass/layout/_page_news.scss */
.single-side .side-item .pic {
  width: 115px;
  height: 160px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/* line 154, ../sass/layout/_page_news.scss */
.single-side .side-item .con {
  position: absolute;
  bottom: 0px;
  right: 0px;
  left: 135px;
}
/* line 159, ../sass/layout/_page_news.scss */
.single-side .side-item .con h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
/* line 164, ../sass/layout/_page_news.scss */
.single-side .side-item .con p {
  color: #9d9d9d;
  margin-bottom: 5px;
}

/* line 2, ../sass/layout/_page_single.scss */
.page-wrap {
  padding-top: 80px;
  overflow: hidden;
}

/* line 7, ../sass/layout/_page_single.scss */
.page-left {
  width: 172px;
  font-size: 16px;
  float: left;
}
/* line 12, ../sass/layout/_page_single.scss */
.page-left ul li {
  margin-bottom: 20px;
  border-left: 2px solid #fff;
}
/* line 15, ../sass/layout/_page_single.scss */
.page-left ul li a {
  padding: 0px 10px;
  display: inline-block;
}
/* line 19, ../sass/layout/_page_single.scss */
.page-left ul li.active {
  border-color: #3584D8;
}

/* line 29, ../sass/layout/_page_single.scss */
.page-right {
  margin-left: 190px;
  min-height: 400px;
  padding-bottom: 100px;
}

/* line 34, ../sass/layout/_page_single.scss */
.page-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: normal;
  margin-top: -3px;
}

/* line 43, ../sass/layout/_page_single.scss */
.about-box p {
  margin-bottom: 30px;
}

/* line 47, ../sass/layout/_page_single.scss */
.question-box {
  margin-top: -20px;
}

/* line 50, ../sass/layout/_page_single.scss */
.question-item {
  padding: 25px 0;
  border-bottom: 1px dashed #ececec;
}
/* line 53, ../sass/layout/_page_single.scss */
.question-item h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
/* line 58, ../sass/layout/_page_single.scss */
.question-item p {
  color: #9d9d9d;
}

/* line 63, ../sass/layout/_page_single.scss */
.warning-des {
  border-left: 3px solid #F9B648;
  background-color: #FEF7ED;
  padding: 25px 30px;
}
/* line 67, ../sass/layout/_page_single.scss */
.warning-des dt {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}
/* line 72, ../sass/layout/_page_single.scss */
.warning-des dd {
  padding: 3px 0;
}

/* line 77, ../sass/layout/_page_single.scss */
.pay-item {
  padding: 50px 0;
  border-bottom: 1px solid #ececec;
}
/* line 80, ../sass/layout/_page_single.scss */
.pay-item:last-child {
  border-bottom: none;
}
/* line 83, ../sass/layout/_page_single.scss */
.pay-item .pay-img {
  margin-bottom: 25px;
}
/* line 85, ../sass/layout/_page_single.scss */
.pay-item .pay-img img {
  height: 50px;
}
/* line 88, ../sass/layout/_page_single.scss */
.pay-item .pay-img span {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  background-color: #F9B648;
  color: #fff;
  border-radius: 2px;
  margin-top: 22px;
  margin-left: 20px;
}
/* line 99, ../sass/layout/_page_single.scss */
.pay-item ul li {
  padding: 5px 0;
}
/* line 101, ../sass/layout/_page_single.scss */
.pay-item ul li.tips {
  color: #9d9d9d;
}
/* line 104, ../sass/layout/_page_single.scss */
.pay-item ul li span {
  color: #3584D8;
}

/* line 112, ../sass/layout/_page_single.scss */
.suggest-box p {
  margin-bottom: 30px;
}
/* line 114, ../sass/layout/_page_single.scss */
.suggest-box p span {
  color: #3584D8;
}

/* line 121, ../sass/layout/_page_single.scss */
.jobs-box {
  font-size: 16px;
}

/* line 124, ../sass/layout/_page_single.scss */
.jobs-item {
  overflow: hidden;
  padding: 50px 0;
  border-bottom: 1px dashed #ececec;
}
/* line 128, ../sass/layout/_page_single.scss */
.jobs-item .jobs-left {
  float: left;
  width: 220px;
  font-size: 14px;
}
/* line 132, ../sass/layout/_page_single.scss */
.jobs-item .jobs-left h2 {
  font-size: 24px;
  font-weight: bold;
  color: #232323;
  margin-bottom: 10px;
}
/* line 138, ../sass/layout/_page_single.scss */
.jobs-item .jobs-left p {
  margin: 5px 0;
}
/* line 141, ../sass/layout/_page_single.scss */
.jobs-item .jobs-left .send-mail {
  margin-top: 30px;
  color: #9d9d9d;
}
/* line 144, ../sass/layout/_page_single.scss */
.jobs-item .jobs-left .send-mail span {
  color: #3584D8;
  font-weight: bold;
}
/* line 150, ../sass/layout/_page_single.scss */
.jobs-item .jobs-right {
  margin-left: 250px;
}
/* line 152, ../sass/layout/_page_single.scss */
.jobs-item .jobs-right dl {
  margin-bottom: 30px;
}
/* line 154, ../sass/layout/_page_single.scss */
.jobs-item .jobs-right dl dt {
  margin-bottom: 10px;
}
/* line 157, ../sass/layout/_page_single.scss */
.jobs-item .jobs-right dl dd {
  margin-bottom: 15px;
}

/* line 1, ../sass/layout/_page_404.scss */
.not-found {
  text-align: center;
  margin-top: -132px;
  padding-top: 10%;
}
/* line 6, ../sass/layout/_page_404.scss */
.not-found img {
  width: 400px;
}
/* line 9, ../sass/layout/_page_404.scss */
.not-found p {
  font-size: 16px;
}

/* line 16, ../sass/layout/_page_404.scss */
.btn-back {
  border-radius: 1000px;
  height: 42px;
  line-height: 42px;
  background-color: #3584D8;
  color: #fff;
  font-weight: bold;
  padding-left: 30px;
  padding-right: 30px;
  box-shadow: 0 4px 8px rgba(53, 132, 216, 0.45);
  margin-top: 80px;
}
/* line 27, ../sass/layout/_page_404.scss */
.btn-back:hover {
  color: #fff;
}

/* line 1, ../sass/layout/_page_gift.scss */
.gift-wrapper {
  z-index: 1000;
  position: fixed;
  bottom: 10px;
  left: 10px;
}
/* line 6, ../sass/layout/_page_gift.scss */
.gift-wrapper img {
  margin: 0 auto;
  display: block;
}
/* line 10, ../sass/layout/_page_gift.scss */
.gift-wrapper .top {
  position: relative;
  top: 30px;
  width: 132px;
  -webkit-animation: shake 8s infinite;
  animation: shake 8s infinite;
}
/* line 17, ../sass/layout/_page_gift.scss */
.gift-wrapper .box {
  width: 125px;
}
/* line 20, ../sass/layout/_page_gift.scss */
.gift-wrapper .button {
  cursor: pointer;
  -webkit-animation: size 8s infinite;
  animation: size 8s infinite;
  position: relative;
  top: -10px;
  width: 126px;
}

@-webkit-keyframes size {
  34% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  36% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  39% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  41% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes shake {
  30% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  31%,33%,35%,37%,39% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  32%,34%,36%,38%,40% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  32%,36% {
    -webkit-transform: translate(-1px, 1px);
    transform: translate(-1px, 1px);
  }
  33%,37% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  41% {
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}


.link-tag {
  height: 1px;
  overflow: hidden;
  margin: 0px;
}


/*custom css*/
.news-article svg {
  display: none;
}
.links{
  padding: 30px 0 25px 0;
  overflow: hidden;
}
.links b{
  font-weight: bold;
  float: left;
}
.links a{
  display: inline-block;
  float: left;
  padding-right: 15px;
  padding-bottom: 6px;
}

.section-academic {
  height: 10px;
  overflow: hidden;
}
.header-tips {
  background: #FEF1DC;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  color: #232323;
  margin-top: 10px;
  border-radius: 4px;
}


/*qa*/
.qa-suggest ul li {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.magazine-go {
  border-radius: 500px;
  color: #3584D8;
  border: 1px solid #3584D8;
  display: inline-block;
  padding: 10px 35px;
}
.magazine-summary {
  margin-top: 50px;
}
.magazine-summary .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.magazine-summary .con {
  line-height: 1.7;
  font-size: 16px;
}

/*爱番番*/
.embed-icon {
  top: 40% !important;
  right: 8px! important;
  transform: translateY(-50%)!important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.embed-group-icon__item {
  color: #232323 !important;
  font-weight: bold !important;
  font-size: 14px !important;

}


/*商桥样式覆盖-已失效*/
#newBridge .icon-right-center
  {
    display: none !important;
  }
#newBridge .nb-customer-icon-style .nb-icon-groups-item .nb-group-icon {
  display: none !important;
}
#newBridge .nb-icon-group .nb-group-text{
  margin-left: 0px !important;
  text-align: center !important;
}
#newBridge .nb-icon-base .nb-icon-inner-wrap {
  border-radius: 5px 5px 0 0 !important;
}
#newBridge .nb-customer-icon-style .nb-icon-groups {
  border-radius: 0 0 5px 5px !important;
}


#newBridge .nb-middle {
  padding:48px 32px 80px 32px !important;
  position: relative;
  box-shadow: 0 2px 18px rgba(0,0,0,0.12) !important;
  border-radius: 5px !important;
  overflow: hidden;
  background: #fff !important;
  width: 340px !important;
  box-sizing: border-box !important
}
#newBridge .nb-middle:before {
  position: absolute !important;
  display: inline-block !important;
  content: '' !important;
  left: 0px !important;
  right: 0px !important;
  top: 0px !important;
  height: 4px !important;
  background: #2672C4 !important;
}

#newBridge .nb-invite-body {
  height: 231px !important;
  width: 276px !important;
  margin-bottom: 25px !important;
  overflow: visible !important;
  position: unset !important;
}

#newBridge .driect-talk-style .nb-invte-btns-2 {
  border-radius: 5px !important;
  height: 40px !important;
  overflow: hidden !important;
}
#newBridge .driect-talk-style .nb-invte-btns-2 .nb-invite-input {
  height: 40px !important;
  line-height: 40px !important;
}
#newBridge .driect-talk-style .nb-invte-btns-2 .nb-invite-ok {
  height: 40px !important;
  line-height: 40px !important;
}
#newBridge .nb-invite-wrap-base .nb-invite-tool-base {
  right: 15px !important;
  top: 18px !important;
}
#newBridge .nb-invite-wrap-base .nb-invite-btn-base {
  bottom: 32px !important;
  left: 32px !important;
  right: 32px !important
}
#newBridge .nb-invite-skin-1 .nb-invite-ok {
  height: 40px !important;
  font-size: 14px !important;
  line-height: 40px !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  color: rgb(255, 255, 255) !important;
  border-radius: 40px !important;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s !important;
  font-weight: bold !important;
  margin-left: 0px !important;
  background-image: url(https://www.kuaiqikan.com/wp-content/themes/twentyseventeen/assets/images/send.png) !important;
  background-size: 22px 22px !important;
  background-repeat: no-repeat !important;
  background-position: 25px 9px !important;
  padding: 0 33px 0px 55px !important;
  width: auto !important;
}
#newBridge .nb-invite-skin-1 .nb-invite-cancel {
  float: right !important;
  background: #fff !important;
  margin-right: 50px !important;
  margin-top: 6px !important;
  display: none !important;
}
#newBridge .nb-icon-wrap-0 .nb-icon-wrap-base {
  display: none;
}



/*移动端自适应样式*/
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  .header-bg {
    height: 320px;
  }
  .container {
    width: 100%;
  }
  .global-nav {
    display: none;
  }
  .top-nav {
    display: none;
  }
  .btn-post {
    display: none;
  }
  .header {
    border-bottom: 2px solid rgba(255,255,255,0.1);
  }
  .search-wrap {
    padding: 40px 0;
  }
  .features-wrap {
    padding-bottom: 0px;
  }
  .features-wrap .item {
    width: 100%;
    border-bottom: 1px dashed #ececec;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-right: 0px;
  }
  .features-wrap .item:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
  }
  .features-wrap .item img {
    width: 70px;
  }
  .header-top {
    padding-right: 0px;
  }
  .header-top .logo img {
    width: 110px;
  }
  .header-top .logo-des {
    margin-top: 28px;
    margin-left: 12px;
  }
  .index-news .section-title, .recommend-header .section-title, .partner-wrap .section-title {
    margin-left: -102px;
  }
  .section-title {
    font-size: 26px;
  }
  .recommend-nav {
    display: none;
  }
  .recommend-magazine {
    max-height: 1360px;
  }
  .recommend-magazine .item {
    width: 50%;
  }
  .recommend-magazine .item:nth-child(3) {
    clear: both;
  }
  .section-list .section-item {
    width: 100%;
  }
  .index-quetion {
    margin-top: 70px;
  }
  .partner-wrap .partner-list h2 {
    width: 33%;
  }
  .footer {
    padding-left: 0px;
  }
  .footer-partner {
    position: static;
    width: 100%;
    overflow: hidden;
  }
  .footer-partner a {
    display: inline-block;
    width: 50%;
    text-align: center;
    float: left;
  }
  .copy-right .footer-des {
    float: none;
  }
  .post-about {
    padding: 0px;
    padding-bottom: 30px;
    padding-top: 40px;
  }
  .post-about .pic {
    position: static;
    width: 200px;
    height: 282px;
    margin-bottom: 20px
  }
  .post-meta {
    padding-left: 0px;
  }
  .single-con {
    width: 100%;
    margin-bottom: 50px;
  }
  .single-side {
    width: 100%;
    float: none;
  }
  .page-right {
    margin-left: 0px;
    padding-top: 30px;
  }
  .page-left {
    float: none;
    overflow: hidden;
    width: 100%;
  }
  .page-left ul li {
    float: left;
  }
  .page-wrap {
    padding-top: 40px;
  }
  .page-left ul li.active {
    border-color: #fff;
    box-shadow: 0 2px 0 #3584D8; 
  }
  .page-left ul li {
    margin-right: 15px;
  }
  .page-left ul li a {
    padding: 0px;
  }
  .jobs-item .jobs-left {
    width: 100%;
  }
  .jobs-item .jobs-right {
    margin-left: 0px;
  }
  .post-item {
    padding-left: 150px;
    margin-right: 0px;
  }
  .post-item .post-image {
    width: 120px;
    height: 169px;
    position: absolute;
    left: 0px;
    top: 30px;
  }
  .post-item .post-info {
    padding-top: 0px;
    float: none;
    width: auto;
    margin-bottom: 20px;
  }
  .filter-box {
    padding: 0px 20px;
  }
  .filter-header dl {
    display: none;
  }
  .post-item .post-info .info-meta ul {
    float: none;
    width: 100%;
    padding-right: 0px;
  }
  .post-item .post-info .info-meta ul li {
    white-space: normal;
    overflow: auto;
  }
  .result-box {
    padding: 20px;
  }
  .post-operate .btn {
    float: left;
    margin-right: 0px;
    width: 48%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .post-operate .btn.btn-chat {
    float: right;
  }
  .article-box {
    padding: 60px 0;
  }
  .article-wrap {
    padding: 50px 0;
  }
  .news-title {
    margin-top: 50px;
  }
  .side-qcode {
    bottom: 65px;
    top: auto;
    right: 12px;
  }
  .recommend-magazine .item .pic {
    height: 218px;
  }
  .site-des {
    width: 90%;
  }
  



}























