@charset "utf-8";
h2 {
    font-size: 2.8em;
    line-height: 1.1em;
    color: #222;
    font-weight: 700;
}
h3 {
    font-size: 2.6em;
    line-height: 1.1em;
    color: #222;
    font-weight: 700;
}
h4 {
    font-size: 1.3em;
    line-height: 1.1em;
    color: #222;
    font-weight: 700;
}
h5 {
    font-size: 1.9em;
    line-height: 1.1em;
    color: #222;
    font-weight: 700;
}
h6 {
    font-size: 1.4em;
    line-height: 1.1em;
    color: #222;
    font-weight: 700;
    box-sizing:content-box;
}
p.h2-p {
    font-size: 1.7em;
    line-height: 1.4em;
    color: #999;
}
p.h3-p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #999;
}
p.h4-p {
    font-size: 1.3em;
    line-height: 1.4em;
    color: #999;
}
p.h5-p {
    font-size: 1.1em;
    line-height: 1.4em;
    color: #999;
}
p.h6-p {
    font-size: 1em;
    line-height: 1.4em;
    color: #999;
}
.ellipsis {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}						/* 1줄 말줄임 */
.line-clamp2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}		/* 2줄 말줄임 */
.line-clamp3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}		/* 3줄 말줄임 */
.line-clamp4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}		/* 4줄 말줄임 */
.line-clamp5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}		/* 5줄 말줄임 */
.line-clamp6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}		/* 6줄 말줄임 */
.line-clamp7 {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}		/* 7줄 말줄임 */
.line-clamp8 {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}		/* 8줄 말줄임 */
.line-clamp9 {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}		/* 9줄 말줄임 */
.line-clamp10 {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}	/* 10줄 말줄임 */
.thumbnail {
    overflow: hidden;
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} /* object fit 속성은 ie 모든 버전에서 지원하지 않기때문에 반드시 js로 크로스브라우징될 수 있도록 작업 */
.thumbnail div {
    transform: scale(1);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.thumbnail:hover div {
    transform: scale(1.02);
}
span.time {
    display: block;
    font-size: 0.85em;
    color: #ccc;
    margin: 15px 0;
}
a:hover {
    text-decoration: none;
}
.title h3 {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 0;
    margin-bottom: 15px;
}
.title h4 {
    margin-bottom: 15px;
}
#section01 {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
#section01::before {
    position: absolute;
    display: inline-block;
    content: '';
    width: 100%;
    max-width: 1420px;
    height: 1px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background: #eee;
}
#section01 .item01, #section01 .item02, #section01 .item03 {
    float: left;
    box-sizing: border-box;
    height: 635px;
}
#section01 .item01 {
    width: calc(45% - 20px);
    margin-right: 30px;
}
#section01 .item01 a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
#section01 .item01 a .thumbnail {
    height: 500px;
}
#section01 .item01 a h5 {
    margin: 15px 0;
    height: 2.2em;
}
#section01 .item01 a p.h5-p {
    height: 2.8em;
}
#section01 .item02 {
    width: calc(35% - 80px);
    margin-right: 30px;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
    padding: 0 30px;
}
#section01 .item02 a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
#section01 .item02 a:first-child {
}
#section01 .item02 a .thumbnail {
    height: 300px;
}
#section01 .item02 a h5 {
    margin: 15px 0;
    height: 2.2em;
}
#section01 .item02 a p.h5-p {
    height: 8.4em;
}
#section01 .item03 {
    width: calc(20% - 20px);
}
#section01 .item03 a {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
#section01 .item03 a:first-child {
    border-bottom: 1px solid #eee;
}
#section01 .item03 a h5 {
    margin-bottom: 15px;
    height: 2.2em;
}
#section01 .item03 a p.h5-p {
    height: 12.6em;
}
#section02 {
    margin-bottom: 50px;
}
#section02 ul {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 35px;
}
#section02 ul:last-child {
    border-bottom: 0;
}
#section02 ul li {
    float: left;
    width: calc(20% - 10px);
    margin-right: 12.5px;
}
#section02 ul li:last-child {
    margin-right: 0;
}
#section02 ul li a .thumbnail {
    height: 150px;
    margin-bottom: 10px;
}
#section02 ul li a h6 {
    font-size: 1em;
    height: 3.3em;
}
#section03 {
    display: inline-block;
    width: 100%;
    background: #f9f9f9;
    padding: 100px 0;
}
#section03 .area01, #section03 .area02 {
    float: left;
}
#section03 .area01 {
    width: 75%;
    border-top: 2px solid #ddd;
}
#section03 .area01 ul {
}
#section03 .area01 ul li {
    position: relative;
    padding: 25px 350px 25px 150px;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}
