@charset "UTF-8";
/* ==========================================================================
   Table of Contents
   ========================================================================== */
/*

    0.  mixin     :自动化样式
    1.  variables :设置变量
    2.  normalize :跨浏览问题样式标准化
    3.  base      :基本样式
    4.  iconfont  :图标字体
    5.  animate   :动画@keyframe
    6.  main      :样式主文件
    7.  media     :终端区别样式

*/
/* ==========================================================================
    Mixin
   ========================================================================== */
/* ==========================================================================
    Normalize.css v2.1.3 | MIT License | git.io/normalize | (minified)
   ========================================================================== */
article, aside, details,
figcaption, figure,
footer, header, hgroup,
main, nav, section,
summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:active, a:hover {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #FF0;
  color: #000;
}

code, kbd, pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

button, input, select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  border: 0;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button, html input[type="button"],
input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], input[disabled] {
  cursor: default;
  color: #999;
  background-color: #eee;
  opacity: 1;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  line-height: 1;
  color: #000;
  background: #fff;
}

ol, ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

input::-moz-focus-inner, button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

html {
  height: 100%;
  max-height: 100%;
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent;
}

body {
  letter-spacing: 0.01rem;
  font-size: 14px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: 'kern' 1;
  -moz-font-feature-settings: 'kern' 1;
  -o-font-feature-settings: 'kern' 1;
}

a img {
  border: none;
  vertical-align: middle;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* Clears shit */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* Hides shit */
.hidden {
  text-indent: -9999px;
  visibility: hidden;
  display: none;
}

/* ==========================================================================
    Animate keyframes
   ========================================================================== */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ease {
  transition: all .3s ease;
}

@keyframes beating {
  0% {
    bottom: 5px;
  }
  50% {
    bottom: 8px;
  }
  100% {
    bottom: 5px;
  }
}
.fade-in {
  animation: fade-in 0.3s linear;
  transform: translate3d(0, 0, 0);
}
.siyuan {
  font-family: Noto Sans SC;
  font-style: normal;
}

/* ==========================================================================
    Main Style

    0. Framework
    1. index
    2. 
    3. 
    4. 
    5. -
    6. -
    7. -
    8. -

   ========================================================================== */
/* ==========================================================================
   0. Framework
   ========================================================================== */
body {
  font-family: "Microsoft Yahei", Arial, sans-serif !important;
}

a:hover {
  color: inherit;
}

.container {
  width: 1180px;
  margin: 0 auto;
  position: relative;
}
.layui-elip-2 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
}
.layui-elip-3 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
}

/*导航栏*/
.header {
  width: 100%;
  padding: 35px 0 20px;
}
.header .container {
  font-size: 0;
}
.header img {
  width: 380px;
  display: inline-block;
}
.header a {
  display: inline-block;
}
.header a img {
  vertical-align: inherit;
}

.nav-bar {
  font-family: Noto Sans SC;
  width: 100%;
  /*display: inline-block;*/
  text-align: right;
  background-color: #034F9A;
  margin-top: 35px;
}
.nav-bar .nav-box {
  /*display: inline-block;*/
  /*padding: 10px 0;*/
}
.nav-bar .nav-item {
  position: relative;
  float: left;
  padding: 10px 21px;
  color: #FFF;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  position: relative;
  /*transition: all ease .2s;*/
  margin-right: 1px;
  font-weight: 500;
}
.nav-bar .nav-item a {
  font-family: Noto Sans SC;
  color: #FFF;
  vertical-align: bottom;
}
.nav-bar .nav-item:first-child {
  padding-left: 0;
}
.nav-bar .nav-item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.nav-bar .nav-item::after {
  content: '';
  position: absolute;
  width: 1px;
  /*height: 100%;*/
  background-color: #F6F6F6;
  opacity: 0.4;
  right: -1px;
  top: 10px;
  bottom: 10px;
}
.nav-bar .nav-item:last-child::after {
  display: none;
}

/*.nav-bar .nav-item > a {*/
  /*color: #fff;*/
/*}*/

