/* reset-------------------------------------------- */
body,
dl,
dt,
dd,
ul,
ol,
li,
pre,
figure,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
h1,
h2,
h3,
h4,
h4,
h5 {
  margin: 0;
  padding: 0;
}

select {
  font-size: 12px;
}

table {
  border-collapse: collapse;
}

fieldset,
img {
  border: 0 none;
}

fieldset p {
  margin: 0;
  padding: 0 0 0 8px;
}

legend {
  display: none;
}

address,
caption,
em,
strong,
th,
i {
  font-style: normal;
}

table caption {
  margin-left: -1px;
}

hr {
  border-bottom: 1px solid #FFFFFF;
  border-top: 1px solid #E4E4E4;
  border-width: 1px 0;
  clear: both;
  height: 2px;
  margin: 5px 0;
  overflow: hidden;
}

ol,
ul {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}


a {
  display: inline-block;
  color: #565656;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

input,
textarea,
button {
  outline: none;
}

/*
img {
  max-width: 100%;
}
*/
.left {
  float: left;
}

.right {
  float: right;
}

/* reset-------------------------------------------- */


/* common--------------------------------------------------- */
@keyframes slideInLeft {

  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInLeft {

  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation: slideInLeft .5s forwards;
  animation: slideInLeft .5s forwards;
}




body {
  font: 14px "microsoft yahei", arial, helvetica, clean, sans-serif;
  text-align: left;
}

/* countdown
   ================================================================================ */
.countdown {
  float: right;
  text-align: right;
  color: #333;
  font-size: 14px;
}

.countdown .c_tit {
  color: #333;
  font-size: 26px;
}

.countdown #day_num {
  color: #c50000;
  font-size: 36px;
  padding: 0px;
  font-family: 'Impact';
}

.countdown #hour_num,
.countdown #minute_num,
.countdown #second_num {
  color: #fff;
  font-size: 16px;
  padding: 3px;
  font-weight: bold;
}

.more {
  float: right;
  font-size: 12px;
  font-weight: normal;
  color: #006ebd;
  padding-right: 13px;
}

.bg_img {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}




@media (min-width: 1200px) {
  .page_container {
    display: block;
    width: 1200px;
    margin: 0 auto;
  }

  .container {
    width: 1200px;
  }
}

@media (max-width: 768px) {

  .page_container,
  .container {
    width: 96%;
    overflow: hidden;
    margin: 0 auto;
  }
}

/* page_header------------------------start */
.page_header {
  height: 90px;
  background: #fff;
}

.page_header.float {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
}

.page_header .logo {
  margin-top: 24px;
  font-size: 0;
  float: left;
}

.page_header .logo a img {
  width: auto;
  height: 48px;
}

.page_header .nav_list_bg {
  display: none;
}

#mobileNavBtn {
  display: none;
}

.page_header .nav {
  margin-left: 40px;
  float: left;
}

.page_header .nav_list {
  display: table;
}

.page_header .nav_item {
  display: table-cell;
  position: relative;
  font-size: 16px;
  vertical-align: middle;
  line-height: 1;
}

.page_header .nav_item>a {
  padding: 0 14px;
  height: 90px;
  line-height: 88px;
  font-weight: bold;
}

.page_header .nav_item>a.active,
.page_header .nav_item a:hover {
  color: #053a75;
}

.page_header .sub_nav_list {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #f1f1f1;
  width: 130px;
  padding: 12px 0;
  left: 0;
  top: 90px;
  z-index: 2;
}

.page_header .sub_nav_item {
  text-align: center;
  line-height: 34px;
  padding: 0 8px;
}

.page_header .sub_nav_item>a {
  display: block;
  border-bottom: 1px solid #f1f1f1;
}

.page_header .nav_item>a .iconfont {
  display: none;
}

.page_header .sub_nav_item:nth-last-child(1)>a {
  border-bottom: none;
}

.page_header .btns {
  float: right;
  margin-top: 14px;
}

.page_header .btns a {
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 40px;
  transition: box-shadow .2s;
}

.page_header .btns a:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .1);
}

.page_header .btns a:nth-child(1) {
  background: #1e88e5;
}

.page_header .btns a:nth-child(2) {
  background: #fb8c00;
}

@media (max-width: 768px) {
  .page_header .nav_list_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 8;
    background: rgba(0, 0, 0, .9);
  }

  #mobileNavBtn {
    display: block;
    color: #004da0;
    float: right;
    font-size: 28px;
    padding: 30px 6px;
    line-height: 1;
  }

  .page_header .nav {
    transform: translateX(-100%);
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: none;
    left: 0;
    top: 0;
    padding: 0;
    z-index: 9;
    width: 76%;
    background-color: #fff;
    margin-left: 0;
  }

  .page_header .nav_list {
    display: block;
  }

  .page_header .nav_item {
    display: block;
    text-align: left;
  }

  .page_header .nav_item>a {
    color: #000;
    height: 54px;
    line-height: 54px;
    font-size: 17px;
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: 1px solid #e4e4e4;
    display: block;
  }

  .page_header .nav_item>a .iconfont {
    display: block;
    float: right;
  }

  .page_header .sub_nav_list {
    position: static;
    width: 100%;
  }

  .page_header .sub_nav_item {
    line-height: 42px;
    font-size: 16px;
  }

  .page_header .btns {
    display: none;
  }
}

/* page_header------------------------end */

/*banner----------------------------------------------------------------*/
.banner {
  width: 100%;
  /*height: 550px;*/
  position: relative;
  background: #f5f5f5;
  text-align: center;
}

.banner .swiper-wrapper,
.banner .swiper-slide {
  width: 100%;
  height: 100%;
}

.banner a.banner_img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner a.banner_img img {
  position: absolute;
  width: auto;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.banner .swiper-pagination {
  position: absolute;
  width: 100%;
  bottom: 20px;
  z-index: 3;
  text-align: center;
}


.banner img {
  max-width: auto;
}

.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 2px solid #12569a;
  opacity: .7;
  margin: 0 8px;
  border-radius: 50%;
}

.banner .swiper-pagination-bullet-active {
  background-color: transparent;
  border: 2px solid #fff;
  opacity: 1;
}

.banner .video_wrap {
  width: 100%;
  height: 460px;
  position: relative;
}

.banner video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  /* object-fit: cover; */
}

/*newslide----------------------------------------------------------------*/
.newslide {
  width: 100%;
  height: 330px;
  position: relative;
  background: #f5f5f5;
  text-align: center;
}

.newslide .swiper-wrapper,
.newslide .swiper-slide {
  width: 100%;
  height: 100%;
}

.newslide a.banner_img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.newslide a.newslide_img img {
  position: absolute;
  width: 628px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.newslide .swiper-pagination {
  position: absolute;
  width: 100%;
  bottom: 20px;
  z-index: 3;
  text-align: center;
}


.newslide img {
  max-width: auto;
}

.newslide .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 2px solid #12569a;
  opacity: .7;
  margin: 0 8px;
  border-radius: 50%;
}

.newslide .swiper-pagination-bullet-active {
  background-color: transparent;
  border: 2px solid #fff;
  opacity: 1;
}

.newslide .video_wrap {
  width: 100%;
  height: 460px;
  position: relative;
}

.newslide video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  /* object-fit: cover; */
}

@media (max-width: 768px) {
   #sub_banner {
    height: 170px;
  }
  .banner {
    height: 150px;
    width: 100%;
    
  }
  .banner a.banner_img img{
      width: 100%;
      height: auto;
  }

  #sub_banner {
    height: 70px;
  }

  .banner .swiper-pagination {
    bottom: 6px;
  }

  .banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  
  .newslide {
    height: 150px;
    width: 100%;
    
  }
  .newslide a.newslide_img img{
      width: 100%;
      height: 150px;
  }

  .newslide .swiper-pagination {
    bottom: 6px;
  }

  .newslide .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

.sub_banner {
  min-height: auto;
  height: 330px;
}



/*banner----------------------------------------------------------------*/

/* page_banner---------------------------end */

/* page_fast_nav----------------------------start */
.page_fast_nav {
  position: relative;
  z-index: 1;
  background: #fff;
}

