@charset "utf-8";
*{
	margin: 0;padding: 0;
}
body { font:14px/1.6em "lucida grande", "lucida sans unicode", lucida, "Helvetica Neue", helvetica, "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; color:#444;word-wrap:break-word; word-break:break-all;}
.container{width: 1400px;margin: 0 auto;}
a{text-decoration: none;color: #fa862e;}
a:hover{color: #fa862e;}
a img {border:none;}
/*==============header============*/
.header{background-color: #26272b;padding-bottom: 60px;}
.header .top{height: 180px;overflow: hidden;}
.header .logo{float: left;margin-right: 20px;}
.header .logo .logo_img{float: left;line-height: 180px;font-size: 0;margin-right: 20px;margin-left: 20px;}
.header .logo .logo_img img{max-height: 80px;vertical-align: middle;}

.header .logo .logo_title{height: 180px;margin-left: 20px;display: table-cell;vertical-align: middle;}
.header .logo .logo_title p{font-size: 16px;line-height: 24px;color: #777;letter-spacing: 2px;}
.header .logo .logo_title p a{font-size: 42px;line-height: 50px;color: #fa862e;margin-top: 6px;text-shadow: 0 1px rgba(0,0,0,0.2);font-family: 'MyCustomFont', sans-serif;font-weight: bold;}

.header .logo_gg{float: left; display: table-cell;vertical-align: middle;line-height: 180px;color: #aaa;}
.header .logo_gg p{display: inline-block;}
.header .logo_gg p img{vertical-align: middle;}
/* 隐藏重复的导航项 */
.navbar li[data-duplicate="true"] {
    display: none !important;
}
/*nav*/
.nav{padding: 0 15px;height: 50px;line-height: 50px; background-color: #33363b;box-sizing: border-box;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 -1px 0 rgba(0,0,0,0.2), inset 1px 0 0 rgba(0,0,0,0.2), inset -1px 0 0 rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 -1px 0 rgba(0,0,0,0.2), inset 1px 0 0 rgba(0,0,0,0.2), inset -1px 0 0 rgba(0,0,0,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 -1px 0 rgba(0,0,0,0.2), inset 1px 0 0 rgba(0,0,0,0.2), inset -1px 0 0 rgba(0,0,0,0.2);}
.nav ul{list-style: none;float: left;}
.nav li{float: left;position: relative;z-index: 4;}
.nav  li.active > a{color: #fff;}
.nav li a{line-height: 50px;padding: 0 14px;font-size: 16px;color: #888;float: left;
	text-shadow: 0 1px rgba(0,0,0,0.2);-webkit-transition: 0.2s ease-in;-moz-transition: 0.2s ease-in;-ms-transition: 0.2s ease-in;transition: 0.2s ease-in;}
.nav li a:hover{color: #fff;background-color: rgba(0,0,0,0.1);}
.nav ul ul{display: none;position: absolute;top: 100%;left: 0;background-color: #33363b;}
.nav ul li:hover >ul{display: block;}
.nav ul ul li{white-space: nowrap;height: 40px;line-height: 40px;border-top: 1px solid rgba(255,255,255,0.05);display: block;width: 100%;}
/*.nav ul ul li:hover{background-color: rgba(0,0,0,0.1);}*/
.nav ul ul li a{line-height: 40px;/*padding: 0 14px;*//*text-align: center;*/display: block;}
.nav ul ul li a:hover{background-color: #33363b;}
/*.nav ul ul li:hover{background-color: rgba(0,0,0,0.1);}*/
.nav ul ul ul{top: 0;left: 100%;}
.nav ul ul li:hover >ul{display: block;}

/*search - 弹窗式搜索框样式*/
.nav .search {
    float: right;
    position: relative;
}

/* 搜索图标按钮 */
.search-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.search-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.search-icon i {
    color: #888;
    font-size: 16px;
    transition: color 0.3s ease;
}

.search-icon:hover i {
    color: #fff;
}

/* 搜索弹窗 */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-popup.show {
    display: flex;
    opacity: 1;
}

/* 搜索弹窗内容 */
.search-popup-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-popup.show .search-popup-content {
    transform: translateY(0);
}

/* 关闭按钮 */
.search-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    color: #333;
}

/* 搜索标题 */
.search-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 300;
}

/* 搜索表单 */
.search-popup form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-popup form:focus-within {
    border-color: #fa862e;
    box-shadow: 0 10px 40px rgba(98, 187, 195, 0.2);
}

.search-popup form input {
    flex: 1;
    height: 50px;
    padding: 0 25px;
    border: none;
    background: transparent;
    font-size: 18px;
    color: #333;
    outline: none;
}

.search-popup form input::placeholder {
    color: #999;
    font-size: 16px;
}

.search-popup form button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fa862e, #4a9ca5);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(98, 187, 195, 0.3);
}

.search-popup form button:hover {
    background: linear-gradient(135deg, #4a9ca5, #fa862e);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(98, 187, 195, 0.4);
}

.search-popup form button i {
    font-size: 18px;
}

/* 搜索提示 */
.search-tips {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.search-tips kbd {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 12px;
    margin: 0 2px;
}

/* 隐藏原来的搜索表单 */
.search form {
    display: none;
}

.search span {
    display: none;
}

/* 搜索动画 */
@keyframes searchPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 187, 195, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(98, 187, 195, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(98, 187, 195, 0);
    }
}

.search-popup form:focus-within button {
    animation: searchPulse 1.5s infinite;
}

/*main_body*/
.main_body {
    position: relative;
    margin-top: -60px;
    overflow: visible;
    /*border: 1px solid #eee;*/
    border-top: 0;
    border-left: 0;
    box-sizing: border-box;
    min-height: 600px;
    /* 添加内边距为左右栏留出空间 */
    padding-left: 339px; /* 左侧栏宽度 */
    padding-right: 280px; /* 右侧栏宽度 */
}

/* 右侧栏优化样式 */
.sidebar-right {
    width: 280px;
    background-color: #F0F0F0;
    position: absolute;
    right: 0;
    top: 0px;
}

.sidebar-right .widget {
    background-color: #fff;
    /* margin-bottom: 15px;*/ /* 减少边距 */
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 4px; /* 添加圆角 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* 添加阴影 */
}

.sidebar-right .widget h5 {
    font-size: 14px; /* 减小字体 */
    color: #333;
    margin: 0;
    padding: 12px 15px; /* 减少内边距 */
    /*background-color: #f8f8f8;*/
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.sidebar-right .widget h5 i {
    color: #fa862e;
    margin-right: 6px;
    font-size: 13px;
}

/* 热门文章列表样式 */
.hot-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hot-list li {
    padding: 10px 15px; /* 减少内边距 */
    border-bottom: 1px solid #f5f5f5;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.hot-list li:hover {
    background-color: #f9f9f9;
}

.hot-list li:last-child {
    border-bottom: none;
}

.hot-item {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.hot-item .thumb {
    flex-shrink: 0;
    width: 80px; /* 减小缩略图尺寸 */
    height: 70px;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 3px;
}

.hot-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hot-item .thumb:hover img {
    transform: scale(1.05);
}

.hot-item .info {
    flex: 1;
    min-width: 0;
}

.hot-item .info h4 {
    font-size: 13px; /* 减小字体 */
    line-height: 1.3;
    margin: 0 0 5px 0; /* 减少边距 */
    font-weight: normal;
}

.hot-item .info h4 a {
    color: #444;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.hot-item .info h4 a:hover {
    color: #fa862e;
}

.hot-item .meta {
    font-size: 11px; /* 减小字体 */
    color: #999;
    line-height: 1.2;
}

.hot-item .views {
    color: #fa862e;
    font-weight: bold;
    margin-right: 8px;
}

/* 置顶文章样式 - 只显示图片的网格布局 */
.sticky-list {
    list-style: none;
    margin: 0;
    /* padding: 12px; */
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1列网格 */
    gap: 8px; /* 图片间距 */
}

.sticky-list li {
    padding: 0;
    border: none;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3; /* 固定宽高比 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sticky-item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.sticky-item .thumb {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.sticky-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sticky-item .thumb:hover img {
    transform: scale(1.08);
}

/* 添加图片上的标题覆盖层（可选，如果需要显示标题的话） */
.sticky-item .thumb::after {
    content: attr(title);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px 8px 8px;
    font-size: 11px;
    line-height: 1.2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sticky-item .thumb:hover::after {
    opacity: 1;
}

/* 隐藏置顶文章的info部分 */
.sticky-item .info {
    display: none;
}

/* 热门标签样式优化 */
.tag-cloud {
    padding: 12px 15px 15px; /* 调整内边距 */
}

.tag-item {
    display: inline-block;
    padding: 3px 8px; /* 减少内边距 */
    margin: 2px 4px 2px 0;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 12px; /* 更圆润的样式 */
    font-size: 11px; /* 减小字体 */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-item:hover {
    background-color: #fa862e;
    color: #fff;
    border-color: #fa862e;
    transform: translateY(-1px);
}

/* 空状态样式 */
.sidebar-right .widget p {
    color: #999;
    text-align: center;
    padding: 20px;
    font-size: 12px;
    margin: 0;
}

/*.main,.sidebar{padding-bottom: 10000px;margin-bottom: -10000px;}*/
/*.main*/
.main {
    width: 100%; /* 改为100%，填充剩余空间 */
    background-color: #fff;
    box-sizing: border-box;
    margin: 0; /* 取消居中 */
    position: relative;
}
/*breadcrumb*/
.breadcrumb{width: 100%; height: 60px;line-height: 60px; position: relative;padding-left: 30px;color: #aaa;font-size: 16px;font-weight: 600;border-bottom: 1px solid #eee;box-sizing: border-box;}
.breadcrumb span{color: #666;}
.breadcrumb span i{margin-right: 10px;}
.breadcrumb a{margin-left: 20px;}
/*main_list*/
.main_list{overflow: hidden;}
.main_list ul{list-style: none;overflow: hidden;}
.main_list li{float: left;width: 50%;border-bottom: 1px solid #eee;padding: 30px 28px;box-sizing: border-box;overflow: hidden}
.main_list li.box_r{padding-left: 14px;}
.main_list li .box{width: 348px;overflow: hidden;}
.main_list li .img{width: 100%; height: 195px;overflow: hidden;margin-bottom: 15px;}
.main_list li .img img{width: 100%;height: 100%;object-fit: cover;overflow: hidden;}
.main_list li .info{overflow: hidden;}
.main_list li .info span{height: 1.6em;line-height: 1.6em;font-size:14px;color: #bbb;display: block;margin-bottom: 2px;}
.main_list li .info span a{margin-right: 6px;}
.main_list li .info h3{margin-bottom: 10px;font-size: 22px;font-weight: 400;line-height: 1.5em;word-wrap: break-word;overflow: hidden;height: 33px;}
.main_list li .info h3 a{transition: color 0.3s ease-in;color: #444;}
.main_list li p{color: #aaa;font-size: 16px;line-height: 1.6em;overflow: hidden;height: 6.4em;}
/*pagebar*/
.pagebar{width: 100%;padding: 30px; text-align: center;color: #aaa;border-top: 1px solid #eee;margin-top: -1px;overflow: hidden;clear: both;}
.pagebar-info{font-size: 17px;color: #aaa;margin-bottom: 20px;}
.pagebar-nav{font-size: 16px;overflow: hidden;}
.pagebar-nav a{display: inline-block;border-bottom: 3px solid #f1f1f1;border-top: 1px solid #f1f1f1;padding: 7px 8px;font-weight: 600;}
.pagebar-nav a.on,.pagebar-nav a:hover{border-bottom: 3px solid #fa862e;color: #444;}
/*main_post*/
.main_post{padding: 30px;}
.main_post h1{font-size: 30px;line-height: 1.3em;letter-spacing: -1px; font-weight: normal;color: #444;margin-bottom: 10px;word-wrap:break-word; word-break:break-all;}
.main_post .info{font-size: 14px;color: #000;}
.main_post .info span{margin-right: 10px;}

/*无限*/
.ias_trigger{clear: both;text-align: center;padding: 30px 0;overflow: hidden;}
.ias_trigger a{padding: 8px 40px;background-color: #fa862e;color: #fff;border-radius: 20px;}

.pagination-loading{clear: both;overflow: hidden;display: block;width: 140px;height: 40px;line-height: 40px;border-radius: 20px;text-align: center;}


/*article_content*/
.article_content{font-weight: 300;padding: 15px 0;color: #555; font-size:18px;line-height: 1.6em;word-break:break-all;word-wrap:break-word;}
.article_content img {max-width:100%;height:auto;padding: 10px 0;}
@media screen and (max-width: 780px) {
	.article_content img{width: auto;}
}
	/*.article_content h1,.article_content h2, .article_content h3, .article_content h4, .article_content h5, .article_content h6 {
	margin-bottom:18px;background-color: #FBFBFB;color: #333;border-left: 4px solid #fa862e;padding-left: 10px; margin: 10px 0;font-weight: normal;*/
	
	/*border-top-left-radius: 2px;border-bottom-left-radius: 2px;*/
	}
.article_content h1 {font-size:32px;padding-top: 10px;padding-bottom: 10px;}
.article_content h2 {font-size:28px;padding-top: 8px;padding-bottom: 8px;}
.article_content h3 {font-size:20px;padding-top: 4px;padding-bottom: 4px;}
.article_content h4 {font-size:16px;padding-top: 3px;padding-bottom: 3px;}
.article_content h5 {font-size:14px;padding-top: 2px;padding-bottom: 2px;font-weight: normal;}
.article_content h6 {font-size:12px;padding-top: 0;padding-bottom: 0;font-weight: normal;}
.article_content ul, .article_content ol {margin:0 0 18px 50px}
.article_content ul {list-style: disc;}
.article_content ol {list-style: decimal;}
.article_content li {margin-bottom: 6px;}
.article_content p {margin: 12px 0; color: #555; line-height: 1.6em; word-wrap:break-word;}
.article_content pre {word-wrap:break-word}
.article_content table {border-top:solid 1px #ddd;border-left:solid 1px #ddd;width:100%;margin-bottom:18px}
.article_content table th {background-color:#F9F9F9;text-align:center}
.article_content table td, .article_content table th {border-bottom:solid 1px #ddd;border-right:solid 1px #ddd;padding:5px 10px}
.article_content .alignnone {margin:0 auto;}
.article_content .alignleft {float:left;text-align:left;margin-right:10px}
.article_content .aligncenter {margin: 0 auto;text-align: center;display: block;}
.article_content .alignright {float:right;text-align:right;margin-left:10px}
.article_content a {color: #fa862e;}
.article_content a:hover {color: #f40;text-decoration:underline;}
.article_content pre, .comment pre {font-size: 12px;background:#ededed;}
.article_content blockquote {margin: 10px 0px;padding: 15px 20px 1px;border-left: 5px solid #eee;background-color:#f7f7f7;}
.article_content blockquote p {margin:0;padding:0;margin-bottom: 10px;}
/*视频*/
.article_content embed, .article_content video, .article_content iframe{}
@media screen and (max-width: 780px) {
	.article_content embed, .article_content video, .article_content iframe{width: 100%;}
}
/*tags*/
.tags{overflow: hidden;}
.tags a{color: #aaa;margin-right: 10px;}
.tags a::before{content: "#";color: #aaa;}
.tags a:hover{color: #444;}
/*rights*/
.rights{margin: 40px 0;color: #999;line-height: 26px;overflow: hidden;padding-bottom: 20px; border-bottom: 1px solid #ededed;}
.rights h5{font-weight: normal;font-size: 15px;color: #333;margin-bottom: 20px;}
/*share*/
#share{overflow: hidden;margin-bottom: 20px;clear: both;}
#share .sharel{float: left;margin-top: 10px;}
#share .sharel p{color: #444;font-size: 15px;line-height: 32px;}
.sharel .bdsharebuttonbox{}
.bdsharebuttonbox a.bds_weixin_icon{width: 55px;height: 55px;background: url(images/icon_weixin.png) no-repeat center}
.bdsharebuttonbox a.bds_tsina_icon{width: 55px;height: 55px;background: url(images/icon_weibo.png) no-repeat center}
.bdsharebuttonbox a.bds_sqq_icon{width: 55px;height: 55px;background: url(images/icon_qq.png) no-repeat center}
.bdsharebuttonbox a.bds_qzone_icon{width: 55px;height: 55px;background: url(images/icon_qqzone.png) no-repeat center}
.bdsharebuttonbox a.bds_more_icon{width: 55px;height: 55px;background: url(images/icon_more.png) no-repeat center}
/*sharer*/
#share .sharer{float: right;width: 207px;}
.sharer i{width: 100%; height: 14px; background: url(images/qrcode-tope.png) no-repeat top;display: block;}
.sharer .qrimg{border: 1px solid #ededed;height: 155px; border-top: 0;text-align: center;position: relative;}
.sharer .qrimg canvas{padding-top: 12px;}
.sharer .qrimg p{position: absolute;bottom: 5px;left: 0;right: 0;font-size: 12px;color: #999;}

/*related*/
.related{border-top: 1px solid #eee;overflow: hidden;}
.related li{padding: 30px 0;}

/*===========comment=================*/
.article_comments{clear: both;padding-top: 20px; overflow: hidden;;}
.article_comments .commname{ overflow: hidden;height: 46px; line-height: 46px;border-bottom: solid 1px #eaeaea;}
.article_comments .commname span{color: #444; font-size: 15px;line-height:43px;height: 44px; display: inline-block;font-weight: bold; border-bottom: 1px solid #fa862e;padding: 0 10px;}
.article_comments .commname span i{color: #fa862e;margin: 0 5px;font-style: normal;}

#comment{overflow: hidden;}
#comment .ping{color: #333; padding-bottom: 10px; border-bottom: 1px dashed #ededed;height: 24px;line-height: 24px;font-size: 20px;font-weight: normal;}
#comment .compost{margin: 20px 0;}
.compost form{}
.compost .com_name{margin: 10px 0;overflow: hidden;color: #fa862e;}
.compost .com_name a{color: #aaa;}
.compost .com_box{margin: 10px 0;}
.compost .com_box textarea{width: 99.5%; border: 1px solid #ddd;display: block;box-sizing: border-box;padding: 10px;}
.compost .com_info{margin: 10px 0;overflow: hidden}
.compost .com_info ul{float: left;list-style: none; display: inline-block;}
.compost .com_info li{float: left; margin-right: 6px;margin-bottom: 10px;}
.compost .com_info li input{width: 160px;height: 24px;padding-left: 4px; border: 1px solid #ddd;}
.compost .com_info li span{margin-left: 4px;}
.compost .com_info li span img{height: 26px;line-height: 26px; vertical-align: middle;}
.compost .com_info button{float: right;background-color: #fa862e;border: 0; border-radius: 3px;padding: 6px 10px; color: #fff;display: inline-block;}

#comment .comlist{margin: 10px 0;}
.comlist .title{margin: 10px 0; overflow: hidden;}
.comlist .title span{color: #333;background-color: #fff;}
.comlist .title i{width: 93%; height: 1px;background-color: #ededed;vertical-align: middle;display: inline-block}
.comlist ul{list-style: none;}
.comlist li{overflow: hidden;padding: 20px 0;border-bottom: 1px solid #ededed;}
/*.comlist li:hover{background-color: #fafafa;}*/
.comlist li img{float: left;width: 40px;height: 40px;border-radius: 50%;margin-left: 12px;}
.comlist li .clbody{margin-left: 64px;}
.clbody .cinfo{overflow: hidden;}
.clbody .cinfo h5{float: left;height: 18px;line-height: 18px; color: #fa862e;font-size: 14px;font-weight: normal;}
.clbody .cinfo span{float:right;margin-right: 10px;}
.clbody .cinfo span a{color: #fa862e;}
.clbody .cinfo span i{margin-right: 4px;}
.clbody em{color: #888;height: 24px;line-height: 24px; font-size: 12px;font-style: normal;display: block;}
.clbody p{line-height: 24px;color: #4a4a4a; overflow: hidden;}
.clbody p a{color: #aaa;}


/*sidebar*/
.sidebar {
    float: left;
    width: 339px;
    background-color: #F0F0F0;
    position: absolute;
    left: 0;
    top: 0px;
}

/*关注颜色*/
.follow{background-color: #fa862e;width: 100%; height: 60px;line-height: 60px;padding: 0 30px;box-sizing: border-box;
color: rgba(255,255,255,0.8);font-size: 16px;font-weight: 600;position: relative;z-index: 3;}
.follow_icon{overflow: hidden;;}
.follow span{float: left;}
.follow span a{color: rgba(255,255,255,0.8);display: inline-block;margin-left: 6px;}
.follow span.icon{float: right;font-size: 22px;}
.follow span a.wechat{cursor: pointer;}
.follow p{padding: 0;margin: 0; display:none; position: absolute;top: 100%;right: 0;padding: 10px;background-color: #fa862e;}
.follow p img{width:150px;height: auto;}

/*widget_Prev_Next*/
.widget_Prev_Next{padding: 0;}
.widget_Prev_Next .Next,
.widget_Prev_Next .Prev{padding: 20px 40px;border-bottom: 1px solid #ddd;color: #aaa;text-align: center;font-size: 12px;position: relative;}
.widget_Prev_Next .Next:hover,
.widget_Prev_Next .Prev:hover{background-color: rgba(0,0,0,.01);}
.widget_Prev_Next .Next p,
.widget_Prev_Next .Prev p{color: #666;font-size: 15px;}
.widget_Prev_Next .Next i,
.widget_Prev_Next .Prev i{position: absolute;top: 50%;font-size: 18px;margin-top: -8px; color: #ccc;}
.widget_Prev_Next .Next i{right: 15px;}
.widget_Prev_Next .Prev i{left: 15px;}
.widget_Prev_Next .Next:hover i,
.widget_Prev_Next .Prev:hover i{color: #fa862e}

.widget{padding: 10px 20px 20px;overflow: hidden;}
.widget ul{list-style: none;overflow: hidden;}
.widget h5{font-size: 15px;font-weight: 400;margin-bottom: 6px;}
/*ul*/
.widget_ul{list-style:none;}
.widget_ul ul {margin-left: 20px;display: none;}
/*li*/
.widget_ul li{line-height: 32px;border-bottom: 1px solid #e4e4e4;padding: 4px 0;}
.widget_ul li a{color: #777;}
.widget_ul li a::before{font-family: FontAwesome;color: #ccc;content: "\f0da";font-size: 12px;margin-right: 6px;}
.widget_ul li a:hover{color: #444;}
.widget_ul li:hover a::before{color: #444;}
/*widget_diy*/
.widget-diy{padding: 20px 30px;}
.widget_diy{font-size: 14px;line-height: 24px;}
.widget_diy img{max-width: 100%; padding: 10px 0;border-bottom: 1px solid #e4e4e4;}

/*widget_calendar*/
#tbCalendar{width: 100%;text-align: center;}
.widget_calendar caption{/*background-color: #fafafa;*/height: 20px;line-height: 20px;}
.widget_calendar td a{display:block;margin: 0 5px;background:#fa862e;color:#FFFFFF;}

/*widget_misc*/
.widget_misc li{border-bottom: 0;}
.widget_misc li a::before{content: "";margin-right: 0;}

/*widget_comments*/
.widget_comments ul{list-style:none;}
.widget_comments li{padding: 10px 0;}
.widget_comments li:hover a{color: #fa862e;}
.widget_comments li a::before{content: "";margin-right: 0;}
.widget_comments li img{float: left; width: 40px;height: 40px;}
.widget_comments li p{margin-left: 50px;line-height: 20px;}
.widget_comments li span{display: block; margin-left: 50px;color: #aaa;}

/*widget_tags*/
.widget_tags ul{}
.widget_tags li{float: left;margin-right: 10px;}


/*widget_previous*/
.widget_previous{}
.widget_previous li{line-height: 32px;border-bottom: 1px solid #e4e4e4;padding: 10px 0;}
.widget_previous li .img{float: left; width: 80px;height: 80px;overflow: hidden;}
.widget_previous li .img img{width: 100%;height: 100%;object-fit: cover; overflow: hidden;}
.widget_previous li .info{margin-left: 100px;font-size: 13px;line-height: 21px;}
.widget_previous li .info span{line-height: 20px;margin: 0;padding: 0;display: block;}
.widget_previous li .info span a{}
.widget_previous li .info h3{font-weight: normal;max-height: 42px;overflow: hidden;}
.widget_previous li .info h3 a{color: #444;}
.widget_previous li .info h3:hover a{color: #fa862e;}
.widget_previous li .info em{font-style: normal;display: block;color: #777;}
.widget_previous li .info i{font-style: normal;color: #aaa;display: block;}

/*footer*/
.footer{background: #33363b;margin-top: 60px;color: #aaa;line-height: 1.6em;overflow: hidden}
.footer .container{padding: 30px;overflow: hidden;box-sizing: border-box;}
.footer .copyright{text-align: center;}
.footer .power{float: right;}
.footer a{color: #aaa;}
.footer a:hover{color: #fff;}

/*goTop*/
.goTop{display: none;position: fixed; width: 55px;height: 55px;line-height: 68px;text-align:center; border-radius: 50%; background-color: #fa862e;-webkit-transition:  0;-moz-transition:  0;-ms-transition:  0;transition:  0s;cursor: pointer;}
.goTop i{font-size: 26px;color: #fff; transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);}
/*.goTop:hover{background-position: 0 -55px;}*/

/*广告*/
.listad{max-width: 100%;overflow: hidden;}
.listad img{max-width: 100%;}
.postad{max-width: 100%;overflow: hidden;}
.postad img{max-width: 100%;}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .container {
        width: 1120px;
    }
    .main_body {
        padding-right: 0; /* 移除右侧栏padding */
    }
    .sidebar-right {
        display: none;
    }
    .main {
        margin: 0 auto;
    }
}

@media screen and (max-width: 980px) {
    .container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 2%;
        padding-right: 2%;
    }
    .main_body {
        padding-left: 0; /* 移除左侧栏padding */
        padding-right: 0; /* 移除右侧栏padding */
    }
    .main {
        width: 100%;
    }
    .sidebar, .sidebar-right {
        display: none;
    }
}

/*下方为自适应CSS
Theme ID: ydfed
Author: guokun
Author QQ：525887672
Author Email：525887672@qq.com
Author URL: http://www.yzktw.com.cn/
*/

.mnav,.msearch,.nav-m{display: none;}
@media screen and (max-width: 980px) {
	.container{width: 100%;box-sizing: border-box;padding-left: 2%;padding-right: 2%;}
	.main{width: 100%;}
	.sidebar{display: none;}
	.main_list li{padding: 10px;}
	.main_list li .box{width: 100%;}
}
@media screen and (max-width: 480px) {
	.header{padding: 0;}
	.header .top{height: auto;}
	.header .logo{float: none;margin-right: 0;text-align: center;}
	.header .logo .logo_img{float: none;line-height:normal;margin: 30px 0 10px;}
	.header .logo .logo_title{height: auto;margin-left: 0;text-align: center;display: block;margin: 20px 0;}
	.header .logo .logo_title p{text-align: center}
	.header .logo_gg{display: none}
	
	.nav-m{display: block;height: 50px;line-height: 50px; background-color: #33363b;box-sizing: border-box;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 -1px 0 rgba(0,0,0,0.2), inset 1px 0 0 rgba(0,0,0,0.2), inset -1px 0 0 rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 -1px 0 rgba(0,0,0,0.2), inset 1px 0 0 rgba(0,0,0,0.2), inset -1px 0 0 rgba(0,0,0,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 -1px 0 rgba(0,0,0,0.2), inset 1px 0 0 rgba(0,0,0,0.2), inset -1px 0 0 rgba(0,0,0,0.2);position: relative;}
	.mnav,.msearch{display: block;position: absolute;top: 0;color: #aaa;cursor: pointer;font-size: 16px;}
	.mnav{left: 2%;}
	.msearch{right: 2%;}
	
	.nav{padding: 0;height: auto;position: relative;}
	.nav ul{display: none;float: none;}
	.nav li{float: none;display: block;width: 100%;position:static;border-top: 1px solid rgba(255,255,255,0.05);}
	.nav li a{display: block;line-height: 50px;padding: 0 2%;font-size: 16px;color: #888;float: none;}
	.nav ul ul{display: block;margin-left: 2%;position: static;}
	.nav ul ul li a{text-align:inherit;}
	.nav ul ul ul{display: block;position: static;}

	/* 移动端搜索弹窗优化 */
	.search-popup-content {
		width: 95%;
		padding: 30px 20px;
		margin: 20px;
	}
	
	.search-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.search-popup form input {
		font-size: 16px;
		height: 45px;
	}
	
	.search-popup form button {
		width: 45px;
		height: 45px;
	}
	
	.main_body{margin-top: 0;border: 0;}
	.breadcrumb{height: 45px;line-height: 45px;padding-left: 15px;}
	.main_list ul{padding: 10px 0;}
	.main_list li{width: 100%;float: none;padding: 10px;border:1px solid #eee;border-radius: 8px;margin-bottom: 10px;}
	.main_list li .img{border-radius: 5px;}
	.main_list li .info h3{height: auto;}
	.main_list li p{max-height: 6.4em;height: auto;}
	
	.footer{margin-top: 30px;text-align: center;}
	.footer .container{padding: 20px 3%;}
	.footer .copyright{float: none;}
	.footer .power{float: none;}
	
	.main_post{padding: 10px 0;}
	.article_content{padding: 10px 0;}
	.rights{margin: 20px 0;padding-bottom: 5px; }
	.rights h5{margin-bottom: 5px;}
	
	#share{display: none;}
	#share .sharel{float: none;display: block;margin-bottom: 20px;}
	#share .sharer{float: none;width: 207px;margin: 0 auto;}
	
	.listad{display: none;}

	/* 移动端置顶文章调整为单列 */
	.sticky-list {
		grid-template-columns: 1fr; /* 单列布局 */
		gap: 6px;
	}
}
