@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, 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, button, textarea, select, form {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html,
body {
  min-height: 100%;
}

/* 普通文章样式 */
.article-content {
  overflow: hidden;
}
.article-content strong, .article-content b {
  font-weight: bold;
}
.article-content i, .article-content em {
  font-style: italic;
}
.article-content ol, .article-content ul, .article-content li {
  list-style: inherit;
}
.article-content table {
  border-collapse: collapse;
  width: auto;
  word-break: break-all;
  max-width: 100%;
  table-layout: fixed;
}
.article-content table td, .article-content table th {
  word-break: break-all;
  border: 1px solid #f2f2f2;
  width: auto;
  padding: 5px 10px;
  vertical-align: middle;
}
.article-content iframe {
  max-width: 100%;
}
.article-content img {
  max-width: 100% !important;
  height: auto !important;
}
.article-content video, .article-content audio {
  max-width: 100%;
  height: auto;
}
.article-content p, .article-content span, .article-content div {
  word-break: break-word;
  text-align: justify;
}
.article-content p, .article-content pre {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.article-content h1 {
  font-size: 20px;
}
.article-content h2 {
  font-size: 18px;
}
.article-content h3 {
  font-size: 16px;
}
.article-content h4, .article-content h5, .article-content h6 {
  font-size: 14px;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
  padding: 15px 0;
  font-weight: bold;
}
.article-content a {
  color: #0b76ac;
  text-decoration: underline;
}
.article-content ol, .article-content ul {
  padding: 10px 20px;
}
.article-content blockquote {
  padding-left: 10px;
  border-left: 3px solid #dbdbdb;
  font-size: 14px;
}
.article-content blockquote p {
  font-size: 14px;
}

html {
  min-height: 100%;
}
html body {
  line-height: 1.2;
  min-height: 100%;
  font: 16px/1.4286 arial, "PingFang SC", miui, system-ui, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, sans-serif;
  color: #333;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
html body .page, html body main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
html body ol, html body ul, html body li {
  margin-bottom: 0;
  list-style: none;
}
html body a {
  text-decoration: none;
  cursor: pointer;
}
html body blockquote, html body q {
  quotes: none;
}
html body blockquote:before, html body blockquote:after,
html body q:before, html body q:after {
  content: none;
}
html body table {
  border-collapse: collapse;
  border-spacing: 0;
}
html body p {
  line-height: 1.5;
}
html body img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

input, button, textarea, select {
  border: 0;
}
input:focus, button:focus, textarea:focus, select:focus {
  outline: none;
}

a {
  color: unset;
}

button {
  border: 0;
}

.text-cut {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text-cut-2 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-cut-3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-cut-4 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

div.msgBoxBackGround {
  top: 0;
  left: 0;
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
  z-index: 1000;
}

div.msg-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  z-index: 1050;
  background-color: #fff;
  -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
}

.text-blue {
  color: #007ec4;
}

.hidden {
  display: none !important;
}

.tag.tag-blue {
  background-color: #007ec4;
}
.tag.tag-gray {
  background-color: #000;
}
.tag.tag-green {
  background-color: #3dc313;
}
.tag.opacity_four {
  opacity: 0.4;
}
.tag.opacity_eight {
  opacity: 0.8;
}
.tag.opacity_six {
  opacity: 0.6;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

.popup-wrapper {
  min-height: unset !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.popup-wrapper.need_canvas_popup {
  z-index: -99;
  top: -100vh;
}
.popup-wrapper.need_canvas_popup canvas {
  width: unset !important;
  height: unset !important;
  max-width: 100%;
  max-height: calc(80vh - 100px);
}
.popup-wrapper.active {
  z-index: 1000;
  top: 50%;
}
.popup-wrapper .icon-close {
  position: static !important;
  -webkit-transform: translate(0, 0) !important;
  -ms-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.detail-container {
  width: 900px;
  margin: 0 auto;
}

.hover-text-blue {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.hover-text-blue:hover {
  color: #0392c7 !important;
}

.need-hover-img-scale img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.need-hover-img-scale:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.hover-bg-color {
  background-color: #f9f9f9;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.hover-bg-color .color-title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.hover-bg-color:hover {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}
.hover-bg-color:hover .color-title {
  color: #0392c7 !important;
}

.common-date {
  color: #999;
  font-size: 14px;
}

.pagination-box {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  margin-top: 56px;
  margin-bottom: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination-box svg {
  width: 16px;
  height: 16px;
}
.pagination-box .prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 28px;
  -webkit-transform: rotateZ(90deg);
  -ms-transform: rotate(90deg);
  transform: rotateZ(90deg);
}
.pagination-box .next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: rotateZ(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotateZ(-90deg);
  margin-left: 28px;
  margin-right: 30px;
}
.pagination-box .n {
  border-radius: 2px;
  width: 34px;
  height: 34px;
  margin-left: 20px;
  color: #666;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination-box .n.active, .pagination-box .n:hover {
  background-color: #007ec4;
  color: #fff;
}
.pagination-box .page-count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination-box .icon-right-black {
  color: #666;
  font-size: 30px;
}

.no-data {
  margin-top: 56px;
  text-align: center;
  color: #666;
}

.input-item .input-box {
  padding-left: 15px;
  margin-top: 11px;
  width: 100%;
  height: 44px;
  border: 1px solid #dbdbdb;
  line-height: 44px;
  font-size: 14px;
  color: #999;
}
.input-item + .input-item {
  margin-top: 24px;
}
.input-item .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 11px;
}
.input-item .bottom .input-box {
  width: 290px;
  margin-top: 0;
}
.input-item .bottom .img-box > img {
  width: 93px;
  height: auto;
}
.input-item .bottom .iconfont {
  font-size: 18px;
}
.input-item .bottom .send-msg {
  padding-left: 19px;
  text-align: center;
  color: #007ec4;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.scene-popup {
  width: 550px;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 120px;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  padding: 35px 70px 53px 70px;
}
.scene-popup .login-popup-title-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 42px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f9f9f9;
}
.scene-popup .login-popup-title-container > a {
  font-size: 20px;
}
.scene-popup .tab-title-ul > a:first-child {
  padding-right: 26px;
}
.scene-popup .tab-title-ul > a:last-child {
  padding-left: 26px;
  position: relative;
}
.scene-popup .tab-title-ul > a:last-child::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #f9f9f9;
}
.scene-popup .tab-title-ul > a.active {
  color: #117cb0;
}
.scene-popup .change {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 18px;
}
.scene-popup .change > a {
  font-size: 14px;
  color: #999;
}
.scene-popup .change > a:first-child {
  color: #007ec4;
}
.scene-popup .two-btn {
  margin-top: 35px;
}
.scene-popup .two-btn .btn-item {
  height: 44px;
  line-height: 44px;
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  cursor: pointer;
  text-align: center;
}
.scene-popup .two-btn .btn-item + .btn-item {
  margin-left: 20px;
}
.scene-popup .people-login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.scene-popup .people-login iframe {
  width: 226px;
  height: 226px;
}
.scene-popup .people-login > p {
  margin-top: 31px;
}
.scene-popup .link-to-login {
  margin-top: 22px;
  font-size: 14px;
  color: #666;
  text-align: center;
}
.scene-popup .link-to-login > a {
  text-decoration: underline;
}

.BMapLabel {
  padding: 8px !important;
  font-size: 14px !important;
  font-weight: bold;
  border: none !important;
  position: relative;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.BMapLabel::before {
  width: 0;
  height: 0;
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
  position: absolute;
  bottom: -4.5px;
  left: 81px;
  display: block;
  content: "";
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #fff #fff;
}

.tag-pc {
  width: 100px;
  height: 42px;
  line-height: 42px;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center;
  font-size: 16px;
}

.page {
  padding-bottom: 150px;
}

.line-title {
  color: #007ec4;
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
}
.line-title::before {
  display: block;
  content: "";
  width: 4px;
  height: 18px;
  background-color: #007ec4;
  margin-right: 5px;
}

.form-top-line::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #eee;
  margin-bottom: 30px;
}

.form-title-color {
  display: inline-block;
  font-size: 24px;
  color: #007ec4;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.form-title-color::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #007ec4;
}

.report-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.report-btns > a {
  display: block;
  width: 200px;
  height: 44px;
  line-height: 44px;
  text-align: center;
}
.report-btns > a:first-child {
  border: 1px solid #007ec4;
  color: #007ec4;
}
.report-btns > a:last-child {
  background-color: #007ec4;
  color: #fff;
  margin-left: 60px;
}
.report-btns > a:last-child button {
  width: 100%;
  height: 100%;
  background-color: #007ec4;
  color: #fff;
}

.four-report .input-title {
  width: 112px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.four-report .input-box-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.four-report .input-box-item.upload_image {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.four-report .input-box-item.upload_image .input-title {
  line-height: 32px;
}
.four-report .input-box-item > input {
  padding-left: 8px;
  width: 360px;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  color: #666;
  border: solid 1px #eeeeee;
}
.four-report .input-mt-item + .input-mt-item {
  margin-top: 30px;
}
.four-report .person-table .add-delete-table {
  margin-top: 18px;
}
.four-report .person-table .add-delete-table table {
  width: 100%;
  border: solid 1px #eeeeee;
}
.four-report .person-table .add-delete-table table tbody {
  border-collapse: collapse;
}
.four-report .person-table .add-delete-table table tbody tr {
  border: 1px solid #eee;
}
.four-report .person-table .add-delete-table table tbody td {
  text-align: center;
  vertical-align: middle !important;
  padding: 12px 15px;
  border: 1px solid #eee;
}
.four-report .person-table .add-delete-table table tbody td > input {
  width: 100%;
  height: 36px;
  line-height: 36px;
  padding-left: 8px;
  font-size: 14px;
  color: #666;
  border: solid 1px #eeeeee;
}
.four-report .person-table .add-delete-table table tbody td > input[readonly] {
  background: #eee;
}
.four-report .person-table .add-delete-table table tbody td .iconfont {
  font-size: 26px;
  color: #999;
}
.four-report .person-table .add-delete-table table tbody td.opera-btn {
  text-align: center;
}
.four-report .person-table .add-delete-table table tbody td.opera-btn > a:last-child {
  margin-left: 42px;
}
.four-report .person-table .add-delete-table table tbody td.upload_td {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.four-report .person-table .add-delete-table table tbody td.upload_td .btn-upload {
  line-height: 36px;
  display: inline-block;
  color: #007ec4;
  text-align: center;
  cursor: pointer;
}
.four-report .person-table .add-delete-table table tbody td.upload_td .input {
  display: inline-block;
}
.four-report .person-table .add-delete-table table tbody td.upload_td .input .ossuploader-dash-border {
  margin-top: 0;
  margin-right: 12px;
}
.four-report .person-table .add-delete-table table tbody td.upload_td .input .ossuploader-dash-border > img {
  width: 60px;
  height: auto;
}
.four-report .person-table .add-delete-table table tbody td.upload_td .input .ossuploader-dash-border .ossuploader-filedelete {
  display: none;
}
.four-report .person-table .add-delete-table table tbody th {
  background-color: #f9f9f9;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #eee;
}
.four-report .picture-upload {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.four-report .picture-upload .input-title {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.four-report .picture-upload .upload-container {
  width: calc(100% - 112px);
}
.four-report .picture-upload .upload-container .btn-upload {
  cursor: pointer;
  width: 70px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: solid 1px #007ec4;
  color: #007ec4;
  font-size: 14px;
}
.four-report .picture-upload .upload-container .input {
  overflow: hidden;
}
.four-report .need-receipt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.four-report .need-receipt .checkout-box-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 27px;
}
.four-report .need-receipt .checkout-box-list .checkbox-item {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.four-report .need-receipt .checkout-box-list .checkbox-item .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 1px #cccccc;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 3px;
  margin-right: 9px;
}
.four-report .need-receipt .checkout-box-list .checkbox-item .circle .bg-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
}
.four-report .need-receipt .checkout-box-list .checkbox-item.active {
  color: #007ec4;
}
.four-report .need-receipt .checkout-box-list .checkbox-item.active .circle {
  border-color: #007ec4;
}
.four-report .need-receipt .checkout-box-list .checkbox-item.active .circle .bg-circle {
  background-color: #007ec4;
}
.four-report .need-receipt .checkout-box-list .checkbox-item + .checkbox-item {
  margin-left: 45px;
}
.four-report .report-btns {
  margin-top: 60px;
}
.four-report .ossuploader-dash-border {
  width: unset;
  border: none;
  background: transparent;
  border-radius: unset;
  height: unset;
  overflow: unset;
  margin-right: 40px;
  margin-top: 40px;
  margin-bottom: 0;
}
.four-report .ossuploader-dash-border > img {
  height: 180px;
  width: auto;
  -o-object-fit: unset;
  object-fit: unset;
}
.four-report .ossuploader-dash-border .ossuploader-progress {
  background: #007ec4;
}
.four-report .ossuploader-dash-border .ossuploader-filedelete {
  font-size: 25px;
  background: none;
  right: -30px;
  top: -30px;
}

.select_main {
  font-size: 14px;
  appearance: none; /* 去掉默认图标 */
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  background-image: url("../../../../img/pc/pull.png");
  background-position: right 10px center;
  background-size: 11px 7px;
  background-repeat: no-repeat;
}

.two-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.two-btn .btn-item {
  display: block;
}
.two-btn .btn-item:first-child {
  border: 1px solid #007ec4;
  color: #007ec4;
}
.two-btn .btn-item:last-child {
  background-color: #007ec4;
  color: #fff;
}

body .say-popup {
  background-color: transparent;
}
body .say-popup .popup-content {
  margin: 0;
  padding: 0;
  overflow: unset;
  max-height: unset;
}
body .say-popup .popup-content .img-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body .say-popup .popup-content .img-box img {
  max-height: calc(80vh - 66px - 29px);
  width: auto;
}
body .say-popup .icon-close {
  font-size: 66px;
  color: #fff;
  top: unset;
  right: unset;
  bottom: -95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.msg-box {
  margin: 0 auto;
  margin-top: 120px;
  width: 550px;
  padding: 36px 50px 51px 50px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.msg-box.no-mt {
  margin-top: 0;
}
.msg-box .title {
  font-size: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f9f9f9;
  text-align: center;
}
.msg-box .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 37px;
}
.msg-box .content .content-msg {
  font-size: 18px;
}
.msg-box .content .btn,
.msg-box .content a {
  margin-top: 55px;
  width: 200px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.msg-box .content .btn.goback-a, .msg-box .content .btn.cancel,
.msg-box .content a.goback-a,
.msg-box .content a.cancel {
  background-color: #ffffff;
  border: solid 1px #007ec4;
  color: #007ec4;
}
.msg-box .content .btn.confirm,
.msg-box .content a.confirm {
  background-color: #007ec4;
  color: #fff;
}

.msgBoxBackGround {
  background-color: #000;
}

::-webkit-scrollbar {
  width: 9px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border: solid 2px #fff;
  width: 5px;
  border-radius: 4px;
  background-color: #007ec4;
}

::-webkit-scrollbar-corner {
  background-color: #fff;
}

::-webkit-scrollbar:horizontal {
  height: 9px;
}

.about_file_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about_file_container .upload-file-btn {
  width: 90px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #007ec4;
  border: 1px solid #007ec4;
  font-size: 14px;
  background-color: #fff;
  cursor: pointer;
}
.about_file_container .uploadify-queue .uploadify-queue-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about_file_container .uploadify-queue .uploadify-queue-item .uploadify-progress {
  margin: 0 5px;
  width: 50px;
}
.about_file_container .uploadify-queue .uploadify-queue-item .uploadify-progress .uploadify-progress-bar {
  height: 5px;
  border-radius: 3px;
  background-color: #007ec4;
}
.about_file_container .uploadify-queue .uploadify-queue-item .up_percent,
.about_file_container .uploadify-queue .uploadify-queue-item .up_filename {
  font-size: 14px;
  color: #999;
}
.about_file_container .uploadify-queue .uploadify-queue-item .up_filename {
  margin-left: 5px;
}
.about_file_container:not(.format_image) .file_container .file-item {
  line-height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about_file_container:not(.format_image) .file_container .file-item > a {
  margin: 0 14px;
  color: #007ec4;
  font-size: 16px;
  text-decoration: underline;
}
.about_file_container:not(.format_image) .file_container .file-item > .iconfont {
  cursor: pointer;
  font-size: 19px;
  color: #999;
}
.about_file_container.format_image {
  display: block;
}
.about_file_container.format_image .file_container .file-item {
  padding-top: 20px;
  padding-right: 30px;
  position: relative;
}
.about_file_container.format_image .file_container .file-item > img {
  height: 180;
  width: auto;
}
.about_file_container.format_image .file_container .file-item .iconfont {
  cursor: pointer;
  top: 0;
  right: 0;
  position: absolute;
  font-size: 25px;
  color: #999;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
}
.header .header-top {
  background-color: #fff;
}
.header .header-top > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 106px;
}
.header .header-top > div .logo {
  width: auto;
  height: 75px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header .header-top > div .logo > img {
  height: 100%;
  width: auto;
}
.header .header-top > div .right-cont {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 16px;
}
.header .header-top > div .nav {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #999;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header .header-top > div .nav .right-bar {
  width: 260px;
  margin-right: 14px;
}
.header .header-top > div .nav .right-bar .search-box {
  width: 100%;
}
.header .header-top > div .nav .right-bar .search-box form {
  border: 1px solid #eee;
  position: relative;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 34px;
  line-height: 34px;
}
.header .header-top > div .nav .right-bar .search-box form .search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}
.header .header-top > div .nav .right-bar .search-box form .search .iconfont {
  font-size: 14px;
  color: #007ec4;
}
.header .header-top > div .nav .right-bar .search-box form .input {
  width: calc(100% - 14px - 20px);
}
.header .header-top > div .nav .right-bar .search-box form .input input {
  padding-right: 60px;
  width: 100%;
  border: none;
  background-color: transparent;
  font-size: 14px;
  color: #999;
  height: 34px;
  line-height: 34px;
}
.header .header-top > div .nav .right-bar .search-box form .input input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}
.header .header-top > div .nav .right-bar .search-box form .submit_button {
  position: absolute;
  right: 0;
  top: -1px;
}
.header .header-top > div .nav .right-bar .search-box form .submit_button > button {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 34px;
  background-color: #007ec4;
  color: #fff;
  font-size: 14px;
  border-radius: 0px 4px 4px 0px;
  text-align: center;
}
.header .header-top > div .nav .border-btn {
  border-radius: 4px;
  margin-right: 14px;
  width: 80px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border: 1px solid #079d3f;
  color: #fff;
  background: #079d3f;
}
.header .header-top > div .nav .login_or_register {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #079d3f;
  height: 34px;
  border-radius: 4px;
  color: #fff;
  background: #079d3f;
}
.header .header-top > div .nav .login_or_register > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}
.header .header-top > div .nav .people-account {
  padding: 0 15px;
  height: 34px;
  line-height: 34px;
  border: 1px solid #007ec4;
  color: #007ec4;
  border-radius: 4px;
}
.header .menu_ist {
  color: #222222;
  font-size: 16px;
  margin-top: auto;
}
.header .menu_ist .navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header .menu_ist .navList .item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 0 20px;
  position: relative;
}
.header .menu_ist .navList .item > a {
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 56px;
  white-space: nowrap;
  height: 56px;
}
.header .menu_ist .navList .item .submenu-box {
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%) translateY(27px);
  -ms-transform: translateX(-50%) translateY(27px);
  transform: translateX(-50%) translateY(27px);
  opacity: 0;
  pointer-events: none;
}
.header .menu_ist .navList .item .submenu-box .ol {
  background: #fff;
  position: relative;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.05);
}
.header .menu_ist .navList .item .submenu-box .ol .ol-li > a {
  color: #333;
  text-align: center;
  font-size: 14px;
  display: block;
  white-space: nowrap;
  padding: 10px 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header .menu_ist .navList .item .submenu-box .ol .ol-li > a.active, .header .menu_ist .navList .item .submenu-box .ol .ol-li > a:hover {
  color: #007ec4;
}
.header .menu_ist .navList .item .submenu-box.active {
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.header .menu_ist .navList .item:hover {
  color: #007ec4;
  background-color: #fff;
}
.header .menu_ist .navList .item:hover .submenu-box {
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.header .menu_ist .navList .item.active {
  color: #007ec4;
  background-color: #fff;
}

main {
  padding-top: 106px;
}

.page-index {
  padding-bottom: 60px;
}
.page-index .index-module-title {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 2px solid #f9f9f9;
}
.page-index .index-module-title .left {
  color: #007ec4;
  font-size: 24px;
  padding-bottom: 8px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-index .index-module-title .left .iconfont {
  margin-right: 8px;
  font-size: 24px;
}
.page-index .index-module-title .left .index-title {
  font-weight: bold;
}
.page-index .index-module-title .left::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #007ec4;
}
.page-index .index-module-title .index-show-more {
  color: #666;
}
.page-index .index-swiper {
  width: 100%;
}
.page-index .index-swiper img {
  width: 100%;
  height: auto;
}
.page-index .index-swiper .swiper-pagination {
  width: auto;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.page-index .index-swiper .swiper-pagination .swiper-pagination-bullet {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
}
.page-index .index-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007ec4;
}
.page-index .news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-index .news .main-new {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 500px;
  overflow: hidden;
}
.page-index .news .main-new-img-box {
  width: 100%;
  height: 340px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-index .news .main-new-img-box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-index .news .main-new-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
}
.page-index .news .main-new-content .main-new-title {
  font-size: 18px;
  font-weight: bold;
}
.page-index .news .main-new-content .main-new-introduce {
  color: #666;
  margin: 18px 0;
}
.page-index .news .news-ol {
  padding-left: 20px;
  width: calc(100% - 500px);
}
.page-index .news .news-ol li {
  width: 100%;
  overflow: hidden;
}
.page-index .news .news-ol li a {
  display: block;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-index .news .news-ol li a .news-item-img-box {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 240px;
  height: 160px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  flex-shrink: 0;
}
.page-index .news .news-ol li a .news-item-img-box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-index .news .news-ol li a .p {
  width: calc(100% - 240px);
  padding: 0 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-index .news .news-ol li a .p .p-title {
  font-weight: bold;
}
.page-index .news .news-ol li a .p .p-text {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 13px 0 17px 0;
}
.page-index .news .news-ol li + li {
  margin-top: 14px;
}
.page-index .notice-list {
  margin-top: -20px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-index .notice-list .item {
  margin-top: 20px;
  width: calc((100% - 40px) / 2);
  margin-right: 40px;
}
.page-index .notice-list .item:nth-child(2n) {
  margin-right: 0;
}
.page-index .notice-list .main-text {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eeeeee;
}
.page-index .notice-list .main-text:hover {
  border-color: transparent;
}
.page-index .notice-list .main-text .title {
  font-weight: bold;
}
.page-index .notice-list .main-text .date {
  margin-top: 18px;
  font-size: 16px;
}
.page-index .user-notice-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 40px) / 2));
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 30px;
}
.page-index .user-notice-list .item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-index .user-notice-list .item > a .img-box {
  width: 220px;
  height: 140px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-index .user-notice-list .item > a .img-box img {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.page-index .user-notice-list .item > a .main-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(100% - 240px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid #EEEEEE;
}
.page-index .user-notice-list .item > a .main-text .title {
  font-size: 18px;
  font-weight: bold;
  color: #222222;
  line-height: 1.6;
  margin-top: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.page-index .user-notice-list .item > a .main-text .date {
  margin-top: auto;
  margin-bottom: 30px;
}
.page-index .user-notice-list .item > a:hover .img-box img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.page-index .user-notice-list .item > a:hover .main-text {
  border-color: #007ec4;
}
.page-index .user-notice-list .item > a:hover .main-text .title {
  color: #007ec4;
}
.page-index .friendly-link-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 40px;
}
.page-index .friendly-link-swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.3;
  width: 12px;
  height: 7px;
  border-radius: 4px;
  background: #007EC4;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.page-index .friendly-link-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 26px;
}
.page-index .friendly-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc((100% - 100px) / 5));
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 30px;
}
.page-index .friendly-link-list > a {
  border: 10px solid #F0F0F0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px;
  height: 110px;
}
.page-index .ability {
  margin-top: 60px;
}
.page-index .ability > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 250px;
}
.page-index .ability > div > div {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-index .ability > div .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-index .ability > div .img-box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-index .ability > div .bg-box {
  height: 100%;
  background-color: #007ec4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 59px;
}
.page-index .ability > div .bg-box .title {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 32px;
}
.page-index .ability > div .bg-box .search-box {
  width: 481px;
  height: 50px;
}
.page-index .ability > div .bg-box .search-box form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
}
.page-index .ability > div .bg-box .search-box form .input {
  width: calc(100% - 120px);
}
.page-index .ability > div .bg-box .search-box form .input input {
  padding-left: 18px;
  padding-right: 10px;
  width: 100%;
  border: none;
  background-color: transparent;
  color: #999;
  height: 50px;
  line-height: 50px;
}
.page-index .ability > div .bg-box .search-box form .input input::-webkit-input-placeholder {
  color: #999;
  font-size: 16px;
}
.page-index .ability > div .bg-box .search-box form .submit_button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background-color: #16b4ef;
  cursor: pointer;
  width: 120px;
  height: 50px;
}
.page-index .ability > div .bg-box .search-box form .submit_button .iconfont {
  font-size: 17px;
  margin-right: 10px;
}
.page-index .scene .scene-list {
  margin-top: -30px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-index .scene .scene-list .item {
  margin-top: 30px;
  width: calc((100% - 87px) / 4);
  margin-right: 29px;
}
.page-index .scene .scene-list .item:nth-child(4n) {
  margin-right: 0;
}
.page-index .scene .scene-list .item-text {
  padding: 10px;
}
.page-index .scene .scene-list .item-text .img-box {
  width: 260px;
  height: 180px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-index .scene .scene-list .item-text .img-box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-index .scene .scene-list .item-text .title {
  padding: 12px 0 7px 0;
  text-align: center;
}

.footer .footer-top {
  background-image: url("../../../../img/pc/footer-top-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .footer-top .footer-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.footer .footer-top > div {
  padding: 50px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
}
.footer .footer-top > div .footer-menu-list {
  width: 515px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -60px;
  margin-top: -18px;
}
.footer .footer-top > div .footer-menu-list li {
  margin-left: 60px;
  margin-top: 18px;
}
.footer .footer-top > div .footer-connect-us {
  margin: 0 30px;
}
.footer .footer-top > div .footer-connect-us .connect-us-list li + li {
  margin-top: 18px;
}
.footer .footer-top > div .footer-ercode {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  background-color: #fff;
  padding: 5px;
}
.footer .footer-bottom {
  background-color: #007ec4;
  color: #fff;
  height: 36px;
  line-height: 36px;
}
.footer .footer-bottom > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
}
.footer .footer-bottom > div .ip_link {
  margin-left: 25px;
}

.page-search .search-module {
  height: 300px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f9f9f9;
}
.page-search .search-module .search-box {
  width: 550px;
  margin: 0 auto;
}
.page-search .search-module .search-box .form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
.page-search .search-module .search-box .form .form-wrap {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.07);
  box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.07);
  border-radius: 4px;
  overflow: hidden;
}
.page-search .search-module .search-box .form .form-wrap input {
  color: #666;
  line-height: 50px;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  background-color: #fff;
  border: none;
  padding-right: 60px;
}
.page-search .search-module .search-box .form .form-wrap .cu-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  line-height: 50px;
  cursor: pointer;
  padding: 0 20px;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
}
.page-search .search-module .search-box .form .form-wrap .cu-btn .iconfont {
  font-size: 20px;
  color: #007ec4;
}
.page-search .search-module .search-box .search-data {
  padding-top: 17px;
  padding-left: 20px;
}
.page-search .search-module .search-box .search-data .number {
  color: #666;
}
.page-search .search-module .search-box .search-data .number > span {
  color: #007ec4;
}
.page-search .result-module .search-list-wrap {
  padding-top: 17px;
}
.page-search .result-module .search-list-wrap li {
  padding-bottom: 22px;
  border-bottom: 1px solid #eee;
}
.page-search .result-module .search-list-wrap li .search-result-item {
  margin-top: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.page-search .result-module .search-list-wrap li .search-result-item .main-content {
  width: calc(100% - 24px - 30px);
}
.page-search .result-module .search-list-wrap li .search-result-item .main-content .title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 20px;
}
.page-search .result-module .search-list-wrap li .search-result-item .icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-left: 30px;
  font-size: 24px;
  color: #999;
}
.page-search .result-module .search-list-wrap li:hover .search-result-item .main-content .title {
  color: #007ec4;
}
.page-search .result-module .search-list-wrap li:hover .search-result-item .icon {
  color: #007ec4;
}

.no-result {
  text-align: center;
  padding: 106px 0 190px;
}
.no-result .tips {
  font-size: 24px;
  color: #888;
  margin-top: 30px;
}

#go-to-top {
  position: fixed;
  bottom: 20%;
  right: 9%;
  cursor: pointer;
  z-index: 100;
}
#go-to-top .to-top-container {
  width: 60px;
  height: 60px;
  background-color: #007ec4;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#go-to-top .to-top-container .iconfont {
  font-size: 31px;
}