.page_fast_nav .list {
  display: flex;
  align-items: center;
  margin: -55px -15px 0;
}

.page_fast_nav .item {
  padding: 0 15px;
  width: 33.333%;
}

.page_fast_nav .item a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 12px 12px 12px 24px;
  border-radius: 8px;
  box-shadow: 0px 0px 38px rgba(0, 69, 138, .4);
  transition: transform .2s;
}

.page_fast_nav .item:nth-child(1) a {
  background: #1976d3;
}

.page_fast_nav .item:nth-child(2) a {
  background: #4753dd;
}

.page_fast_nav .item:nth-child(3) a {
  background: #29aae3;
}

.page_fast_nav .item a:hover {
  transform: translateY(-10px);
}

.page_fast_nav .item i {
  font-size: 100px;
}

.page_fast_nav .item:nth-child(1) a i {
  color: #0150a0;
}

.page_fast_nav .item:nth-child(2) a i {
  color: #2733bc;
}

.page_fast_nav .item:nth-child(3) a i {
  color: #007eb5;
}

.page_fast_nav .item h4 {
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.page_fast_nav .item h4 em {
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 4px;
}

.page_fast_nav .item h4 span {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 1px;
}

.page_fast_nav .item label {
  margin-left: auto;
  font-size: 50px;
  align-self: start;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .page_fast_nav {
    margin-top: 12px;
  }

  .page_fast_nav .list {
    justify-content: space-between;
    margin: 0;
  }

  .page_fast_nav .item {
    padding: 0;
    width: 32%;
  }

  .page_fast_nav .item a {
    padding: 8px;
    display: block;
  }

  .page_fast_nav .item h4 {
    margin: 0;
    text-align: center;
  }

  .page_fast_nav .item h4 em {
    font-size: 18px;
  }

  .page_fast_nav .item i {
    font-size: 64px;
    display: block;
    text-align: center;
  }

  .page_fast_nav .item h4 span {
    font-size: 12px;
    letter-spacing: 0;
  }

  .page_fast_nav .item label {
    text-align: center;
    display: block;
    font-size: 30px;
    margin-top: 4px;
  }
}

/* page_fast_nav----------------------------end */

/*data-----------------------------------------------------------------------------------------*/
.data {
  background: url(../images/date-bg.jpg) no-repeat;
  color: #fff;
  padding: 40px 0px;
  margin-bottom: 20px;
}

.data-tit {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

.data-tit h2 {
  padding-bottom: 15px;
}

.counters-item {
  position: relative;
  /* background:url(../images/dotted-k.png) no-repeat;
background-size:100% 100%;*/
  min-height: 200px;
  text-align: center;
}

.data-info {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -50px;
  text-align: center;
}

.date-num {
  font-size: 46px;
}

.date-num i {
  font-size: 26px;
  font-style: normal;
}

.dotted-k {
  width: 66%;
}

@media(max-width:768px) {
  .dotted-k {
    width: 60%;
    display: none;
  }

  .date-num {
    font-size: 36px;
  }

  .counters-item {
    min-height: 130px;
  }
}


/*主题---------------------------------------------------------------------------------------------------*/
.htitle {
  font-size: 26px;
  color: #12569a;
  font-weight: 600;
  line-height: 45px;
  padding: 10px 0px;
}

.htitle span {
  font-size: 20px;
  color: #666;
  font-weight: 100;
  font-family: -webkit-pictograph;
  margin-left: 10px;
  padding-left: 10px;
}

/*---------------------------------------------------------------------------------------*/
.padd5 {
  padding-left: 5px;
  padding-right: 5px;
}

.zhanlist .a {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  text-align: center;
}

.zhanlist .a img {
  width: 394px;
  height: 200px;
}

.zhanlist .a font {
  position: absolute;
  margin-top: -200px;
  line-height: 200px;
  font-weight: 600;
  height: 100%;
  color: #f7f7f7;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.3);
}

.zhanlist .a:hover font {
  display: noxne;
}

.zhanlist .a .tablist {
  position: absolute;
  height: 200px;
  line-height: 40px;
  color: #333;
  width: 100%;
  font-size: 18px;
  top: 0px;
  margin-top: 0px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000000;
  padding: 15px;
  overflow: hidden;
}

.zhanlist .a .tablist h3 {
  font-family: 'Glyphicons Halflings', 微软雅黑;
}

.zhanlist .a .tablist h3:before {}

.zhanlist .a .tablist h3 {
  margin-bottom: 5px;
  padding: 0px;
  font-weight: normal;
  line-height: 30px;
}

.zhanlist .a .tablist div {
  color: #333;
  font-size: 14px;
  line-height: 24px;
  margin-right: 25px;
}

.zhanlist .a .tablist a {
  color: #111;
  display: -webkit-box;
}

.zhanlist .a .tablist a:hover {
  color: #12569a;
}

.zhanlist .a .tablist h4 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  border-bottom: 1px dotted #eee;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 27px;
  margin-left: 25px;
}

.zhanlist .a .tablist h4 span {
  color: #333;
  cursor: default;
}

.zhanlist .a .tablist {
  display: none;
}

.zhanlist .a:hover .tablist {
  -webkit-transition: 2s;
  transition: 2s;
  display: block;
}

/*首页新闻------------------------------------------------------------------------------------------------------*/
.index_news {
  background-color: #fff;
  min-height: 530px;
  padding: 20px 0px;
}

.index_news .news_left {
  float: left;
  width: 628px;
  background: #fff;
}

.index_news .news_left .video {
  width: 100%;
  height: 200px;
  margin-bottom: 18px;
}

.index_news .news_left iframe {
  width: 100%;
  height: 100%;
}

.index_news .news_left .news1 {
   margin-top: 140px;
  float: left;
  word-wrap: break-word;
  padding: 0px;
  border: 0px solid transparent;
  height: 189px;
  width: 189px;
  background-color: #0356a7;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 21px;
  padding-top: 50px;
}

.index_news .news_left .news1 a {
  color: #fff;
}

.index_news .news_left .article_list {
  float: left;
  margin-left: 10px;
}

.index_news .news_left .article_list ul li {
  margin: 10px 0;
  overflow: hidden;
  border-bottom: 1px dashed #e2e2e2;
  background: url(../images/17.png) no-repeat left center;
  padding: 4px 0px 4px 20px;
  display: inline-block;
}

.w_news {
  float: left;
  width: 403px;
  margin-left: 25px;
  margin-top: 120px;
}

.index_news .news_left .article_list ul li p {
  height: 35px;
  line-height: 35px;
}

.index_news .news_right {
  float: right;
  width: 542px;
  background: #fff;
  padding-left: 25px;
}

.index_news .news_right .titles {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 10px;
}

.index_news .news_right .titles span {
  display: inline-block;
  font-size: 21px;
  font-family: 微软雅黑;
  color: #333;
  line-height: 140%;
  border-left: 3px solid #0356a7;
  padding-left: 30px;
}

.index_news .news_right .article_list ul li {
  margin: 10px 0;
  overflow: hidden;
  border-bottom: 1px dashed #e2e2e2;
}

.index_news .news_right .article_list ul li p.link {
  font-size: 13px;
  background: url(../images/177.png) no-repeat -4px center;
  padding-left: 20px;
  display: inline-block;
}

.index_news .news_right .article_list ul li p.time {
  float: right;
  padding-right: 3px;
  display: inline-block;
}

.index_news .news_right .article_list ul li p {
  height: 35px;
  line-height: 35px;
}

@media(max-width:767px) {
  .index_news .news_left {
    width: 100%;
  }

  .index_news .news_right {
    width: 100%;
    padding: 0px;
  }

  .index_news .ul_news .right {
    float: none;
  }

  .ul_news li a {
    display: block;
    max-width: 330px;
  }

  .w_news {
    width: auto;
    margin: 0;
    margin-bottom: 30px;
  }

  .htitle {
    font-size: 20px;
  }

  .htitle span {
    font-size: 14px;
  }
}

/**/
.ul_news li {
  color: #584738;
  line-height: 26px;
  padding: 12px 0px 8px 15px;
  border-bottom: 1px dashed #e2e2e2;
  background: url(../images/177.png) no-repeat left center;
}

.ul_news li a {
  color: #333;
}

.ul_news li a:hover {
  color: #053a75;
}

.ul_news li a {
  max-width: 300px;
  text-overflow: ellipsis;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
}

.ul_news li a.articleid {
  max-width: 400px;
}

/*conpan--------------------------------------------------------------------------------------------------------------------*/
.conpan {
  padding-top: 10px;
  padding-bottom: 10px;
}

.tqhd img {
  width: 100%;
  height: 100%;
}

.tqhd li {
  padding-bottom: 17px;
}

.hd1 {
  height: auto;
  overflow: hidden;
  display: block;
  float: left;
  -webkit-box-shadow: 0px 5px 17px #ccc;
  box-shadow: 0px 5px 17px #ccc;
  padding-bottom: 15px;
}

.hd1 img {
  width: 100%;
}

.btinfo {
  margin: 0px 25px;
}

.btinfo h3 {
  color: #24769f;
  font-size: 16px;
  text-align: left;
  line-height: 20px;
  margin: 10px 0;
  font-weight: 500;
}

.btinfo h3:hover {
  color: #007aff;
}

.btinfo .info {
  color: #999;
  text-align: left;
  font-size: 14px;
}

.btinfo span {
  padding: 0px 5%;
  height: 25px;
  border-radius: 10px;
  line-height: 25px;
  color: #fff;
  float: right;
  background: #2c86b3;
  font-size: 13px;
  display: block;
}

.btinfo1 {
  margin-top: -35px;
}

.mglen {
  margin-top: 2%;
}

.kuang1 {
  width: 98%;
  height: 98%;
  float: left;
  display: block;
}

.kuang2 {
  width: 98%;
  height: 98%;
  float: right;
  display: block;
}

.sige {
  width: 50%;
  float: left;
  height: 50%;
}


.conpan .exb_activ {}

.conpan .exb_activ ul {
  overflow: hidden;
  margin: -10px;
}

.conpan .exb_activ li {
  float: left;
  padding: 10px;
}

.conpan .exb_activ li:nth-child(1) {
  width: 33.3%;
  height: 556px;
}

.conpan .exb_activ li:nth-child(2) {
  width: 66.6%;
  height: 278px;
}

.conpan .exb_activ li:nth-child(3),
.conpan .exb_activ li:nth-child(4) {
  width: 33.3%;
  height: 278px;
}

.conpan .exb_activ a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.conpan .exb_activ a .cover {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform .2s;
}

.conpan .exb_activ a:hover .cover {
  transform: scale(1.5);
}

.conpan .exb_activ a .msg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(28, 100, 171, .8);
  z-index: 2;
  color: #fff;
  padding: 20px;
  opacity: 0;
  transition: opacity .2s;
}