.nav-bar .nav-item .sub-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding-top: 10px;
  z-index: 99;
}
.nav-bar .nav-item .sub-menu div {
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #F6F6F6;
  background-color: #FFF;
}
.nav-bar .nav-item .sub-menu .link-item {
  display: block;
  color: #666;
  font-size: 16px;
  padding: 8px 15px;
  text-align: left;
  text-decoration: none;
  background-color: #fff;
  font-weight: 400;
  line-height: 20px;

}
.nav-bar .nav-item .sub-menu .link-item:hover {
  color: #034F9A;
}
.nav-bar .nav-item.current, .nav-bar .nav-item:hover{
  color: #333;
  background-color: #fff;
}
.nav-bar .nav-item.current:first-child, .nav-bar .nav-item:first-child:hover {
  box-shadow: -10px -10px 0px 10px #fff;
}
.nav-bar .nav-item.current:last-child, .nav-bar .nav-item:last-child:hover {
  box-shadow: 10px 10px 0px 10px #fff;
}
.nav-bar .nav-item::before {
  content: '';
  display: none;
  position: absolute;
  height: 2px;
  top: 0;
  left: 0;
  right: 0;
  background-color: #034F9A;
}
.nav-bar .nav-item:first-child::before {
  left: -30px;
}
.nav-bar .nav-item:last-child::before {
  right: -30px;
}
.nav-bar .nav-item.current::before, .nav-bar .nav-item:hover::before {
  display: block;
}

.nav-bar .nav-item.current a {
  color: #333;
}

.nav-bar .nav-item:hover > a {
  color: #333;
}
.nav-bar .nav-item:hover .sub-menu {
  display: block;
}