#section03 .area01 ul li a {
    display: inline-block;
    width: 100%;
}
#section03 .area01 ul li a span.date {
    position: absolute;
    left: 0;
    top: 25px;
    color: #777;
    font-size: 1em;
}
#section03 .area01 ul li a span.writer {
    clear: both;
    display: block;
    color: #777;
    font-size: 1em;
}
#section03 .area01 ul li a span {
    display: inline-block;
    font-size: 1em;
    line-height: 1em;
}
#section03 .area01 ul li a p.h5-p {
    height: 4.2em;
    margin: 25px 0;
}
#section03 .area01 ul li a .thumbnail {
    position: absolute;
    right: 0;
    top: 25px;
    width: 330px;
    height: calc(100% - 50px);
}
#section03 .area03 {
    width: 23%;
    margin-left: 2%;
    float: left;
}
/*#section03 .area02 a{display:block; margin-bottom:10px;}
#section03 .area02 a img{width:100%; max-width:100%;}*/
#section03 .news-title {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    padding: 15px;
    background: #efefef;
    margin-bottom: 15px;
}
#section03 .news-title a {
    position: absolute;
    display: inline-block;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    color: #222;
}
#section03 .area03 .news-rank {
    margin-bottom: 50px;
}
#section03 .area03 .news-rank a {
    display: block;
    height: 26px;
    line-height: 26px;
    margin-bottom: 12px;
    font-size: 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #555;
}
#section03 .area03 .news-rank a:last-child {
    margin-bottom: 0;
}
#section03 .area03 .news-rank a i {
    display: inline-block;
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    text-align: center;
    background: #bbb;
    color: #fff;
    margin-right: 8px;
    font-size: 14px;
    font-weight: 700;
}
#section03 .area03 .news-rank a.rank i {
    background: #314b76;
    color: #fff;
}
#section03 .area03 .item01 {
    margin-bottom: 20px;
}
#section03 .area03 .item01 a {
    position: relative;
    display: block;
}
#section03 .area03 .item01 a h6 {
    position: absolute;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    z-index: 1;
    left: 0;
    bottom: 0;
}
#section03 .area03 .item01 a .thumbnail {
    height: 280px;
}
#section03 .area03 .item02 ul {
    display: inline-block;
    width: 100%;
}
#section03 .area03 .item02 ul li {
    float: left;
    width: calc(50% - 5px);
    margin-bottom: 10px;
    margin-right: 0;
}
#section03 .area03 .item02 ul li:nth-child(even) {
    margin-left: 10px;
}
#section03 .area03 .item02 ul li a .thumbnail {
    height: 120px;
    margin-bottom: 10px;
}
#section03 .area03 .item02 ul li a h6 {
    font-size: 1em;
    height: 2.2em;
}
#section03 .area03 .item03 {
    margin-bottom: 20px;
}
#section03 .area03 .item03 > a {
    display: inline-block;
    padding-bottom: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
#section03 .area03 .item03 > a:last-child {
    border-bottom: 0;
}
#section03 .area03 .item03 > a h6 {
    margin-bottom: 15px;
}
#section03 .area03 .item03 > a .thumbnail, #section03 .area03 .item03 > a .summary {
    float: left;
    box-sizing: border-box;
}
#section03 .area03 .item03 > a .thumbnail {
    width: 35%;
    height: 90px;
}
#section03 .area03 .item03 > a .summary {
    width: 65%;
    padding: 0 25px;
}
#section03 .area03 .item03 ul {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
#section03 .area03 .item03 ul:last-child {
    border-bottom: 0;
}
#section03 .area03 .item03 ul li {
    width: 100%;
    margin-right: 0;
    float: 'none';
}
#section03 .area03 .item03 ul li a {
    position: relative;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1em;
    line-height: 1.8em;
    color: #777;
    padding-left: 15px;
}
#section03 .area03 .item03 ul li a::before {
    position: absolute;
    display: inline-block;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 3px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: #aaa
}
#section03 .area03 .item04 > a .thumbnail {
    height: 250px;
}
#section03 .area03 .item04 > a h6 {
    margin: 15px 0;
}
#section03 .area03 .advertising-area{margin-bottom:10px;}
#section03 .area03 .advertising-area a{position:relative; display:block; overflow:hidden;}
#section03 .area03 .advertising-area a img{max-width:100%;min-width:100%; min-height:100%; max-height:100%;}
#section03 div.no_img {
    background: url(/images/C/common/no_img.png) no-repeat center center;
    background-size: 50% !important;
    height: 150px;
}
#section02 div.no_img {
    background: url(/images/C/common/no_img.png) no-repeat center center;
    background-size: 50% !important;
    height: 180px;
}
#section02 div.small_li {
    height: 120px !important;
}
#section02 div.small_li2 {
    height: 250px !important;
}
#section02 div.small_li3 {
    height: 90px !important;
}