.conpan .exb_activ a:hover .msg {
  opacity: 1;
}

.conpan .exb_activ a .msg i {
  background: #fff;
  color: #12569a;
  font-size: 24px;
  border-radius: 100%;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  top: 20%;
  left: 50%;
  margin: -20px 0 0 -20px;
  z-index: 1;
  transition: top .2s;
}

.conpan .exb_activ a:hover .msg i {
  top: 38%;
}

.conpan .exb_activ a .msg .cnt {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  transform: scale(0);
  transition: transform .2s;
}

.conpan .exb_activ a:hover .msg .cnt {
  transform: scale(1);
}

.conpan .exb_activ a .msg h4 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 14px;
}

.conpan .exb_activ a .msg p {}

@media screen and (max-width: 800px) {
  .tqhd {
    width: 100%;
    margin-top: 10px;
  }

  .hd1 {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    float: left;
    margin-top: 10px;
  }

  .mglen {
    margin-top: 4%;
  }

  .btinfo .info {
    min-height: 105px;
    overflow: hidden;
  }

  .margin40 {
    margin-top: 0px;
  }

  .conpan .exb_activ li:nth-child(1),
  .conpan .exb_activ li:nth-child(2),
  .conpan .exb_activ li:nth-child(3),
  .conpan .exb_activ li:nth-child(4) {
    width: 100%;
    height: 200px;
  }
}

/*media_area-------------------------------------------------------------------------------------*/
.media_txt {
  margin-bottom: 20px;
}

.col-lg-21 {
  width: 12.5%;
  padding-left: 5px;
  padding-right: 5px;
}

.row5 {
  margin-left: -5px;
  margin-right: -5px;
}

.kzslide a {
  display: block;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

}

.kzslide img {
  height: 63px;
  padding: 3px;
  margin: 5px 0px;
  max-width: 100%;

}

.fh_ck {
  text-align: center;
  color: #12569a;
}

/*友情链接------------------------------------------------------------------------------------*/
.fd-contact {
  overflow: hidden;
  padding: 20px 0 30px 0;
  margin-top: 30px;
  border-top: 1px #ddd solid;

}

.fd-contact li {
  float: left;
  padding: 0 35px;
  position: relative;
  letter-spacing: 0.5px;
}

.fd-contact a {
  padding: 0px 10px;
}

.fd-contact li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 1px;
  height: 15px;
  background-color: #3b3c3d;
}

.fd-contact li:first-child {
  padding-right: 40px;
  padding-left: 0;
}

.fd-contact li:last-child::after {
  width: 0;
}

.fd-contact p {
  font-size: 16px;
}

/*-------------------------------------------------------------------------------------*/
.dh-ewm {
  background-color: #212224;
  padding: 50px 0 0px;
}

.dh-ewm h2 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: bold;
}

.dh-ewm .img {
  float: left;
  display: block;
  height: 100px;
  padding: 0 0px;
}

.dh-ewm .img:first-child {
  padding-left: 0;
}

.dh-ewm .img:last-child {
  padding-right: 0;
  border-right: 0;
}

.dh-ewm img {
  width: 120px;
}

.footer {
  margin-top:30px;
  background-color: #12569a;
  background-image: url('../images/footer_bg.jpg');
}

.fd-logo {
  float: left;
  width: 270px;
  margin-top: 18px;
  margin-right: 80px;
}

.fd-top {
  padding: 16px 0 35px;
  overflow: hidden;
}

.fd-nav {
  float: left;
  overflow: hidden;
}

.fd-nav li {
  float: left;
  width: 122px;
}

.foot_contact {
  float: left;
  line-height: 26px;
}

.foot_contact h2 {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
}

.foot_contact .txt {
  padding: 22px 0px 15px 0px;
  color: #fff;
}

.foot_contact .txt a {
  color: #8b8b8b;
}

.foot_code {
  float: right;
  display: none;
}

.foot_code img {
  width: 120px;
}

.fd-nav li:nth-child(1) {
  display: none;
}

.fd-nav a {
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: #fff;
}

.fd-nav a:hover {
  color: #fff;
}

.fd-nav li a:first-child {
  font-size: 16px;
  color: #fff;
  margin-bottom: 23px;
}

.fd-nav li:last-child {
  display: none;
}

.fd-nav li div {
  font-size: 16px;
  color: #fff;
  margin-bottom: 25px;
}

.eq {
  float: right;
  overflow: hidden;
  margin-left: 20px;
}

.eq .img {
  width: 106px;
  height: 106px;
}

.eq .img img {
  display: block;
  width: 100%;
  height: 100%;
}

.eq p {
  margin-top: 6px;
  text-align: center;
  color: #8b8b8b;
}

.fd-bot {
  line-height: 28px;
  background-color: #031782;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.fd-bot a {
  color: #fff;
  display: inline-block;
 
}

.fd-bot .copy {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.fd-bot .support {
  float: right;
}

.fd-bot .support img {
  display: inline-block;
  vertical-align: middle;
}

.fd-bot .support span {
  color: #8b8b8b;
}

.fd-bot .support a {
  color: #8b8b8b;
}

.fd-bot .support a:hover {
  color: #fff;
  text-decoration: underline;
}

@media(max-width:768px) {
  .eq {
    float: left;
    overflow: hidden;
    margin-left: 0;
    margin-right: 10px;
    margin-top: 30px;
  }

  .eq p {
    text-align: left;
  }

  .foot_code {
    float: left;
  }

}

/*===========================================sub page*/
.ban {
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.ban .ewm-box {
  position: absolute;
  bottom: 88px;
  left: 50%;
  margin-left: -230px;
  overflow: hidden;
}

.ban .ewm-box .ewm {
  float: left;
  margin-right: 67px;
}

.ban .ewm-box .ewm img {
  display: block;
  margin: 0 auto;
  width: 108px;
  height: 106px;
}

.ban .ewm-box .ewm p {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.ban .txt {
  padding-top: 176px;
  text-align: center;
}

.ban .txt h2 {
  letter-spacing: 1.2px;
  font-weight: normal;
  font-size: 28px;
  color: #fff;
  margin-bottom: 6px;
}

.ban.banner .txt h2 {
  font-size: 42px;
}

.ban .txt p {
  font-size: 14px;
  color: #fff;
}

.ban em {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

/* sub page-------------------------------------------------------------------- */
.sub_page {
  padding-top: 25px;
  padding-bottom: 42px;
  background: #f5f5f5;
}

.sub_page_main {
  background: #fff;
  margin: 0;
  padding: 24px;
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

.sub_page_left {
  background: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .06);
  box-shadow: 0 0 6px rgba(0, 0, 0, .06);
}

.sub_nav_tit {
  background: #12569a;
  color: #fff;
  padding: 20px 0 20px 10px;
}

.sub_nav_tit span {
  font-size: 20px;
  border-left: 4px solid #fff;
  padding-left: 10px;
}

.sub_left_list {
  margin-top: 14px;
}

.sub_nav_left {
  line-height: 48px;
  font-size: 15px;
  padding-left: 26px;
  border-bottom: 1px solid #e9e9e9;
}

.sub_nav_left.active {
  background: #e7e7e7;
}

.sub_nav_left a {
  color: #12569a;
}

.sub_page_right {
  background: #fff;
  min-height: 350px;
  padding-top: 0;
}

.sub_right_tit {
  height: 44px;
  line-height: 44px;
  color: #12569a;
  font-size: 18px;
  font-weight: 600;
  background-color: rgb(241, 242, 249);
  padding-left: 25px;
}

.sub_right_tit .s {
  color: rgb(204, 204, 204);
  font-weight: 500;
  font-size: 14px;
}

.sub_page_tit {
  color: #12569a;
  font-size: 18px;
  padding: 32px 20px 20px 20px;
  border-bottom: 1px solid #e9e9e9;
}

.sub_page_content {
  padding: 32px 20px;
}

@media (max-width: 768px) {
  .sub_page {
    padding-top: 20px;
  }

  .sub_left_list li {
    display: none;
  }

  .sub_left_list li.active {
    display: block;
    width: 100%;
    background: #555a5e;
    color: #fff;
  }

  .sub_nav_tit {
    display: none;
    background: #12569a;
    color: #fff;
    padding: 12px 0;
    text-align: center;
  }

  .sub_nav_tit span {
    font-size: 16px;
    border: none;
  }

  .sub_left_list {
    margin: 0;
    font-size: 0;
  }

  .sub_nav_left {
    padding: 0;
    display: inline-block;
    width: 25%;
    text-align: center;
    font-size: 14px;
    border: none;
  }

  .sub_nav_left a {
    font-size: 13px;
    color: #fff;
    line-height: 30px;
    padding: 0 4px;
  }

  .sub_page_right {
    margin-top: 12px;
  }

  .sub_page_tit {
    font-size: 15px;
    padding: 12px;
    text-align: center;
  }

  .sub_page_content {
    padding: 14px 12px;
  }

  .sub_nav_item.active {
    background: #fff;
  }

  .sub_nav_item.active a {
    background: #12569a;
    color: #fff;
  }
}


.h80 {
  height: 75px;
}

.mo-ban {
  display: none;
}

/*sub pag---------------------------------------------------------------------*/
/* pagination--------------------------------------------------------------- */
.pagination {
  margin-top: 50px;
  font-size: 0;
}

.pagination span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  font-size: 16px;
}

.pagination a {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-left: 10px;
  font-size: 16px;
  padding: 0px 12px;
}


.pagination a.active {
  background: #0356a7;
  color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, .16);
  box-shadow: 0 6px 15px rgba(0, 0, 0, .16);
  text-decoration: none;
}

@media (max-width: 768px) {
  .pagination span {
    display: block;
    margin-right: 0;
    margin-bottom: 18px;
    margin-left: 10px;
    font-size: 14px;
  }

  .pagination a {
    margin-left: 0;
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 6px 12px;
  }
}

/* pagination--------------------------------------------------------------- */

/* 表单页面-------------------------------------------------------------- */
.sub_form {
  position: relative;
}

.sub_form_item {
  font-size: 0;
}

.sub_form_item.radio {
  margin: 0;
}

.sub_form_item>label {
  display: inline-block;
  vertical-align: middle;
  background: #f9f9f9;
  width: 26%;
  text-align: right;
  padding: 20px;
  font-size: 15px;
  margin: 0;
}

.sub_form_item>label.textarea_label {
  height: 160px;
  vertical-align: top;
}

.sub_form_item>label.verifycode_label {
  height: 160px;
  vertical-align: top;
}

.sub_form_item>.form_cont {
  display: inline-block;
  vertical-align: middle;
  height: 42px;
  width: 70%;
  font-size: 15px;
  margin: 0 1% 0 2%;
  border: 1px solid #d6d6d6;
  padding: 0 16px;
  color: #727272;
}

.sub_form_item>textarea.form_cont {
  height: 140px;
  vertical-align: top;
  margin-top: 10px;
  margin-bottom: 10px;
}

.sub_form_item>.form_cont#verifycode {
  width: 170px;
  vertical-align: top;
  margin-top: 10px;
}

.sub_form_item img.verifycode {
  width: 132px;
  display: inline-block;
  vertical-align: top;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
  margin-top: 10px;
}

.sub_form_item>i {
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  width: 1%;
  color: red;
  font-weight: 300;
}

.sub_form_item .radio_cont {
  font-size: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

.sub_form_item .radio_cont input {
  position: static;
  margin: 0;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.sub_form_item .radio_cont label {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.form_submit_btn {
  position: absolute;
  left: 28%;
  bottom: 2px;
  background: #222222;
  color: #fff;
  text-align: center;
  font-size: 17px;
  border: none;
  font-weight: 300;
  cursor: pointer;
  padding: 12px 26px;
  z-index: 3;
}

@media (max-width: 768px) {
  .sub_form {
    margin-top: 20px;
  }

  .sub_form_item {
    margin-bottom: 28px;
  }

  .sub_form_item>label {
    width: 100%;
    text-align: left;
    padding: 0;
    margin-bottom: 8px;
    background: transparent;
  }

  .sub_form_item>.form_cont {
    padding: 0 16px;
    color: #727272;
    margin: 0 1% 0 0;
    width: 98%;
  }

  .sub_form_item .radio_cont {
    margin-left: 0;
  }

  .sub_form_item>label.textarea_label,
  .sub_form_item>label.verifycode_label {
    height: auto;
  }

  .sub_form_item>textarea.form_cont {
    margin: 0;
  }

  .sub_form_item>.form_cont#verifycode {
    width: 50%;
  }

  .sub_form_item img.verifycode {
    width: 44%;
  }

  .form_submit_btn {
    position: static;
  }
}

/* 表单页面-------------------------------------------------------------- */


/* sub_exhibitor_wrap-------------------------------------------------------------- */
.sub_exhibitor_wrap {
  overflow: hidden;
}

.sub_exhibitor_left {
  float: left;
  width: 33%;
  padding-right: 40px;
}

.sub_exhibitor_logo {
  width: 300px;
  margin-bottom: 24px;
  border: 1px solid #f1f1f1;
}

.sub_exhibitor_msg {
  line-height: 30px;
  font-size: 14px;
}

.sub_exhibitor_right {
  float: right;
  width: 67%;
}


.sub_exhibitor_title {
  font-size: 26px;
}

.sub_exhibitor_right .hall {
  margin: 50px 0 30px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
}

.sub_exhibitor_right .hall i {
  color: #005d7c;
  margin-right: 10px;
}

.sub_exhibitor_right .hall .left,
.sub_exhibitor_right .hall .right {
  float: left;
  width: 48%;
  border: 1px solid #d6d6d6;
  padding: 18px 0 18px 40px;
}

.sub_exhibitor_right .hall .right {
  float: right;
}

.sub_exhibitor_right .intro {
  margin-bottom: 30px;
}

.sub_exhibitor_right .intro p {
  line-height: 26px;
}

.sub_exhibitor_right h3 {
  font-size: 20px;
  color: #005f28;
  font-weight: 500;
  margin-bottom: 6px;
}

.sub_exhibitor_right .exhibits ul {
  overflow: hidden;
}

.sub_exhibitor_right .exhibits li {
  float: left;
  width: 33.3%;
  padding: 10px;
}

.sub_exhibitor_right h3 .more {
  background: #005f28;
  color: #fff;
  float: right;
  padding: 6px 8px;
  border: none;
  font-size: 12px;
}

.sub_exhibitor_right .exhibits a {
  display: block;
  border: 1px solid #e9e9e9;
  position: relative;
}

.sub_exhibitor_right .exhibits li .cover {
  height: 134px;
}

.sub_exhibitor_right .exhibits li h4 {
  text-align: center;
  padding: 6px;
  font-size: 15px;
  font-weight: 500;
}

.sub_exhibitor_right .exhibits li em {
  position: absolute;
  right: 0;
  top: 0;
  background: #005f28;
  color: #fff;
  font-size: 14px;
  padding: 2px 6px;
  z-index: 2;
}

@media (max-width: 768px) {

  .sub_exhibitor_left,
  .sub_exhibitor_right {
    float: none;
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
  }

  .sub_exhibitor_logo {
    width: 100%;
    margin-bottom: 12px;
  }

  .sub_exhibitor_title {
    font-size: 20px;
    text-align: center;
  }

  .sub_exhibitor_right .hall {
    margin: 14px 0 18px;
    font-size: 13px;
  }

  .sub_exhibitor_right .hall .left,
  .sub_exhibitor_right .hall .right {
    float: none;
    width: 100%;
    margin-bottom: 8px;
    padding: 10px;
  }

  .sub_exhibitor_right .intro p {
    font-size: 15px;
  }

  .sub_exhibitor_right .exhibits li {
    width: 100%;
  }
}



.sub_exhibit_cover {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  margin-bottom: 20px;
}

.sub_exhibit_name {
  font-size: 24px;
  color: #005d7c;
}

.sub_exhibit_type {
  background: #005d7c;
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  display: inline-block;
  margin: 8px 0 24px;
}

.sub_exhibit_intro {
  line-height: 28px;
}

@media (max-width: 768px) {
  .sub_exhibit_name {
    font-size: 18px;
  }

  .sub_exhibit_intro {
    font-size: 15px;
  }
}

.appoint_btn {
  background: #e93f33;
  color: #fff;
  border-radius: 40px;
  margin-top: 10px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  display: block;
  width: 96px;
  text-align: center;
  line-height: 34px;
}

@media (max-width: 768px) {
  .appoint_btn {
    font-size: 14px;
    width: 74px;
    margin: 12px auto 0;
  }
}

/* sub_exhibitor_wrap-------------------------------------------------------------- */
/* appoint_mod-------------------------------------------------------------- */
.appoint_mod_bg {
  background: rgba(0, 0, 0, .7);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}

.appoint_mod {
  background: #fff;
  position: fixed;
  width: 600px;
  top: 4%;
  left: 50%;
  margin-left: -300px;
  z-index: 100;
  padding: 20px;
  max-height: 92%;
  overflow: auto;
}

.appoint_mod h3 {
  font-size: 28px;
  color: #005d7c;
  margin-bottom: 20px;
}

.appoint_mod_item {
  margin-bottom: 24px;
}

.appoint_mod_item label {
  display: block;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 8px;
}

.appoint_mod_item input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 36px;
}

.appoint_mod_item img {
  width: 140px;
  margin: 0;
  border: 1px solid #dfdfdf;
  vertical-align: middle;
  margin-left: 20px;
}

.appoint_mod_item em {
  background: #005d7c;
  color: #fff;
  font-size: 16px;
  padding: 8px 14px;
  display: inline-block;
  margin-left: 20px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.appoint_mod button {
  border: none;
  display: inline-block;
  margin-right: 24px;
  padding: 12px 40px;
  font-size: 18px;
  border-radius: 50px;
  margin-top: 32px;
  cursor: pointer;
}

.appoint_mod_submit {
  background: #266baf;
  color: #fff;
}

.appoint_mod_close {
  color: #e50000;
}

@media (max-width: 768px) {
  .appoint_mod {
    width: 100%;
    height: 100%;
    min-height: 100%;
    left: 0;
    margin-left: 0;
    top: 0;
  }

  .appoint_mod h3 {
    font-size: 24px;
  }

  .appoint_mod_item label {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .appoint_mod_item img {
    width: 130px;
  }

  .appoint_mod_item em {
    font-size: 14px;
  }

  .appoint_mod button {
    margin-right: 16px;
    padding: 10px 34px;
    font-size: 15px;
  }
}

/* appoint_mod-------------------------------------------------------------- */

/*sub exhibitor---------------------------------------------------------------- */
.exhibitor_mod {
  background: #f5f5f5;
  padding: 50px 0;
}

.exhibitor_mod_item {
  float: left;
  width: 25%;
  padding: 14px;
}

.exhibitor_mod_item a {
  display: block;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .4);
  box-shadow: 0 0 3px rgba(0, 0, 0, .4);
  padding: 14px;
  background: #fff;
  height: 228px;
}

.exhibitor_mod_item .logo {
  height: 90px;
  /*background-size: contain;*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  margin-bottom: 12px;
}

.exhibitor_mod_item h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /*è¦æ˜¾ç¤ºçš„è¡Œæ•°*/
  -webkit-box-orient: vertical;
}

.exhibitor_mod_item p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .exhibitor_mod {
    padding: 30px 0;
  }

  .exhibitor_mod_item {
    width: 50%;
    padding: 4px;
  }

  .exhibitor_mod_item a {
    padding: 8px;
    height: 170px;
  }

  .exhibitor_mod_item .logo {
    height: 62px;
  }

  .exhibitor_mod_item h3 {
    font-size: 14px;
  }

  .exhibitor_mod_item p {
    font-size: 12px;
  }
}

/* sub exhibitor---------------------------------------------------------------- */
/*sub_media-------------------------------------------------------------*/
.bg_img {
  display: block;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

}

.bg_img img {
  max-width: auto;
}

.sub_media_list {
  overflow: hidden;
}

.sub_media_item {
  width: 25%;
  float: left;
  padding: 10px;
}

.sub_media_item a {
  height: 100px;
  background-size: contain;
  border: 1px solid #ededed;
}

.sub_media_item p {
  text-align: center;
  color: #868686;
  background: #f5f5f5;
  line-height: 32px;
}

@media (max-width: 768px) {

  .sub_media_item {
    width: 50%;
  }

  .sub_media_item a {
    height: 72px;
  }

  .sub_media_item p {
    line-height: 28px;
    font-size: 13px;
  }
}

/*sub_media-------------------------------------------------------------*/
/* sub_exhibitor_wrap-------------------------------------------------------------- */
.sub_exhibitor_wrap {
  overflow: hidden;
}

.sub_exhibitor_left {
  float: left;
  width: 33%;
  padding-right: 40px;
}

.sub_exhibitor_logo {
  width: 300px;
  margin-bottom: 24px;
  border: 1px solid #f1f1f1;
}

.sub_exhibitor_msg {
  line-height: 30px;
  font-size: 14px;
}

.sub_exhibitor_right {
  float: right;
  width: 67%;
}


.sub_exhibitor_title {
  font-size: 26px;
}

.sub_exhibitor_right .hall {
  margin: 50px 0 30px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
}

.sub_exhibitor_right .hall i {
  color: #005d7c;
  margin-right: 10px;
}

.sub_exhibitor_right .hall .left,
.sub_exhibitor_right .hall .right {
  float: left;
  width: 48%;
  border: 1px solid #d6d6d6;
  padding: 18px 0 18px 40px;
}

.sub_exhibitor_right .hall .right {
  float: right;
}

.sub_exhibitor_right .intro {
  margin-bottom: 30px;
}

.sub_exhibitor_right .intro p {
  line-height: 26px;
}

.sub_exhibitor_right h3 {
  font-size: 20px;
  color: #005f28;
  font-weight: 500;
  margin-bottom: 6px;
}

.sub_exhibitor_right .exhibits ul {
  overflow: hidden;
}

.sub_exhibitor_right .exhibits li {
  float: left;
  width: 33.3%;
  padding: 10px;
}

.sub_exhibitor_right h3 .more {
  background: #005f28;
  color: #fff;
  float: right;
  padding: 6px 8px;
  border: none;
  font-size: 12px;
}

.sub_exhibitor_right .exhibits a {
  display: block;
  border: 1px solid #e9e9e9;
  position: relative;
}

.sub_exhibitor_right .exhibits li .cover {
  height: 134px;
}

.sub_exhibitor_right .exhibits li h4 {
  text-align: center;
  padding: 6px;
  font-size: 15px;
  font-weight: 500;
}

.sub_exhibitor_right .exhibits li em {
  position: absolute;
  right: 0;
  top: 0;
  background: #005f28;
  color: #fff;
  font-size: 14px;
  padding: 2px 6px;
  z-index: 2;
}

@media (max-width: 768px) {

  .sub_exhibitor_left,
  .sub_exhibitor_right {
    float: none;
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
  }

  .sub_exhibitor_logo {
    width: 100%;
    margin-bottom: 12px;
  }

  .sub_exhibitor_title {
    font-size: 20px;
    text-align: center;
  }

  .sub_exhibitor_right .hall {
    margin: 14px 0 18px;
    font-size: 13px;
  }

  .sub_exhibitor_right .hall .left,
  .sub_exhibitor_right .hall .right {
    float: none;
    width: 100%;
    margin-bottom: 8px;
    padding: 10px;
  }

  .sub_exhibitor_right .intro p {
    font-size: 15px;
  }

  .sub_exhibitor_right .exhibits li {
    width: 100%;
  }
}



.sub_exhibit_cover {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  margin-bottom: 20px;
}

.sub_exhibit_name {
  font-size: 24px;
  color: #005d7c;
}

.sub_exhibit_type {
  background: #005d7c;
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  display: inline-block;
  margin: 8px 0 24px;
}

.sub_exhibit_intro {
  line-height: 28px;
}

@media (max-width: 768px) {
  .sub_exhibit_name {
    font-size: 18px;
  }

  .sub_exhibit_intro {
    font-size: 15px;
  }
}

.appoint_btn {
  background: #e93f33;
  color: #fff;
  border-radius: 40px;
  margin-top: 10px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  box-shadow: 0 0 4px rgba(0, 0, 0, .2);
  display: block;
  width: 96px;
  text-align: center;
  line-height: 34px;
}

@media (max-width: 768px) {
  .appoint_btn {
    font-size: 14px;
    width: 74px;
    margin: 12px auto 0;
  }
}

/* sub_exhibitor_wrap-------------------------------------------------------------- */
/* appoint_mod-------------------------------------------------------------- */
.appoint_mod_bg {
  background: rgba(0, 0, 0, .7);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}

.appoint_mod {
  background: #fff;
  position: fixed;
  width: 600px;
  top: 4%;
  left: 50%;
  margin-left: -300px;
  z-index: 100;
  padding: 20px;
  max-height: 92%;
  overflow: auto;
}

.appoint_mod h3 {
  font-size: 28px;
  color: #005d7c;
  margin-bottom: 20px;
}

.appoint_mod_item {
  margin-bottom: 24px;
}

.appoint_mod_item label {
  display: block;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 8px;
}

.appoint_mod_item input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 36px;
}

.appoint_mod_item img {
  width: 140px;
  margin: 0;
  border: 1px solid #dfdfdf;
  vertical-align: middle;
  margin-left: 20px;
}

.appoint_mod_item em {
  background: #005d7c;
  color: #fff;
  font-size: 16px;
  padding: 8px 14px;
  display: inline-block;
  margin-left: 20px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.appoint_mod button {
  border: none;
  display: inline-block;
  margin-right: 24px;
  padding: 12px 40px;
  font-size: 18px;
  border-radius: 50px;
  margin-top: 32px;
  cursor: pointer;
}

.appoint_mod_submit {
  background: #266baf;
  color: #fff;
}

.appoint_mod_close {
  color: #e50000;
}

@media (max-width: 768px) {
  .appoint_mod {
    width: 100%;
    height: 100%;
    min-height: 100%;
    left: 0;
    margin-left: 0;
    top: 0;
  }

  .appoint_mod h3 {
    font-size: 24px;
  }

  .appoint_mod_item label {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .appoint_mod_item img {
    width: 130px;
  }

  .appoint_mod_item em {
    font-size: 14px;
  }

  .appoint_mod button {
    margin-right: 16px;
    padding: 10px 34px;
    font-size: 15px;
  }
}

/* appoint_mod-------------------------------------------------------------- */
/*sub_download-------------------------------------------------------------*/
.sub_map {
  display: block;
  margin-bottom: 20px;
}


.sub_download_item {
  position: relative;
  margin-bottom: 24px;
}

.sub_download_item a {
  display: block;
}

.sub_download_item .left {
  float: none;
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: 80px;
  background: #0356a7;
  color: #fff;
  font-size: 26px;
  text-align: center;
  line-height: 80px;
  margin-right: 30px;
}

.sub_download_item .right {
  float: none;
  display: inline-block;
  vertical-align: middle;
}

.sub_download_item p {
  font-size: 20px;
  margin-bottom: 14px;
  color: #005d7c;
}

.sub_download_item span {
  color: #bcbcbc;
}

.sub_download_item em {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 768px) {
  .sub_download_item {
    font-size: 0;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 10px;
  }

  .sub_download_item .left {
    width: 20%;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
    margin: 0;
  }

  .sub_download_item .right {
    width: 80%;
    padding-left: 10px;
  }

  .sub_download_item p {
    font-size: 15px;
  }

  .sub_download_item span {
    font-size: 13px;
  }

  .sub_download_item em {
    display: block;
    position: static;
    font-size: 14px;
    -webkit-transform: none;
    transform: none;
    margin-top: 16px;
  }
}

/*sub_download-------------------------------------------------------------*/
/* 联系我们-------------------------------------------------------------- */
.sub_contact_group {
  margin-bottom: 50px;
}

.sub_contact_group h3 {
  text-align: center;
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 18px;
}

.sub_contact_list {
  overflow: hidden;
}

.sub_contact_list li {
  float: left;
  width: 50%;
  overflow: hidden;
  padding: 24px;
}

.sub_contact_list .wrap {
  -webkit-box-shadow: 0px 0px 20px 5px #f3f3f3;
  box-shadow: 0px 0px 20px 5px #f3f3f3;
  background: #fff;
  overflow: hidden;
  padding: 20px;
  position: relative;
  min-height: 239px;
}

.sub_contact_list .wrap .show_wx_ewm_btn {
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
  color: #87c2ff;
  padding: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 3;
}

.sub_contact_list .avatar {
  width: 138px;
  height: 180px;
  float: left;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #87c2ff;
  color: #fff;
  font-size: 60px;
  text-align: center;
  line-height: 170px;
}


.sub_contact_list .msg {
  float: left;
  margin-left: 26px;
}

.sub_contact_list .msg .name {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  width: 76px;
  white-space: nowrap;
  text-align-last: justify;
}

.sub_contact_list .msg .department {
  font-size: 14px;
  background: #222;
  color: #fff;
  display: inline-block;
  padding: 2px 6px;
  margin-top: 6px;
}

.sub_contact_list .msg .other {
  border-top: 1px solid #f1f1f1;
  margin-top: 8px;
  padding-top: 10px;
}

.sub_contact_list .msg .other p {
  margin-bottom: 10px;
  font-size: 15px;
}


.wx_ewm_wrap {
  display: none;
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .6);
}

.wx_ewm_wrap_main {
  position: absolute;
  background: #fff;
  z-index: 3;
  width: 490px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.wx_ewm_wrap_main label {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 15px;
  padding: 10px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 3;
}

.wx_ewm_wrap_main img {
  width: 320px;
  margin: 52px auto 10px;
  display: block;
}

.wx_ewm_wrap_main p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sub_contact {
    margin-top: 24px;
  }

  .sub_contact_group h3 {
    margin-bottom: 0;
  }

  .sub_contact_list li {
    width: 100%;
    padding: 20px 12px;
  }

  .sub_contact_list .avatar {
    display: none;
  }

  .sub_contact_list .msg {
    margin-left: 0;
  }

  .wx_ewm_wrap_main {
    width: 94%;
  }

  .wx_ewm_wrap_main img {
    width: 100%;
  }

}

/* 联系我们-------------------------------------------------------------- */
/* sub 新闻----------------------------------------------------------------------- */
.news_mod {
  padding: 50px 0;
}

.exb_news,
.industry_news {
  float: left;
  width: 50%;
}

.exb_news {
  padding-right: 20px;
}

.industry_news {
  padding-left: 20px;
}

.news_mod_tit {
  font-size: 26px;
  background: #049dd5;
  color: #fff;
  padding: 10px;
}

.news_mod_item {
  font-size: 0;
  line-height: 52px;
  border-bottom: 1px solid #e1e1e1;
}

.news_mod_item a {
  display: block;
}

.news_mod_item p {
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  width: 74%;
}

.news_mod_item em {
  display: inline-block;
  vertical-align: middle;
  width: 26%;
  font-size: 15px;
  text-align: right;
}

.news_mod_more {
  border: 1px solid #049dd5;
  color: #049dd5;
  font-size: 16px;
  margin-top: 24px;
  padding: 8px 16px;
}

@media (max-width: 768px) {
  .news_mod {
    padding: 10px 0 30px;
  }

  .exb_news,
  .industry_news {
    width: 100%;
    padding: 0;
  }

  .exb_news {
    margin-bottom: 24px;
  }

  .news_mod_tit {
    font-size: 18px;
  }

  .news_mod_item {
    line-height: 28px;
    padding: 6px 10px;
  }

  .news_mod_item p {
    float: none;
    width: 100%;
    font-size: 16px;
  }

  .news_mod_item em {
    float: none;
    width: 100%;
    text-align: left;
    font-size: 14px;
  }

  .news_mod_more {
    font-size: 14px;
    margin-top: 16px;
  }
}

/* sub 新闻----------------------------------------------------------------------- */
/* sub_page_main_cont --------------------------------------------------------------- */
.sub_page_main_cont {
  padding: 20px;
  min-height: 500px;
}

.sub_page_main_cont .word img {
   max-width: 100%;
  height: auto;
}

.sub_page_main_cont .title {
  color: #005d7c;
  font-size: 28px;
  margin-bottom: 10px;
}

.sub_page_main_cont .time {
  color: #bcbcbc;
  display: block;
}

.sub_page_main_cont .photo {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto 16px;
}

.sub_page_main_cont .word {
  font-size: 16px;
  line-height: 28px;

}

.sub_cont_list li {
  margin-bottom: 30px;
}

.sub_cont_list li h4 {
  color: #005d7c;
  font-size: 20px;
  margin-bottom: 4px;
}

.sub_cont_list li p {
  font-size: 16px;
  line-height: 28px;
}

.share_wrap {
  margin-top: 66px;
  border-top: 1px solid #f2f2f2;
  padding-top: 16px;
}

.share_wrap .share_tit {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .sub_page {
    padding: 40px 0;
  }

  .sub_page_nav {
    display: none;
  }

  .sub_page_main {
    width: 100%;
    float: none;
    padding: 0;
  }

  .sub_page_main .top {
    line-height: 36px;
  }

  .sub_page_main .top span {
    font-size: 18px;
  }

  .sub_page_main .top p {
    float: right;
    font-size: 13px;
  }

  .sub_page_main_cont {
    padding: 14px 0;
    min-height: 300px;
  }

  .sub_page_main_cont .title {
    font-size: 20px;
  }

  .sub_page_main_cont .time {
    font-size: 14px;
  }

  .sub_page_main_cont .photo {
    width: 100%;
  }

  .sub_page_main_cont .word {
    font-size: 15px;
    line-height: 26px;
    margin-top: 16px;
  }

  .sub_cont_list li {
    margin-bottom: 18px;
  }

  .sub_cont_list li h4 {
    font-size: 17px;
  }

  .sub_cont_list li p {
    font-size: 15px;
    line-height: 24px;
  }
}

/* sub_page_main_cont --------------------------------------------------------------- */


.sub_speaker_list {
  overflow: hidden;
}

.sub_speaker_item {
  width: 25%;
  float: left;
  padding: 16px;
}

.sub_speaker_item a {
  display: block;
  -webkit-transition: -webkit-box-shadow .2s;
  transition: -webkit-box-shadow .2s;
  transition: box-shadow .2s;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
}

.sub_speaker_item a:hover {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, .3);
  box-shadow: 0 0 12px rgba(0, 0, 0, .3);
}

.sub_speaker_item .avatar {
  display: block;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.sub_speaker_item p {
  text-align: center;
  line-height: 32px;
  background: #f1f1f1;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 14px;
}

@media (max-width: 768px) {
  .sub_speaker_item {
    width: 50%;
    padding: 4px;
  }

  .sub_speaker_item p {
    font-size: 12px;
  }

  .sub_speaker_item .avatar {
    height: 166px;
  }
}



.website_prompt {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .9);
  display: none;
}

.website_prompt_wrap {
  position: absolute;
  z-index: 2;
  width: 500px;
  background: #fff;
  text-align: center;
  padding: 32px;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
}

.website_prompt h2 {
  font-size: 30px;
}

.website_prompt p {
  font-size: 18px;
  line-height: 32px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .website_prompt_wrap {
    width: 90%;
  }

  .website_prompt h2 {
    font-size: 28px;
  }

  .website_prompt p {
    font-size: 16px;
    line-height: 26px;
  }
}

/*----------------------------*/
.float-img {
  position: fixed;
  bottom: 203px;
  right: 0;
  width: 106px;
  z-index: 99999;
  text-align: center;
  color: #8b8b8b;
}


/*reset*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-size: 14px;
  background-color: white;
  overflow: auto;
}

body,
button,
input,
keygen,
legend,
select,
textarea {
  font-family: "Microsoft Yahei", "HanHei SC", PingHei, "PingFang SC", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  font-weight: 400;
  color: #333;
  outline: 0;
  speak: none;
  -webkit-font-feature-settings: normal;
  -moz-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

li {
  list-style: none;
}

html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}

img {
  vertical-align: top;
}

a,
button {
  cursor: pointer;
}

a {
  color: #000;
  outline: none;
  text-decoration: none;
}

a:focus {
  color: #333;
  outline: none;
  -moz-outline: none;
}


/*common*/
body {
  background: #F4F5F9;
}

a:hover {
  color: #c50000;
  text-decoration: none;
}

a:-webkit-any-link {
  text-decoration: none;
}





/*主要样式*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/*浮动样式*/

.xianfu_right {

  position: fixed;

  top: 50%;

  right: 0;

  transform: translateY(-50%);

  z-index: 3;

  opacity: 0;

  visibility: hidden;

  transition: all .4s;

}



.xianfu_right.active {

  opacity: 1;

  visibility: visible;

}



.xianfu_right .xian_ul {

  width: 84px;

  box-shadow: 0px 0px 20px 0px rgba(4, 0, 0, 0.1);

  border-radius: 10px;

  background: #FFFFFF;

  z-index: 1;

  position: relative;

}



.xianfu_right .xian_ul li {

  width: 84px;

  height: 80px;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  position: relative;

  cursor: pointer;

}

.xianfu_right .xian_ul li.active {

  background: #007ec8;

  border-radius: 10px;

}



.xianfu_right .xian_ul li.active::before {

  width: 0;

  height: 0;

}



.xianfu_right .xian_ul li:last-child::before {

  width: 0;

  height: 0;

}



.xianfu_right .xian_ul li::before {

  position: absolute;

  content: "";

  bottom: 0;

  width: 54px;

  height: 1px;

  background: #DDDDDD;

  left: 50%;

  transform: translateX(-50%);

}



.xianfu_right .xian_ul li.active p {

  color: #fff;

}



.xianfu_right .xian_ul li.active:hover p {

  color: #fff;

}



.xianfu_right .xian_ul .icon_text {

  margin-bottom: 8px;

  width: 100%;

}



.xianfu_right .xian_ul .icon_text img {

  margin: auto;

  display: block;

  position: relative;

  transition: all .4s;

}



.xianfu_right .xian_ul li:hover .icon_text img {

  transform: translateY(-4px);

}



.xianfu_right .xian_ul p {

  font-size: 14px;

  font-weight: 400;

  color: #323333;

  line-height: 20px;

  text-align: center;

  transition: all .4s;

}



.xianfu_right .xian_ul li:hover p {

  color: #007ec8;

}



.xianfu_right .shai_right {

  width: 84px;

  height: 59px;

  background: #007ec8;

  border-radius: 0px 0px 0px 10px;

  position: relative;

  margin-top: -20px;

  padding: 0 18px;

  padding-top: 24px;

  cursor: pointer;

}



.xianfu_right .shai_right p {

  font-size: 14px;

  color: #FFFFFF;

  line-height: 30px;

  position: relative;

  transition: all .4s;

}



.xianfu_right .shai_right p::before {

  position: absolute;

  top: 10px;

  right: 0;

  width: 6px;

  height: 12px;

  background: url(../images/icvon-right.png) no-repeat center center/100%;

  content: "";

  cursor: pointer;

  animation: removey .5s linear infinite alternate;

  -webkit-animation: removey .5s linear infinite alternate;

}



.xianfu_right .shai_right:hover p:before {

  margin-right: -4px;

}



.xianfu_right .xian_ul li .erwima {

  position: absolute;

  right: 90%;

  top: 50%;

  transform: translateY(-50%);

  padding-right: 36px;

  visibility: hidden;

  opacity: 0;

  -webkit-transition: all 0.5s ease 0s;

  transition: all 0.5s ease 0s;

}



.xianfu_right .xian_ul li:hover .erwima {

  visibility: visible;

  opacity: 1;

  right: 100%;

}

.xianfu_right .xian_ul li .erwima img {
  width: 94px;
}


.xianfu_right .xian_ul li:hover .erwima .wwe {

  width: 120px;

  height: 120px;

  border-radius: 6px;

  padding: 10px;

  background: #fff;

  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.09);

  position: relative;

}



