/* flex布局兼容 START */
.flex { /* 设置为flex盒子 */
    display: box;      
    display: -webkit-box;  
    display: -moz-box;     
    display: -ms-flexbox;  
    display: -webkit-flex; 
    display: flex;
}
.flex_column { /* 垂直排列 */
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.flex_wrap { /* 允许换行 */
    -webkit-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex_row_center { /* 水平方向上居中 */
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}
.flex_row_start { /* 水平方向上居左 */
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
}
.flex_row_end { /* 水平方向上居右 */
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}
.flex_row_justify { /* 水平方向上等间距排列 */
    -webkit-box-pack: justify;
    -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_column_center { /* 垂直方向上居中 */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.flex_column_start { /* 垂直方向上居上 */
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
}
.flex_column_end { /* 垂直方向上居下 */
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}
.flex1 { /* 占据1份大小 */
    -webkit-box-flex: 1;
    -moz-box-flex: 1;   
    -webkit-flex: 1;    
    -ms-flex: 1;        
    flex: 1;     
}
.flex_rank_1 { /* 排列等级 */
    -webkit-box-ordinal-group: 1; 
    -moz-box-ordinal-group: 1;    
    -ms-flex-order: 1;            
    -webkit-order: 1;             
    order: 1;                     
}
.flex_rank_2 { /* 排列等级 */
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}
/* flex END */


/* 居中 */
.center {
    width: 1300px;
    margin: 0 auto;
}


/* 清除浮动 */
.clear_float::after {
    content: ' ';
    display: block;
    clear: both;
}


.transition { /* 过度 */
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


/* 文本溢出隐藏 */
.one_row_text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.two_row_text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


img {
    width: 100%;
}






/* crumbs */
.crumbs {
    background-color: #f9f9f9;
}
.crumbs span,
.crumbs a {
    font-size: 14px;
	line-height: 56px;
	letter-spacing: 1px;
    color: #888;
}
.crumbs a span {
    font-size: 16px;
    margin-left: 0px;
}
.crumbs span {
    font-size: 12px;
    margin: 0 3px;
    color: inherit;
}
.crumbs a:hover {
    color: #ffad10;
}
.crumbs a:last-child {
    cursor: text;
    color: #ffad10;
}



/* son_title */
.son_title {
    text-align: center;
    margin: 80px 0 60px;
}
.son_title h2 {
    font-size: 30px;
    color: #333;
    display: inline-block;
    padding-bottom: 18px;
    border-bottom: 2px solid #f2bb51;
    position: relative;
    z-index: 10;
}
.son_title span {
    display: inline-block;
    font-size: 16px;
    color: #aaa;
    margin-top: 15px;
}
.son_title .line {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    position: relative;
}



.more {
    position: relative;
    z-index: 10;
    text-align: center;
    display: block;
    margin: 37px auto 100px;
    width: 200px;
	height: 56px;
    background-color: none;
    font-size: 14px;
	line-height: 56px;
    color: #f2ad29;
    border: 1px solid #f2ad29;
}
.more.loadStart:hover {
    font-size: 18px;
    background-color: #f2ad29;
    color: #fff;
}
.more span {
    -webkit-transition: margin 0.3s;
    transition: margin 0.3s;
}
.more.loadStart:hover span {
    margin-left: 15px;
}
.more .rotate {
    -webkit-animation: rotate_move 1.2s linear infinite;
    animation: rotate_move 1.2s linear infinite;
}
@-webkit-keyframes rotate_move {
    0% {
        -webkit-transform: translateY(7px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(7px) rotate(360deg);
    }
}
@keyframes rotate_move {
    0% {
        transform: translateY(7px) rotate(0deg);
    }
    100% {
        transform: translateY(7px) rotate(360deg);
    }
}
.more:not(.loadStart) {
    font-size: 16px;
}
.more i {
    line-height: inherit;
    font-size: inherit;
    color: inherit;
    margin-left: 3px;
}
.more.load i {
    line-height: 22px;
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
    width: 25px;
    height: 25px;
    overflow: hidden;
    display: inline-block;
    margin-left: 10px;
}
.more.load i img {
    line-height: 22px;
}
.more.loadEnd {
    background: #ccc;
    border-color: #ccc;
    color: #fff;
}
.more.hide {
    display: none;
}




/* 详情页点赞 */
.give_like {
    text-align: center;
    margin: 60px 0 100px;
    position: relative;
}
.give_like>i {
    position: absolute;
    font-size: 20px;
    color: #f2ad29;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-animation: i_move 1.2s forwards;
    animation: i_move 1.2s forwards;
}
@-webkit-keyframes i_move {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
    }
}
@keyframes i_move {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px);
    }
}
.give_like span:nth-of-type(1) {
    margin: 0 auto;
    width: 86px;
    height: 86px;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
}
.give_like span:nth-of-type(1) i {
    font-size: 36px;
    color: #dbdbdb;
}
.give_like span:nth-of-type(2) {
    display: inline-block;
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}
.give_like span:nth-of-type(1) .active {
    color: #f2ad29;
}
.give_like span:nth-of-type(1):hover i {
    color: #f2ad29;
}



/* detail */
.detail_title {
    text-align: center;
    margin: 60px 0 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.detail_title h1 {
    font-size: 26px;
	font-weight: bold;
	color: #f2ad29;
}
.detail_title .info {
    margin-top: 15px;
}
.detail_title .info span {
    margin: 0 20px;
    font-size: 14px;
	color: #888;
}
.detail_title .info .change_color {
    cursor: pointer;
}
.detail_title .info .active {
    color: #f2ad29;
}
.detail_title .info i {
    font-size: 16px;
    margin-right: 3px;
}



/* 相关 */
.correlation {
    margin-bottom: 70px;
}
.correlation .correlation_title {
    height: 62px;
	background-color: #fafafa;
    border: solid 1px #eee;
    padding-left: 30px;
}
.correlation .correlation_title h2 {
    font-size: 24px;
	line-height: 62px;
	color: #333;
}
.correlation .item {
    padding: 30px;
    background: #fff;
}
.correlation .item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}
.correlation .item .img_box {
    width: 290px;
    height: 180px;
    background: #f4f4f4;
    overflow: hidden;
}
.correlation .item .explain {
    padding: 10px 0;
    height: 180px;
    width: 917px;
}
.correlation .item .news_title {
    font-size: 22px;
    color: #333;
    width: 90%;
}
.correlation .item .news_desc {
    max-height: 72px;
    font-size: 14px;
	line-height: 24px;
    color: #888;
    margin-top: -15px;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.correlation .item:hover {
    background: #fafafa;
}




/* 点赞 收藏 */
.control span,
.control .comment {
    font-size: 12px;
    color: #666;
    margin-left: 30px;
    line-height: 14px;
    cursor: pointer;
}

.correlation_ranking .control span:first-child{
    margin-left: 0;
}

.control i {
    font-size: 14px;
    color: inherit;
    margin-right: 3px;
    opacity: 0.6;
    line-height: 14px;
}
.control .comment i {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}
.control .change_color:hover {
    color: #f2ad29;
}
.item .like.active,
.control .active {
    color: #f2ad29;
    
    -webkit-animation: zoom_move 0.5s linear;
    animation: zoom_move 0.5s linear;
}
@-webkit-keyframes zoom_move {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.3);
    }
    100% {
        -webkit-transform: scale(1);
    }
}
@keyframes zoom_move {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}



/* 评论 */
.comment_box {
    border-top: 1px solid #f5f5f5;
    padding-top: 60px;
    margin-top: 48px;
    margin-bottom: 80px;
}
.comment_box .form{
    opacity: 1;
}

.comment_box .comment_title {
    font-size: 28px;
    letter-spacing: 1px;
    color: #464646;
    margin-bottom: 30px;
}
.comment_box .comment_title span {
    font-size: 14px;
    letter-spacing: 1px;
    color: #888888;
}
.comment_box .form {
    position: relative;
}
.comment_box .form .user {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c1c5c6;
    text-align: center;
    overflow: hidden;
    margin-right: 20px;
}
.comment_box .form .user img{
    width: 50px;
    height: 50px;
}
.reply_content img{
    width: 30px;
    height: 30px;
    border-radius:100%;
}
.comment_box .comment_item .explain .reply_content span{
    font-size: 14px;
}
.reply_content span {
    margin: 0 20px 0 15px;
}
.comment_box .form .user span {
    font-size: 44px;
    line-height: 60px;
    color: #e0e2e3;
}
.comment_box .form input {
    height: 50px;
    background-color: #fefefe;
    border: solid 2px #eaeaea;
    font-size: 14px;
    letter-spacing: 1px;
    color: #999;
    padding-left: 52px;
    border-right: none;
}
.comment_box .form input::-webkit-placeholder {
    font-size: 14px;
    letter-spacing: 1px;
    color: #c1c5c6;
}
.comment_box .form input::placeholder {
    font-size: 14px;
    letter-spacing: 1px;
    color: #c1c5c6;
}
.comment_box .form input.push {
    padding: 0 20px;
}
.comment_box .form .vanish  {
    display: none;
}
.comment_box .form .login_link  {
    position: absolute;
    top: 50%;
    left: 90px;
    transform: translate(0, -50%);
    letter-spacing: 1px;
    color: #f3a610;
}
.comment_box .form button {
    width: 125px;
    height: 50px;
    background-color: #e2e2e2;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
}
.comment_box .form button:hover{
    background: #efa109;
}
.comment_box .form button.push:hover {
    background: #f2bb51;
}

.comment_box .comment {
    margin-top: 100px;
}
.comment_box .comment h3 {
    font-size: 22px;
    letter-spacing: 1px;
    color: #efa109;
    margin-bottom: 10px;
}
.comment_box .comment_item {
    padding: 30px 0;
    border-top: 1px solid #efefef;
}
.comment_box .comment_item:first-child {
    border-top: none;
}
.comment_box .comment_item .user .img_box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #f4f4f4;
    margin: 0;
}
.comment_box .comment_item .user .img_box img{
    height: 50px;width: 50px;
}
.personal_comment_reply{
    height: 50px;
    margin-top: 30px;
    background-color: #f0f0f0;
    border-radius: 5px;
    padding-left: 25px;
}
.personal_comment_reply input{
    height: 100%;
    width: 90%;
    background-color: #f0f0f0;
    color: #999999;
}
.personal_comment_reply button{
    border: 0;
    background-color: #e1e1e1;
    width: 10%;
    height: 100%;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
}
.comment_box .comment_item .user span {
    margin-left: 15px;
    font-size: 14px;
    color: #424242;
}
.comment_box .comment_item .explain {
    padding-left: 65px;
    margin-top: 15px;
}
.comment_box .comment_item .explain p {
    font-size: 16px;
    line-height: 32px;
    color: #666;
    margin-bottom: 18px;
}
.comment_box .comment_item .explain span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999;
}
.comment_box .comment_item .explain span i {
    font-size: 14px;
    color: inherit;
    margin-right: 3px;
}
.comment_box .comment_more {
    display: block;
    height: 46px;
    background-color: #f0f0f0;
    font-size: 16px;
    line-height: 46px;
    letter-spacing: 1px;
    color: #aaa;
    text-align: center;
    margin-top: 50px;
}
.comment_box .comment_more:hover {
    background: #f2bb51;
    color: #fff;
}
.comment_box .no_comment {
    cursor: text;
}
.comment_box .no_comment:hover {
    background-color: #f0f0f0;
    color: #aaa;
}




.push_picture,.push_video {
    position: absolute;
    right: -120px;
    top: 0;
    text-align: center;
}
.push_picture .img_box:hover,.push_video .img_box:hover {
    background: #f2ad29;
}
.push_picture .img_box,.push_video .img_box {
    width: 70px;
	height: 70px;
    background-color: #e4e4e4;
    border-radius: 50%;
    line-height: 70px;
}
.push_picture .img_box i,.push_video .img_box i {
    font-size: 36px;
    color: #fff;
}
.push_picture .explain,.push_video .explain {
    font-size: 14px;
	line-height: 30px;
    letter-spacing: 1px;
    margin-left: 1px;
    color: #888;
}

.login-close{
    position: absolute;
    z-index: 10000;
    width: 44px;
    height: 44px;
    background-color: #fff;
    box-shadow: 2px 3px 10px 0px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #696969;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    right: -18px;
    top: -18px;
}
.login-close:hover{
    background: #f2bb51;
    color: #fff;
}
.login-close span{
    font-size: inherit;
    color: inherit;
}
.margin-top90{margin-top:90px;}




















@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 480px) {}

