* {
    margin: 0;
    padding: 0;
    font-family: "PingFangSC-Regular,MicrosoftYaHei,Heiti SC,Helvetica";
    font-style: normal;
    text-decoration: none;
    outline: 0;
    list-style-type: none;
    box-sizing: border-box;
}

img {
    border: 0;
    max-width: 100%;
}
ul, li, dl, dt, dd, form, h1, h2, h3, h4, p, input, form {
-webkit-appearance: none;
}
/* 父元素-flex容器 */
.flex {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* 子元素-平均分栏 */
.flex1 {
    -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1; /* OLD - Firefox 19- */
    -webkit-flex: 1; /* Chrome */
    -ms-flex: 1; /* IE 10 */
    flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* 父元素-横向排列（主轴） */
.flex-h {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: horizontal;
    /* 12版 */
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

/* 父元素-横向换行 */
.flex-hw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
    /* 09版 */
    -webkit-box-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;

    /* 其它取值如下：
    align-items 主轴原点方向对齐
    flex-end 主轴延伸方向对齐
    space-between 等间距排列，首尾不留白
    space-around 等间距排列，首尾留白
    */
}

/* 父元素-水平两端对齐（主轴是横向才生效） */
.flex-hb {
    /* 09版 */
    -webkit-box-pack: space-between;
    /* 12版 */
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;

}

/* 父元素-纵向排列（主轴） */
.flex-v {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

/* 父元素-纵向换行 */
.flex-vw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
    /* 09版 */
    -webkit-box-align: center;
    /* 12版 */
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
    -webkit-box-ordinal-group: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 1; /* OLD - Firefox 19- */
    -ms-flex-order: 1; /* TWEENER - IE 10 */
    -webkit-order: 1; /* NEW - Chrome */
    order: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
    -webkit-box-ordinal-group: 2; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-ordinal-group: 2; /* OLD - Firefox 19- */
    -ms-flex-order: 2; /* TWEENER - IE 10 */
    -webkit-order: 2; /* NEW - Chrome */
    order: 2; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

body{
    max-width: 1200px;
    margin: 0 auto;
    color: #282828;
    font-size: 14px;
	overflow-x: hidden;
}
/*a{color: #282828;}*/
header {
    height: 50px;
    padding: 10px;
    border-top: 1px solid #dce1e6;
    width: 100%;
    border-bottom: 1px solid #dce1e6;
}

.logo {
    font-size: 18px;
}

.nav-top {
   
    justify-content: space-around;
}

.nav-top li {
    margin: 0 5px;
	display: flex !important;
    align-items: center;
    justify-content: center;
}

.nav-top li a {
    font-size: 16px;
}
.nav-btn a{ display:flex;align-items: center; padding-left: 10px;}
.nav-top li.active a {color: #f60;}

/*面包屑导航*/
.position{
    height: 45px;
    border-bottom: 1px solid #dce1e6;
    margin: 0 10px 10px;
    background-color: #fff;
    position: relative;
}
.position-wrap{
    height: 45px;

}
.position-wrap a{
    font-size: 16px;
    padding: 0 5px;
    height: 18px;
    line-height: 18px;
	color: #282828;
}
.position-wrap a:first-child{
    padding-left: 8px;
    border-left: 3px solid  #379be9;
    color:  #379be9;
    white-space: nowrap;
    font-weight: bold;
}
/*子导航*/
.nav_one {
    height: auto;
    margin: 0 10px;
    padding-top: 8px;
    padding-bottom: 20px;
    overflow: hidden;
    max-height: 150px;
    position: relative;
}
.nav_one ul li{
    float: left;
    padding: 6px 8px;
    background: #f5f5fa;
    border-radius: 6px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #292929;
    line-height: normal;
    margin: 12px 12px 0 0;
}
/*展开全文*/
.unfold-field{
    position:absolute;
    font-size: 0;
    bottom:0;
    width:100%;
    height:100px;
    z-index: 3;
}
.unfold-field .unflod-field_mask {
    height: 54px;
    width: 100%;
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,hsla(0,0%,100%,0)),to(#fff));
    background-image: linear-gradient(-180deg,hsla(0,0%,100%,0),#fff);
}
.unfold-field_text{
    cursor: pointer;
    width:100%;
    color: #406599;;
    height:46px;
    font-size: 0px;
    line-height: 46px;
    text-align: center;
    background:#fff;
}
.unfold-field_text span{
    display:inline-block;
    font-size: 16px;
    height:46px;
    line-height: 46px;
}
.unfold-field_text span::after{
    content:"";
    vertical-align: middle;
    /*background:url(/static/img/bottom.png);*/
    background-size: contain;
    background-repeat: no-repeat;
    width: 9px;
    height: 6px;
    display: inline-block;
    margin-left: 5px;
}
/*主体内容列表*/
.content{
    border-top: 10px solid #f7f7f7;
}

.nav_wrap {
    border-bottom: 1px solid #dce1e6;
    padding: 0 10px;
    background-color: #fff;
    text-align: center;
    height: 45px;
    display: flex;
     
}

.nav_wrap a {
    display: inline-block;
    font-size: 16px;
    color: #666;
    line-height: 45px;
	margin-right: 15px;
}

.nav_wrap a.select {
    color: #282828;
    font-weight: 700;
    border-bottom: 2px solid #3491f1
}

.list_wrap{
    margin-top: 8px;
}
.list_wrap .items{
    border-bottom:7px solid #f7f7f7;
    padding:10px 10px;
    font-size:16px;
    line-height:22px;
}
.list_wrap .items .items_title a{
	font-size: 17px;
    color: #000;
    letter-spacing: 1px;
}
.list_wrap .items .items_title a span{
	color:#ff0000;
	padding-right:5px;
}
.list_wrap .items .solve {
    display: inline-block;
    padding: 1px 5px;
    background-color: #0b7760;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    top: -2px;
    position: relative;
}
.list_wrap .items .img-circle {
    border-radius: 50%;
    border:1px solid #f0f0f0;
}
.list_wrap .items .items_content{
	font-size:14px;
	color: #666;
    margin-top: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.list_wrap .items .item_footer{
    color: #9fa2b3;
    margin-top:8px;
    display: flex;
    /*justify-content: space-between;*/
	align-items: center;
	font-size:13px;
	line-height: 1.2;
}
.list_wrap .items .item_footer a{
    display: flex;
    align-items: center;
	margin-right: 10px;
}
.list_wrap .items .item_footer > span{margin-right:10px;white-space: nowrap;}
.list_wrap .items .item_footer > span:last-child{margin-right:0px}
.list_wrap .items .item_footer a span{
    padding-left: 5px;
    color: #9fa2b3;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*分页*/
.pages {
    padding: 20px 10px;
    font-weight: bold;
    text-align:center;
	    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pages a, .pages strong, .pages span {
    border-radius: 4px;
    display: inline-block;
    padding: 0 9px;
    margin: 5px 2px;
    min-width: 10px;
    _width: 10px;
    white-space: nowrap;
    height: 27px;
    line-height: 27px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
	    display: flex;
    justify-content: center;
    align-items:center;
}

.pages a {
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #969696;
    border-radius: 4px;
}

.pages a:hover {
    color: #333;
    background-color: #e3e3e3;
    text-decoration: none;
}

.pages strong {
    background-color: #F9F9F9;
    color: #777;
    font-weight: bold;
    border: 1px solid #ddd;
}

.pages span {
    color: #999999;
    font-size: 14px;
}

/*问答详情页*/
.xq-header h1{
    font-size: 20px;
    color: #282828;
    padding: 15px 10px 10px;
    line-height: 1.5;
    background: #fff;
    font-weight: 700;
 
	text-align: justify;
}
.xq-header .xq-text{
    padding: 0 10px 5px;
    line-height: 1.5;
    background: #fff;
    font-size: 16px;
	word-break:break-all;
	text-align: justify;
}
.xq-header .xq-text img,.comment-content img{ max-width:100%; height:auto !important}
.xq-header .xq-text h1, .xq-header .xq-text h2, .xq-header .xq-text h3, .xq-header .xq-text h4, .xq-header .xq-text h5, .xq-header .xq-text h6{
    font-size: 17px;
    margin-top: 5px;
}

.xq-header .xq-footer{
    color: #bbb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dce1e6;
    margin: 10px;
    padding-top: 15px;
}
.xq-header .xq-footer .img-circle {
    border-radius: 50%;
    border:1px solid #f0f0f0;
}
.xq-header .xq-footer a{
    display: flex;
    align-items: center;
	color: #282828;
}
.xq-header .xq-footer a span{
    padding-left: 5px;
    color: #bbb;
  max-width: 95px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.huifu-head{
    color:#333333;
    border-bottom: 1px solid #dce1e6;
    margin: 0 10px;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}
.huifu-head p{
    border-left:3px solid #333;
    padding-left:10px;
    font-size:17px;
    font-weight:bold;
}
.huifu-head a{
    font-size: 16px;
}
.answer-list{
    padding:0 10px;
    font-size: 16px;
    line-height: 1.6;
}
.comment {
    position: relative;
    margin-top: 12px;
    padding: 0 0 15px 0px;
    border-bottom: 1px solid #f0f0f0;
}
.comment > p:last-child{ margin-top:10px; display:flex; align-items:center;justify-content: space-between;}
.comment > .comment-other{ margin-top:15px;}
.comment-user {
    font-size: 15px;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    /*justify-content: space-between;*/
}

.comment-username {
    font-weight: 600;
    color: #379be9;
}

.comment-time {
    color: #999;
    display: inline-block;
    margin-left: 12px;
	margin-left:auto;
}

.comment-content {
    font-size: 16px;
    color: #4b4b4b;
    line-height: 1.6;
    margin-top: 2px;
    word-wrap: break-word;
    margin-bottom: 10px;
	overflow:hidden;
	text-align:justify;
}

.comment-content *{
	white-space: normal !important;
}
.comment-bottom{
	/*border-bottom: 1px solid #ebebeb;*/
	display: flex;
    align-items: center;
	white-space: nowrap;
	justify-content: flex-start;
	margin-top: 10px;
	font-size: 13px;
	position: relative;
}
.comment-bottom a{
	color: #282828;
	margin-right: 10px;
}
.comment-content a {
    border-bottom: 1px dotted #ff0000;
	color: #282828;
}
.comment-content .comment-bottom a{border-bottom: none; color: #282828;}
.p1.comment-content .comment-bottom { border-bottom:none}
.comment-operate-item {
    float: left;
    position: relative;
    /* width: 72px;*/
    padding-left: 16px;
    height: 14px;
    line-height: 14px;
    background-image: url(/static/images/news-icon.8b6beb7f.png);
    background-repeat: no-repeat;
    color: #adadad;
    cursor: pointer;
   /* margin-right: 20px;
	margin-left:auto*/
}
.comment .zan{
	background: url(/images/z1.gif) center no-repeat;
	width: 12px;
	height: 12px;
	display: inline-block;
}
.comment .zan.on{
	background: url(/images/z2.gif) center no-repeat;
}
.comment .zan img,.comment .cai img{ display:none}
.comment .cai{
	background: url(/images/c1.gif) center no-repeat;
	width: 12px;
	height: 12px;
	display: inline-block;
}
.comment .cai.on{
	background: url(/images/c2.gif) center no-repeat;
}
.comment-operate-up {
    background-position: 0 -18px;
}
.comment-operate-d {
    background-position: 0 -32px;
}
.comment-operate-reply {
    background-position: 0 -46px;
	position: absolute;
    right: 0;
}

.comment-operate-edit {
    background-position: 0 -104px;
}

.reply {
    background-color: #f2f2f2;
    padding: 8px 10px 4px;
	border-bottom: 1px solid #ebebeb;
   /* margin-top: 10px;
    border-radius: 4px;
    margin-bottom: 15px;*/
}

.comment-operate-item:hover {
    background-image: url(/static/images/news-icon-blue.24fe4e8c.png);
    color: #379be9;
}

.comment-operate-edit:hover {
    background-position: 0 -118px;
}

.comment-operate {
    margin-top: 18px;
    font-size: 15px;
    display: flex;
}

.reply .comment-operate {
    margin-bottom: 10px;
}
.page_div{margin:20px 10px 20px 0;color:#666}
.page_div button{display:inline-block;min-width:30px;height:28px;cursor:pointer;color:#666;font-size:13px;line-height:28px;background-color:#f9f9f9;border:1px solid #dce0e0;text-align:center;margin:0 4px;-webkit-appearance: none;-moz-appearance: none;appearance: none;}
#firstPage,#lastPage,#nextPage,#prePage{width:50px;color:#0073A9;border:1px solid #0073A9}
#nextPage,#prePage{width:70px}
.page_div .current{background-color:#0073A9;border-color:#0073A9;color:#FFF}
.totalPages{margin:0 10px}
.totalPages span,.totalSize span{color:#0073A9;margin:0 5px}
.page_div button:disabled{opacity:.5;cursor:no-drop}

/*相关推荐*/
.reco_box{
    border-top: 10px solid #f7f7f7;
}
.reco_box .reco_p{
    color: #282828;
    font-size: 17px;
    font-weight: bold;
    padding: 18px 10px 10px;
    background: #fff;
    margin-bottom: 0;
    border-bottom: 1px solid #dce1e6;
    position: relative;
}
.reco_box .reco_p:after{
    content: '';
    display: block;
    border-bottom: 3px solid #379be9;
    width: 80px;
    position: absolute;
    bottom: -2px;
    margin-left: -5px;
}

/*footer*/
.footer {
    border-top: 10px solid #f7f7f7;
}


 .navibar {
     width: 100%;
     height: 65px;
 }

.top_bar {
    position: fixed;
    z-index: 900;
    bottom: 0;
    margin: 0 auto;
    font-family: Helvetica, Tahoma, Arial, Microsoft YaHei, sans-serif;
    max-width: 1200px;
    min-width: 320px;
    width: 100%;
}

.top_menu {
    display: -webkit-box;
    border-top: 1px solid #dce1e6;
    display: block;
    width: 100%;
    height: 44px;
    display: -webkit-box;
    display: box;
    margin: 0;
    padding: 0;
    -webkit-box-orient: horizontal;
    background-color: #288C6A; /*background: -webkit-gradient(linear, 0 0, 0 100%, from(#524945), to(#48403c), color-stop(60%, #524945));*/
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1) inset;
}

.top_bar .top_menu > li {
    -webkit-box-flex: 1;
    position: relative;
    text-align: center;
    float: left;
    width: 22.223%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top_menu li:first-child {
    background: none;
}

.top_bar .top_menu > li > a {
    height: 44px;
    margin-right: 1px;
    display: block;
    text-align: center;
    color: #282828;
    text-decoration: none;
    -webkit-box-flex: 1;
}

.top_bar .top_menu > li.home {
    max-width: 70px;
}

.top_bar .top_menu > li.home a {
    height: 60px;
    width: 60px;
    margin: auto;
    border-radius: 60px;
    position: relative;
    top: -25px;
    left: 2px;
    background: url('https://gf.1190119.com/templates/m/style/images/home.png') no-repeat center center;
    background-size: 100% 100%;
}

.top_bar .top_menu > li > a label {
    overflow: hidden;
    margin: 0 0 0 0px;
    font-size: 14px;
    display: block !important;
    line-height: 44px;
    text-align: center;
	color:#fff;
	display:flex !important;
	justify-content:center;
	align-items:center;
	height:100%;
}

.top_bar .top_menu > li > a img {
    padding: 6px 0 0 0;
    height: 24px;
    width: 24px;
    color: #fff;
    line-height: 60px;
    vertical-align: middle;
    display: none;
}

.top_bar li:first-child a {
    display: block;
}

.layui-m-layerbtn {
  position: fixed !important;
  top: 0;
  width: 70px !important;
  right: 0;
  background: #ff6600 !important;
  margin-top: -35px;
  border-radius: 5px 0 0 0 !important;
  border: none !important;
  height: 35px !important;
  line-height: 35px !important;
}

.layui-m-layerbtn span[yes] {
  color: #fff !important;
  font-size: 16px;
}
.layui-m-layerbtn {
  position: fixed !important;
  top: 0;
  width: 70px !important;
  right: 0;
  background: #ff6600 !important;
  margin-top: -35px;
  border-radius: 5px 0 0 0 !important;
  border: none !important;
  height: 35px !important;
  line-height: 35px !important;
}

.layui-m-layerbtn span[yes] {
  color: #fff !important;
  font-size: 16px;
}

.round_button {
    border: 0px solid;
    display: block;
    text-decoration: none;
    text-align: center;
    height: 28px;
    margin: 10px 2px ;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    -ms-transition: all 0.15s ease;
    transition: all 0.15s ease;
    color: #fff;
    background-color: #969696;
    white-space: nowrap;
    flex: 1;
    cursor: pointer;padding:2px 10px;
}


.head_search {
    padding: 0px 10px;
    position: relative;
}
.head_search form {
    position: relative;
}
.head_search form input {
    width: 100%;
    height: auto;
    line-height: normal;
    font-size: 16px;
    padding: 10px 5px 10px 40px;
    margin: 0;
    float: left;
    text-align: left;
    background-color: #f5f5f5;
    outline: none;
    border: none;
}
.head_search form button {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url(/static/images/soso.png) center no-repeat ;
    background-size: 50% 50%;
    left: 5px;
    top: 5px;
    border: none;
    outline: none;
}
.head_search form:after {
    content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
input[type=search] {
    font-size: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 34px;
    text-align: center;
    border: 0;
    border-radius: 6px;
    background-color: rgba(0,0,0,.1);
}
.head_search form input.soBtn{
    position: absolute;
    right: 0;
    width: 60px;
    padding: 10px 0;
    text-align: center;
    background: #f60;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    color: #fff;
    letter-spacing: 2px;
}

.position-wrap a.fabu {margin-left: auto;
    background: #f60;
    color: #fff;
    padding: 0px 10px;
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
	display:flex;
	justify-content:center;
	align-items:center
	}
/*回答框*/
.comment_holder {
border: 1px solid #ccc;
 
height: 45px;
line-height: 45px;
 
color: #666;
font-size: 16px;
padding-left: 25px;
cursor: pointer;
margin: 10px 0px;
border-radius:4px;
display:flex;
justify-content:space-between;
align-items:center
}
.comment_btn {
display: inline-block;
background-color: #288C6A;
width: 117px;
color: #fff;
height: 100%;
text-align: center;
float: right;
cursor: pointer;
line-height:45px;
display:flex;
justify-content:center;
align-items:center
}
#ueditor{ display:none; width:100%; margin-top:10px;}
/*弹窗登录*/
.madol {
display: none;
width: 340px;
padding: 10px;
position: fixed;
top: 0;
background: #fff;
border-radius: 6px;
left: 0;
right: 0;
bottom:0;
margin: auto;
border: 1px solid #ccc;
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
z-index: 999;
}
#Login-pop{ height: max-content !important;}
.login-left{ width:100% !important;}
/*右边马上注册*/
.reg {
float: right;
padding-top: 30px !important;
display:flex;
justify-content: space-around;
align-items: center;
width: 100%;
}

.reg .reg-btn {
background-color: #ff7d0a;
color: #ffffff;
font-size: 16px;
display: block;
height: 35px;
border: 1px solid #ff7d0a;
border-radius: 4px;
line-height: 35px;
padding: 0 20px;
box-sizing: border-box;
}

.reg .font-style {
font-size: 14px;
line-height: 30px;
}
#captcha_img {
    cursor: pointer;
    position: static !important;
    margin: auto;
    
}
.user-close {
position: absolute;
top: 0;
right: 0;
padding: 5px 10px;
background: #000;
border-top-right-radius: 6px;
}

.user-close a {
color: #fff;
display: block;
}
#content {
padding: 10px;
margin: 0 auto;
display: block;
overflow: hidden;	
font-size:14px;
}
.layui-layer-msg{ overflow:hidden;}
.layui-layer-page{left:10px !important;right:10px !important;margin:auto}
 
.xq-text [data-jodit_iframe_wrapper]:after{display:none !important}
 
/*2024.11.18*/
.phb_box{display:none}
.phb_hd ul li{
	flex: 1;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
}
.phb_hd ul li.on{
	color: #f60;
}
.items-middle {
	align-items: center;
	-webkit-align-items: center;
}
.hot-users li {
	padding: 15px 18px;
	box-sizing: border-box;
	text-align: justify;
	font-size: 14px;
	color: #333;
	width:100%;
	overflow: hidden;
}

.hot-users li .hot-user-avter {
	border-radius: 100%;
	flex-shrink: 0;
	margin-right: 5px;
	float: left;
}
.hot-users li .hot-user-avter img {
	border-radius: 100%;border:1px solid #ddd;
}
.hot-users li .hot-user-info {
	flex-grow: 1;
	float: left;
}
.hot-users li .hot-user-info .hot-nice {
	font-size: 14px;
	color: #333;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
 
}

.hot-users li .hot-user-info .hot-nice a:hover {
	color: #ff6f06;
}
.hot-users li .hot-user-info .hot-des {
	font-size: 12px;
	color: #999;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-top: 8px;
	line-height: 18px;
}
.hot-users li .hot-user-info .hot-des span {

	color: #FF5500;
	font-weight: normal;
}
.hot-users li:hover {
	background-color: #F7F7F7;
}
.follow_status{
	background-color: #fb9809;
	color: #fff;
	border-radius: 3px;
	display: inline-block;
	padding: 5px 10px;
	float: right;
	white-space: nowrap;
}
/*头像呼吸光环和鼠标悬停旋转放大*/
.avatar{border-radius: 50%; /*animation: light 4s ease-in-out infinite;*/ transition: 0.5s;}
.avatar:hover{transform: scale(1.15) rotate(720deg);}
@keyframes light{0%{box-shadow: 0 0 4px #f00;} 25%{box-shadow: 0 0 16px #0f0;} 50%{box-shadow: 0 0 4px #00f;} 75%{box-shadow: 0 0 16px #0f0;} 100%{box-shadow: 0 0 4px #f00;}}

.cp a img{width:100%}