.xianfu_right .xian_ul li:hover .erwima .wwe img {

  width: 100%;

}



.xianfu_right .xian_ul li:hover .erwima .wwe::before {

  position: absolute;

  content: "";

  width: 0;

  height: 0;

  right: -7px;

  top: 50%;

  transform: translateY(-50%);

  border-top: 7px solid transparent;

  border-left: 7px solid #fff;

  border-bottom: 9px solid transparent;

}



.xianfu_right .zhankai {

  width: 33px;

  height: 140px;

  border-radius: 8px 0 0 8px;

  position: absolute;

  top: 60%;

  right: 0px;

  -webkit-transform: translateY(-60%);

  transform: translateY(-60%);

  -webkit-transition: all 0.3s ease 0s;

  transition: all 0.3s ease 0s;

  cursor: pointer;

  -webkit-transition-delay: 0.5s;

  transition-delay: 0.5s;

  animation: shouWt 0.7s ease 0.5s infinite;

  background: #007ec8;

}



.xianfu_right .zhankai {

  writing-mode: vertical-rl;

  display: flex;

  justify-content: center;

  align-items: center;

}



.xianfu_right .zhankai p {

  color: #fff;

  font-size: 16px;

  line-height: 30px;

  letter-spacing: .8em;

  position: relative;

}