.bannerTop {
  width: 100%;
  padding-bottom: 85px;
  position: relative;
}
.bannerTop .banner {
  position: relative;
}
.bannerTop .banner .img-box > img {
  width: 100%;
  height: auto;
}
.bannerTop .banner .title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}
.bannerTop .banner-menu {
  position: absolute;
  bottom: 85px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  width: 1200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.bannerTop .banner-menu .menu-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
  box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
}
.bannerTop .banner-menu .menu-list .item {
  position: relative;
  padding: 0 43px;
}
.bannerTop .banner-menu .menu-list .item .menu {
  height: 70px;
  line-height: 70px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.bannerTop .banner-menu .menu-list .item + .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #ccc;
}
.bannerTop .banner-menu .menu-list .item.active .menu, .bannerTop .banner-menu .menu-list .item:hover .menu {
  color: #007ec4;
  position: relative;
}
.bannerTop .banner-menu .menu-list .item.active .menu::after, .bannerTop .banner-menu .menu-list .item:hover .menu::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #007ec4;
  position: absolute;
  bottom: 19px;
  left: 0;
}

.page-about {
  padding-bottom: 60px;
}
.page-about .about-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 35px;
}
.page-about .if-show-module + .if-show-module {
  margin-top: 60px;
}
.page-about .connect-us {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-about .connect-us .left {
  width: calc(100% - 487px - 45px);
  padding-bottom: 160px;
}
.page-about .connect-us .left .if-show-module > ul {
  width: 100%;
}
.page-about .connect-us .left .if-show-module > ul li {
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  color: #000;
}
.page-about .connect-us .left .if-show-module > ul li .iconfont {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 20px;
  margin-right: 11px;
  color: #007ec4;
}
.page-about .connect-us .left .if-show-module > ul li > span {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-about .connect-us .left .if-show-module > ul li + li {
  margin-top: 22px;
}
.page-about .connect-us .left .look-we .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-about .connect-us .left .look-we .icon li {
  position: relative;
}
.page-about .connect-us .left .look-we .icon li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.page-about .connect-us .left .look-we .icon li a .icon-pic {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 48px;
  width: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.page-about .connect-us .left .look-we .icon li a .icon-pic.active {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.page-about .connect-us .left .look-we .icon li > .img-box {
  opacity: 0;
  position: absolute;
  bottom: -10px;
  left: 0;
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  width: 145px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.page-about .connect-us .left .look-we .icon li > .img-box > img {
  width: 145px;
  height: auto;
}
.page-about .connect-us .left .look-we .icon li:hover .icon-pic, .page-about .connect-us .left .look-we .icon li.active .icon-pic {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.page-about .connect-us .left .look-we .icon li:hover .img-box, .page-about .connect-us .left .look-we .icon li.active .img-box {
  opacity: 1;
}
.page-about .connect-us .left .look-we .icon li + li {
  margin-left: 20px;
}
.page-about .connect-us .right {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 487px;
  margin-left: 45px;
}
.page-about .connect-us .right .BMap_cpyCtrl {
  display: none;
}
.page-about .connect-us .right .anchorBL {
  display: none;
}
.page-about .connect-us .right .map #mapBox {
  width: 100%;
  height: auto;
}

.page-expert .expert-list .expert-item {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.page-expert .expert-list .expert-item:nth-child(2n+1) {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.page-expert .expert-list .expert-item:nth-child(2n+1) .left {
  padding-right: 70px;
}
.page-expert .expert-list .expert-item:nth-child(2n) {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.page-expert .expert-list .expert-item:nth-child(2n) .left {
  padding-left: 70px;
}
.page-expert .expert-list .expert-item:nth-child(2n) .right {
  position: absolute;
  left: 0;
  top: 49px;
}
.page-expert .expert-list .expert-item .left {
  width: calc(100% - 430px);
  min-height: 300px;
}
.page-expert .expert-list .expert-item .left .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 12px;
}
.page-expert .expert-list .expert-item .right .img-box > img {
  width: 430px;
  height: auto;
}
.page-expert .expert-list .expert-item + .expert-item {
  margin-top: 49px;
  padding-top: 49px;
  border-top: 1px solid #eee;
}

.page-activity .form-container {
  padding-bottom: 10px;
}
.page-activity .form-container > form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-activity .form-container > form > select {
  min-width: 170px;
  height: 44px;
  line-height: 44px;
  border: solid 1px #dbdbdb;
  color: #999;
  margin-right: 20px;
  padding-left: 15px;
  padding-right: 25px;
}
.page-activity .form-container > form > input {
  width: 250px;
  height: 44px;
  line-height: 44px;
  border: solid 1px #dbdbdb;
  font-size: 14px;
  color: #999;
  padding-left: 15px;
  margin-right: 20px;
}
.page-activity .form-container > form > button {
  width: 100px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: #007ec4;
  color: #fff;
  cursor: pointer;
}
.page-activity .activity-list .activity-item {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-activity .activity-list .activity-item .img-box {
  width: 360px;
  height: 225px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
.page-activity .activity-list .activity-item .img-box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-activity .activity-list .activity-item .main-text {
  width: calc(100% - 360px);
  padding: 16px 30px 18px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-activity .activity-list .activity-item .main-text .title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
.page-activity .activity-list .activity-item .main-text .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-activity .activity-list .activity-item .main-text .bottom .left {
  color: #666;
}
.page-activity .activity-list .activity-item .main-text .bottom .left .left-item + .left-item {
  margin-top: 20px;
}
.page-activity .activity-list .activity-item .main-text .bottom .right {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  width: 130px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #eeeeee;
}
.page-activity .activity-list .activity-item:hover .title {
  color: #007ec4 !important;
}
.page-activity .activity-list .activity-item:hover .right {
  background-color: #007ec4 !important;
  color: #fff !important;
}

.page-activity-detail {
  padding-top: 51px;
}
.page-activity-detail .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 50px;
  border-bottom: 2px solid #eee;
  margin-bottom: 35px;
}
.page-activity-detail .top .img-box {
  width: 400px;
  height: 250px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page-activity-detail .top .img-box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-activity-detail .top .right {
  width: calc(100% - 400px);
  padding-left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-activity-detail .top .right .title {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 20px;
}
.page-activity-detail .top .right .detail-time .main-text {
  color: #666;
}
.page-activity-detail .top .right .detail-time .main-text > li + li {
  margin-top: 10px;
}
.page-activity-detail .top .right .detail-time .report-btn {
  display: block;
  margin-top: 23px;
  width: 115px;
  height: 44px;
  line-height: 44px;
  background-color: #007ec4;
  text-align: center;
  color: #fff;
}
.page-activity-detail .bottom-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-activity-detail .bottom-text .introduce {
  width: calc(100% - 360px);
  padding-right: 30px;
}
.page-activity-detail .bottom-text .introduce .article-content {
  margin-top: 25px;
}
.page-activity-detail .bottom-text .report-need-know {
  width: 360px;
  line-height: 2;
}

.report-form {
  width: 1000px;
  margin: 82px auto 0 auto;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
  box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
  margin-top: 82px;
  padding: 34px 50px 50px 50px;
}
.report-form .tip_top {
  font-size: 14px;
  margin-bottom: 14px;
}
.report-form .report-table .table {
  border: 1px solid #eee;
}
.report-form .report-table .table .table-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
}
.report-form .report-table .table .table-column .table-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eee;
  width: 200px;
  padding: 13px 0;
  text-align: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.report-form .report-table .table .table-column .table-text {
  width: calc(100% - 135px);
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #fff;
  padding: 13px 0 13px 19px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.report-form .report-table .table .table-column .column-item {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.report-form .report-table .table .table-column:last-child {
  border-bottom: none;
}
.report-form .tips {
  margin-top: 26px;
  font-size: 14px;
  color: #f40d0d;
  line-height: 2;
}
.report-form .color_bg {
  margin-top: 25px;
  margin-bottom: 46px;
  background-color: #eff9ff;
  padding: 20px 44px;
  line-height: 1.7;
}

.page-report-success .report-success-popup {
  width: 600px;
  margin: 0 auto;
  margin-top: 82px;
  padding: 35px 70px 42px 70px;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
  box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
}
.page-report-success .report-success-popup .title {
  font-size: 24px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid #eee;
  margin-bottom: 28px;
}
.page-report-success .report-success-popup .title .iconfont {
  font-size: 28px;
  font-weight: normal;
  margin-right: 8px;
  color: #079c3e;
}
.page-report-success .report-success-popup .tips-pre {
  text-align: center;
  line-height: 1.7;
}
.page-report-success .report-success-popup .report-btns {
  margin-top: 52px;
}

.company-report .column-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team-list {
  width: 100%;
}
.team-list .team-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 14px 20px;
}
.team-list .team-item .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 65px - 30px);
}
.team-list .team-item .left .square {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 7px;
  height: 7px;
  background-color: #999;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.team-list .team-item .left .date {
  margin: 0 21px 0 12px;
  color: #666;
}
.team-list .team-item .left .title {
  width: calc(100% - 21px - 12px - 7px - 85px);
}
.team-list .team-item > a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  width: 65px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #ffffff;
  border: solid 1px #eeeeee;
}
.team-list .team-item + .team-item {
  margin-top: 25px;
}
.team-list .team-item:hover .left .square {
  background-color: #007ec4;
}
.team-list .team-item:hover > a {
  background-color: #007ec4;
  color: #fff;
  border: none;
}

.page-title-detail .top {
  margin-bottom: 35px;
  background-color: #f9f9f9;
  min-height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0;
}
.page-title-detail .top .all {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-title-detail .top .all .title h3 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 46px;
}
.page-title-detail .top .all .date-nav .date {
  text-align: center;
  color: #666;
}
.page-title-detail .top .all.flex-start {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-title-detail .top .all.flex-start .title h3 {
  text-align: left;
}
.page-title-detail .top .all.flex-start .date-nav .date {
  text-align: left;
}
.page-title-detail .top .all .video_container {
  margin-left: 20px;
}

.page-download-detail .top {
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
  margin-bottom: 36px;
}
.page-download-detail .top .article-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}
.page-download-detail .top .download_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-download-detail .top .download_container .download {
  width: calc(100% - 160px - 30px);
}
.page-download-detail .top .download_container .download > a {
  color: #007ec4;
}
.page-download-detail .top .download_container .apply-btn {
  width: 160px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #007ec4;
  color: #fff;
}
.page-download-detail .top .download_container .apply-btn .iconfont {
  font-size: 23px;
  margin-right: 8px;
}

.page-upload-file .title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 57px;
  margin-bottom: 40px;
}
.page-upload-file .box-shadow {
  -webkit-box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
  box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
  padding: 35px 37px 59px 33px;
  line-height: 2;
}
.page-upload-file .box-shadow .download_all_container {
  margin-top: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-upload-file .box-shadow .download_all_container > a {
  color: #007ec4;
  text-decoration: underline;
}
.page-upload-file .box-shadow .download_a_container {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-upload-file .box-shadow .download_a_container .select_main {
  min-width: 270px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #eee;
  margin-right: 10px;
  color: #666;
  padding-left: 7px;
}
.page-upload-file .box-shadow .download_a_container button {
  width: 70px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  background-color: #007ec4;
}
.page-upload-file .box-shadow + .box-shadow {
  margin-top: 60px;
}
.page-upload-file .box-shadow .modules li .upload-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.page-upload-file .box-shadow .modules li .input-mt-item + .input-mt-item {
  margin-top: 19px;
}
.page-upload-file .box-shadow .modules li .input-mt-item > input {
  width: 400px;
}
.page-upload-file .box-shadow .modules li .upload-file-list .li .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-upload-file .box-shadow .modules li .upload-file-list .li .left .name {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 426px;
  padding-right: 30px;
}
.page-upload-file .box-shadow .modules li .upload-file-list .li .bottom > p {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}
.page-upload-file .box-shadow .modules li .upload-file-list .li + .li {
  margin-top: 23px;
}
.page-upload-file .box-shadow .modules li .two-btn {
  margin-top: 63px;
}
.page-upload-file .box-shadow .modules li .two-btn .btn-item {
  width: 200px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-upload-file .box-shadow .modules li .two-btn .btn-item + .btn-item {
  margin-left: 60px;
}
.page-upload-file .box-shadow .modules li + li {
  margin-top: 55px;
}

.dynamic-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dynamic-list .item .img-box {
  width: 360px;
  height: 225px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.dynamic-list .item .img-box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.dynamic-list .item .main-text {
  padding-left: 30px;
  width: calc(100% - 360px);
}
.dynamic-list .item .main-text .title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  font-weight: bold;
}
.dynamic-list .item .main-text .common-date {
  font-size: 16px;
  margin: 16px 0 12px 0;
}
.dynamic-list .item .main-text .p {
  color: #666;
  line-height: 1.7;
}
.dynamic-list .item .main-text > a {
  margin-top: 28px;
  width: 130px;
  height: 46px;
  background-color: #eeeeee;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.dynamic-list .item + .item {
  margin-top: 29px;
}
.dynamic-list .item:hover .main-text .title {
  color: #007ec4;
}
.dynamic-list .item:hover a {
  background-color: #007ec4 !important;
  color: #fff !important;
}

.science {
  margin-top: -44px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.science .item {
  margin-top: 44px;
  width: calc((100% - 78px) / 4);
  margin-right: 26px;
}
.science .item:nth-child(4n) {
  margin-right: 0;
}
.science .item a {
  display: block;
  padding: 10px;
  background-color: #f9f9f9;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.science .item a .img-box {
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.science .item a .img-box > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.science .item a .title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  padding: 11px 7px 7px 7px;
}
.science .item:hover a {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}
.science .item:hover a .title {
  color: #007ec4;
}

.page-certificate .apply-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 305px;
  height: 60px;
  background: #007EC4;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 50px;
}
.page-certificate .apply-btn .iconfont {
  font-size: 24px;
  margin-right: 8px;
}
.page-certificate .apply-btn span {
  font-size: 16px;
}
.page-certificate .form {
  width: 620px;
  margin: 0 auto;
}
.page-certificate .form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-certificate .form form input {
  width: 500px;
  height: 44px;
  line-height: 44px;
  padding-left: 13px;
  color: #666;
  border: solid 1px #dbdbdb;
}
.page-certificate .form form button {
  margin-left: 20px;
  width: 100px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background-color: #007ec4;
}
.page-certificate .form .search-text {
  margin-top: 19px;
}
.page-certificate .certificate-list {
  margin-top: 54px;
}
.page-certificate .certificate-list li {
  padding: 21px 20px;
  background-color: #f9f9f9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.page-certificate .certificate-list li .text {
  font-size: 14px;
  color: #666;
  line-height: 2;
}
.page-certificate .certificate-list li .title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.page-certificate .certificate-list li a {
  width: 100px;
  height: 32px;
  background-color: #ffffff;
  border: solid 1px #eeeeee;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.page-certificate .certificate-list li + li {
  margin-top: 30px;
}
.page-certificate .certificate-list li:hover {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}
.page-certificate .certificate-list li:hover .title {
  color: #007ec4;
}
.page-certificate .certificate-list li:hover a {
  background-color: #007ec4;
  color: #fff;
  border: none;
}

.page-user {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 70px 0 100px;
}
.page-user .form-btn {
  margin-top: 30px;
}
.page-user .form-btn.two-btn {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.page-user .form-btn .btn-item {
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
}
.page-user .form-btn .btn-item.goBack-a {
  margin-right: 25px;
  background: #fff;
  color: #007ec4;
}
.page-user .user-menu {
  width: 280px;
  text-align: center;
}
.page-user .user-menu .title {
  font-size: 18px;
  color: #fff;
  background: #007ec4;
  height: 60px;
  line-height: 60px;
}
.page-user .user-menu ul {
  border: 1px solid #EEEEEE;
  border-bottom: none;
  border-top: none;
}
.page-user .user-menu ul li {
  border-bottom: 1px solid #EEEEEE;
}
.page-user .user-menu ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-size: 18px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.page-user .user-menu ul li a .iconfont {
  font-size: 20px;
  color: #333;
  margin-right: 24px;
}
.page-user .user-menu ul li a span {
  width: 120px;
  text-align: left;
}
.page-user .user-menu ul li.active a, .page-user .user-menu ul li:hover a {
  color: #007ec4;
}
.page-user .user-menu ul li.active a .iconfont, .page-user .user-menu ul li:hover a .iconfont {
  color: #007ec4;
}
.page-user .user-container {
  width: 880px;
  min-height: 500px;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
  box-shadow: 0px 1px 7px 0px rgba(26, 28, 36, 0.14);
  padding: 15px 20px 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.page-user .user-container .fees-tips {
  color: red;
  font-size: 16px;
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-user .user-container .fees-tips .iconfont {
  font-size: 18px;
  margin-right: 10px;
}
.page-user .title_menu {
  border-bottom: 2px solid #EEEEEE;
}
.page-user .title_menu a {
  display: inline-block;
  padding-bottom: 10px;
  font-size: 18px;
  color: #333;
  position: relative;
  margin-right: 45px;
}
.page-user .title_menu a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #007ec4;
  left: 0;
  bottom: -2px;
  display: none;
}
.page-user .title_menu a.active {
  color: #007ec4;
  font-weight: bold;
}
.page-user .title_menu a.active::after {
  display: block;
}
.page-user .title_menu a.apply-btn {
  min-width: 100px;
  padding: 0 5px;
  border: 1px solid #007ec4;
  height: 34px;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  color: #007ec4;
}
.page-user .edit_btn {
  display: block;
  width: 120px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  color: #007ec4;
  border: 1px solid #007ec4;
  margin-top: 30px;
}
.page-user .table td {
  padding: 14px 20px;
  border: 1px solid #EEEEEE;
}
.page-user .table td.label {
  background: #F9F9F9;
  text-align: center;
}
.page-user .table.user_info {
  margin-top: 30px;
}
.page-user .user-edit {
  margin-top: 36px;
  width: 410px;
}
.page-user .noReview {
  text-align: center;
  margin-top: 28px;
}
.page-user .noReview .tips {
  color: #999999;
  font-size: 18px;
}
.page-user .noReview .btn {
  display: block;
  width: 240px;
  height: 260px;
  border: 2px solid #007ec4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 26px;
}
.page-user .noReview .btn .iconfont {
  font-size: 120px;
  color: #007ec4;
}
.page-user .noReview .btn .line {
  width: 30px;
  height: 4px;
  background: #007ec4;
  margin: 0 auto;
  margin-bottom: 25px;
}
.page-user .noReview .btn .font {
  color: #333333;
  font-size: 24px;
}
.page-user .application {
  margin-top: 26px;
}
.page-user .application .step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}
.page-user .application .step .item {
  margin-right: 280px;
}
.page-user .application .step .item .num {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 1px solid #007ec4;
  border-radius: 50%;
  font-size: 24px;
  color: #007ec4;
  position: relative;
  margin: 0 auto;
  background: #fff;
  z-index: 3;
}
.page-user .application .step .item .num::after {
  content: "";
  display: block;
  width: 296px;
  height: 1px;
  background: #EEEEEE;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.page-user .application .step .item .text {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}
.page-user .application .step .item:last-child {
  margin-right: 0;
}
.page-user .application .step .item:last-child .num::after {
  display: none;
}
.page-user .application .step .item.active .num {
  background: #007ec4;
  color: #fff;
}
.page-user .application .step .item.active .text {
  color: #007ec4;
}
.page-user .application .modules .upload-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.page-user .application .modules li + li {
  margin-top: 40px;
}
.page-user .application .apply-form .unnormal {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.page-user .application .apply-form .unnormal .input-title {
  line-height: 32px;
}
.page-user .application .apply-form .textarea-box-item {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-user .application .apply-form .textarea-box-item textarea {
  border: 1px solid #DBDBDB;
  height: 180px;
  padding: 10px 15px;
}
.page-user .application .apply-form .radio-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 725px;
}
.page-user .application .apply-form .radio-box label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.page-user .application .apply-form .radio-box label input:checked + .text {
  color: #007ec4;
}
.page-user .application .apply-form .radio-box label .text {
  margin-left: 10px;
  font-size: 16px;
  min-width: 66px;
  padding-right: 40px;
  font-size: 16px;
}
.page-user .application .apply-form .checkbox-item {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-user .application .apply-form .checkbox-item .right-item {
  width: 725px;
}
.page-user .application .apply-form .checkbox-item .right-item .checkbox-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-user .application .apply-form .checkbox-item .right-item .checkbox-box label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
}
.page-user .application .apply-form .checkbox-item .right-item .checkbox-box input:checked + .text {
  color: #007ec4;
}
.page-user .application .apply-form .checkbox-item .right-item .checkbox-box .text {
  margin-left: 10px;
  font-size: 16px;
  min-width: 66px;
  padding-right: 40px;
  font-size: 16px;
}
.page-user .application .apply-form .checkbox-item .right-item > input {
  padding-left: 8px;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  color: #666;
  border: solid 1px #eeeeee;
}
.page-user .application .apply-form .agree-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.page-user .application .apply-form .agree-item label {
  margin-left: 10px;
}
.page-user .application .apply-form .agree-item .text {
  font-size: 16px;
  color: #333;
}
.page-user .application .apply-form .agree-item .text a {
  color: #007ec4;
}
.page-user .application .apply-form .input-flex-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-user .application.viewer .preview_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-user .application.viewer .preview {
  width: 280px;
  height: 180px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.page-user .application.viewer .preview img {
  width: 100%;
  height: 100%;
}
.page-user .application.viewer .file {
  color: #007ec4;
}
.page-user .uploadBox .section .tips {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
.page-user .uploadBox .section .downloadBtn {
  display: block;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: #007ec4;
}
.page-user .uploadBox .section .input-box-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-user .uploadBox .section .input-box-item .input-title {
  width: 106px;
}
.page-user .uploadBox .section .uploadify-button {
  height: 32px;
  line-height: 32px;
  background: #FFFFFF;
  border: 1px solid #007EC4;
  border-radius: 0;
  margin: 0;
  color: #007ec4;
  font-size: 14px;
  font-weight: normal;
}
.page-user .uploadBox .section .textarea-box-item {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-user .uploadBox .section .textarea-box-item textarea {
  border: 1px solid #DBDBDB;
  height: 180px;
  padding: 10px 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  resize: none;
}
.page-user .uploadBox .section + .section {
  margin-top: 36px;
}
.page-user .apply-record .person-table .add-delete-table {
  margin-top: 30px;
}
.page-user .apply-record .person-table .add-delete-table table {
  width: 100%;
  border: solid 1px #eeeeee;
  font-size: 14px;
}
.page-user .apply-record .person-table .add-delete-table table thead th {
  background-color: #f9f9f9;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #eee;
}
.page-user .apply-record .person-table .add-delete-table table tbody {
  border-collapse: collapse;
}
.page-user .apply-record .person-table .add-delete-table table tbody tr {
  border: 1px solid #eee;
}
.page-user .apply-record .person-table .add-delete-table table tbody td {
  text-align: center;
  vertical-align: middle !important;
  padding: 12px 15px;
  border: 1px solid #eee;
}
.page-user .apply-record .person-table .add-delete-table table tbody td.opera-btn a {
  font-size: 16px;
  color: #007ec4;
  display: inline-block;
}
.page-user .apply-record .person-table .add-delete-table table tbody td.opera-btn a + a {
  margin-left: 40px;
}
.page-user .apply-record .active-table .add-delete-table table tbody td {
  padding: 12px 5px;
}
.page-user .apply-record .active-table .add-delete-table table tbody td:nth-child(1) {
  text-align: left;
}
.page-user .apply-record .active-table .add-delete-table table tbody td.control-btn a {
  color: #007ec4;
  display: inline-block;
}
.page-user .apply-record .active-table .add-delete-table table tbody td.control-btn a + a {
  margin-top: 5px;
}
.page-user .info-change-box {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.page-user .info-change-box .info-change-btn {
  width: 120px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #fff;
  border: 1px solid #007ec4;
  color: #007ec4;
  font-size: 16px;
  display: block;
}
.page-user .info-change-box .check-record-btn {
  font-size: 16px;
  margin-left: 30px;
  color: #007ec4;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-user .info-change-box .check-record-btn .iconfont {
  margin-right: 5px;
  font-weight: bold;
  font-size: 14px;
}
.page-user .member-info-table {
  margin-top: 30px;
}
.page-user .member-info-table table {
  width: 100%;
  border: solid 1px #eeeeee;
}
.page-user .member-info-table table tbody {
  border-collapse: collapse;
}
.page-user .member-info-table table tbody tr {
  border: 1px solid #eee;
}
.page-user .member-info-table table tbody td {
  text-align: left;
  vertical-align: middle !important;
  padding: 12px 15px;
  border: 1px solid #eee;
  font-size: 16px;
}
.page-user .member-info-table table tbody td.label-title {
  background: #F9F9F9;
  text-align: center;
}
.page-user .member-info-table table tbody td.item-title {
  text-align: center;
  font-weight: bold;
}
.page-user .member-info-table table tbody td .view {
  color: #007ec4;
}
.page-user .member-info-table table tbody td .apply-btn {
  display: inline-block;
  text-align: center;
  width: 80px;
  height: 30px;
  line-height: 30px;
  background: #FFFFFF;
  border: 1px solid #007ec4;
  font-size: 14px;
  color: #007ec4;
  margin-left: 2px;
}
.page-user .modules {
  margin-top: 34px;
}
.page-user .modules li .upload-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.page-user .modules li .input-mt-item + .input-mt-item {
  margin-top: 19px;
}
.page-user .modules li .input-mt-item > input {
  width: 400px;
}
.page-user .modules li .upload-file-list .li .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-user .modules li .upload-file-list .li .left .name {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 426px;
  padding-right: 30px;
}
.page-user .modules li .upload-file-list .li .left .right {
  color: #007ec4;
  font-size: 16px;
}
.page-user .modules li .upload-file-list .li .left > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 32px;
}
.page-user .modules li .upload-file-list .li .left .upload-file-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-user .modules li .upload-file-list .li .left .upload-file-btn .uploadify-button {
  border-radius: 0;
  padding: 0;
  width: 90px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #007ec4;
  border: 1px solid #007ec4;
  font-size: 14px;
  background-color: #fff;
  font-weight: normal;
  margin: 0;
}
.page-user .modules li .upload-file-list .li .left .upload-file-btn .uploadify-queue-item {
  margin-top: 0;
  margin-left: 14px;
}
.page-user .modules li .upload-file-list .li .left .upload-file-btn .uploadify-progress {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  border: none;
}
.page-user .modules li .upload-file-list .li .left .upload-file-btn .uploadify-progress .uploadify-progress-bar {
  border-radius: 2px;
  background-color: #007ec4;
}
.page-user .modules li .upload-file-list .li .left .upload-file-btn .uploadify-queue .up_filename,
.page-user .modules li .upload-file-list .li .left .upload-file-btn .uploadify-queue .uploadbtn,
.page-user .modules li .upload-file-list .li .left .upload-file-btn .uploadify-queue .delfilebtn {
  display: none;
}
.page-user .modules li .upload-file-list .li .left .file_upload_1_preview {
  margin-left: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-user .modules li .upload-file-list .li .left .file_upload_1_preview .file-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.page-user .modules li .upload-file-list .li .left .file_upload_1_preview .file-item .cert_title {
  color: #007ec4;
  font-size: 16px;
  text-decoration: underline;
}
.page-user .modules li .upload-file-list .li .left .file_upload_1_preview .file-item .iconfont {
  display: none;
  cursor: pointer;
  font-size: 19px;
  margin-left: 17px;
  color: #999;
}
.page-user .modules li .upload-file-list .li .bottom > p {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}
.page-user .modules li .upload-file-list .li + .li {
  margin-top: 23px;
}
.page-user .modules li .two-btn {
  margin-top: 63px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.page-user .modules li .two-btn .btn-item {
  width: 200px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-user .modules li .two-btn .btn-item + .btn-item {
  margin-left: 60px;
}
.page-user .modules li .two-btn .goBack-a {
  background: #fff;
  color: #007ec4;
}
.page-user .modules li + li {
  margin-top: 55px;
}

.agree-popup {
  width: 600px !important;
  background: transparent !important;
}
.agree-popup .bgfff {
  background: #fff;
}
.agree-popup .icon-close {
  font-size: 66px;
  color: #fff;
  top: unset !important;
  right: unset !important;
  bottom: -95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.agree-popup .popup-header-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  padding: 15px 0;
}
.agree-popup .popup-footer .agreeBtn {
  margin: 0 auto;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background-color: #007ec4;
  color: #fff;
  display: block;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 106;
}

.msg-box.fixed {
  position: fixed;
  z-index: 107;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
}
.msg-box .radio-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.msg-box .radio-box label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.msg-box .radio-box label input:checked + .text {
  color: #007ec4;
}
.msg-box .radio-box label .text {
  margin-left: 10px;
  font-size: 16px;
  min-width: 66px;
  padding-right: 40px;
  font-size: 16px;
}
.msg-box .radio-box label:last-child .text {
  padding-right: 0;
}
.msg-box .radio-box.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.msg-box .radio-box.vertical label {
  margin-bottom: 10px;
}
.msg-box .radio-box.vertical #else {
  display: none;
  width: 308px;
  height: 36px;
  padding: 0 7px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  border: 1px solid #eee;
  margin-left: 24px;
}
.msg-box .btn-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.msg-box .btn-box > a, .msg-box .btn-box .btn {
  width: 140px;
  cursor: pointer;
}
.msg-box .btn-box .cancel {
  border: 1px solid #007EC4;
  margin-right: 30px;
  color: #007EC4;
}
.msg-box .btn-box .confirm {
  width: 140px;
  cursor: pointer;
  background: #007EC4;
  height: 44px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  margin-top: 55px;
}

.download-popup {
  width: 690px !important;
}
.download-popup .popup-content {
  margin-top: 30px;
  margin-bottom: 40px;
}
.download-popup .popup-footer {
  padding-bottom: 46px;
}
.download-popup .popup-footer .btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.download-popup .popup-footer .btn-group .btn {
  width: 200px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid #007ec4;
  color: #007ec4;
}
.download-popup .popup-footer .btn-group .btn.icon-close {
  position: relative;
  top: 0;
  right: 0;
}
.download-popup .popup-footer .btn-group .btn.confirm {
  background-color: #007ec4;
  color: #fff;
  margin-left: 60px;
}

.text-gold {
  color: gold;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.test {
  border-radius: 4px;
  color: gold;
}

.text-center {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */