@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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.base {
  position: relative;
}

.fixed {
  position: fixed !important;
  top: 0;
  z-index: 1000;
}

a:hover {
  font-weight: bolder;
}

body {
  width: 100%;
  min-width: 1200px;
  overflow-x: hidden;
  overflow-y: scroll;
  /* 启用自定义滚动条，并设置容器属性 */
  /* 滚动条凹槽，还可以设置边框属性。此处属性也可以直接在容器中设置 */
  /* 滚动条 */
}

body::-webkit-scrollbar {
  /* 这里的宽是指竖向滚动条的宽，高是指横向滚动条的高*/
  width: 6px;
  height: 6px;
  background: transparent;
}

body::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #cbcbcb;
}

.app {
  position: relative;
}

#header {
  background-color: #ffffff;
  z-index: 10000;
}

#header .header-panel {
  width: 100%;
  min-width: 1200px;
}

#header .header-panel .logo-panel {
  width: 1200px;
  height: 100px;
  margin: 0 auto;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#header .header-panel .logo-panel .link-logo {
  display: inline-block;
  font-size: 0;
}

#header .header-panel .logo-panel .link-logo .logo1 {
  width: 190px;
  height: 60px;
}

#header .header-panel .logo-panel .link-logo .logo2 {
  width: 290px;
  height: 59px;
}

#header .header-panel .logo-panel .link-ad {
  display: inline-block;
  font-size: 0;
}

#header .header-panel .logo-panel .link-ad .adtop {
  width: 600px;
  height: 70px;
}

#header .header-panel .nav-content {
  width: 100%;
  background: #006EDC;
}

#header .header-panel .nav-content .nav {
  width: 1200px;
  height: 60px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#header .header-panel .nav-content .nav .link-nav-item {
  display: inline-block;
  width: 170px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: transparent;
  -webkit-transition: all 0.5ms;
  transition: all 0.5ms;
}

#header .header-panel .nav-content .nav .link-nav-item.active, #header .header-panel .nav-content .nav .link-nav-item:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

#header .header-panel .nav-content .nav .search-entry {
  position: relative;
  background-image: url("../images/search1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

#header .header-panel .nav-content .nav .search-entry .search-box {
  position: absolute;
  top: 50px;
  right: 10px;
  width: 240px;
  height: 52px;
  border-radius: 4px;
  background-color: #ffffff;
  z-index: 9999999;
  pointer-events: auto;
}

#header .header-panel .nav-content .nav .search-entry .search-box.una {
  display: none;
}

#header .header-panel .nav-content .nav .search-entry .search-box #search {
  width: 100%;
  padding-left: 15px;
  padding-right: 52px;
  line-height: 52px;
  font-size: 14px;
  color: #757575;
  background-color: transparent;
  outline: none;
  text-decoration: none;
  border: none;
}

#header .header-panel .nav-content .nav .search-entry .search-box .dosearch {
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/search2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  width: 52px;
  height: 52px;
}

#header .icon_effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 109px;
  overflow: hidden;
  z-index: 0;
}

#header .icon_effect .hd_icimg {
  position: absolute;
}

#header .icon_effect .hd_ic-1 {
  width: 96px;
  height: 102px;
  top: 12px;
  left: 2.5%;
  background-image: url(../images/hd_ic-1.png);
}

#header .icon_effect .hd_ic-2 {
  width: 63px;
  height: 63px;
  top: 7px;
  left: 14%;
  background-image: url(../images/hd_ic-2.png);
}

#header .icon_effect .hd_ic-3 {
  width: 72px;
  height: 72px;
  top: 0;
  left: 40.5%;
  background-image: url(../images/hd_ic-3.png);
}

#header .icon_effect .hd_ic-4 {
  top: 36px;
  right: 40%;
  width: 66px;
  height: 75px;
  background-image: url(../images/hd_ic-4.png);
}

#header .icon_effect .hd_ic-5 {
  top: 44px;
  right: 12%;
  width: 76px;
  height: 73px;
  background-image: url(../images/hd_ic-5.png);
}

#header .icon_effect .hd_ic-6 {
  top: 20px;
  right: 1.5%;
  width: 98px;
  height: 86px;
  background-image: url(../images/hd_ic-6.png);
}

#header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

#header.fixed .header-panel .logo-panel {
  height: 0 !important;
  overflow: hidden;
  -webkit-transition: all 0.2ms ease;
  transition: all 0.2ms ease;
}

#header.fixed .icon_effect {
  display: none !important;
}

.index-top-layout {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}

.index-top-layout:before {
  clear: both;
  content: "";
  overflow: hidden;
}

.index-top-layout .header-swiper {
  position: relative;
  width: 100%;
  min-width: 1200px;
}

.index-top-layout .header-swiper .layoutssb.swiper-button-prev {
  left: 50%;
  margin-left: -700px;
  background: url("../images/prev.png") no-repeat center;
  width: 100px;
  height: 100px;
}

.index-top-layout .header-swiper .layoutssb.swiper-button-prev::after {
  content: '' !important;
}

.index-top-layout .header-swiper .layoutssb.swiper-button-next {
  right: 50%;
  margin-right: -700px;
  background: url("../images/next.png") no-repeat center;
  width: 100px;
  height: 100px;
}

.index-top-layout .header-swiper .layoutssb.swiper-button-next::after {
  content: '' !important;
}

.index-top-layout .header-swiper .swiper-item {
  display: block;
  font-size: 0;
}

.index-top-layout .header-swiper .swiper-item .layout-img {
  width: 100%;
}

.main-container {
  position: relative;
  width: 1200px;
  min-height: 615px;
  margin: 0 auto;
}

.main-container:before {
  clear: both;
  content: "";
  overflow: hidden;
}

.main-container .module {
  position: relative;
  width: 1200px;
}

.main-container .module.content {
  z-index: 1000;
  width: 100%;
  height: 70px;
  position: relative;
  overflow: unset;
  padding: unset;
}

.main-container .module.content .content-1200 {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-container .module.content .content-1200 .lv2-nav-entry {
  width: 1200px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-container .module.content .content-1200 .lne-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: url("../images/lne_link_bg.png") no-repeat center;
  background-size: contain;
  width: 191px;
  height: 70px;
  cursor: pointer;
}

.main-container .module.content .content-1200 .lne-link img {
  width: 30px;
  height: auto;
  margin-right: 10px;
  pointer-events: none;
}

.main-container .module.content .content-1200 .lne-link p {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: 28px;
  pointer-events: none;
}

.main-container .module.content .content-1200 .lne-link:hover {
  background: url("../images/lne_link_hover.png") no-repeat center;
}

.main-container .module.content .content-1200 .lne-link:hover img {
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.main-container .module.content .content-1200 .lne-link:hover p {
  font-weight: bolder;
  font-size: 20px;
  -webkit-transition: all 0.2ms ease;
  transition: all 0.2ms ease;
}

.main-container .module.nav {
  width: 1200px;
  height: 124px;
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: #FFFFFF;
  padding: 10px 0;
  -webkit-box-shadow: 3px 4px 5px 0px rgba(210, 210, 210, 0.1);
          box-shadow: 3px 4px 5px 0px rgba(210, 210, 210, 0.1);
}

.main-container .module.nav .nav-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-container .module.nav .nav-area::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: #E6E6E6;
}

.main-container .module.nav .nav-area:last-child::after {
  content: unset;
}

.main-container .module.nav .nav-area .nav-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 30px;
}

.main-container .module.nav .nav-area .nav-group .ng-title {
  position: relative;
  width: 100px;
  height: 24px;
  font-size: 16px;
  font-weight: bold;
  color: #3C3C3C;
  line-height: 24px;
  padding-left: 15px;
  margin: 10px 0;
}

.main-container .module.nav .nav-area .nav-group .ng-title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #006EDC;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.main-container .module.nav .nav-area .nav-group .ng-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-container .module.nav .nav-area .nav-group .ws-nav-link {
  white-space: nowrap;
  padding: 10px 15px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #3C3C3C;
  line-height: 24px;
}

.main-container .module.nav .nav-area .nav-group .ws-nav-link:hover {
  font-weight: bolder;
  color: #4497df;
}

.main-container .module.picture {
  width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 20px;
  margin-top: 30px;
}

.main-container .module.picture .pic-swiper, .main-container .module.picture .pic-entry {
  position: relative;
  width: 585px;
  height: 330px;
}

.main-container .module.picture .pic-swiper .swiper-item {
  position: relative;
  display: block;
  width: 585px;
  height: 330px;
}

.main-container .module.picture .pic-swiper .swiper-item .pic-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 585px;
  height: 330px;
}

.main-container .module.picture .pic-swiper .swiper-item .pic-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 585px;
  height: 330px;
  background: url("../images/pic-side-mask.png") no-repeat center;
}

.main-container .module.picture .pic-swiper .swiper-item .pic-mask .pic-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 500px;
  padding-left: 30px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-container .module.picture .pic-swiper .picturessb.swiper-pagination {
  z-index: 1000;
  width: 100px;
  line-height: 56px;
  text-align: center;
  left: unset;
  bottom: 0 !important;
  right: 0 !important;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
}

.main-container .module.picture .pic-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-container .module.picture .pic-entry .entry-link {
  display: inline-block;
  font-size: 0px;
}

.main-container .module.picture .pic-entry .entry-link:nth-child(1) {
  margin-bottom: 30px;
}

.main-container .module.picture .pic-entry .entry-link:nth-child(2) {
  margin-bottom: 30px;
}

.main-container .module.picture .pic-entry .entry-img {
  width: 277px;
  height: 150px;
}

.main-container .module.committee {
  padding: 10px 0;
}

.main-container .module.unit {
  padding: 10px 0 80px;
}

.main-container .module .module-title {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #3C3C3C;
  line-height: 48px;
  padding-left: 23px;
}

.main-container .module .module-title::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 3px;
  height: 16px;
  background: #006EDC;
}

.main-container .module .swiper-row {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
}

