@charset "utf-8";
/* CSS Document */
article, aside, dialog, footer, header, section, footer, nav, figure, menu {
  display: block
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, 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;
}
html, body {
  font-family: "Microsoft YaHei", Verdana, Arial;
  color: #444;
  font-size: 18px;
  line-height: 1.7;
}
body {
 background:url("xj_bg20260116.png") repeat;
}
img {
  border: 0 none; width:100%; height: auto;
}

@media (max-width: 767px) {
  .xl-centadd img {
    border: 0 none; width:100%!important; height: auto;
  }
  .xl-centadd video{ 
    width: 100%!important; height:220px!important;
  }
  .xl-centadd .xgplayer{ width: 100%!important; height:220px!important;}
}
a {
  color: #333;
  text-decoration: none;
}

a:hover, a:focus {
  color: #0074bd;
  text-decoration: none;
}
ul, li {
  list-style-type: none;
}
input[required]:invalid, input:focus:invalid, textarea[required]:invalid, textarea:focus:invalid {
  box-shadow: none;
  -moz-box-shadow: none;
}
.bottom20 {
  margin-bottom: 20px;
}
p {
  line-height: 175%;
  overflow: hidden;
  text-align: justify;
 
  /*text-align-last:justify;*/
}
.clear {
  clear: both;
}


@media (min-width: 1230px){
  .container{width: 1200px;}
}
@media (min-width: 1299px){
   .container{width: 1260px;}
}
@media (min-width: 1399px){
   .container{width: 1360px;}
}
@media (min-width: 1430px){
   .container{width: 1400px;}
}
@media (min-width: 1530px){
   .container{width: 1500px;}
}




.back_qt{ text-align: left;  margin: 20px 0 0 30px; color: #fff;	position: relative;
    z-index: 98;          }
.back_qt a{color: #fff;}
.banner {
	width: 100%;
	position: relative;  /* z-index生效必备 */
    z-index: 1;          /* 数值小 = 在下层 */
	margin-top: -50px;
}
.banner img{
	width: 100%; 
	max-width: 100%; /* 限制图片最大宽度不超过自身原始尺寸 */
  height: auto;    /* 保持图片宽高比 */
  display: block;  /* 消除图片底部的默认空白间隙 */}


.top_txt{ margin-top: 15px; }
.top_txt p{
  text-indent: 2em;
  color: #fff;
  line-height: 1.888888889;
  font-size: 18px;
}


.logo img {
  width: 100%;
}


/*---------------焦点图&新闻---------------------*/
/* 初始化默认样式，消除边距和列表样式 */
       .ban_grtnews{width: 63%;
    float: left; margin: 0; padding: 0; list-style: none; }
        /* 1. 轮播图外层容器 - 核心：overflow:hidden 裁切超出的图片 */
        .carousel {
            position: relative; /* 给按钮/圆点做定位参考 */
            width: 100%;      /* 轮播图可视宽度 */
            height: auto;
            overflow: hidden;  /* 关键属性：只显示可视区域，裁切多余图片 */
        }
        /* 2. 图片列表盒子 - 所有轮播图横向排列的容器 */
        .carousel .img-list {
            display: flex;     /* 核心：让图片横向排列 */
            transition: transform 0.5s ease; /* 关键属性：平滑过渡动画，0.5秒完成切换 */
			 width: 100%;
        }
.carousel .img-list .item {
  flex: 0 0 100%; /* 关键：每个item宽度=容器100%，不收缩不放大 */
  width: 100%;
}

        /* 3. 轮播图片样式 - 统一宽高，避免变形 */
.carousel .img-list a {display: block;width: 100%;}
        .carousel .img-list a img {
            width: 100%;
  height: auto; /* 移除固定高度，自适应 */
  object-fit: cover;
        }
        /* 4. 左右切换按钮样式 */
        .carousel .btn {
            position: absolute;
            top: 50%;          /* 垂直居中 */
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;/* 圆形按钮 */
            cursor: pointer;   /* 鼠标悬浮显示手型 */
            z-index: 10;       /* 保证按钮在图片上方 */
        }



.carousel .prev {background: url(xj_icon_left20260116.png) no-repeat center center !important;}
.carousel .next {background: url(xj_icon_right20260116.png) no-repeat center center !important;}
        /* 左右按钮分别定位到两侧 */
        .carousel .prev { left: 10px; }
        .carousel .next { right: 10px; }
        /* 按钮悬浮加深背景色，提升交互体验 */
        .carousel .btn:hover { background-color: rgba(0,0,0,0.6); }
        /* 5. 底部圆点指示器样式 */
        .carousel .dot-list {
            position: absolute;
            bottom: 20px;      /* 距离底部20px */
            left: 50%;         /* 水平居中 */
            transform: translateX(-50%);
            display: flex;     /* 圆点横向排列 */
            gap: 10px;         /* 圆点之间的间距 */
            z-index: 10;
        }
        /* 单个圆点样式 */
        .carousel .dot-list .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;/* 圆形圆点 */
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
        }
        /* 圆点选中态样式 - 高亮显示 */
        .carousel .dot-list .dot.active {
            background-color: #fff;
            width: 25px;
            border-radius: 6px;/* 选中态变椭圆，更醒目 */
            transition: all 0.3s;
        }