.xianfu_right .zhankai p::before {

  position: absolute;

  bottom: -6px;

  right: 40%;

  width: 6px;

  height: 12px;

  background: url(../images/icvon-right.png) no-repeat center center/100%;

  content: "";

  transition: all .4s;

  transform: rotate(180deg);

}



@keyframes shouWt {

  0% {

    width: 33px;

  }

  60% {

    width: 30px;

  }

  100% {

    width: 33px;

  }

}



@keyframes removey {

  0% {

    -webkit-transform: translateX(4px);

    transform: translateX(4px)
  }

  100% {

    -webkit-transform: translateX(-4px);

    transform: translateX(-4px)
  }

}



@-webkit-keyframes removey {

  0% {

    -webkit-transform: translateX(4px);

    transform: translateX(4px)
  }

  100% {

    -webkit-transform: translateX(-4px);

    transform: translateX(-4px)
  }

}



.xianfu_right .xiang_list {

  -webkit-transition: all 0.5s ease 0s;

  transition: all 0.5s ease 0s;

  position: fixed;

  opacity: 1;

  -webkit-transform: translate(0, -50%);

  transform: translate(0, -50%);

  right: 0;

  -webkit-transition: all 0.5s ease 0s;

  transition: all 0.5s ease 0s;

  z-index: 9;

}