.main-container .module .swiper-row .committeessb.swiper-button-prev {
  left: -100px;
  background: url("../images/prev.png") no-repeat center;
  width: 100px;
  height: 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-container .module .swiper-row .committeessb.swiper-button-prev::after {
  content: '' !important;
}

.main-container .module .swiper-row .committeessb.swiper-button-next {
  right: -100px;
  background: url("../images/next.png") no-repeat center;
  width: 100px;
  height: 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-container .module .swiper-row .committeessb.swiper-button-next::after {
  content: '' !important;
}

.main-container .module .swiper-row .swiper-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-container .module .swiper-row .swiper-item .image {
  width: 277px;
  height: 150px;
}

.main-container .module .swiper-row .swiper-item div {
  width: 277px;
  height: 200px;
  background: #FFFFFF;
  border: 1px solid #E1E1E1;
  padding: 20px;
}

.main-container .module .swiper-row .swiper-item h4 {
  width: 225px;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
  color: #3C3C3C;
  line-height: 24px;
  margin-bottom: 20px;
}

.main-container .module .swiper-row .swiper-item p {
  width: 238px;
  height: 92px;
  font-size: 14px;
  font-weight: 400;
  color: #646464;
  line-height: 20px;
}

.main-container .module .committee-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-container .module .committee-info .committee-class, .main-container .module .committee-info .committee-welfare {
  display: inline-block;
  width: 585px;
  background: #FFFFFF;
  -webkit-box-shadow: 3px 4px 5px 0px rgba(210, 210, 210, 0.1);
          box-shadow: 3px 4px 5px 0px rgba(210, 210, 210, 0.1);
  border-top: 2px #006EDC solid;
  padding: 0 30px;
}

.main-container .module .committee-info .committee-class .committee-list, .main-container .module .committee-info .committee-welfare .committee-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-container .module .committee-info .committee-class .committee-item, .main-container .module .committee-info .committee-welfare .committee-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: 1px #E6E6E6 solid;
  padding: 20px 0;
  cursor: pointer;
}

.main-container .module .committee-info .committee-class .committee-item.news-report .com-item, .main-container .module .committee-info .committee-class .committee-item.news-report .com-item-title, .main-container .module .committee-info .committee-class .committee-item.news-report .com-item-desc, .main-container .module .committee-info .committee-welfare .committee-item.news-report .com-item, .main-container .module .committee-info .committee-welfare .committee-item.news-report .com-item-title, .main-container .module .committee-info .committee-welfare .committee-item.news-report .com-item-desc {
  width: 100%;
}

.main-container .module .committee-info .committee-class .committee-item.news-report .com-item, .main-container .module .committee-info .committee-welfare .committee-item.news-report .com-item {
  height: auto;
}

.main-container .module .committee-info .committee-class .committee-item.news-report .com-item-desc, .main-container .module .committee-info .committee-welfare .committee-item.news-report .com-item-desc {
  line-height: 22px;
}

.main-container .module .committee-info .committee-class .committee-item:hover .com-item-title, .main-container .module .committee-info .committee-class .committee-item:hover .com-item-desc, .main-container .module .committee-info .committee-welfare .committee-item:hover .com-item-title, .main-container .module .committee-info .committee-welfare .committee-item:hover .com-item-desc {
  font-weight:  bolder;
  color: #4497df;
}

.main-container .module .committee-info .committee-class .com-img, .main-container .module .committee-info .committee-class .committee-img, .main-container .module .committee-info .committee-welfare .com-img, .main-container .module .committee-info .committee-welfare .committee-img {
  width: 170px;
  height: 92px;
  margin-right: 20px;
}

.main-container .module .committee-info .committee-class .com-item, .main-container .module .committee-info .committee-welfare .com-item {
  width: 335px;
  height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  justify-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10px;
}

.main-container .module .committee-info .committee-class .com-item-title, .main-container .module .committee-info .committee-welfare .com-item-title {
  width: 335px;
  height: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #323232;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  margin-bottom: 20px;
}

.main-container .module .committee-info .committee-class .com-item-desc, .main-container .module .committee-info .committee-welfare .com-item-desc {
  width: 335px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #646464;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main-container .module .committee-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.main-container .module .committee-header .committee-title {
  font-size: 16px;
  font-weight: bold;
  color: #006EDC;
  line-height: 28px;
  line-height: 54px;
}

.main-container .module .committee-header .more-link {
  font-size: 14px;
  font-weight: 400;
  color: #969696;
  line-height: 28px;
  line-height: 54px;
}

.main-container .module .member-unit {
  width: 1200px;
  height: 240px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.main-container .module .member-unit .logo-item {
  height: 120px;
  white-space: nowrap;
}

.main-container .module .member-unit .logo-link {
  display: inline-block;
  width: 191px;
  font-size: 0;
  margin: 10px;
  overflow: hidden;
}

.main-container .module .member-unit .logo-view {
  width: 191px;
  height: 100px;
}

#footer .footer-panel {
  width: 100%;
  min-width: 1200px;
}

#footer .footer-panel .footer-info {
  width: 100%;
  height: 145px;
  background: #282828;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer .footer-panel .footer-info .company-info, #footer .footer-panel .footer-info .media-info {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#footer .footer-panel .footer-info .company-info .info-title, #footer .footer-panel .footer-info .company-info .out-link, #footer .footer-panel .footer-info .company-info .divider, #footer .footer-panel .footer-info .media-info .info-title, #footer .footer-panel .footer-info .media-info .out-link, #footer .footer-panel .footer-info .media-info .divider {
  width: 145px;
  font-size: 13px;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
}

#footer .footer-panel .footer-info .company-info .info-content, #footer .footer-panel .footer-info .media-info .info-content {
  width: 1055px;
  text-align: left;
  font-size: 13px;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
}

#footer .footer-panel .footer-info .company-info .divider, #footer .footer-panel .footer-info .media-info .divider {
  padding: 0 3.5px;
}

#footer .footer-panel .footer-info .media-info {
  margin-top: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#footer .footer-panel .copyright {
  width: 100%;
  height: 120px;
  background: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer .footer-panel .copyright .text-link {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
}

.tag-top {
  position: fixed;
  top: 70%;
  right: 50%;
  -webkit-transform: translateX(610px);
          transform: translateX(610px);
  z-index: 1200;
  display: inline-block;
  background: url("../../static/img/common/slide-bar-top.png") no-repeat center;
  width: 58px;
  height: 40px;
}

#aside-menu {
  position: fixed;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  width: 60px;
  z-index: 2000;
  background-color: #ffffff;
  border: 1px #e6e6e6 solid;
  z-index: 2000;
  margin-left: 660px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: -10;
}

#aside-menu.active {
  display: block;
  z-index: 50000;
}

#aside-menu .menu-nav .nav-item {
  position: relative;
}

#aside-menu .menu-nav .nav-item:last-child {
  border-top: 1px #bfbfbf solid;
}

#aside-menu .menu-nav .nav-item .link {
  display: block;
}

#aside-menu .menu-nav .nav-item .link.nav-cadpa {
  background: url("../images/menu-cadpa.jpg") no-repeat;
  width: 30px;
  height: 24px;
  margin: 20px auto;
}

#aside-menu .menu-nav .nav-item .link.nav-weibo {
  background: url("../images/menu-weibo.png") no-repeat;
  width: 30px;
  height: 24px;
  margin: 20px auto;
}

#aside-menu .menu-nav .nav-item .link.nav-wechat {
  background: url("../images/menu-wechat.png") no-repeat;
  width: 30px;
  height: 24px;
  margin: 20px auto;
}

#aside-menu .menu-nav .nav-item .link.nav-qrcode {
  background: url("../images/menu-qrcode.png") no-repeat;
  width: 30px;
  height: 30px;
  margin: 20px auto;
}

#aside-menu .menu-nav .nav-item .link.goTop {
  background: url("../images/menu-gotop.png") no-repeat;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-position-x: -2px;
  cursor: pointer;
}

#aside-menu .menu-nav .nav-item .qrcode-box {
  position: absolute;
  top: -55px;
  left: -195px;
  width: 180px;
  height: 256px;
  background-color: #fff;
  border: 1px #bfbfbf solid;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#aside-menu .menu-nav .nav-item .qrcode-box .qbtitle {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  color: #006EDC;
}

#aside-menu .menu-nav .nav-item .qrcode-box .qbtitle::after {
  content: "";
  display: block;
  width: 179px;
  height: 1px;
  background-color: #bfbfbf;
  position: absolute;
  bottom: 0;
  left: 0;
}

#aside-menu .menu-nav .nav-item .qrcode-box .qbdesc {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  color: #3c3c3c;
}

#aside-menu .menu-nav .nav-item .qrcode-box .qbdesc::before {
  content: "";
  display: block;
  width: 179px;
  height: 1px;
  background-color: #bfbfbf;
  position: absolute;
  top: 0;
  left: 0;
}

#aside-menu .menu-nav .nav-item .qrcode-box .qr-content {
  margin: 15px auto;
  width: 150px;
  height: 150px;
}

.bread-crumbs {
  width: 100%;
  padding: 40px 0;
}

.bread-crumbs .breadcrumb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  background-color: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}

.bread-crumbs .breadcrumb .breadcrumb-item a {
  font-size: 14px;
  font-weight: 400;
  color: #878787;
  line-height: 24px;
  text-decoration: none;
  background-color: transparent;
}

.bread-crumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding: 0 5px;
  color: #878787;
  content: ">";
  font-size: 14px;
}

a {
  outline: none;
  text-decoration: none;
}

a:link {
  color: #333333;
}

a:visited {
  color: #999999;
}

.banner-link {
  display: block;
  margin-top: 30px;
}

.banner-link.aside {
  position: absolute;
  top: 0;
  margin-top: 0;
}

.banner-link.left {
  left: -330px;
}

.banner-link.right {
  right: -330px;
}

.banner-link .banner {
  width: 1200px;
  height: 100px;
}

.banner-link .banner.big {
  width: 1200px;
  height: 450px;
}

