@charset "utf-8";
/* CSS Document */
html{width:100%; height:100%; min-width:1024px;}
body{margin:0px; padding:0px; width:100%; height:100%;  color:#000; font-size:12px; font-family:"microsoft yahei", "微软雅黑"; min-width:1024px;}

a{color:#000; text-decoration : none}
img{border:none; font-size:0;}
body,ul,li,p {margin: 0;padding: 0}
ul,ol {list-style: none;}

.jx_bg_1{background:linear-gradient(to right, #f0c040, #fedc56);}
.jx_bg_2{ background:url('../img/jx_bg_2.jpg') no-repeat top right, linear-gradient(to top, #e2f0b8 , #cfe293); background-size:auto 50px;}

.jx_bg_3{background:linear-gradient(#eee, #fff 30%, #fff);}



/*//////// header  //////////*/
.index_fuchuang{position:fixed; bottom:60px; right:0px; width:100%; height:60px;  padding:10px;   box-sizing:border-box;  display:block;
	transition: visibility 0.5s, opacity 0.5s ease;  text-align:center; z-index:11;  }
.index_fuchuang img{width:55px; animation:moveUpAndDown 1s ease-in-out infinite;}
.hidden {opacity:0; visibility:hidden;  transition:opacity 0.3s ease, visibility 0.3s ease;  }
.display_1{display:flex; justify-content:space-between}

@keyframes moveUpAndDown {
  0% {transform: translateY(0);}
  50% {transform: translateY(40%);}
  100% {transform: translateY(0);}
}








.csr-header{width:100%; }
.jx_top{width:100%; height:24px; margin:15px auto; padding:0 35px; box-sizing:border-box; display:flex; justify-content:space-between;}
.jx_top a{ margin:0 10px; font-size:14px; line-height:24px;}

.csr-header nav{width:100%; height:62px; background:url('../img/menu_bg.jpg') no-repeat top center, linear-gradient(to top, #e2f0b8 , #cfe293);  background-size:auto 68px;
	font-weight: bold}
.jx_nav_div{width:100%; height:62px; margin:0 auto; color:#fff; font-size:18px; display:flex; justify-content:space-between; align-items:center;
	padding:0 35px 0 45px; box-sizing:border-box;}
.jx_nav_div .jx_toyotacsr_logo{height:62px; cursor: pointer}
.jx_nav_div .jx_toyotacsr_logo img{height:62px;}


.jx_nav_div a{ color:#1e2c1b; margin:8px 0px; font-size:18px; line-height:36px; width:124px; height:36px; display: block; text-align: center;}
.jx_nav_div a:hover{background:url(../img/menu_btn_bg.png) no-repeat top center;}

.jx_nav_menu{background:url(../img/menu_btn_bg.png) no-repeat top center;}
.jx_logo{width:100%;  text-align:center}


section{width:100%; height:auto; margin:0 auto; display:flex;}
section_sub{width:100%; height:auto; margin:0 auto; display:flex; padding: 0 66px; box-sizing: border-box;}
/*
section .jx_banner_right{height:461px; width:976px; overflow:hidden;}
section .jx_banner_right ul{width:976px; display:flex;}
section .jx_banner_right li{width:244px;height:461px;overflow:hidden;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;-o-transition:all .1s linear;-ms-transition:all .1s linear;transition:all .1s linear}
section .jx_banner_right li *{-webkit-transition:all .1s linear;-moz-transition:all .1s linear;-o-transition:all .1s linear;-ms-transition:all .1s linear;transition:all .1s linear}
section .jx_banner_right li a{width:244px;height:461px;display:block;position:relative;cursor:pointer;text-decoration:none;overflow:hidden}
section .jx_banner_right li a:hover{position:absolute}
section .jx_banner_right li a:hover .mask{-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;-webkit-transition:opacity .2s ease-in;-moz-transition:opacity .2s ease-in;-o-transition:opacity .2s ease-in;-ms-transition:opacity .2s ease-in;transition:opacity .2s ease-in}
section .jx_banner_right li img{height:461px;width:244px;position:absolute;bottom:0;right:0px}
section .jx_banner_right .mask{height:461px;width:244px;display:block;position:absolute;top:0;left:0;background:#000;-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;-webkit-transition:opacity .2s ease-in;-moz-transition:opacity .2s ease-in;-o-transition:opacity .2s ease-in;-ms-transition:opacity .2s ease-in;transition:opacity .2s ease-in;_display:none!important}
section .jx_banner_right .big{width:244px}
section .jx_banner_right .big a{width:244px}
section .jx_banner_right .big img{width:244px;height:461px;right:0;bottom:0}
section .jx_banner_right .big .mask{width:244px}
section .jx_banner_right:hover .mask{-ms-filter:"alpha(Opacity=50)"; filter:alpha(opacity=50);opacity:.50; -webkit-transition:opacity .2s ease-in;
	-moz-transition:opacity .2s ease-in; -o-transition:opacity .2s ease-in; -ms-transition:opacity .2s ease-in; transition:opacity .2s ease-in}
*/
#subject ul {list-style:none; padding:0; margin:0; display:flex; width:100%; }

#subject li { flex:1; position:relative; overflow:hidden;  }

#subject li img { width:100%; height:auto; display:block; }

#subject li .mask {
    position:absolute; top:0; left:0; width:100%; height:100%;
    background-color:rgba(0, 0, 0, 0); transition:background-color 0.3s ease; pointer-events:none;
}

/* 尝试使用:hover在li的a上，但实际效果可能不符合预期 */
#subject li:not(:hover) .mask {
    /* 这里的问题是:not(:hover)不能直接用于li，因为我们需要的是li的a的:hover状态 */
    /* 所以这个选择器实际上不会按预期工作 */
    /* 我们需要一个不同的方法，但纯CSS可能无法实现完美的解决方案 */
}

/* 一个折衷的解决方案：在#subject上设置:hover，并改变所有.mask的背景，
   然后通过li:hover的.mask来覆盖这个背景 */
#subject:hover li .mask { background-color:rgba(0, 0, 0, 0.5); /* 默认给所有mask添加半透明背景 */  }

#subject li:hover .mask {background-color: transparent; /* 当鼠标悬停在某个li上时，移除其mask的背景 */  }




article{width:1833px; margin:0 auto;}
article_sub{width:100%; margin:0 auto; display:block; padding: 0 66px; box-sizing: border-box;}
.article_index {width:100%; margin:0 auto; padding:0 10px; box-sizing: border-box;}
.jx_yq_gq_div{width:100%; display:flex; justify-content:space-between; margin:30px 0 10px 0;}

.jx_yq_gq{width:32%; display:flex; justify-content:flex-end; }
.jx_yq_gq img{width:100%;}

.jx_article{width:100%; display:flex; justify-content:space-between;}
.jx_article_left{width:67%; position: relative;}
.jx_article_left_tit{width:100%; height:50px; line-height:50px; font-size:18px; font-weight:bold; padding:0 20px; color:#1e2c1b;
	background:url('../img/jx_bg_2.jpg') no-repeat top right, linear-gradient(to top, #e2f0b8 , #cfe293); background-size:auto 50px; box-sizing: border-box;}
.jx_article_left_tit2{width:100%; height:50px; line-height:50px; font-size:18px; font-weight:bold; padding:0 20px; color:#1e2c1b; margin-top:15px;
	background:url('../img/jx_bg_2.jpg') no-repeat top right, linear-gradient(to top, #e2f0b8 , #cfe293); background-size:auto 50px; box-sizing: border-box; display:flex; justify-content:space-between}
.jx_article_left_tit2 .jx_font{font-size:18px; cursor:pointer; color:#799958;}

.jx_article_left_biaoqian_tit{width:100%; height:62px; line-height:80px; font-size:20px; padding-left:10px; box-sizing:border-box; margin-bottom:10px;}

.jx_article_left_biaoqian{width:100%; background:#fff; padding-bottom:10px;}
.jx_article_left_biaoqian ul{ width:100%; display:flex; flex-wrap:wrap}
.jx_article_left_biaoqian li{border-radius:5px; border:1px solid #d5d5d5; box-sizing:border-box; padding:5px 5px; margin:5px; display: block; cursor: pointer}
.jx_article_left_biaoqian li:hover{border:1px solid #d0e293; background:#d0e293; color:#1e2c1b;}

.jx_liushengji_list{width:100%; }

.jx_article_img{width:100%; display: flex; justify-content:space-between; margin-top:30px; font-size:0;}
.jx_article_img_div{width:48%;}
.jx_article_img_div img{width:100%;}

.jx_liushengji_bottom_1{width:72%; }
.jx_liushengji_bottom_2{width:28%; cursor:pointer}
.jx_liushengji_bottom_1 img , .jx_liushengji_bottom_2 img{width:100%;}


.index_mxzc{width:67%; cursor:pointer}
.index_mxzc img{width:100%;}

.jx_a-text { cursor: pointer;}
.jx_a-text:hover { color: red;}
.jx_zhedie1 {}
.jx_zhedie1 span{ cursor:pointer; margin-left:5px;}
.jx_zhedie1 span img{width:48px;}
.jx_zhedie2 {display: none;  }

.jx_dongtai{width:100%; padding:10px 20px; box-sizing:border-box; margin-top:0px;}
.jx_dongtai .dongtai_div{border-bottom:1px solid #e7e7e7; padding:15px 0; display:block;}

.dongtai_div_h2{margin-bottom:5px; font-size:24px; line-height:42px;}
.dongtai_div_span{font-size:18px; line-height:24px;}
.dongtai_div_div{display:flex; justify-content:space-between; margin:15px 0; color:#929292; font-size:14px; line-height:18px;}

.jx_liuyanji_div{width:100%; padding:10px 20px; box-sizing:border-box; }
.jx_liuyanji{margin-bottom:10px; margin-top:20px; display:flex; justify-content:space-between; cursor:pointer; width:100%;}
.jx_liuyanji_tit{width:61%;}
.jx_liuyanji_text{font-size:14px; line-height:24px; margin-top:10px}

.jx_liuyanji_h1{margin:5px 0; font-size:14px; line-height:18px;}
.jx_liuyanji_h2{margin:5px 0; line-height:28px; font-size:24px;}
.jx_liuyanji_h3{font-size:14px; margin-top:15px; line-height:20px;}

.jx_liuyanji_img{width:35%; max-height:223px; overflow:hidden; }
.jx_liuyanji_img img{width:100%;}

.jx_article_right{width:31%;}

.jx_article_jiangxuan_div{width:100%;}
.jx_article_jiangxuan{width:100%; margin-top:10px; position: relative; display:block;}
.jx_article_jiangxuan img{width:100%;}
.jx_article_liuyan_btn{width:100%; margin-top:30px;  cursor:pointer; text-align:center;}
.jx_article_liuyan_btn img{width:69%; }

.jx_article_jiangxuan_tit{position:absolute; left:0; bottom:3px; height:30px; line-height:30px; background:rgba(0, 0, 0, 0.35); color:#fff; font-size:14px;
	width:100%; padding:0 10px; box-sizing:border-box;}


footer{width:100%; text-align:center; padding:40px 0; color:#5f5f5f;}
footer .shu_line{margin-left:8px; margin-right:5px; font-size:11px;}




/*弹出*/
.clear {clear:both;}


.popup{ width:972px; height:420px; position:fixed; bottom:80px; right:15%; z-index:10;display:none; animation:mymove 1s;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
}
.popup-top{padding:15px; box-sizing:border-box; color:#000; cursor:pointer;
	background:url('../img/jx_bg_2.jpg') no-repeat top right, linear-gradient(to top, #e2f0b8 , #cfe293); background-size:auto 55px;}

.popup-top .popup_tit{font-size:18px; font-weight:bold; color:#1e2c1b; width:100%; display: flex; justify-content:space-between}
.popup-top .popup_tit img{width:15px; height:15px;}

.popup-content{width:100%; padding:0 15px; box-sizing:border-box; margin-top:20px}
.popup_div{display:flex; width:100%; height:42px; margin-bottom:10px;}
.popup_div_tit{color:#909090; width:56px; line-height:36px; text-align: left; font-size:14px; font-weight:bold; padding-left:10px; box-sizing:border-box;}
.popup_div_input{height:36px; width:874px;}
.popup_div_input input{border:1px solid #9f9f9f; background:none; width: 100%; height:32px; box-sizing:border-box;}
.popup_div_textarea{width:874px;}
.popup_div_textarea textarea{border:1px solid #9f9f9f; background:none; width: 100%; box-sizing:border-box;}

.popup_tjiao_div{display:flex; justify-content:space-between; width:100%; height:42px; }
.popup_tjiao_tit{font-size:14px; font-weight:bold; color:#c9c9c9; line-height:22px; margin-left:10px}

.popup_tjiao_btn{width:114px; height:38px; font-size:14px; font-weight:bold; color:#fff; background:#272727; line-height:38px; text-align:center; cursor:pointer;
	margin-right:10px}



	/*动画*/

@keyframes mymove {
	0% {transform:scale(1);}
	50% {transform:scale(1.1);}
	100% {transform:scale(1);}
}


/*弹出2*/

.popup2{ width:972px; position:fixed; top:50%; left:50%; z-index:10; display:none; animation:mymove 1s; margin-left:-486px; margin-top:-339px;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
}
.popup-top2{padding:20px; box-sizing:border-box; color:#000; cursor:pointer; }

.popup-top2 .popup_tit2{font-size:18px; font-weight:bold; color:#1e2c1b; width:100%; display:flex; justify-content:flex-end}
.popup-top2 .popup_tit2 img{width:15px; height:15px;}

.popup-content2{width:100%; padding:0 15px; box-sizing:border-box; }
.popup_div2{width:100%; margin-bottom:20px; border:1px solid #d6e6a0; font-size:14px; line-height:24px; padding:20px; box-sizing:border-box}
.popup_div2 span{font-weight:bold;}
.popup_tjiao_div2{display:flex; justify-content:center; width:100%; height:38px; margin-top:15px;}
.popup_tjiao_btn2{width:114px; height:38px; font-size:14px; font-weight:bold; color:#fff; background:#272727; line-height:38px; text-align:center; cursor:pointer;}














.sub_liushengji_tit{width:100%; height:50px; font-size:18px; font-weight:bold; color:#1e2c1b;
	line-height:50px; padding-left:20px; box-sizing:border-box;}

.sub_liushengji_banner{width:100%; margin:15px 0; position:relative;}
.sub_liushengji_banner img{width:100%;}
.sub_liushengji_banner_tit{position:absolute; left:0; bottom:3px; height:40px; line-height:40px; background:rgba(99, 98, 86, 0.85); color:#fff; font-size:18px;
	width:100%; padding:0 15px; box-sizing:border-box; font-weight:bold;}




.jx_article_liuyan_div{width:100%; background:#f9f9f9; height:413px; padding:0px 15px 0px 15px; box-sizing:border-box;}
.jx_article_liuyan{width:100%; padding-top:20px; font-size:14px;}
.jx_article_liuyan_tit{font-weight:bold; line-height:28px;}
.jx_article_liuyan_text{line-height:18px;}


.jx_liuyankuang_div{display:flex; width:100%; height:42px; margin-top:12px;}
.jx_liuyankuang_tit{color:#909090; width:65px; line-height:42px; text-align: left; font-size:14px; font-weight:bold; padding-left:15px; box-sizing:border-box;}
.jx_liuyankuang_input{height:36px; width:1630px;}
.jx_liuyankuang_input input{border:1px solid #9f9f9f; background:none; width: 100%; height:42px; box-sizing:border-box;}
.jx_liuyankuang_textarea{width:1630px;}
.jx_liuyankuang_textarea textarea{border:1px solid #9f9f9f; background:none; width: 100%; box-sizing:border-box;}

.jx_liuyankuang_tijiao_div{display:flex; justify-content:space-between; width:100%; height:42px; }
.jx_liuyankuang_tijiao_tit{font-size:14px; color:#c9c9c9; line-height:24px; margin-left:65px; font-weight:bold;}
.jx_liuyankuang_tijiao_btn{width:114px; height:38px; font-size:14px; font-weight:bold; color:#fff; background:#272727; line-height:38px;
	text-align:center; cursor:pointer; margin-top:4px; margin-right:27px;}


.footer_sub{width:100%; text-align:center; padding:34px 0; color:#5f5f5f; margin-top:28px;}
.footer_sub .shu_line{margin-left:8px; margin-right:5px; font-size:11px;}


.section_banner{width:994px; height:366px; margin:45px auto; position:relative;}
.section_banner_1{width:100%; height:auto; margin:45px auto; position:relative;}
.section_banner_1{width:95%; height:auto; margin:45px auto; position:relative;}
.section_banner_1 img{width:100%;}
.section_banner_jc{position:absolute; width:14.4%;}
.section_banner_jc img{width:100%; transition:transform 0.5s ease;}
.section_banner_jc:hover{z-index:1}
.section_banner_jc:hover img{transform:scale(1.3);  filter:brightness(50%)}




.section_banner_01{top:9.5%; right:40.7%;}
.section_banner_02{top:9.5%; right:25.5%; }
.section_banner_03{top:9.5%; right:10.3%; }
.section_banner_04{top:45%; right:48.4%; }
.section_banner_05{top:45%; right:33.1%; }
.section_banner_06{top:45%; right:18%; }
.section_banner_07{top:27.8%; right:40.7%;}
.section_banner_08{top:27.8%; right:25.5%;}
.section_banner_09{top:27.8%; right:10.3%;}

.jx_ssdt{margin-bottom:10px; box-sizing:border-box; margin-top:15px; background:#f9f9f9; padding:30px 65px;}


.jx_ssdt_div{margin:10px 48px 0px 48px; padding:30px 0 42px 0; box-sizing:border-box; margin-top:15px; border-bottom:1px solid #e7e7e7; display:flex; justify-content:space-between;}
.jx_ssdt_tit{width:100%; font-size:18px; font-weight:bold; line-height:36px; color:#292929}

.jx_ssdt_text{width:100%;  margin-top:10px;}
.jx_ssdt_wenzi{width:100%; margin-top:10px; line-height:24px;}

.jx_ssdt_img{width:660px; margin-left:20px; margin-right:15px; max-height:408px;}
.jx_ssdt_img img{width:100%; }
.jx_ssdt_fenxiang{width:100%; display:flex; justify-content:flex-end; height:22px; font-size:0; padding-right:15px; box-sizing:border-box; margin-top:35px;}
.jx_ssdt_fenxiang img{height:22px}

.sub_fc_lyb{position:fixed; top:66%; right:1%; z-index:20; cursor:pointer}
.sub_fc_lyb img{width:220px;}

.sub_details_div{width:100%; height:50px; font-size:18px; font-weight:bold; color:#1e2c1b; display:flex; justify-content:space-between;
	line-height:50px; padding:0 20px; box-sizing:border-box;}

.jx_ssdt_fenxiang2{width:50%; display:flex; justify-content:flex-end; height:34px; font-size:0; box-sizing:border-box; margin-top:8px;}
.jx_ssdt_fenxiang2 img{height:34px}

.jx_weixin_div{position:relative; }

.jx_ssdt_fenxiang2 .jx_weixin{background:url('../img/fenxiang_weixin.png') no-repeat; background-size:auto 34px; display:inline-block; width:36px; height:34px; }
.jx_ssdt_fenxiang2 .jx_weibo{background:url('../img/fenxiang_weibo.png') no-repeat; background-size:auto 34px; display:inline-block; width:36px; height:34px;}
.jx_ssdt_fenxiang2 .jx_weixin:hover{background:url('../img/fenxiang_weixin_open.png') no-repeat; background-size:auto 34px;}
.jx_ssdt_fenxiang2 .jx_weibo:hover{background:url('../img/fenxiang_weibo_open.png') no-repeat; background-size:auto 34px;}

.float-box{display:none; position:absolute; top:34px; left:-100px;  width:202px; height:214px; font-size:12px;}
.float_box_div{ background-color:#fff; border:1px solid #eee; box-shadow: 0px 0px 5px rgba(0,0,0,0.2); color:#666; }
.jx_weixin_div:hover .float-box {display: block; }
.jx_float_box_top{height:36px; line-height:36px; background-color:#f3f3f3; color:#777; text-align:center;}

.jx_float_box_neirong{ width:100%; height:115px; text-align:center; }
.jx_float_box_neirong img{width:100px; height:100px; margin-top:15px;}
.jx_float_box_txt{display:block; line-height:24px; text-align:center; margin-top:5px; padding-bottom:10px;}



.jx_details_tit{width:100%; line-height:42px; font-size:28px; font-weight:bold; text-align:center;}
.jx_details_zzrq{ font-size:14px; line-height:24px; color:#7c7c7c; margin-top:10px;}
.jx_details_zzrq span{display:block; width:100%; text-align:center;}
.jx_details_text{font-size:18px; line-height:28px; margin-top:15px; padding:0 20px;}
.jx_details_img{width:100%; text-align:center; margin:50px 0; padding:0 20px; box-sizing:border-box;}

.jx_details_bottom{margin:75px 0 25px 0; text-align:center; }
.jx_details_bottom img{width:100px;}

.jx_sub_biaoqian{width:100%; margin-top:14px}
.jx_sub_biaoqian span{border:1px solid #666; border-radius:5px; font-size:14px; color:#b4b4b4; font-weight:bold; padding:5px 10px; margin-right:10px;
	display: inline-block;margin-bottom:10px}

.jx_list_div{padding:18px 0; border-bottom:1px solid #b4b4b4; display:block;}

.jx_list_div h3{width:100%; font-size:18px; font-weight:bold; margin:0; line-height:32px;}
.jx_list_div span{width:100%; line-height:24px;}



.jx_details_itdiv{width:100%; display:flex; justify-content:space-between; margin:50px 0; font-size:14px; line-height:24px; padding:0 20px; box-sizing: border-box}

.jx_details_itertit{font-size:28px; font-weight:bold; border-bottom:1px solid #ccc; padding:10px 0; margin-bottom:10px;}



.jx_fileUpload {border:1px solid #9f9f9f; background:none; width:100%; height:32px; box-sizing:border-box;}
.jx_fileUpload::-webkit-file-upload-button {visibility: hidden;}
.jx_fileUpload::before {content:'选择文件'; display:inline-block; padding:4px 10px 5px 10px; margin:2px 0 2px 2px; background-color:#b6b6b6; color:#fff; }

.jx_fileUpload2 {border:1px solid #9f9f9f; background:none; width:100%; height:32px; box-sizing:border-box;}
.jx_fileUpload2::-webkit-file-upload-button {visibility: hidden;}
.jx_fileUpload2::before {content:'选择文件'; display:inline-block; padding:6px 10px 7px 10px; margin:4px 0 4px 4px; background-color:#b6b6b6; color:#fff;
	font-size:14px; font-weight:bold}



.jx_ayhs{width:100%; line-height:72px; font-size:36px; border-bottom:1px solid #000; font-weight:bold; margin-top:20px;}
.jx_ayhs_text{width:100%; font-size:14px; line-height:36px;}
.jx_ayhs_div{width:100%; background:#f9f9f9; padding:45px 45px 1px 45px; box-sizing:border-box}
.jx_ayhs_div_news{display:flex; justify-content:space-between; padding-left:35px; margin-bottom:65px;}
.jx_ayhs_div_news_tit{width:50%; }

.jx_ayhs_div_news_tit span{display:block; width:100%; color:#7c7c7c; font-size:12px; line-height:24px; margin-bottom:20px; height:24px;}
.jx_ayhs_div_news_tit p{width:100%; font-size:18px; line-height:32px; text-indent:40px; letter-spacing:2px}
.jx_ayhs_div_news_tit a{display:block; width:100%; color:#7c7c7c; font-size:12px; line-height:24px; text-align:right; margin-top:20px; font-weight:bold}

.jx_ayhs_div_news_img{width:48%;}
.jx_ayhs_div_news_img img{width:100%}

.jx_ellipsis{text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:1; display:-webkit-box; overflow: hidden;}
.jx_ellipsis_1{text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:13; display:-webkit-box; overflow: hidden; }
.jx_ellipsis_2{text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:5; display:-webkit-box; overflow: hidden; }




/*/////////////////////////////////   自适应样式  ////////////////////////////////////////////*/
@media(max-width:1700px) {

.jx_article_left_biaoqian_tit{height:52px; line-height:52px; font-size:18px; margin-bottom:10px; margin-top:10px;}
.jx_article_left_biaoqian{ padding-bottom:0px; height:68px; overflow:hidden;}
.jx_article_left_biaoqian li{ margin:3px 5px; }
.jx_dongtai{ padding:15px 10px; margin-top:10px;}
.jx_dongtai .dongtai_div{ padding:10px 0; }
.dongtai_div_h2{margin:5px 0; font-size:18px; line-height:28px;}
.dongtai_div_span{font-size:14px; line-height:24px; text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:1; display:-webkit-box; overflow: hidden;}
.dongtai_div_div{display:flex; justify-content:space-between; margin:10px 0 15px 0; color:#929292; font-size:12px; line-height:18px;}
.jx_liuyanji_div{ padding:10px; }
.jx_liuyanji{margin-bottom:10px; margin-top:10px;}
.jx_liuyanji_h1{margin:5px 0; font-size:14px; line-height:18px;}
.jx_liuyanji_h2{margin:5px 0; font-size:18px; line-height:28px;}
.jx_liuyanji_h3{font-size:14px; line-height:24px; margin-top:5px;}

.popup{ width:972px; height:420px; position:fixed; bottom:80px; right:20%; z-index:10;display:none; animation:mymove 1s;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
	}
.popup-top .popup_tit{font-size:18px;}
.popup_div_tit{ width:60px; line-height:36px; font-size:14px;}
.popup_div_input{height:36px; width:872px;}
.popup_div_textarea{width:872px;}
.popup_tjiao_tit{font-size:14px; line-height:22px; margin:0 10px;}
.popup_tjiao_btn{width:85px; height:38px;}

.jx_liuyanji_img{max-height:194px; overflow:hidden; }
}

@media(max-width:1600px) {
.jx_article_left_biaoqian_tit{height:52px; line-height:52px; font-size:18px; margin-bottom:10px; margin-top:10px;}
.jx_article_left_biaoqian{ padding-bottom:0px;  height:65px; overflow:hidden;}
.jx_article_left_biaoqian li{ margin:3px 5px; }
.jx_dongtai{ padding:15px 10px; margin-top:10px;}
.jx_dongtai .dongtai_div{ padding:10px 0; }
.dongtai_div_h2{margin:5px 0; font-size:18px; line-height:28px;}
.dongtai_div_span{font-size:14px; line-height:24px; text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:1; display:-webkit-box; overflow: hidden;}
.dongtai_div_div{display:flex; justify-content:space-between; margin:10px 0 15px 0; color:#929292; font-size:12px; line-height:18px;}
.jx_liuyanji_div{ padding:10px; }
.jx_liuyanji{margin-bottom:10px; margin-top:10px;}
.jx_liuyanji_h1{margin:5px 0; font-size:14px; line-height:18px;}
.jx_liuyanji_h2{margin:5px 0; font-size:18px; line-height:28px;}
.jx_liuyanji_h3{font-size:14px; line-height:24px; margin-top:5px;}

.popup{ width:972px; height:420px; position:fixed; bottom:80px; right:20%; z-index:10;display:none; animation:mymove 1s;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
	}
.popup-top .popup_tit{font-size:18px;}
.popup_div_tit{ width:60px; line-height:36px; font-size:14px;}
.popup_div_input{height:36px; width:872px;}
.popup_div_textarea{width:872px;}
.popup_tjiao_tit{font-size:14px; line-height:22px; margin:0 10px;}
.popup_tjiao_btn{width:85px; height:38px;}
.jx_liuyanji_img{max-height:194px; overflow:hidden; }
}


@media(max-width:1420px) {
.jx_article_left_biaoqian_tit{height:52px; line-height:52px; font-size:14px; margin-bottom:0px;}
.jx_article_left_biaoqian{ padding-bottom:0px; height:68px; overflow:hidden;}
.jx_article_left_biaoqian li{ margin:3px 5px; }
.jx_dongtai{ padding:15px 10px; margin-top:0px;}
.jx_dongtai .dongtai_div{ padding:5px 0; }
.dongtai_div_h2{margin:5px 0; font-size:16px; line-height:24px;}
.dongtai_div_span{font-size:14px; line-height:24px; text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:1; display:-webkit-box; overflow: hidden;}
.dongtai_div_div{display:flex; justify-content:space-between; margin:10px 0; color:#929292; font-size:12px; line-height:18px;}
.jx_liuyanji_div{ padding:5px 10px; }
.jx_liuyanji{margin-bottom:10px; margin-top:10px;}
.jx_liuyanji_h1{margin:5px 0; font-size:14px; line-height:18px;}
.jx_liuyanji_h2{margin:5px 0; font-size:16px; line-height:24px;}
.jx_liuyanji_h3{font-size:14px; line-height:24px; margin-top:5px;}

.popup{ width:772px; height:420px; position:fixed; bottom:80px; right:20%; z-index:10;display:none; animation:mymove 1s;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
	}
.popup-top .popup_tit{font-size:14px;}
.popup_div_tit{ width:50px; line-height:36px; font-size:12px;}
.popup_div_input{height:36px; width:677px;}
.popup_div_textarea{width:677px;}
.popup_tjiao_tit{font-size:11px; line-height:18px; margin:0 10px;}
.popup_tjiao_btn{width:85px; height:38px;}

.jx_liuyanji_img{max-height:164px; overflow:hidden; }
}

@media(max-width:1366px) {
.jx_article_left_biaoqian_tit{height:52px; line-height:52px; font-size:14px; margin-bottom:0px; }
.jx_article_left_biaoqian{ padding-bottom:0px;  height:65px; overflow:hidden;}
.jx_article_left_biaoqian li{ margin:3px 5px; }
.jx_dongtai{ padding:15px 10px; margin-top:0px;}
.jx_dongtai .dongtai_div{ padding:5px 0; }
.dongtai_div_h2{margin:5px 0; font-size:16px; line-height:24px;}
.dongtai_div_span{font-size:14px; line-height:24px; text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:1; display:-webkit-box; overflow: hidden;}
.dongtai_div_div{display:flex; justify-content:space-between; margin:10px 0; color:#929292; font-size:12px; line-height:18px;}
.jx_liuyanji_div{ padding:5px 10px; }
.jx_liuyanji{margin-bottom:10px; margin-top:10px;}
.jx_liuyanji_h1{margin:5px 0; font-size:14px; line-height:18px;}
.jx_liuyanji_h2{margin:5px 0; font-size:16px; line-height:24px;}
.jx_liuyanji_h3{font-size:14px; line-height:24px; margin-top:5px;}

.popup{ width:772px; height:420px; position:fixed; bottom:80px; right:20%; z-index:10;display:none; animation:mymove 1s;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
	}
.popup-top .popup_tit{font-size:14px;}
.popup_div_tit{ width:50px; line-height:36px; font-size:12px;}
.popup_div_input{height:36px; width:677px;}
.popup_div_textarea{width:677px;}
.popup_tjiao_tit{font-size:11px; line-height:18px; margin:0 10px;}
.popup_tjiao_btn{width:85px; height:38px;}
.jx_liuyanji_img{max-height:164px; overflow:hidden; }
}



@media(max-width:1280px) {
.jx_article_left_biaoqian_tit{height:52px; line-height:52px; font-size:14px; margin-bottom:0px;}
.jx_article_left_biaoqian{ padding-bottom:0px;  height:65px; overflow:hidden;}
.jx_article_left_biaoqian li{ margin:3px 5px; }
.jx_dongtai{ padding:10px; margin-top:0px;}
.jx_dongtai .dongtai_div{ padding:5px 0; }
.dongtai_div_h2{margin:5px 0; font-size:16px; line-height:24px;}
.dongtai_div_span{font-size:12px; line-height:18px; text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:1; display:-webkit-box; overflow: hidden;}
.dongtai_div_div{display:flex; justify-content:space-between; margin:10px 0; color:#929292; font-size:12px; line-height:18px;}
.jx_liuyanji_div{ padding:5px 10px; }
.jx_liuyanji{margin-bottom:10px; margin-top:10px;}
.jx_liuyanji_h1{margin:5px 0; font-size:12px; line-height:18px;}
.jx_liuyanji_h2{margin:5px 0; font-size:16px; line-height:24px;}
.jx_liuyanji_h3{font-size:12px; line-height:18px; margin-top:5px;}

.popup{ width:772px; height:420px; position:fixed; bottom:80px; right:20%; z-index:10;display:none; animation:mymove 1s;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
	}
.popup-top .popup_tit{font-size:14px;}
.popup_div_tit{ width:50px; line-height:36px; font-size:12px;}
.popup_div_input{height:36px; width:677px;}
.popup_div_textarea{width:677px;}
.popup_tjiao_tit{font-size:11px; line-height:18px; margin:0 10px;}
.popup_tjiao_btn{width:85px; height:38px;}

.jx_article_left_tit{ font-size:14px; height:40px; line-height:40px;}
.jx_article_left_tit2{font-size:14px; height:40px; line-height:40px;}
.jx_article_left_tit2 .jx_font{font-size:14px;}
.jx_liuyanji_img{max-height:153px; overflow:hidden; }
}

@media(max-width:1150px) {
.jx_article_left_biaoqian_tit{height:36px; line-height:42px; font-size:14px; margin-bottom:0px;}
.jx_article_left_biaoqian{ padding-bottom:0px; height:65px; overflow:hidden;}
.jx_article_left_biaoqian li{ margin:2px 3px; }
.jx_dongtai{ padding:0 10px; margin-top:0px;}
.jx_dongtai .dongtai_div{ padding:5px 0; }
.dongtai_div_h2{margin:5px 0; font-size:14px; line-height:18px;}
.dongtai_div_span{font-size:12px; line-height:18px; text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:1; display:-webkit-box; overflow: hidden;}
.dongtai_div_div{display:flex; justify-content:space-between; margin:10px 0; color:#929292; font-size:12px; line-height:18px;}
.jx_liuyanji_div{ padding:5px 10px; }
.jx_liuyanji{margin-bottom:10px; margin-top:10px;}
.jx_liuyanji_h1{margin:5px 0; font-size:12px; line-height:18px;}
.jx_liuyanji_h2{margin:5px 0; font-size:14px; line-height:24px;}
.jx_liuyanji_h3{font-size:12px; line-height:18px; margin-top:5px;}

.popup{ width:772px; height:420px; position:fixed; bottom:80px; right:20%; z-index:10;display:none; animation:mymove 1s;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
	}
.popup-top .popup_tit{font-size:14px;}
.popup_div_tit{ width:50px; line-height:36px; font-size:12px;}
.popup_div_input{height:36px; width:677px;}
.popup_div_textarea{width:677px;}
.popup_tjiao_tit{font-size:11px; line-height:18px; margin:0 10px;}
.popup_tjiao_btn{width:85px; height:38px;}

.jx_article_left_tit{ font-size:14px; height:40px; line-height:40px;}
.jx_article_left_tit2{font-size:14px; height:40px; line-height:40px;}
.jx_article_left_tit2 .jx_font{font-size:14px;}

.jx_liuyanji_img{max-height:153px; overflow:hidden; }
}

@media(max-width:1024px) {
.jx_article_left_biaoqian_tit{height:36px; line-height:42px; font-size:14px; margin-bottom:0px;}
.jx_article_left_biaoqian{ padding-bottom:0px;  height:65px; overflow:hidden;}
.jx_article_left_biaoqian li{ margin:2px 3px; }
.jx_dongtai{ padding:0px 10px; margin-top:0px;}
.jx_dongtai .dongtai_div{ padding:5px 0; }
.dongtai_div_h2{margin:5px 0; font-size:14px; line-height:18px;}
.dongtai_div_span{font-size:12px; line-height:18px; text-overflow:ellipsis; -webkit-box-orient:vertical; -webkit-line-clamp:1; display:-webkit-box; overflow: hidden;}
.dongtai_div_div{display:flex; justify-content:space-between; margin:10px 0; color:#929292; font-size:12px; line-height:18px;}
.jx_liuyanji_div{ padding:0px 10px; }
.jx_liuyanji{margin-bottom:10px; margin-top:10px;}
.jx_liuyanji_h1{margin:5px 0; font-size:12px; line-height:18px;}
.jx_liuyanji_h2{margin:5px 0; font-size:14px; line-height:24px;}
.jx_liuyanji_h3{font-size:12px; line-height:18px; margin-top:5px;}

.popup{ width:572px; height:420px; position:fixed; bottom:80px; right:10%; z-index:10;display:none; animation:mymove 1s;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);	background:#fff; border:1px solid #d3e59b; border-radius:5px;
	}
.popup-top .popup_tit{font-size:14px;}
.popup_div_tit{ width:50px; line-height:36px; font-size:12px;}
.popup_div_input{height:36px; width:482px;}
.popup_div_textarea{width:482px;}
.popup_tjiao_tit{font-size:11px; line-height:18px; margin:0 10px;}
.popup_tjiao_btn{width:85px; height:38px;}

.jx_article_left_tit{ font-size:14px; height:40px; line-height:40px;}
.jx_article_left_tit2{font-size:14px; height:40px; line-height:40px;}
.jx_article_left_tit2 .jx_font{font-size:14px;}
.jx_liuyanji_img{max-height:123px; overflow:hidden; }
.index_fuchuang {bottom: 40px}
}



.line{
	display:block;border-bottom: #939393 1px solid;box-sizing: content-box
}

.mt-40{
	margin-top: 40px!important;
}


.italic {
	font-style: italic;
}
.normal {
	font-style: normal;
}
.oblique {
	font-style: oblique;
}



.jx_details_text_small{
	font-size: 14px;
}

.font-weight{
	font-weight: bolder;
}