.xianfu_right .xiang_list.cat {

  visibility: hidden;

  opacity: 0;

  -webkit-transition-delay: 0.3s;

  transition-delay: 0.3s;

  -webkit-transform: translate(100%, -50%);

  transform: translate(100%, -50%)
}



.banner.banner_ny {

  margin-top: 88px;

}



.banner_ny_text {

  width: 100%;

  position: absolute;

  top: 50%;

  left: 0;

  transform: translateY(-50%);

}



.banner_ny_text h3 {

  font-size: 36px;

  font-weight: bold;

  color: #FFFFFF;

  line-height: 36px;

  text-align: center;

  margin-bottom: 8px;

}



.banner_ny_text p {

  font-size: 16px;

  font-weight: 400;

  color: rgba(255, 255, 255, .8);

  line-height: 36px;

  text-align: center;

}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.sub_page_main .col-sm-3,
.sub_page_main .col-sm-9 {
  padding-left: 0;
  padding-right: 0;
}





.sub_review {
  margin: 0 auto;
  max-width: 100%;
}

.sub_review_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.sub_review_item {
  width: 50%;
  padding: 10px;
  cursor: pointer;
}

.sub_review_container {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.sub_review_item .front,
.sub_review_item .back {
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  color: #fff;
}

.sub_review_item .back {
  background: #cedce7;
  background: -webkit-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
  background: -o-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
  background: linear-gradient(45deg, #cedce7 0%, #596a72 100%);
}

.sub_review_item .front:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  opacity: .6;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.sub_review_container:hover .front,
.sub_review_container:hover .back {
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.sub_review_item .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
}

.sub_review_item .inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.sub_review_container .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.sub_review_container .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.sub_review_container:hover .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.sub_review_container:hover .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.sub_review_item .front .inner p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
}

.sub_review_item .front .inner p:after {
  content: '';
  width: 60px;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -16px;
}

.sub_review_item .front .inner span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.friend_link{
    font-size: 0;
    padding-top: 40px;
    border-bottom: 1px solid #2f57cd;
    padding-bottom: 30px;
      text-align: center;
}
.friend_link .tit{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #fff;}
.friend_link .nav{
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}
.friend_link .nav a{
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #fff;
      padding: 0 12px;
}

@media (max-width: 768px) {
  .sub_review_item {
    width: 100%;
  }
}


.media_mod_list{
  	height:260px;
	overflow:hidden;
}

.btn_see_more{
    border: 1px solid #12569a;
    color: #12569a;
    font-size: 15px;
    width: 140px;
    text-align: center;
    line-height: 40px;
    margin: 20px auto 0;
}