﻿body {
    
}
.container {
 
    margin-top: 12px;
}
.article_list{

    width: 30%;
  float: left;
}
.main {
    width: 68%;
    margin-right: 20px;
    float: left;
}
.main .article {
    background: #ffffff;
    border:1px solid rgba(221,221,221,1);
    box-sizing: border-box;
    margin-bottom: 10px;
}
.main .article .article_content {
    padding: 40px 70px;
    box-sizing: border-box;
}
.main .article .article_content h1 {
    font-size:36px;
    font-weight:bold;
    line-height:48px;
    color:rgba(102,102,102,1);
    margin-bottom: 30px;
}
.main .article .article_content .time {
    font-size:12px;
    line-height:48px;
    color:rgba(204,204,204,1);
}
.main .article .article_content .content {
    padding: 40px 0;
}
.main .article .article_content .content img {
    max-width: 100% !important;
}
.main .article .guide {
    padding: 30px 0;
    border-top: 1px solid #DDDDDD;
    text-align: center;
}
.main .article .guide h2 {
    font-size:20px;
    font-weight:bold;
    color:#666666;
    margin-bottom: 10px;
}
.main .article .guide h2 span {
    color: #FE8C21;
}
.main .article .guide p {
    font-size: 16px;
    color: #999999;
    margin-bottom: 10px;
}
.main .article .guide input {
    width:140px;
    height:40px;
    background:rgba(254,140,33,1);
    opacity:1;
    border-radius:20px;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}
.main .others {
    display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    margin-top: 30px;
}
.main .others a {
    max-width: 45%;
    padding: 10px 20px;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    color: #999999;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main .others a:hover {
    color: #FE8C21;
    border-color: #FE8C21;
}
/* 文章列表 */
.article_list_item {
    background: #ffffff;
    width: 300px;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    padding-bottom: 40px;
    margin-bottom: 20px;
}
.article_list_item .title {
    padding: 20px;
    box-sizing: border-box;
    display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #DDDDDD;
}
.article_list_item .title span {
    width: 5px;
    height: 24px;
    background: #FE8C21;
    display: block;
    margin-right: 10px;
}
.article_list_item ul {
    padding: 0 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    font-size: 14px;
}
.article_list_item ul li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 20px;
}
.article_list_item ul li:hover {
    color: #FE8C21;
}
.article_list_item .more {
    color: #FE8C21;
    font-size: 16px;
    margin-left: 20px;
}