/*底部*/
.footer {
  width: 100%;
  padding: 40px 0 30px;
  background-image: url(../images/footer_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.footer .nav-wrapper {
  width: 1072px;
  float: left;
}
.footer .nav-wrapper .nav-f-list {
  float: left;
  width: 134px;
  padding: 0 10px;
  font-size: 14px;
}
.footer .nav-wrapper .nav-f-list:first-child {
  padding-left: 0;
}
.nav-f-header {
  position: relative;
  font-family: Noto Sans SC;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding-bottom: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.nav-f-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -45px;
  height: 1px;
  width: 90px;
  background-color: #595959;
}
.isdouble .nav-f-header span {
  position: relative;
  left: -23px;
}
.isdouble .nav-f-header::before {
  margin-left: -68px;
}
.footer .sub-nav-item {
  text-align: center;
}
.footer .sub-nav-item .single-list {
  display: inline-block;
}
.footer .sub-nav-item a {
  display: block;
  font-family: Noto Sans SC;
  font-size: 14px;
  font-weight: 400;
  color: #444;
  line-height: 18px;
  margin-bottom: 8px;
  text-align: left;
}
.footer .isdouble .sub-nav-item {
  overflow: hidden;
}
.footer .isdouble .sub-nav-item a {
  text-align: left;
}
.footer .sub-nav-item a:hover {
  color: #034F9A;
}
.footer .sub-nav-item a:last-child {
  margin-bottom: 0;
}
.footer .sub-nav-item .double-list {
  float: left;
  width: 50%;
}
.footer .sub-nav-item .double-list:first-child {
  padding-right: 5px;
}
.footer .sub-nav-item .double-list:last-child {
  padding-left: 5px;
}
.footer .qrcode {
  width: 108px;
  float: right;
}
.footer .qrcode p {
  font-size: 14px;
  color: #555;
  text-align: center;
}
.copyright {
  height: 50px;
  line-height: 50px;
  background-color: #666;
  font-size: 14px;
  color: #222;
  text-align: center;
}
.copyright a {
  color: #222;
}
.copyright span:first-child {
  padding-right: 20px;
}


/*首页内容*/
.section {
  margin-bottom: 20px;
}
.left-item {
  float: left;
  width: 904px;
  height: 100%;
  box-sizing: border-box;
}
.right-item {
  float: right;
  width: 256px;
  height: 100%;
  box-sizing: border-box;
}
.left-l-item {
  float: left;
  width: 250px;
  height: 100%;
  box-sizing: border-box;
}
.right-l-item {
  float: right;
  width: 634px;
  height: 100%;
  box-sizing: border-box;
}
.top_item {
  height: 400px;
}
.link-pic {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.pic-info {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #FFF;
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.pic-info .cn-text {
  font-family: Noto Sans SC;
  font-size: 20px;
  font-weight: 500;
}
.pic-info .en-text {
  font-family: Noto Sans SC;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.top_item a {
  display: block;
}
.top_item a img, .link-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exam-item {
  background-color: #E6E6E6;
  /*box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);*/
  /*border: 1px solid rgba(3, 79, 154, 0.5);*/
}
.search-item {
  padding-top: 5px;
  float: right;
}
.search-item .input-group input {
  width: 276px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #034F9A;
  padding: 0 60px 0 20px;
  font-size: 14px;
}
.search-item .input-group {
  position: relative;
}
.search-item .input-group button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #034F9A;
  color: #FFF;
}
.search-item .input-group button .iconfont {
  font-size: 22px;
}
.exam-wrapper {
  height: 100%;
  /*border: 1px solid rgba(3, 79, 154, 0.5);*/
  border-top: none;
  padding: 15px 20px 20px;
  overflow: hidden;
}
.link-header {
  display: block;
  position: relative;
  text-align: left;
}
.link-header .cn-title {
  font-family: Noto Sans SC;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}
.link-header .en-title {
  font-family: Noto Sans SC;
  font-size: 14px;
  line-height: 14px;
  color: #666;
  font-weight: 500;
}
.link-header .layui-icon  {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  color: #B4B4B4;
}
.exam-wrapper .btn-group {
  margin-bottom: 15px;
}
.exam-wrapper .btn-group a {
  display: block;
  width: 100%;
  height: 76px;
  line-height: 76px;
  text-align: center;
  color: #FFF;
  background: linear-gradient(180deg, RGBA(76, 177, 222, 1) 0%, RGBA(123, 207, 243, 1) 100%);
  margin-top: 15px;
  font-size: 28px;
}
.exam-wrapper .btn-group a .iconfont {
  font-size: 35px;
  vertical-align: middle;
  margin-left: 15px;
}
.article-list a {
  font-family: Noto Sans SC;
  font-weight: 400;
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: #666;
  padding-left: 10px;
}
.article-list a:hover {
  color: #034F9A;
}
.article-list li {
  margin-bottom: 20px;
}
.article-list li:last-child {
  margin-bottom: 0;
}
.article-list a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #666;
}
.middle_item {
  height: 416px;
}
.answer-item {
  background-color: #E6E6E6;
  padding: 15px 0 0;
  text-align: center;
}
.answer-item .answer-header {
  margin-bottom: 16px;
  padding: 0 15px;
}
.answer-item .answer-body {
  padding: 0 20px;
}
.answer-item .answer-header img {
  width: 136px;
  height: 183px;
  object-fit: cover;
  vertical-align: middle;
  margin-bottom: 6px;
}
.answer-item .answer-header p {
  font-family: Noto Sans SC;
  font-size: 18px;
  color: #333;
  line-height: 25px;
  font-weight: 500;
}
.answer-swiper {
  margin: 10px 0 0;
  height: 95px;
}
.answer-swiper .swiper-slide {
  height: 26px;
}
.answer-swiper .swiper-slide a {
  font-family: Noto Sans SC;
  font-weight: 400;
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: #666;
  padding-left: 10px;
  text-align: left;
}
.answer-swiper .swiper-slide a:hover {
  color: #034F9A;
}
.answer-swiper .swiper-slide a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #666;
  margin-top: -1px;
}
.answer-swiper>.swiper-pagination-bullets {
  bottom: 0;
}
.swiper-container .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
.swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #034F9A;
}
.up-item {
  height: 192px;
  margin-bottom: 20px;
}
.down-item {
  height: 204px;
}
.article-swiper a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.article-swiper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-swiper .article-title {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #FFF;
  font-family: Noto Sans SC;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  padding: 20px 124px 20px 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.article-swiper>.swiper-pagination-bullets {
  bottom: 27px;
  height: 6px;
  line-height: 6px;
  text-align: right;
  padding-right: 10px;
}
.article-swiper .swiper-pagination-bullet {
  background-color: #FFF;
  opacity: 1;
}
.article-tab {
  position: relative;
  width: 634px;
  height: 100%;
  overflow: hidden;
  float: left;
}
.article-tab .more {
  position: absolute;
  top: 13px;
  right: 0;
  z-index: 10;
}
.article-tab .more a {
  font-size: 14px;
  color: #999;
}
.article-tab .more .layui-icon {
  color: #999;
  font-size: 12px;
}
.article-tab .layui-tab {
  margin: 0;
}
.article-tab .layui-tab-title {
  height: 48px;
  border-bottom-width: 2px
}
.article-tab .layui-tab-title li {
  font-family: Noto Sans SC;
  font-weight: 500;
  line-height: 48px;
  font-size: 20px;
  color: #333;
  margin-right: 30px;
  padding: 0;
}
.layui-tab-title .layui-this:after {
  height: 48px;
}
.article-tab .layui-tab-brief>.layui-tab-title .layui-this {
  color: #034F9A;
}
.article-tab .layui-tab-brief>.layui-tab-title .layui-this:after {
  border-bottom: 2px solid #034F9A;
}
.article-tab .layui-tab-content {
  padding: 16px 0 0;
}
.article-tab .first-article .article-title {
  font-size: 18px;
  line-height: 22px;
  color: #333;
  margin-bottom: 4px;
  font-weight: 500;
}
.article-tab .first-article {
  font-family: Noto Sans SC;
  display: block;
  padding: 12px 0;
  border-bottom: 1px dashed #DDD;
  margin-bottom: 15px;
}
.article-tab .first-article:hover .article-title {
  color: #034F9A;
}
.article-tab .first-article .article-content {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  font-weight: 400;
}
.article-tab .date-list a {
  font-family: Noto Sans SC;
  font-weight: 400;
}
.date-list a {
  position: relative;
  display: block;
  padding: 0 110px 0 12px;
  font-size: 16px;
  line-height: 16px;
  color: #666;
}
.date-list a:hover {
  color: #034F9A;
}
.date-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #666;
  margin-top: -1px;
}
.date-list a span {
  position: absolute;
  right: 0;
  font-size: 14px;
  color: #999;
}
.date-list li {
  margin-bottom: 20px;
}
.date-list li:last-child {
  margin-bottom: 0;
}
.association_council {
  width: 250px;
  float: right;
}
.bottom_item {
  /*height: 270px;*/
  margin-bottom: 30px;
}
.bottom_item .left-item, .bottom_item .right-item {
  min-height: 485px;
}
.standardized {
  padding: 20px 20px 16px;
  background-color: #E6E6E6;
}
.standardized .en-title {
  letter-spacing: -1px;
}
.standardized .article-list {
  margin-top: 12px;
}
.standardized .article-list a {
  line-height: 24px;
}
.standardized .article-list li {
  margin-bottom: 8px;
}
.standardized .article-list li:last-child {
  margin-bottom: 0;
}
.standardized .article-list a::after {
  top: 11px;
}
.enter-item .enter {
  display: block;
  float: left;
  width: 211px;
  height: 137px;
  border: 1px solid rgba(3, 79, 154, 0.5);
  background-color: #D6E5F4;
  margin-right: 20px;
  box-sizing: border-box;
  text-align: center;
  padding: 22px 0;
}
.enter-item .enter:last-child {
  margin-right: 0;
}
.enter-item .enter .iconfont {
  display: inline-block;
  line-height: 55px;
  font-size: 55px;
  color: #034F9A;
  margin-bottom: 8px;
}
.enter-item .enter p {
  font-size: 20px;
  color: #333;
}
.friendly-link .title {
  font-family: Noto Sans SC;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: #333;
  margin-top: 20px;
  padding-bottom: 10px;
  font-weight: 500;
  border-bottom: 2px solid #034F9A;
}
.friendly-link .layui-row  {
  margin-top: 10px;
}
.friendly-link .layui-col-md3 {
  padding: 0 10px;
  box-sizing: border-box;
  margin-bottom: 8px;
}
/*.friendly-link .layui-col-md3:nth-child(4n + 1) {*/
  /*padding-left: 0;*/
/*}*/
/*.friendly-link .layui-col-md3:nth-child(4n) {*/
  /*padding-right: 0;*/
/*}*/
.friendly-link .layui-col-md3 a {
  display: block;
  font-family: Noto Sans SC;
  font-size: 14px;
  font-weight: 400;
  padding-left: 10px;
  position: relative;
  color: #333;
}
.friendly-link .layui-col-md3 a:hover {
  color: #034F9A;
}
.friendly-link .layui-col-md3 a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #666;
  margin-top: -1px;
}
#clsbzs .layui-col-md3 {
  margin-bottom: 0;
}
#clsbzs .layui-col-md3 a {
  padding-left: 0;
}
#clsbzs .layui-col-md3 a::before {
  display: none;
}
#clsbzs .layui-col-md3 a img {
  width: 100%;
}