@media (max-width:1400px) {

#section01 .item01 {
    width: calc(50%);
    margin-bottom: 50px;
}
#section01 .item02 {
    width: calc(50% - 30px);
    margin-right: 0;
    margin-bottom: 50px;
    border-right: 0;
    border-left: 1px solid #eee;
    padding: 0 0 0 30px;
}
#section01 .item03 {
    width: calc(100%);
    height: auto;
}
#section01 .item03 a {
    display: inline-block;
    float: left;
    width: 50%;
}
#section01 .item03 a:nth-child(1) {
    border-bottom: 0;
}
#section01 .item03 a:nth-child(2) {
    width: calc(50% - 30px);
    margin-left: 30px;
}
}

@media (max-width:1080px) {
#section03 {
    padding: 50px 0;
}
#section01 .item01 {
    width: calc(100%);
    height: auto;
    margin-bottom: 50px;
}
#section01 .item02 {
    width: calc(100%);
    height: auto;
    margin-right: 0;
    margin-bottom: 50px;
    border-left: 0;
    padding: 0 0 0 0;
}
#section01 .item02 a p.h5-p {
    height: auto;
}
#section01 .item03 a {
    float: none;
    clear: both;
    width: 100%;
}
#section01 .item03 a:nth-child(1) {
    border-bottom: 20px;
}
#section01 .item03 a:nth-child(2) {
    width: calc(100%);
    margin-left: 0;
}
#section01 .item03 a p.h5-p {
    height: auto;
}
#section03 .area01,  #section03 .area02 {
    float: none;
    clear: both;
}
#section03 .area01 {
    width: 100%;
    border-top: 2px solid #ddd;
    margin-bottom: 50px;
}
#section03 .area02 {
    width: 100%;
    margin-left: 0;
}
#section03 .area02 a {
    width: 100%;
}
#section03 .area02 a img {
    width: 100%;
}
#section03 .area03 {
    float: none;
    clear: both;
    width: 100%;
    margin: 0;
}
}

@media (max-width:860px) {
#section03 .area01 ul li {
    padding: 25px 0 25px 0;
}
#section03 .area01 ul li a span.date {
    display: none;
}
#section03 .area01 ul li a .thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
}
}

@media (max-width:640px) {
#section02 ul li {
    float: none;
    clear: both;
    width: calc(100%);
    margin-right: 0;
}
}
#news-view {
    width: 100%;
    display: inline-block;
}
#news-view ul.inner > li {
    float: left;
}
#news-view ul.inner > li.news-container {
    width: 70%;
}
#news-view ul.inner > li.news-container h5 {
    font-size: 1.9em;
    font-weight: 700;
    color: #222;
    line-height: 1.2em;
}
#news-view ul.inner > li.news-container .news-info {
    position: relative;
    margin-bottom: 35px;
}
#news-view ul.inner > li.news-container .news-info p {
    font-size: 0.9em;
    color: #222;
    margin: 25px 0 10px 0;
}
#news-view ul.inner > li.news-container .news-info span {
    font-size: 0.8em;
    color: #999;
}
#news-view ul.inner > li.news-container .news-info ul.sns {
    position: absolute;
    right: 20px;
    top: 0;
}
#news-view ul.inner > li.news-container .news-info ul.sns li {
    position: relative;
    float: left;
    width: 30px;
    height: 30px;
    margin-left: 5px;
}
#news-view ul.inner > li.news-container .news-info ul.sns a {
    display: inline-block;
    width: 30px;
    height: 30px;
}
#news-view ul.inner > li.news-container .news-info ul.sns a[data-sec="트위터"] {
    background: url(/images/C/common/btn_twitter.png) no-repeat center center;
}
#news-view ul.inner > li.news-container .news-info ul.sns a[data-sec="페이스북"] {
    background: url(/images/C/common/btn_facebook.png) no-repeat center center;
}
#news-view ul.inner > li.news-container .news-info ul.sns a[data-sec="이메일"] {
    background: url(/images/C/common/btn_mail.png) no-repeat center center;
}
#news-view ul.inner > li.news-container .news-con {
    font-family: -apple-system, BlinkMacSystemFont, 'Malgun Gothic', '돋움', 'dotum', "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
	line-height: 25px;
}
#news-view ul.inner > li.news-container .news-con p.con, #news-view ul.inner > li.news-container .news-con div {
    display: inline-block;
    position: relative;
    width: 650px;
    margin: 0 auto 25px auto;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    color: #333;
    line-height: 1.7em;
    letter-spacing: -0.05em;
    font-size: 1.2em;
}

@media (max-width:800px) {
#news-view ul.inner > li.news-container {
    width: 100%;
}
#news-view ul.inner > li.news-container .news-con p.con,  #news-view ul.inner > li.news-container .news-con div {
    width: 100%;
}
}
#news-view ul.inner > li.news-container .news-con p.con img {
    max-width: 100%;
    display: block;
    width: 600px;
    height: auto;
}
#news-view ul.inner > li.news-container .news-con p.con sub {
    display: block;
    font-size: 0.8em;
    color: #999999;
    padding: 10px 0;
}
#news-view ul.inner > li.news-more {
    width: 30%;
    box-sizing: border-box;
    padding-left: 20px;
}

@media (max-width:800px) {
#news-view ul.inner > li.news-more {
    width: 100%;
    padding-left: 0px;
}
}
#news-view ul.inner > li.news-more ul {
    padding: 15px 0 45px 0;
}
#news-view ul.inner > li.news-more h6 {
    border-bottom: 2px solid #e0e0e0;
    font-size: 1.2em;
    font-weight: 700;
    color: #222;
    padding-bottom: 15px;
}
#news-view ul.inner > li.news-more li.item a {
    position: relative;
    display: block;
    padding: 5px 0;
    height: 80px;
}
#news-view ul.inner > li.news-more li.item span {
    text-align: center;
}
#news-view ul.inner > li.news-more li.item a::before {
    position: absolute;
    box-sizing: border-box;
    display: inline-block;
    content: '';
    width: 120px;
    height: 80px;
    border: 1px solid #eee;
    background: url(/assets/img/common/no_image.png) no-repeat center center;
    background-size: 50%;
    left: 0;
    top: 0;
}
#news-view ul.inner > li.news-more li.item a i.thumb {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 120px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#news-view ul.inner > li.news-more li.item a b {
    display: block;
    box-sizinb: border-box;
    padding-left: 140px;
    font-size: 0.9em;
    line-height: 1.4em;
    height: 4.2em;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
#comments {
}
#comments .news-view-btn {
    width: 100%;
    text-align: center;
    margin: 50px 0;
}
#comments .news-view-btn .inner {
    border-top: 1px solid #e0e0e0;
    padding-top: 50px;
}
#comments .news-view-btn .inner button.btn-comments {
    display: inline-block;
    width: 300px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: #3e78c8;
    border-radius: 5px;
}
#comments .all-comments {
}
#comments .all-comments h5 {
    font-size: 1.2em;
    font-weight: 700;
    color: #222;
    line-height: 1.2em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}