.banner-link .banner.aside-img {
  width: 300px;
  height: 630px;
}

.content {
  position: relative;
  width: 1200px;
  height: auto;
  overflow: hidden;
  padding-bottom: 30px;
}

.content::after, .content::before {
  clear: both;
  zoom: 1;
  visibility: hidden;
  clear: both;
  display: block;
  height: 0;
}

.content .left-content {
  float: left;
  width: 778px;
  min-height: 800px;
}

.content .left-content .lc-title {
  position: relative;
  font-size: 30px;
  font-weight: bold;
  color: #108EE9;
  padding-bottom: 23px;
  border-bottom: 1px #e6e6e6 solid;
}

.content .left-content .lc-title::after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  background: #108EE9;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.content .left-content .list-data {
  position: relative;
}

.content .left-content .list-data .list-item-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px #e6e6e6 dashed;
  -webkit-transition: all 0.3ms;
  transition: all 0.3ms;
  padding: 10px 0;
}

.content .left-content .list-data .list-item-link .item-time {
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  color: #108EE9;
  line-height: 30px;
}

.content .left-content .list-data .list-item-link .item-title {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #323232;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content .left-content .list-data .list-item-link:hover .item-time, .content .left-content .list-data .list-item-link:hover .item-title {
  font-weight:  bolder;
  color: #4497df;
}

.content .left-content .art-header {
  border-bottom: 1px #e6e6e6 dashed;
}

.content .left-content .art-header .art-title {
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #323232;
  padding-bottom: 40px;
}

.content .left-content .art-header .art-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.content .left-content .art-header .art-info p {
  font-size: 14px;
  font-weight: 400;
  color: #BFBFBF;
  line-height: 25px;
  padding-bottom: 15px;
}

.content .left-content .art-main {
  padding: 40px 0 100px;
}

.content .left-content .art-main p {
  font-size: 18px;
  font-weight: 400;
  color: #323232;
  line-height: 36px;
  text-indent: 36px;
}

.content .left-content .art-main img {
  max-width: 100%;
  display: block;
  margin: 30px auto;
}

.content .left-content .art-main .img-box {
  width: 100%;
}

.content .left-content .art-main .img-box img {
  max-width: 100%;
  display: block;
  margin: 30px auto;
}

.content .left-content .art-main .img-box p {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #323232;
  line-height: 36px;
  padding-bottom: 30px;
  text-indent: 0;
}

.content .aside-content {
  position: relative;
  float: right;
  width: 362px;
  padding-left: 20px;
  padding-bottom: 30px;
}

.content .aside-content::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #E0E0E0;
  position: absolute;
  top: 14px;
  left: 0;
}

.content .aside-content .lc-title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #108EE9;
  padding-bottom: 20px;
  border-bottom: 1px #e6e6e6 solid;
}

.content .aside-content .lc-title::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #108EE9;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: -22.5px;
}

.content .aside-content .lc-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: #108EE9;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.content .aside-content .list-data {
  position: relative;
}

.content .aside-content .list-data .list-item-link {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3ms;
  transition: all 0.3ms;
  padding-top: 25px;
}

.content .aside-content .list-data .list-item-link::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border: 1px solid #8F8F8F;
  border-radius: 50%;
  position: absolute;
  top: 34px;
  left: -22.5px;
}

.content .aside-content .list-data .list-item-link .item-time {
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #108EE9;
}

.content .aside-content .list-data .list-item-link .item-title {
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #323232;
  margin-bottom: 10px;
}

.content .aside-content .list-data .list-item-link:hover .item-time, .content .aside-content .list-data .list-item-link:hover .item-title {
  font-weight:  bolder;
  color: #4497df;
}

.pagination-box {
  width: 100%;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#golf {
  position: absolute;
  top: 50%;
  left: -100px;
  background: url(../images/prev.png) no-repeat center;
  width: 100px;
  height: 100px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#gorg {
  position: absolute;
  top: 50%;
  right: -100px;
  background: url(../images/next.png) no-repeat center;
  width: 100px;
  height: 100px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*# sourceMappingURL=common.css.map */