/*列表*/
.content-body {
  margin-top: 15px;
}
.path {
  text-align: right;
  font-size: 0;
  color: #666;
}
.path #path-route {
  display: inline-block;
}
.path a, .path span, .path div {
  font-size: 14px;
}
.path .arrow {
  padding: 0 5px;
}
.path a:hover {
  color: #034F9A;
}
.path .current {
  color: #034F9A;
}
.body-item {
  margin-top: 10px;
}
.articleBody {
  margin-bottom: 110px;
}
.sub-left {
  float: left;
  width: 250px;
}
.sub-right {
  float: right;
  width: 918px;
}
.column-name {
  position: relative;
  width: 100%;
  height: 160px;
  line-height: 1.2;
  color: #FFF;
  background: url('../images/column-bg.png') no-repeat 50% 45%;
}
.column-name div {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.column-name .cn {
  font-size: 20px;
  margin-bottom: 5px;
  text-align: center;
}
.column-name .en {
  font-size: 18px;
  text-align: center;
}
.column-list {
  min-height: 600px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  margin-top: 12px;
}
.column-list li {
  font-size: 18px;
  line-height: 24px;
  border-bottom: 1px solid #E0E0E0;
}
.column-list li a {
  display: block;
  color: #666;
  padding: 13px 20px 13px 30px;
}
.column-list li.current {
  background-color: #034F9A;
}
.column-list li.current span {
  position: relative;
  color: #FFF;
}
.column-list li.current span::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFF;
  margin-top: -4px;
}
.sub-right img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.column-article {
  margin-top: 12px;
}
.column-article .first-list {
  display: block;
  border: 1px solid #E3E3E3;
  padding: 30px 20px;
  margin-bottom: 10px;
}
.column-article .first-list:hover .title {
  color: #034F9A;
}
.first-list .list-header {
  position: relative;
  padding-right: 40px;
  margin-bottom: 12px;
}
.first-list .list-header .iconfont {
  position: absolute;
  right: 0;
  font-size: 18px;
  line-height: 18px;
  color: #B4B4B4;
}
.first-list .list-header .title {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding-right: 120px;
  font-size: 20px;
  line-height: 20px;
  color: #333;
}
.first-list .list-header .title span {
  position: absolute;
  color: #A7A7A7;
  right: 0;
}
.column-article .first-list .article-content {
  line-height: 24px;
}
.column-article .article-content {
  font-size: 16px;
  line-height: 16px;
  color: #666;
}
.column-article .list {
  position: relative;
  display: block;
  padding: 33px 30px 33px 135px;
  line-height: 1;
  margin-bottom: 10px;
}
.column-article a.list:hover .list-title {
  color: #034F9A;
}
.column-article .list:last-child {
  margin-bottom: 0;
}
.column-article .list:nth-child(odd) {
  background-color: #F7F7F7;
}
.column-article .list .list-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
.column-article .list .list-content {
  font-size: 16px;
  color: #666;
}
.column-article .list-date {
  position: absolute;
  top: 50%;
  left: 30px;
  padding-right: 15px;
  transform: translateY(-50%);
  text-align: center;
  border-right: 1px dashed #DDD;
}
.column-article .list-date .day {
  font-size: 40px;
  color: #989898;
}
.column-article .list-date .year_month {
  font-size: 16px;
  color: #666;
}
.list-article .list {
  padding: 27px 15px 27px 135px;
  margin-bottom: 0;
}
.list-article .list-date .year_month {
  font-size: 14px;
}
.list-article .list-date .day {
  font-size: 24px;
  margin-bottom: 5px;
}
.list-article .list .list-title {
  margin-bottom: 0;
}