#comments .all-comments p.con {
    padding: 20px 0;
}
#comments .all-comments p.con textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    box-sizing: border-box;
    border: 2px solid #d0d0d0;
    padding: 10px;
    border-radius: 5px;
}
#comments .all-comments li.item {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}
#comments .all-comments li.item::before {
    position: absolute;
    box-sizing: border-box;
    display: inline-block;
    content: '';
    width: 50px;
    height: 50px;
    background: url(/assets/img/common/no_image.png) no-repeat center center;
    background-size: 50%;
    left: 0;
    top: 20px;
    border: 1px solid #eee;
}
#comments .all-comments li.item i.thumb {
    position: absolute;
    top: 20px;
    left: 0;
    display: inline-block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#comments .all-comments li.item .comments-list {
    display: block;
    box-sizing: border-box;
    padding: 20px 0 0 65px;
}
#comments .all-comments li.item .comments-list b.name {
    font-size: 1em;
    font-weight: 700;
    display: inline-block;
}
#comments .all-comments li.item .comments-list span.date {
    display: inline-block;
    padding: 0 15px;
    font-size: 0.8em;
    color: #999999;
}
#comments .all-comments li.item .comments-list p.con {
    font-size: 0.9em;
    line-height: 1.4em;
    color: #999;
}
#comments .all-comments .btn-group {
    width: 100%;
    text-align: center;
    margin: 50px 0;
}
#comments .all-comments .btn-group button.btn-more {
    display: inline-block;
    width: 300px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: #777777;
    border-radius: 5px;
}
#news-area07 {
    width: 100%;
    display: inline-block;
}
#news-area07 h5 {
    font-size: 1.4em;
    line-height: 1.4em;
    height: 1.4em;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
#news-area07 .inner > ul {
    position: relative;
    float: left;
    display: inline-block;
}
#news-area07 .inner > ul:nth-child(1) {
    width: 80%;
}
#news-area07 .inner > ul:nth-child(2) {
    width: 20%;
}
#news-area07 ul.more-news li.item {
    position: relative;
    width: 100%;
    height: 160px;
    box-sizing: border-box;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}
#news-area07 ul.more-news li.item:first-child {
    border-top: 2px solid #d0d0d0;
}
#news-area07 ul.more-news li.item h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0077e5;
    padding: 15px 0;
    border-top: 2px solid #ddd;
    border-bottom: 1px solid #ddd;
}
#news-area07 ul.more-news li.item a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
#news-area07 ul.more-news li.item a b {
    display: inline-block;
    width: 100%;
    height: 2.6em;
    box-sizing: border-box;
    padding-right: 300px;
    font-size: 1em;
    color: #333;
    font-weight: 700;
    line-height: 1.3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
#news-area07 ul.more-news li.item a span {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 300px 0 0;
    font-size: 0.9em;
    line-height: 1.5em;
    height: 3em;
    font-weight: 300;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
#news-area07 ul.more-news li.item a i.time {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #999999;
    font-size: 0.8em;
    font-weight: 400;
}
#news-area07 ul.more-news li.item i.thumb {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    display: inline-block;
    width: 250px;
    height: 130px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#news-area07 ul.more-news li.item a::before {
    position: absolute;
    display: inline-block;
    content: '';
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 250px;
    height: 130px;
    background: url(/assets/img/common/no_image.png) no-repeat center center;
    background-size: 50%;
    border: 1px solid #eee;
    box-sizing: border-box;
}
#news-area07 li.banner {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding-left: 20px;
    background-size: 50%;
}