/*页头新闻*/

.topinfo {
  overflow: hidden;
  min-height: 500px;
  padding: 33px 22px 46px 22px;
  position: relative;
}

.topinfo .info1 {
  display: block;
}

.topinfo .info1 .title {
  font-size: 23px;
  font-weight: 600;
  color: #C81A22;
  line-height: 36px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 13px;
}

.topinfo .info1 .title:hover {
  text-decoration: underline;
}

.topinfo .info1 .desc {
  text-indent: 2em;
  font-size: 15px;
  font-weight: 400;
  color: #444444;
  line-height: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  margin-bottom: 16px;
}

.topinfo .topinfo-morebtn {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: block;
  font-size: 16px;

  font-weight: 400;
  color: #C81A22;
  line-height: 22px;
  text-align: right;
}

.topinfo-list {
  border-top: 1px solid #FFB5B5;
  padding-top: 20px;
}

.topinfo-list li {
  margin-bottom: 15px;
}

.topinfo-list li:last-child {
  margin-bottom: 0;
}

.topinfo-a {
  display: block;
  padding-left: 9px;
  position: relative;
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #444444;
  line-height: 26px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.topinfo-a::before {
  position: absolute;
  content: '';
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #DD4D77;
  border-radius: 5px;
}

.topinfo-a:hover {
  color: #DD4D77;
}
.topinfo-morebtn {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: block;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #C81A22;
    line-height: 22px;
	text-align: right;
}




.main {
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 6px #fbeaea;
  margin-top: -15%;
  position: relative;  /* z-index生效必备 */
  z-index: 99;         /* 数值大 = 在顶层，99足够大，不会被任何元素遮挡 */
}
.row {
  margin: 0;
}

.top_main{display: block; height: auto; background: #f2f2f2; padding: 20px;

}

.lm_cent {
            overflow: hidden; /* 阻止子元素margin-top塌陷 */
            margin: 20px 0; /* 可选：调整父容器自身间距 */
        }

.lm_cent .title {
 

}
.lm_cent .tab-container {margin-top: 20px;}
/* Tab标题容器：实现水平居中 + 按钮横向排列 */


.lm_cent .tab-container .tab-titles {
  text-align: center; /* 让内部行内/行内块元素水平居中 */
  margin: 0 auto; /* 容器自身水平居中（增强兼容性） */
  padding: 10px 0; /* 增加上下内边距，优化视觉 */
}

/* Tab标题按钮：横向排列 + 控制间距 */
.lm_cent .tab-container .tab-title {
  display: inline-block; /* 关键：替代默认block，实现横向排列 */
  background: url("xj_titbg20260116.png") no-repeat center center;
  width: 270px;
  height: 90px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 90px;
  font-weight: bold;
  border: none;
  outline: none; /* 清除焦点框 */
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  margin: 0 10px; /* 两个按钮之间增加间距，避免紧贴 */
}

/* Tab标题激活态样式 */
.lm_cent .tab-container .tab-title.active {
  background: url("xj_titbg2_20260116.png") no-repeat center center;
}

/* Tab内容样式 */
.lm_cent .tab-container .tab-content {
  display: none;
}
.lm_cent .tab-container .tab-content.active {
  display: block;
}



.tab-content {
	margin: 0 -10px;
  display: none; /* 默认隐藏 */
}
.tab-content.active {
  display: block; /* active时显示 */
}
.lm_cent .title .more {
  float: right;
}
.lm_cent .title .more a {
  color: #d83f2b;
  height: 50px;
  line-height: 60px;
  margin-right: 15px;
}

ul.video-wrap-list {
  margin:0;
}
ul.video-wrap-list li {
  width: 20%;
  float: left;
  padding: 13px;
	min-height: 350px;
}
ul li .video-wrap {
  background: #fff;
  margin-bottom: 10px;
  /* box-shadow: 0 2px 6px #C6C6C6;
  min-height: 360px; */
}
ul li .video-wrap .top-wrap {
  position: relative;
}
ul li .video-wrap img {
  width: 100%;
}
ul li .video-wrap .pic-tit {
  position: absolute;
  width: 100%;
  bottom: 0px;
  background: url(20211117red-bg.png) repeat-x left bottom;
  color: #fff;
  height: 55px;
  padding: 25px 15px 0 15px;
  line-height: 30px;
}
ul li .video-wrap .info-word {
  padding: 10px 22px 0 0;
  color: #444;
  position: relative;
}
ul li .video-wrap .info-word h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #444;
	margin-bottom: 5px;
}
ul li .video-wrap .info-word p {
  line-height: 28px;
  font-size: 18px;
  color: #444;
}


.column-wrap .title {
  background: url(20211117column-titbg.png) no-repeat;
  width: 100%;
  height: 58px;
  margin-bottom: 10px;
}
.essay-name {

  color: #fff;
  font-size: 18px;
  background: #CE2A2E;
  background: rgba(206, 42, 46, 0.8);
  line-height: 36px;
  padding: 5px 30px;
	position: relative;
   
	top: -86px;
    left: -40px;
}
.essay {
  margin: -50px 20px 30px;
  padding-bottom: 30px;
}
.essay2 {
  margin: 0px;
}
.essay .tit {
  border-bottom: 1px solid #CCCCCC; margin-bottom: 30px;
	text-align: center
}
.essay .tit2 {
 padding-bottom: 30px;
	
}
.essay .tit h3 {
	margin-bottom: 15px;
	font-weight: bold;
  text-align: center;
  line-height: 160%;
}
.essay .source{ display: block;
	text-align: center;
    margin-top: 10px;
margin-bottom: 35px;}

.essay .info {
  width: 50%;
  margin-bottom: 20px;
  line-height: 32px;
}
.essay .info .data {
  background: url(20211117icon3.png)no-repeat 0 5px;
  float: left;
  padding-left: 38px;
  color: #D32F34;
}
.essay .info .link {
  float: right;
  border: 1px solid #265B95;
  width: 300px;
  height: 32px;
  line-height: 32px;
}
.essay .info .link img {
  height: 100%;
  float: right;
}
.essay .pic-wrap {
  width: 50%;
  margin: 20px auto;
}
.essay .pic-wrap img {
  width: 100%;
  margin-bottom: 10px;
}
.essay .pic-wrap p {
  text-align: center;
  color: #666;
}
.essay p{ line-height: 38px; font-size: 18px;}




footer {margin-top: 20px;
	background: linear-gradient(to right, #8E0502, #C82915);
 color: #fff;
  text-align: center;
  padding: 30px 0;
  line-height: 26px;
}
.logo-cas img {
  width: 85%;
}
footer .copyright{padding-left: 50px;}
footer .copyright p a {
  color: #fff;
}
footer .copyright p span img{ width: 16px; /*vertical-align: text-top;*/ margin-left: 4px; margin-bottom: 5px;}
.back_home a{
  color: #fff;
}


/*列表页*/


.list-title {
  display: inline-block;
  padding-left: 47px;
  padding-right: 142px;
  font-size: 26px;

  font-weight: 800;
  color: #CB1C0A;
  line-height: 37px;
  background: url(kymj-list-ticon.png) no-repeat left center, url(kymj-list-tline.png) no-repeat right center;
  margin-bottom: 40px;
}
.list-title:hover,
.list-title:focus {
  color: #CB1C0A;
}

.comp-image-text-list-06 .box-s {
  margin-bottom: 30px;
  color: #666666;
}
.comp-image-text-list-06 .box-s .box-img {
  overflow: hidden;
  position: relative;
  height: 190px;
}
.comp-image-text-list-06 .box-s .box-img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.7s;
}
.comp-image-text-list-06 .box-s:hover .box-img img {
  transform: scale(1.1);
}
.comp-image-text-list-06 .box-s:hover .box-title {
  color: #1F5CC8;
}
.comp-image-text-list-06 .box-s .box-img {
  float: left;
  margin-right: 30px;
  width: 290px;
}
.comp-image-text-list-06 .box-s .box-info {
  padding-top: 20px;
  overflow: hidden;
}
.comp-image-text-list-06 .box-s .box-title {
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 24px;
  height: 48px;
  height: auto;
  margin-bottom: 15px;
  font-weight: bold;
}
.comp-image-text-list-06 .box-s .box-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 24px;
  height: 72px;
  margin-bottom: 15px;
}
.comp-image-text-list-06 .box-s .box-date {
  color: #EAAC75;
}

.ny-tw-list.comp-image-text-list-06 .box-s {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #D5D5D5;
}
.ny-tw-list.comp-image-text-list-06 .box-s .box-title {
  font-size: 23px;
  line-height: 36px;
  -webkit-line-clamp: 1;
  height: 36px;

  color: #B72828;
}
.ny-tw-list.comp-image-text-list-06 .box-s .box-txt {
	    text-indent: 2em;
  height: 90px;
  font-size: 15px;
  color: #666666;
  line-height: 30px;
}
.ny-tw-list.comp-image-text-list-06 .box-s .box-img {
  width: 290px;
  height: 170px;
}


.fix {
  *zoom: 1;
}
.fix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}
@media screen and (max-width:1440px) {
	
  .container {
    width: 100%;
  }
	.banner dl.logo dt.icon2021 {
		margin-top: 40px;}
	.banner dl.logo dd.logo-word {
		margin-top: 20px;}
		.topinfo {
	min-height: 455px;}
	.essay-name {
	left: 0px;}
}




@media screen and (max-width:1280px) {
	.back_qt {
		margin-top:5px; font-size: 15px;}
	.banner {
    margin-top: -35px;
	}
	.main {
		margin-top: -8%;}
	
	.topinfo {
	min-height: auto;}
  .top_txt p{ font-size: 16px; }
  .top_txt p:first-child{ margin-bottom:0;}
}
@media screen and (max-width:1200px) {
  ul.video-wrap-list li {
    width: 33.3%;
    min-height: 330px;
  }
  ul li .video-wrap {
  }
  ul li .video-wrap ul li.like {
    float: left;
    width: 80%;
  }
  ul li .video-wrap ul li.like div {
    padding-left: 35px;
  }
  ul li .video-wrap ul li.source {
    margin: 5px 10px 10px 10px; 
  }
  footer .logo-cas {
    width: 30%;
  }
  footer .copyright {
    text-align: left;
  }
}
@media screen and (max-width:1080px) {

.ban_grtnews{width: 100%;}

}
@media screen and (max-width:992px) {
	
	.banner dl.logo {margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;}
  .banner dl.logo dt.icon2021 {
    margin-top: 0;
  }
  .banner dl.logo dd.logo-word {
    margin-top: 55px;
  }

  .mobile_show1 .title {
    color: #fff;
    position: absolute;
    top: 45px;
    text-align: center;
    width: 100%;
    text-shadow: 0 0 10px #AA2527;
  }
  .essay .info {
    width: 80%;
  }
  .essay .pic-wrap {
    width: 80%;
  }
  .banner .title {
    margin-top: -30px;
  }
}
@media screen and (max-width:767px) {
	
		.banner {
			background: #a90b24;padding-top: 40px;}
.topinfo {
	padding:15px 1px;}
  .lm_cent .title h2 {
    font-size: 18px;
    /*color: #fff;*/
    padding: 10px;
    line-height: 26px;
    padding-left: 60px;
    margin-left: 10px;
    font-weight: bold;
  }
  .essay .info .data {
    float: none;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 10px;
  }
  .essay .info .link {
    width: 100%;
  }
  ul.video-wrap-list {
    width: 96%;
    margin: 0 auto;
  }
  ul.video-wrap-list li {
    width: 100%;
  }

  footer .logo-cas {
    width: 50%;
  }
  footer .copyright {
    margin-top: 20px;
  }

}
@media screen and (max-width:576px) {

   ul.video-wrap-list li {
    width: 100%;
  }
  .banner dl.logo dd.logo-word img {
    width: 100%;
  }
  .banner .logo-info {
    padding: 0 20px 0 20px;
    color: #fff;
    width: 100%;
  }
  .banner .logo-info p {
    width: 100%;
  }
  .main {
    padding: 20px 0;
  }

ul li .video-wrap {
  min-height: 270px;
}
ul li .video-wrap .info-word .check {
  bottom: -30px;
}
	.essay .source {
    margin-bottom: 20px;
}
	.essay .tit {
    margin-bottom: 20px;
}
	
}
@media screen and (max-width:450px) {
	ul li .video-wrap {
  min-height: auto;}

}



/* Scroll to top
---------------------------------- */
.scrollToTop {
    color: #fff;
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    background-color: #B90302;
    z-index: 1005;
    border-radius:4px;
    display: none;
}
.scrollToTop img{
    display:inline-block;
    width: 28px;
}
/* Small devices (tablets, phones less than 767px) */
@media (max-width:767px) {
    .scrollToTop {
        width: 40px;
        height: 40px;
        line-height: 37px;
        background-color: rgba(0, 0, 0, 0.4);
    }
    .scrollToTop img{
        display:inline-block;
        width: 25px;
    }
}





@media screen and (max-width:1300px) {
  ul.hit_hang li .video-wrap .info-word h4{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}

@media screen and (max-width:1230px) {
  ul.hit_hang li .video-wrap .info-word p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;}
}



@media screen and (max-width:750px) {
 .ny-tw-list.comp-image-text-list-06 .box-s .box-title {
    font-size: 18px;
    line-height: 30px;
    height: auto;
    display: block;
	 width:100%;
	 padding-top: 20px;
  }
  .ny-tw-list.comp-image-text-list-06 .box-s .box-img {
    width: 100%;
    height: auto;
  }
	
.comp-image-text-list-06 .box-s .box-info {
    padding: 20px;
    overflow: visible;
	}
	
  ul.hit_hang li .video-wrap .info-word .mobile_hide{ display:none; }
  ul li .video-wrap .info-word p{   }
  ul.video-wrap-list li{ min-height: auto; }
  .login_cent{ position: absolute; width: 100%; right:10px; }

  .detail-contain img{ max-width: 100%; }

  ul li .video-wrap .info-word h4{
   /* min-height: 72px;
   display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 3;
     overflow: hidden; */
     min-height: auto;
}


}

/* 移动端适配：屏幕过小时强制不换行 */
@media screen and (max-width: 660px) {
	.tab-container .tab-titles{ display: flex;}	
		.tab-container .tab-titles .tab-title {
  /* 弹性分配宽度（按比例平分），也可固定宽度 */
  flex: 1; 
  /* 按钮最小宽度（防止挤压变形） */
  min-width: 80px;
  /* 按钮高度 */
  height: 44px;
  /* 文字居中 */
  display: flex;
  align-items: center;
  justify-content: center;

  /* 移动端点击高亮清除 */
  -webkit-tap-highlight-color: transparent;
		
}
 	.lm_cent .tab-container .tab-titles .tab-title {
	background-size: contain;
    font-size: 18px; /* 小屏缩小字体 */
    height: 100px; /* 小屏调整高度 */
    /* 强制一行（即使内容溢出，也可结合overflow:hidden） */
    flex-wrap: nowrap;
	    background-size: contain;
  }
	.lm_cent .tab-container .tab-titles .tab-title.active{  
		background-size: contain; 
		font-size: 18px; /* 小屏缩小字体 */
    height: 100px; /* 小屏调整高度 */
	}
	}

/*轮播*/
.lunb-a .img-box {
 
  overflow: hidden;
}
.lunb-a .img-box img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.lunb-a .lunb-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 22px;
  padding: 10px 140px 12px 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.top_main .owl-dots {
  position: absolute;
  right: 14px;
  bottom: 17px;
}
.top_main .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #B60F05;
  border-radius: 50%;
  margin-left: 6px;
}
.top_main .owl-dots .active {
  width: 25px;
  border-radius: 20px;
}
.top_main .owl-prev,
.top_main .owl-next {
  position: absolute;
  top: 50%;
  transition: all 0.5s;
  width: 30px;
  height: 35px;
  transform: translateY(-50%);
}
.top_main .owl-prev span,
.top_main .owl-next span {
  display: none;
}
.top_main .owl-prev {
  left: -30px;
  background: rgba(34, 114, 206, 0.5) url(tdgc-left.png) no-repeat center center !important;
}
.top_main .owl-next {
  right: -30px;
  background: rgba(34, 114, 206, 0.5) url(tdgc-right.png) no-repeat center center !important;
}
.top_main .owl-carousel {
  overflow: hidden;
}
.top_main:hover .owl-prev {
  left: 0px;
  transition: all 0.5s;
}
.top_main:hover .owl-next {
  transition: all 0.5s;
  right: 0px;
}
.lunb-a {
  display: block;
  position: relative;
}

.wrap-appendix ul li a{ font-size:16px;}