/*图片列表*/
.img-article {
  font-size: 0;
}
.column-article .img-list {
  display: inline-block;
  width: 272px;
  margin-right: 50px;
  margin-bottom: 40px;
  vertical-align: top;
}
.column-article .img-list:nth-child(3n+3) {
  margin-right: 0;
}
.column-article .img-list:last-child {
  marin-right: 0;
}
.img-list .pic-item {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.img-list .pic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.img-list:hover .pic-item img {
  transform: scale(1.2);
}
.img-list:hover .article-title {
  color: #034F9A;
}
.img-list .article-title {
  font-size: 20px;
  line-height: 28px;
  color: #333;
  text-align: center;
  margin-top: 12px;
  max-height: 56px;
  overflow: hidden;
}

.join-item .img-list {
  margin-right: 0;
  margin-bottom: 50px;
}

.join-list .article-title {
  max-height: none;
}




/*考试列表*/
.column-article .exam-list {
  padding-right: 140px;
}
.column-article .exam-list:nth-child(odd) {
  background-color: #FFF;
}
.column-article .exam-list:nth-child(even) {
  background-color: #F7F7F7;
}
.exam-list button {
  position: absolute;
  right: 0;
  top: 50%;
  width: 104px;
  height: 42px;
  box-sizing: border-box;
  font-size: 18px;
  margin-top: -21px;
  background-color: #034F9A;
  border-radius: 4px;
}
.exam-list .nojoin {
  background-color: #FFF;
  color: #034F9A;
  border: 1px solid #034F9A;
}
.exam-join {
  display: block;
  width: 104px;
  height: 42px;
  box-sizing: border-box;
  font-size: 18px;
  background-color: #034F9A;
  border-radius: 4px;
  margin-bottom: 30px;
}




/*文章详情*/
.article-detail {
  margin-top: 12px;
}
.detail-header {
  padding: 6px 0;
  border-bottom: 1px solid #DDD;
}
.detail-header .title {
  font-size: 20px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  font-family: Noto Sans SC;
  font-weight: 500;
}
.committee-detail .detail-header {
  border-bottom: none;
}
.detail-header .committee-title {
  font-family: Noto Sans SC;
  font-size: 20px;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.detail-header.noshare {
  border-bottom: 0;
  padding-bottom: 0;
}
.detail-header.noshare .title {
  margin-bottom: 0;
}
.committee-detail .committee-content {
  margin: 10px 0 0;
  font-family: Noto Sans SC;
  font-weight: 400;
  overflow: hidden;
}
.committee-left img {
  width: 161px;
  height: 100%;
}
.committee-intro {
  width: 161px;
}
.committee-intro .name_job {
  width: 100%;
  font-size: 20px;
  line-height: 1;
  color: #333;
  margin: 10px 0;
  font-weight: 500;
}
.committee-intro .name {
  display: block;
  margin-bottom: 10px;
}
.committee-intro .job {
  display: block;
}
.committee-intro .intro {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.committee-left {
  float: left;
  padding: 0 40px 40px 0;
}
.committee-right p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.3px;
  color: #666;
  text-indent: 2em;
}
.committee-group {
  position: relative;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  margin-top: 12px;
  padding-left: 315px;
}
.committee-group .label {
  position: absolute;
  top: 0;
  left: 201px;
}

.detail-header .article-info {
  text-align: center;
  font-family: Noto Sans SC;
}
.detail-header .article-info div {
  display: inline-block;
  font-size: 14px;
  color: #999;
  margin-right: 30px;
}
.detail-header .article-info .shareWX {
  position: relative;
  margin-right: 0;
  cursor: pointer;
}
.detail-header .article-info .shareWX:hover .wxQrcode-box {
  display: block !important;
}
.wxQrcode-box {
  display: none !important;
  position: absolute;
  top: 20px;
  left: 8px;
  transform: translateX(-50%);
  margin-right: 0 !important;
  padding-top: 10px;
}
.wxQrcode {
  margin-right: 0 !important;
  padding: 15px;
  width: 200px;
  height: 200px;
  background-color: #FFF;
  box-shadow: 0px 0px 10px 4px #ececec;
}
.wxQrcode img {
  width: 170px;
  height: 170px;
}
.detail-header .article-info div:first-child {
  margin-right: 50px;
}
.detail-header .article-info .share .iconfont {
  margin-right: 5px;
  cursor: pointer;
}
.detail-content {
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin: 16px 0 30px;
  font-family: Noto Sans SC;
  font-weight: 400;
}
.detail-content * {
  font-family: Noto Sans SC !important;
  background-color: #FFF !important;
  font-size: 16px !important;
  line-height: 2 !important;
  color: #666 !important;
  /*font-weight: 400 !important;*/
  font-style: normal !important;
  max-width: 918px !important;
}
.detail-content img, .detail-content video {
  max-width: 100% !important;
  width: auto;
  height: auto;
}
.file-body {
  display: none;
  margin-bottom: 30px;
  font-family: Noto Sans SC;
}
.file-body h3 {
  font-size: 22px;
  color: #034F9A;
  margin-bottom: 10px;
}
.file-body a {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 6px;
}
.file-body a:last-child {
  margin-bottom: 0;
}

.join-file {
  margin-top: 40px;
}
.join-file li {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 12px;
}
.join-file li a {
  display: inline-block;
  color: #034F9A;
}
.detail-footer {
  font-family: Noto Sans SC;
}
.detail-footer .back {
  font-size: 16px;
  color: #034F9A;
  cursor: pointer;
}
.turn-page {
  font-size: 16px;
  color: #666;
  margin-top: 4px;
}
.turn-page a {
  color: #666;
}
.turn-page a:hover {
  color: #034F9A;
}



/*专家答疑*/
.answer-wrapper {
  margin-top: 12px;
}
.answer-list {
  position: relative;
  padding: 12px 0;
  padding-left: 24px;
  border-bottom: 1px dashed #BBB;
}
.answer-list * {
  font-size: 16px !important;
  line-height: 24px !important;
  letter-spacing: 0.3px !important;
  color: #555 !important;
}
.answer-list:last-child {
  border-bottom: none;
}
.answer-list .index {
  position: absolute;
  top: 12px;
  left: 0;
  font-weight: 500;
}
.answer-box {
}
.answer, .question {
  font-family: Noto Sans SC !important;
  position: relative;
  padding-left: 32px;
}
.answer *, .question * {
  font-family: Noto Sans SC !important;
}

.answer .label, .question .label {
  position: absolute;
  left: 0;
}
.answer, .answer * {
  font-weight: 500 !important;
}
.question {
  margin-top: 5px;
}
.question, .question * {
  color: #666 !important;
  font-weight: 400 !important;
}
.answer.again {
  margin-top: 10px;
}
.answer.again, .question.again {
  padding-left: 48px;
}




/*搜索列表*/
.search-wrapper {
  margin-top: 12px;
}
.search-wrapper .input-group input {
  width: 826px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #BBB;
  box-sizing: border-box;
  padding: 0 20px;
}
.search-wrapper .input-group button {
  height: 50px;
  line-height: 50px;
  color: #FFF;
  background-color: #034F9A;
  border-radius: 2px;
  font-size: 18px;
  padding: 0 20px;
  margin-left: 11px;
}
.search-wrapper .layui-form-radio {
  line-height: 20px;
  padding-right: 0;
}
.search-wrapper .layui-form-radio * {
  font-size: 12px;
  color: #666;
}
.search-wrapper .layui-form-radio>i {
  font-size: 14px;
  margin-right: 5px;
}
.search-wrapper .layui-form-radio>i:hover, .search-wrapper .layui-form-radioed>i {
  color: #034F9A;
}
.search-list {
  margin-top: 4px;
}
.search-list .date-list a {
  padding-left: 0;
}
.search-list .date-list a::before {
  display: none;
}
.search-list .date-list a span {
  font-size: 16px;
}
.search-list .date-list li {
  margin-bottom: 0;
  padding: 14px 0;
  border-bottom: 1px dashed #CCC;
}


.noDate {
  font-size: 16px;
  color: #666;
  padding-top: 15px;
}

/*.loadingWrapper{*/
  /*text-align: center;*/
  /*margin-bottom: 40px;*/
  /*margin-top: 12px;*/
/*}*/
/*.loadingWrapper img {*/
  /*width: 50px;*/
  /*height: auto;*/
/*}*/





.keyword-show {
  font-size: 16px;
}

#page-nav {
  text-align: right;
  margin: 28px 0 110px;
}
#page-nav .layui-laypage {
  margin: 0;
}
#page-nav .layui-laypage a:hover {
  color: #3058b6;
}
#page-nav .layui-laypage a, #page-nav .layui-laypage span, #page-nav .layui-laypage button, #page-nav .layui-laypage input {
  font-size: 14px;
  color: #666;
}