#news-area07 li.hot-keyword {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
}
#news-area07 li.hot-keyword h6 {
    font-size: 1.2em;
    font-weight: 700;
    color: #222;
    margin-top: 35px;
    border-bottom: 2px solid #d0d0d0;
    padding-bottom: 15px;
}
#news-area07 li.hot-keyword li.item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
#news-area07 li.hot-keyword li.item a {
}
#news-area07 li.hot-keyword li.item a b {
    color: #333;
    font-weight: 700;
    font-size: 1.0em;
    display: block;
    margin-bottom: 10px;
}
#news-area07 li.hot-keyword li.item a span {
    display: block;
    color: #222;
}
#news-view .news-more #section02 .news-title {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    padding: 15px;
    background: #efefef;
    margin-bottom: 15px;
}
#news-view .news-more #section02 .news-title a {
    position: absolute;
    display: inline-block;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    color: #222;
}
#news-view .news-more #section02 .area03 .news-rank {
    margin-bottom: 50px;
}
#news-view .news-more #section02 .area03 .news-rank a {
    display: block;
    height: 26px;
    line-height: 26px;
    margin-bottom: 12px;
    font-size: 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #555;
}
#news-view .news-more #section02 .area03 .news-rank a:last-child {
    margin-bottom: 0;
}
#news-view .news-more #section02 .area03 .news-rank a i {
    display: inline-block;
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    text-align: center;
    background: #bbb;
    color: #fff;
    margin-right: 8px;
    font-size: 14px;
    font-weight: 700;
}
#news-view .news-more #section02 .area03 .news-rank a.rank i {
    background: #314b76;
    color: #fff;
}
#news-view .news-more #section02 .area03 .item01 {
    margin-bottom: 20px;
}
#news-view .news-more #section02 .area03 .item01 a {
    position: relative;
    display: block;
}
#news-view .news-more #section02 .area03 .item01 a h6 {
    position: absolute;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    z-index: 1;
    left: 0;
    bottom: 0;
}
#news-view .news-more #section02 .area03 .item01 a .thumbnail {
    height: 280px;
}
#news-view .news-more #section02 .area03 .item02 ul {
    display: inline-block;
    width: 100%;
}
#news-view .news-more #section02 .area03 .item02 ul li {
    float: left;
    width: calc(50% - 5px);
    margin-bottom: 10px;
    margin-right: 0;
}
#news-view .news-more #section02 .area03 .item02 ul li:nth-child(even) {
    margin-left: 10px;
}
#news-view .news-more #section02 .area03 .item02 ul li a .thumbnail {
    height: 120px;
    margin-bottom: 10px;
}
#news-view .news-more #section02 .area03 .item02 ul li a h6 {
    font-size: 1em;
    height: 2.2em;
}

@media (max-width:640px) {
#section02 ul li {
    margin-right: 0px;
    clear: none;
}
}
#news-view .news-more #section02 .area03 .item03 {
    margin-bottom: 20px;
}
#news-view .news-more #section02 .area03 .item03 > a {
    display: inline-block;
    padding-bottom: 25px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
#news-view .news-more #section02 .area03 .item03 > a:last-child {
    border-bottom: 0;
}
#news-view .news-more #section02 .area03 .item03 > a h6 {
    margin-bottom: 15px;
}
#news-view .news-more #section02 .area03 .item03 > a .thumbnail, #news-view .news-more #section02 .area03 .item03 > a .summary {
    float: left;
    box-sizing: border-box;
}
#news-view .news-more #section02 .area03 .item03 > a .thumbnail {
    width: 35%;
    height: 90px;
}
#news-view .news-more #section02 .area03 .item03 > a .summary {
    width: 65%;
    padding: 0 25px;
}
#news-view .news-more #section02 .area03 .item03 ul {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
#news-view .news-more #section02 .area03 .item03 ul:last-child {
    border-bottom: 0;
}
#news-view .news-more #section02 .area03 .item03 ul li {
    width: 100%;
    margin-right: 0;
    float: 'none';
}
#news-view .news-more #section02 .area03 .item03 ul li a {
    position: relative;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1em;
    line-height: 1.8em;
    color: #777;
    padding-left: 15px;
}
#news-view .news-more #section02 .area03 .item03 ul li a::before {
    position: absolute;
    display: inline-block;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 3px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: #aaa
}
#news-view .news-more #section02 .area03 .item04 > a .thumbnail {
    height: 250px;
}
#news-view .news-more #section02 .area03 .item04 > a h6 {
    margin: 15px 0;
}

.bottom_inner {position: relative;max-width:1420px; height: 50px;margin: 0 auto 20px;overflow: hidden;}
.bottom_inner strong {display:block; position: absolute;cursor:pointer;}
.bottom_inner strong.prev_btn{top: 14px;left:0;}
.bottom_inner strong.next_btn{top: 14px;right:0;-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);-o-transform: rotate(180deg);-ms-transform: rotate(180deg);transform: rotate(180deg);}
.bottom_inner .family_site {margin: 0 20px; width:auto !important; height: 50px;}
.bottom_inner .family_site span {display:inline-block;margin: 5px 8px;}
.bottom_inner .family_site span img{ width:auto; height:40px;}

.sub-title{margin-bottom:35px;}
.sub-title h3{font-size:2.8em; line-height:1em; color:#222; font-weight:500;}
.sub-title h4.etc_tit{font-size:2.8em; line-height:1em; color:#222; font-weight:500; text-align:center;}
.sub-title .etc_con_area {padding:35px 15px}
.sub-title .etc_con_area img{max-width:100%;}