.article-header {
  margin-top: 60px;
  border-bottom: 4px solid #3058B6;
  padding-bottom: 5px;
}
.article-header .title {
  display: block;
  max-width: 735px;
  margin: 0 auto;
  font-size: 26px;
  text-align: center;
}
.article-header .info {
  max-width: 635px;
  margin: 30px auto 0;
  font-size: 14px;
  text-align: center;
  color: #595858;
}
.article-header .info .item {
  margin-right: 25px;
}

.article-body {
  font-size: 16px;
  padding: 30px 0;
}

.article-nav {
  height: 50px;
  background-color: #DBDBDB;
}
.article-nav .nav-link {
  line-height: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  overflow: hidden;
}

.article-nav .nav-link label {
  display: inline-block;
}

.article-nav .nav-link .title {
  display: inline-block;
  width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-nav .nav-link .layui-icon {
  display: inline-block;
  vertical-align: top;
}
.article-nav .nav-link:hover {
  color: #0A4A87;
}

.article-nav .nav-link.prev,
.article-nav .nav-link.prev .layui-icon,
.article-nav .nav-link.prev label,
.article-nav .nav-link.next label {
  float: left;
}

.article-nav .nav-link.next .layui-icon {
  float: right;
}

.article-nav .nav-link.next {
  float: right;
  text-align: right;
}

.omit-after {
  position: relative;
}
.omit-after:before{
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 40px;
  background: -webkit-linear-gradient(left, transparent, #fff 55%);
  background: -moz-linear-gradient(left, transparent, #fff 55%);
  background: -o-linear-gradient(left, transparent, #fff 55%);
  background: linear-gradient(to right, transparent, #fff 55%);
}



/*证书查询*/
.certificate-wrapper {
  padding: 30px 0 0 30px;
}
.certificate-wrapper .up, .certificate-wrapper .down {
  overflow: hidden;
}
.certificate-wrapper .certificate-item {
  width: 392px;
  float: left;
  text-align: center;
  margin-bottom: 30px;
}
.certificate-wrapper .up .certificate-item:last-child, .certificate-wrapper .down .certificate-item:last-child  {
  float: right;
}
.certificate-wrapper .certificate-item .certificate-title {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 18px;
}
.certificate-item .certificate-img {
  height: 140px;
  width: auto;
}
.certificate-item .certificate-oper {
  margin-top: 20px;
}
.certificate-item .certificate-oper input {
  width: 280px;
  height: 46px;
  border: 1px solid #DDD;
  box-sizing: border-box;
  font-size: 18px;
  padding: 0 16px;
}
.certificate-item .certificate-oper button {
  font-size: 18px;
  color: #FFF;
  line-height: 46px;
  background-color: #034F9A;
  border-radius: 2px;
  padding: 0 30px;
  vertical-align: bottom;
  margin-left: 10px;
}
.certificate-item .certificate-oper button[disabled] {
  opacity: 0.5;
}
.certificate-result {
  min-height: 202px;
  margin-top: 20px;
}
.certificate-result .loading {
  font-size: 16px;
  color: #999;
  margin-top: 10px;
}
.certificate-result .loading .layui-icon {
  display: inline-block;
  font-size: 26px;
  vertical-align: middle;
  margin-right: 10px;
}
.certificate-result .certificate-info {
  background-color: #F2F2F2;
  /*padding: 11px 15px;*/
  border: 1px solid #DDD;
  max-height: 202px;
  box-sizing: border-box;
  overflow-y: auto;
}
.certificate-result .certificate-info .layui-collapse, .certificate-result .certificate-info .layui-colla-item {
  border: none;
}
.certificate-result .certificate-info .layui-colla-title {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  background-color: transparent;
  text-align: left;
}
.certificate-result .certificate-info .layui-colla-item .colla-name {
  display: inline-block;
  width: 100px;
}
.certificate-result .certificate-info .layui-colla-item .code {
  display: inline-block;
  width: 190px;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.certificate-result .layui-colla-item .status {
  position: absolute;
  right: 15px;
  display: inline-block;
  color: #034F9A;
}
.certificate-result .layui-colla-item .status .layui-icon {
  display: inline-block;
  font-size: 12px;
  margin-left: 4px;
  transition: all 0.3s ease;
}
.certificate-result .layui-colla-item .zhankai .layui-icon {
  transform: rotate(180deg);
}
.certificate-result .certificate-info .layui-colla-content {
  background-color: #FFF;
  overflow: hidden;
}
.certificate-result .certificate-info .layui-colla-icon {
  display: none;
}
.certificate-result .certificate-info .info-list {
  position: relative;
  padding-left: 72px;
  min-height: 22px;
  overflow: hidden;
}
.certificate-info .info-list .label {
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  font-size: 14px;
  text-align: justify;
}
.certificate-info .info-list .label::after {
  content: '';
  display: inline-block;
  width: 100%;
}
.certificate-info .info-list .val {
  font-size: 14px;
  color: #888;
  text-align: left;
}
