@charset "utf-8";
/* skin */
#wrap {
  min-width: 350px;
  transition: all 0.3s;
}
#wrap.darkmode {
  background: #242424;
}
#wrap.darkmode .header {
  background: #000;
  border-bottom: 1px solid #555;
}
#wrap.darkmode .header .service-name > a {
  color: #999;
}
#wrap.darkmode .header .service-name a span {
  color: #fff;
}
#wrap.darkmode .header .btn-reload-data {
  color: #999;
}
#wrap.darkmode .header .view-mode-changer {
  color: #fff;
  background: #777;
}
#wrap.darkmode .category-list {
  background: #333;
}
#wrap.darkmode .item-list ul li {
  background: #333;
  border: 1px solid #999;
}
#wrap.darkmode .item-list ul li .subject {
  color: #fff;
}
#wrap.darkmode .item-list ul li .summary {
  color: #999;
}
#wrap.darkmode .item-list ul li .infos .btn-like strong {
  color: #777;
}
#wrap.darkmode .header .gnb-box .dim {
  background: rgba(0, 0, 0, 0.55);
}
#wrap.darkmode .header .gnb-box .box {
  background: #000;
}
#wrap.darkmode .header .gnb-box .box .menu > ul > li > a {
  color: #fff;
}
#wrap.darkmode .header .gnb-box .box .menu > ul > li > ul,
#wrap.darkmode .header .gnb-box .box .menu > ul > li > li a {
  color: #999;
}
#wrap.darkmode .news-detail .n-info span,
#wrap.darkmode .news-detail .n-content .details,
#wrap.darkmode .news-detail .n-title {
  color: #fff;
}
#wrap.darkmode .news-detail .n-info {
  border-color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  padding-top: 12px;
  width: 100%;
  height: 80px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  background: #fff;
  box-sizing: border-box;
}
.header > .row > .inner {
  display: flex;
  margin: 0 auto;
  width: 90%;
}
.header .btn-gnb {
  display: none;
  position: absolute;
  left: 5%;
  top: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  transition: all 0.3s;
  border: 3px solid #444;
}
.header .btn-gnb:before,
.header .btn-gnb:after {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 3px;
  background: #000;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.header .btn-gnb:before {
  margin-top: -8px;
}
.header .btn-gnb:after {
  margin-top: 4px;
}
.header .btn-gnb.active {
  left: 40px;
  border: 2px solid #444;
}
.header .btn-gnb.active:before {
  margin-top: -2px;
  -webkit-transform: translateX(-50%) rotate(45deg) translateZ(0);
  transform: translateX(-50%) rotate(45deg) translateZ(0);
}
.header .btn-gnb.active:after {
  margin-top: -2px;
  -webkit-transform: translateX(-50%) rotate(-45deg) translateZ(0);
  transform: translateX(-50%) rotate(-45deg) translateZ(0);
}
.header .service-name {
  padding-top: 10px;
  font-size: 40px;
  font-weight: 800;
}
.header .service-name > a {
  letter-spacing: -2px;
  color: #000;
}
.header .service-name > a:hover {
  color: #555;
}
.header .service-name > a span {
  color: #2944cc;
  font-size: 40px;
}
.header .service-name span {
  font-size: 22px;
  font-weight: 800;
}
.header .service-name span.date {
  letter-spacing: -1px;
  font-size: 18px;
}
.header .service-name span a,
.header .service-name span a:visited {
  color: #444;
}
.header .service-name sup {
  position: relative;
  left: 0;
  top: -28px;
  color: #d00;
  font-size: 16px;
  font-style: italic;
}
.header .fncs {
  position: absolute;
  right: 5%;
  top: 20px;
  text-align: right;
}
.header .fncs a {
  margin-right: 14px;
  line-height: 38px;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}
.header .fncs a:hover {
  color: #000;
}
.header .fncs .box {
  display: inline-block;
}
.header .btn-open-search {
  display: inline-block;
  width: 38px;
  height: 38px;
  font-size: 18px;
  vertical-align: middle;
}
.header .search-box {
  display: flex;
  position: absolute;
  right: 5%;
  top: 15px;
  width: 22%;
  box-sizing: border-box;
}
.header .search-box input[type='text'] {
  padding: 0 12px;
  width: 82%;
  height: 45px;
  font-size: 16px;
  border: 0;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
.header .search-box .btn-search {
  display: block;
  width: 18%;
  height: 45px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: #2944cc;
}
.header .search-box .btn-search i {
  color: #fff;
}
.header .search-recommend {
  text-align: center;
}
.header .search-recommend a {
  display: inline-block;
  position: relative;
  padding: 10px;
  color: #333;
  font-size: 15px;
}
.header .search-recommend a:after {
  display: block;
  content: '';
  position: absolute;
  left: -2px;
  top: 12px;
  width: 1px;
  height: 10px;
  background: #ddd;
}
.header .search-recommend a:first-child:after {
  display: none;
}
.header .search-recommend a:hover {
  text-decoration: underline;
}
.header.no-search .search-box {
  display: none;
}
.header .gnb-box {
  position: fixed;
  left: 0;
  top: 0;
}
.header .gnb-box .dim {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.header .gnb-box.show .dim {
  display: block;
}
.header .gnb-box .box {
  position: fixed;
  left: -25%;
  top: 0;
  z-index: 200;
  padding-top: 140px;
  padding-left: 40px;
  width: 25%;
  height: 100%;
  text-align: left;
  background: #fff;
  box-sizing: border-box;
  transition: all 0.3s;
}
.header .gnb-box.show .box {
  left: 0;
}
.header .gnb-box .box .menu > ul > li + li {
  margin-top: 38px;
}
.header .gnb-box .box .menu > ul > li.active > a {
  color: #2944cc;
  text-decoration: underline;
}
.header .gnb-box .box .menu > ul > li > a {
  font-size: 22px;
  color: #444;
  font-weight: 600;
}
.header .gnb-box .box .menu > ul > li ul {
  margin-top: 16px;
  padding-left: 18px;
}
.header .gnb-box .box .menu > ul > li ul li + li {
  margin-top: 12px;
}
.header .gnb-box .box .menu > ul > li ul li a {
  color: #666;
  font-size: 16px;
}
.header .gnb-box .box .menu > ul > li ul li.active a,
.header .gnb-box .box .menu > ul > li ul li a:hover {
  text-decoration: underline;
}
.outer-gnb {
  margin-left: 50px;
}
.outer-gnb .inner {
  padding-top: 13px;
}
.outer-gnb .menu > ul {
  display: flex;
}
.outer-gnb .menu > ul > li {
  position: relative;
}
.outer-gnb .menu > ul > li + li {
  margin-left: 50px;
}
.outer-gnb .menu > ul > li > a {
  display: inline-block;
  padding: 5px 0;
  color: #222;
  font-size: 22px;
  font-weight: 600;
}
.outer-gnb .menu > ul > li > a:hover {
  color: #2944cc;
}
.outer-gnb .menu > ul > li.active > a {
  padding-bottom: 4px;
  color: #2944cc;
  border-bottom: 4px solid #2944cc;
}
.outer-gnb .menu > ul > li ul {
  display: none;
  position: absolute;
  left: 0;
  top: 35px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgb(194, 194, 194);
}
.outer-gnb .menu > ul > li:hover ul {
  display: block;
}
.outer-gnb .menu > ul > li ul li a {
  display: block;
  line-height: 2;
  color: #444;
  font-size: 15px;
  text-align: left;
}
.outer-gnb .menu > ul > li ul li.active a,
.outer-gnb .menu > ul > li ul li a:hover {
  text-decoration: underline;
}
.container {
  padding-top: 210px;
  padding-bottom: 60px;
  background: #f3f4f8;
}
.container > .inner {
  position: relative;
  margin: 0 auto;
  padding: 30px 0;
  width: 90%;
  background: #fff;
}
.container.chat > .inner {
  background: none;
}

.page-btns {
  margin-top: 20px;
}
.page-btns.full .btn {
  width: 100%;
}
.page-btns .btn {
  display: block;
  height: 55px;
  line-height: 55px;
  font-size: 20px;
  text-align: center;
}
.page-btns .btn:hover {
  text-decoration: underline;
}
.page-btns .btn.darkgray {
  color: #fff;
  background: #444;
}
.page-btns .btn.gray {
  color: #000;
  background: #ddd;
}

.common-tab-content .tab ul {
  display: flex;
}
.common-tab-content .tab ul li {
  width: 50%;
  box-sizing: border-box;
  border: 1px solid #ddd;
}
.common-tab-content .tab ul li a {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 42px;
  color: #444;
  font-size: 17px;
  text-align: center;
}
.common-tab-content .tab ul li.active a {
  color: #fff;
  font-weight: 600;
  background: #2944cc;
}
.common-tab-content .content {
  padding: 20px 0;
}
.common-tab-content .content > article {
  display: none;
}
.common-tab-content .content .active {
  display: block;
}

/* 공지 */
.notice-wrap {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
}
.notice-wrap .dim {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.notice-wrap .notice-box {
  position: fixed;
  left: 50%;
  top: 50%;
  padding: 0 15px 50px 15px;
  width: 90%;
  max-width: 720px;
  background: #fff;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
.notice-wrap .notice-box .notice-title {
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}
.notice-wrap .notice-box .notice-cont {
  padding: 30px 0;
  height: 250px;
  overflow-y: auto;
}
.notice-wrap .notice-box .notice-cont ul li {
  margin-top: 15px;
}
.notice-wrap .notice-box .notice-cont ul li:first-child {
  margin-top: 0;
}
.notice-wrap .notice-box .notice-cont .title {
  display: block;
  position: relative;
  padding-left: 16px;
  font-size: 18px;
}
.notice-wrap .notice-box .notice-cont .title:after {
  display: block;
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
}
.notice-wrap .notice-box .notice-cont p {
  padding: 8px 15px;
  line-height: 24px;
  color: #666;
  font-size: 16px;
}
.notice-wrap .notice-box .btn-check {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: #000;
}
.notice-wrap .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #000;
  font-size: 26px;
  text-align: center;
}

/* detail */
.news-detail-p .outer-gnb {
  display: none;
}
.news-detail-p .header {
  height: 90px;
}
.news-detail-p .header .service-name {
  padding-top: 6px;
}
.news-detail-p .container {
  padding-top: 95px;
}
.news-detail {
  margin: 0 auto;
  padding-bottom: 40px;
  width: 90%;
  max-width: 1100px;
}
.news-detail .n-title {
  padding: 18px 0;
  line-height: 30px;
  font-size: 28px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}
.news-detail .n-title .keyword {
  color: #2944cc;
  text-decoration: underline;
}
.news-detail .n-info {
  padding: 20px 0;
  border-bottom: 2px solid #555;
  text-align: right;
}
.news-detail .n-info span {
  display: inline-block;
  position: relative;
  padding: 0 18px;
  font-size: 15px;
}
.news-detail .n-info span:after {
  display: block;
  content: '';
  position: absolute;
  left: -1px;
  top: 2px;
  width: 1px;
  height: 12px;
  background: #999;
}
.news-detail .n-info span:first-child:after {
  display: none;
}
.news-detail .n-content {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.news-detail .n-content .details {
  padding: 20px 12px 0;
  line-height: 26px;
  color: #444;
  font-size: 15px;
  word-break: break-all;
}
.news-detail .n-content .details .keyword {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  background: #2944cc;
}
.news-detail .n-content .details .posi_keyword {
  color: #0e30da;
  font-size: 16px;
}
.news-detail .n-content .details .nega_keyword {
  color: #e60e0e;
  font-size: 16px;
}
.news-detail .n-content .details .va_keyword {
  color: #187424;
  font-size: 16px;
}
.news-detail .picture {
  margin-top: 20px;
  text-align: center;
}
.news-detail .picture img {
  max-width: 80%;
}
.news-detail .mining-result {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: 28px;
  color: #888;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
  opacity: 0.9;
}
.news-detail .mining-result > p {
  line-height: 28px;
  text-align: center;
  border-top: 1px solid #ddd;
}
.news-detail .mining-result > div {
  position: absolute;
  bottom: 0;
  height: 28px;
  line-height: 28px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
}
.news-detail .mining-result .posi {
  color: #2944cc;
}
.news-detail .mining-result .nega {
  color: #ce2c2c;
}
.news-detail .mining-result .va {
  bottom: 28px;
  left: 0;
  background: #238930;
}
.news-detail .mining-result .txt-ing {
  line-height: 28px;
  color: #888;
  font-size: 14px;
  text-align: center;
}
/* .news-detail .mining-result {display:none; position:fixed; left:0; bottom:0; z-index:100; width:100%; height:28px; color:#888; background:#f9f9f9; border-bottom:1px solid #ddd; opacity:.9;}
.news-detail .mining-result > div {position:absolute; bottom:0; height:28px; line-height:28px; color:#fff; font-size:14px; text-align:center; overflow:hidden;} 
.news-detail .mining-result .positive {left:0; background:#2944cc;}
.news-detail .mining-result .negative {right:0; background:#ce2c2c;}
.news-detail .mining-result .va {bottom:28px; left:0; background:#238930;}
.news-detail .mining-result .txt-ing {line-height:28px; color:#888; font-size:14px; text-align:center;} */

.related-car-list {
  padding-top: 30px;
}
.related-car-list .title {
  display: block;
  margin: 10px 0 10px;
  padding: 10px 8px;
  letter-spacing: -1px;
  color: #fff;
  font-size: 22px;
  background: #000;
}
.related-car-list .title a {
  color: #fff;
  text-decoration: underline;
}
.related-car-list ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.related-car-list ul li {
  position: relative;
  margin-left: 1.3333%;
  margin-top: 10px;
  width: 24%;
  border: 1px solid #ddd;
  box-sizing: border-box;
  transition: all 0.2s;
}
.related-car-list ul li:hover {
  border: 1px solid #333;
}
.related-car-list ul li:nth-child(1),
.related-car-list ul li:nth-child(4n + 1) {
  margin-left: 0;
}
.related-car-list ul li a {
  display: block;
}
.related-car-list ul li .thumbnail {
  padding-top: 55.5%;
}
.related-car-list ul li .car-info {
  padding: 16px 8px 60px;
}
.related-car-list ul li .car-info .model span {
  line-height: 1.25;
  font-size: 18px;
}
.related-car-list ul li .car-info .row {
  display: flex;
  justify-content: flex-start;
  margin-top: 14px;
}
.related-car-list ul li .car-info .row + .row {
  margin-top: 8px;
}
.related-car-list ul li .car-info .row span {
  display: inline-block;
  position: relative;
  padding: 0 12px;
  font-size: 14px;
}
.related-car-list ul li .car-info .row span:first-child {
  padding: 0 12px 0 0;
}
.related-car-list ul li .car-info .row span:after {
  display: block;
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 16px;
  background: #aaa;
}
.related-car-list ul li .car-info .row span:first-child:after {
  display: none;
}
.related-car-list ul li .car-info .price {
  display: block;
  position: absolute;
  bottom: 10px;
  font-size: 18px;
}

/* list */
.item-list .inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1180px;
  background: #fff;
}
.item-list .news-group li {
  position: relative;
}
.item-list .news-group li a {
  display: flex;
  padding: 30px 10px 24px;
  justify-content: space-between;
}
.item-list .news-group li a:hover {
  background: #f9f9f9;
}
.item-list .news-group li a:hover .subject {
  text-decoration: underline;
}
.item-list .news-group li a .thumb {
  width: 140px;
  height: 84px;
  border: 1px solid #ddd;
}
.item-list .news-group li a .thumb img {
  width: 140px;
  height: 84px;
}
.item-list .news-group li a.in-img .cont {
  width: calc(100% - 160px);
}
.item-list .news-group li a .cont {
  width: 100%;
}
.item-list .news-group li a .subject {
  margin: 8px 0 10px;
  line-height: 1.4;
  color: #222;
  font-size: 18px;
  font-weight: 600;
}
.item-list .news-group li a .summary {
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #666;
  font-size: 13px;
}
.item-list .news-group li a .summary strong {
  font-weight: 400;
}
.item-list .news-group li a {
  padding: 10px;
}
.item-list .news-group li.active a {
  padding: 30px 10px 24px;
}
.item-list .news-group li.active .thumb {
  display: block;
}
.item-list .news-group li.active a .summary {
  display: block;
}
.item-list .news-group li.active .infos {
  display: block;
}
.item-list .news-group li.active .tags {
  display: block;
}
/*.item-list .news-group li a .summary {display:none;}
.item-list .news-group li .infos {display:none;}
.item-list .news-group li .thumb {display:none;}
.item-list .news-group li .tags {display:none;}*/
.item-list .news-group li .infos span {
  position: relative;
  color: #777;
  font-size: 13px;
}
.item-list .news-group li .infos span em {
  font-style: normal;
}
.item-list .news-group li .infos span em.posi {
  color: #0e30da;
}
.item-list .news-group li .infos span em.nega {
  color: #e60e0e;
}
.item-list .news-group li .infos span + span {
  margin-left: 13px;
}
.item-list .news-group li .infos span + span:after {
  display: block;
  content: '|';
  position: absolute;
  left: -9px;
  top: 1px;
  color: #ddd;
}
.item-list .news-group li .infos .btn-like {
  position: absolute;
  right: 5px;
  bottom: -4px;
  line-height: 24px;
}
.item-list .news-group li .infos .btn-like:active {
  bottom: -5px;
}
.item-list .news-group li .infos .btn-like strong {
  position: relative;
  top: 1px;
  margin-left: 3px;
  font-size: 16px;
}
.item-list .news-group li .mining-result {
  display: none;
  position: absolute;
  top: -24px;
  left: -1px;
  width: 100%;
  height: 22px;
  border: 1px solid #ddd;
  background: #f9f9f9;
}
.item-list .news-group li .mining-result > div {
  position: absolute;
  bottom: 0;
  height: 22px;
  line-height: 22px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  opacity: 0.9;
}
.item-list .news-group li .mining-result .positive {
  left: 0;
  background: #2944cc;
}
.item-list .news-group li .mining-result .negative {
  right: 0;
  background: #ce2c2c;
}
.item-list .news-group li .mining-result > p {
  line-height: 22px;
  font-size: 13px;
  text-align: center;
  background: #e4e4e4;
}
.item-list .news-group li .mining-result > p .posi {
  color: #2944cc;
}
.item-list .news-group li .mining-result > p .nega {
  color: #ce2c2c;
}
.item-list .news-group li .mining-view {
  display: none;
  position: absolute;
  left: 2%;
  top: -20px;
  z-index: 100;
  padding: 15px;
  width: 96%;
  border: 1px solid #999;
  background: #fff;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.item-list .news-group li .mining-view p {
  line-height: 20px;
  font-size: 14px;
}
.item-list .news-group li .mining-view p .posi {
  color: #2944cc;
}
.item-list .news-group li .mining-view p .nega {
  color: #ce2c2c;
}
.item-list .news-group li .txt-ing {
  line-height: 22px;
  color: #888;
  font-size: 14px;
  text-align: center;
  background: #f9f9f9 !important;
}
.item-list .news-group li.none {
  padding: 20px 0 40px;
  line-height: 1.4;
  color: #666;
  font-size: 18px;
}
.item-list .news-group li + li {
  border-top: 1px solid #ddd;
}
.item-list .news-group li .tags {
}
.item-list .news-group li .tags span {
  display: inline-block;
  padding: 0 5px;
  height: 18px;
  line-height: 18px;
  color: #fff;
  font-size: 12px;
}
.item-list .news-group li .tags span + span {
  margin-left: 3px;
}
.item-list .news-group li .tags span.group {
  background: #444;
}
.item-list .news-group li .tags span.category {
  background: #ef685e;
}
.item-list .news-group li .tags span.ah {
  background: #555;
}
.item-list .news-group li .tags span.today {
  background: #c90824;
}
.item-list .news-group li .tags span.daily {
  background: #c90824;
}
.item-list .news-group li .tags span.auto-view {
  background: #f36f21;
}
.item-list .news-group li .tags span.auto-morning {
  background: #093aa7;
}
.item-list .news-group li .tags span.auto-diary {
  background: #620027;
}
.item-list .news-group li .tags span.chosun {
  background: #ce2c2c;
}
.item-list .news-group li .tags span.carguy {
  background: #000;
}
.item-list .news-group li .tags span.motor-graph {
  background: #b4000f;
}
.item-list .news-group li .tags span.top-rider {
  background: #000;
}
.item-list .news-group li .tags span.drive {
  background: #00adee;
}
.item-list .news-group li .tags span.global-motors {
  background: #e3155d;
}
.item-list .news-group li .tags span.motor-magazine {
  background: #a71416;
}
.item-list .news-group li .tags span.global-auto {
  background: #134f89;
}
.item-list .news-group li .tags span.car-is-you {
  background: #a91d22;
}
.item-list .news-group li .tags span.gyotong {
  background: #0097d8;
}
.item-list .news-group li .tags span.newspim {
  background: #0e428f;
}
.item-list .news-group li .tags span.edaily {
  background: #e60012;
}
.item-list .news-group li .tags span.yna {
  background: #213989;
}
.item-list .news-group li .tags span.sedaily {
  background: #231f20;
}
.item-list .news-group li .tags span.mk {
  background: #000;
}
.item-list .news-group li .tags span.tomato {
  background: #333;
}
.item-list .news-group li .tags span.evpost {
  background: #0080c1;
}
.item-list .news-group li .tags span.carnews {
  background: #35a2f0;
}
.item-list .news-group li .tags span.segye {
  background: #957357;
}
.item-list .news-group li .tags span.nocut {
  background: #1f4fa3;
}
.item-list .news-group li .tags span.money-s {
  background: #ee1d23;
}
.item-list .news-group li .tags span.e-daehan {
  background: #f37021;
}
.item-list .news-group li .tags span.wolyo {
  background: #ed1c24;
}
.item-list .news-group li .tags span.donga {
  background: #f37344;
}
.item-list .news-group li .tags span.newsis {
  background: #ed1b2f;
}
.item-list .news-group li .tags span.ebn {
  background: #000;
}
.item-list .news-group li .tags span.hankyung {
  background: #142c67;
}
.item-list .news-group li .tags span.consumer {
  background: #001b75;
}
.item-list .news-group li .tags span.daily-smart {
  background: #4267b2;
}
.item-list .news-group li .tags span.sisa-j {
  background: #e71f19;
}
.item-list .news-group li .tags span.beyond-post {
  background: #0e8bc3;
}
.item-list .news-group li .tags span.ceo-score {
  background: #1b75bc;
}
.item-list .news-group li .tags span.etnews {
  background: #dd2025;
}
.item-list .news-group li .tags span.rpm9 {
  background: #ee1c25;
}
.item-list .news-group li .tags span.money-today {
  background: #f54141;
}
.item-list .news-group li .tags span.econovill {
  background: #d61b1b;
}
.item-list .news-group li .tags span.kten {
  background: #4572a5;
}
.item-list .news-group li .tags span.elec-times {
  background: #000;
}
.item-list .news-group li .tags span.asia-e {
  background: #ed1d25;
}
.item-list .news-group li .tags span.khan {
  background: #1a1a1a;
}
.item-list .news-group li .tags span.shina {
  background: #1779ba;
}
.item-list .news-group li .tags span.s_list {
  background: #f50;
}
.item-list .news-group li .tags span.fn_times {
  background: #c9252b;
}
.item-list .news-group li .tags span.newsway {
  background: #0e558f;
}
.item-list .news-group li .tags span.auto_in {
  background: #e70618;
}
.item-list .news-group li .tags span.asia_today {
  background: #000;
}
.item-list .news-group li .tags span.acrofan {
  background: #233e7a;
}
.item-list .news-group li .tags span.segye_biz {
  background: #0e40a6;
}
.item-list .news-group li .tags span.viewers {
  background: #21ccd9;
}
.item-list .news-group li .tags span.aving {
  background: #a0ce4e;
}
.item-list .news-group li .tags span.thebell {
	background: #535353;
  }
.item-list .news-group li .tags span.motoya {
	background: #158fe4;
}
.item-list .news-group li .tags span.joongang {
	background: #ff4620;
}
/* .item-list .news-group li .subject span {display:inline-block;}
.item-list .news-group li .subject span.ah {background:#555;}
.item-list .news-group li .subject span.today {background:#c90824;}
.item-list .news-group li .subject span.daily {background:#c90824;}
.item-list .news-group li .subject span.auto-view {background:#f36f21;}
.item-list .news-group li .subject span.auto-morning {background:#093aa7;}
.item-list .news-group li .subject span.auto-diary {background:#620027;}
.item-list .news-group li .subject span.chosun {background:#ce2c2c;}
.item-list .news-group li .subject span.carguy {background:#000;}
.item-list .news-group li .subject span.motor-graph {background:#b4000f;}
.item-list .news-group li .subject span.top-rider {background:#000;}
.item-list .news-group li .subject span.drive {background:#00adee;}
.item-list .news-group li .subject span.global-motors {background:#e3155d;}
.item-list .news-group li .subject span.motor-magazine {background:#a71416;}
.item-list .news-group li .subject span.global-auto {background:#134f89;}
.item-list .news-group li .subject span.car-is-you {background:#a91d22;}
.item-list .news-group li .subject span.gyotong {background:#0097d8;}
.item-list .news-group li .subject span.newspim {background:#0e428f;}
.item-list .news-group li .subject span.edaily {background:#e60012;}
.item-list .news-group li .subject span.yna {background:#213989;}
.item-list .news-group li .subject span.sedaily {background:#231f20;}
.item-list .news-group li .subject span.mk {background:#000;}
.item-list .news-group li .subject span.tomato {background:#333;}
.item-list .news-group li .subject span.evpost {background:#0080c1;}
.item-list .news-group li .subject span.carnews {background:#35a2f0;}
.item-list .news-group li .subject span.segye {background:#957357;}
.item-list .news-group li .subject span.nocut {background:#1f4fa3;}
.item-list .news-group li .subject span.money-s {background:#ee1d23;}
.item-list .news-group li .subject span.e-daehan {background:#f37021;}
.item-list .news-group li .subject span.wolyo {background:#ed1c24;}
.item-list .news-group li .subject span.donga {background:#f37344;}
.item-list .news-group li .subject span.newsis {background:#ed1b2f;}
.item-list .news-group li .subject span.ebn {background:#000;}
.item-list .news-group li .subject span.hankyung {background:#142c67;}
.item-list .news-group li .subject span.consumer {background:#001b75;}
.item-list .news-group li .subject span.daily-smart {background:#4267b2;}
.item-list .news-group li .subject span.sisa-j {background:#e71f19;}
.item-list .news-group li .subject span.beyond-post {background:#0e8bc3;}
.item-list .news-group li .subject span.ceo-score {background:#1b75bc;}
.item-list .news-group li .subject span.etnews {background:#dd2025;}
.item-list .news-group li .subject span.rpm9 {background:#ee1c25;}
.item-list .news-group li .subject span.money-today {background:#f54141;}
.item-list .news-group li .subject span.econovill {background:#d61b1b;}
.item-list .news-group li .subject span.kten {background:#4572a5;}
.item-list .news-group li .subject span.elec-times {background:#000;}
.item-list .news-group li .subject span.asia-e {background:#ed1d25;}
.item-list .news-group li .subject span.khan {background:#1a1a1a;} */

.all-list-summary {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  height: 36px;
  width: 100%;
  background: #f9f9f9;
  border-top: 1px solid #ddd;
}
.all-list-summary > div {
  position: absolute;
  bottom: 0;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  overflow: hidden;
  opacity: 0.8;
  transition: all 0.3s;
}
.all-list-summary .positive {
  left: 0;
  background: #2944cc;
}
.all-list-summary .negative {
  right: 0;
  background: #ce2c2c;
}
.all-list-summary > div a {
  display: block;
  text-align: center;
}
.all-list-summary > div a:hover {
  text-decoration: underline;
}

.list-top {
  position: relative;
}
.list-top .list-type {
  position: absolute;
  right: 0;
  top: -6px;
}
.list-top .list-type .btn {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #444;
}
.list-top .list-type .btn.active {
  background: #2944cc;
  border: 1px solid #2944cc;
}
.list-top .list-type .btn:before,
.list-top .list-type .btn:after {
  display: block;
  content: '';
  position: absolute;
  background: #777;
}
.list-top .list-type .btn.active:before,
.list-top .list-type .btn.active:after {
  background: #fff;
}
.list-top .list-type .btn:nth-child(1):before,
.list-top .list-type .btn:nth-child(1):after {
  top: 5px;
  width: 3px;
  height: 18px;
}
.list-top .list-type .btn:nth-child(1):before {
  left: 8px;
}
.list-top .list-type .btn:nth-child(1):after {
  right: 8px;
}
.list-top .list-type .btn:nth-child(2):before,
.list-top .list-type .btn:nth-child(2):after {
  left: 5px;
  width: 18px;
  height: 3px;
}
.list-top .list-type .btn:nth-child(2):before {
  top: 8px;
}
.list-top .list-type .btn:nth-child(2):after {
  bottom: 8px;
}

.category-list {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 150;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
  background: #fff;
}
.category-list .inner {
  margin: 0 auto;
  padding: 4px 0;
  width: 90%;
}
.category-list ul {
  display: none;
  flex-wrap: wrap;
}
.category-list ul.show {
  display: flex;
}
.category-list ul li {
  position: relative;
  margin: 12px 20px 8px 0;
}
.category-list ul li a {
  color: #666;
  font-size: 15px;
  font-weight: 400;
}
.category-list ul li.active a,
.category-list ul li:hover {
  color: #222;
  text-decoration: underline;
}
.category-list ul li:last-child {
  margin-right: 0;
}
.category-list ul li:first-child {
  color: #d00;
}
.category-list ul li.new:after {
  display: block;
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  font-weight: 600;
  text-align: center;
  background: #d00;
  border-radius: 50em;
}
.category-list .result-info {
  display: none;
  line-height: 40px;
}
.category-list .result-info.show {
  display: flex;
}
.category-list .result-info p,
.category-list .result-info a {
  color: #222;
}
.category-list .result-info p {
  font-size: 18px;
}
.category-list .result-info a {
  margin-left: 18px;
  font-size: 16px;
}
.category-list .result-info a:hover {
  color: #ddd;
}
.category-list .result-info a span {
  position: relative;
  top: 2px;
  font-size: 24px;
}

/* news trend */
.news-trend-p .container {
  padding-top: 100px;
}
.trend-view-groups {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trend-view-groups > div {
  width: 47%;
}
.trend-view-group {
  padding: 40px 0 20px;
}
.trend-view-group .title-row {
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}
.trend-view-group .title-row .group-title {
  font-size: 26px;
}
.trend-view-group .title-row .group-summary {
  margin-top: 8px;
  padding-left: 4px;
}
.trend-view-group .view {
  padding: 15px;
}
.trend-view-group .view .chart01,
.trend-view-group .view .chart04,
.trend-view-group .view .chart05,
.trend-view-group .view .chart06 {
  width: 100%;
  height: 350px;
}

/* news keywords */
.news-keywords .wordcloud {
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
}
.news-keywords .wordcloud li {
  padding: 30px 20px 20px;
  border: 1px solid #ddd;
  transition: all 0.2s;
}
.news-keywords .wordcloud li:hover {
  border: 1px solid #000;
}
.news-keywords .wordcloud li + li {
  margin-top: 10px;
}
.news-keywords .wordcloud li strong {
  display: inline-block;
  margin: 0 auto 10px;
  padding: 8px;
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: #000;
}
.news-keywords .wordcloud li img {
  width: 100%;
}

/* view count */
.realtime-visitor-view {
  position: fixed;
  right: 50%;
  bottom: 0;
  z-index: -1;
  height: 1px;
}
.realtime-visitor-view.show {
  z-index: 1000;
}
.realtime-visitor-view .box {
  position: absolute;
  right: -600px;
  bottom: 10px;
  padding: 12px 30px;
  text-align: center;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  opacity: 0;
  transition: all 0.3s ease-in;
  box-sizing: border-box;
}
.realtime-visitor-view.show .box {
  bottom: 20px;
  opacity: 1;
}
.realtime-visitor-view.update .box {
  animation: bounceBox both 0.3s alternate-reverse infinite;
}
.realtime-visitor-view .box .out-cnt {
  color: #2944cc;
  font-size: 43px;
}
.realtime-visitor-view .box .txt {
  margin-top: 8px;
  line-height: 1.4;
}
@keyframes bounceBox {
  0% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(-5px);
  }
  66% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

/* btn top */
.floating-box {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 1000;
  height: 62px;
}
.floating-box a {
  position: absolute;
  left: 630px;
  top: 0;
  border: 1px solid #ccc;
}
.floating-box a img {
  display: block;
}

.loading {
  display: none;
}
.loading .loading-box {
  position: fixed;
  left: 50%;
  top: 40%;
  z-index: 400;
  margin-left: -190px;
  padding: 40px 40px 30px;
  width: 300px;
  text-align: center;
  background: #fff;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #ddd;
}
.loading .loading-box .out-box {
  position: relative;
  width: 100%;
  height: 6px;
  background: #999;
  overflow: hidden;
}
.loading .loading-box .out-box .in-box {
  animation: moveBox 1.5s ease-in-out infinite alternate-reverse;
  position: absolute;
  top: 1px;
  left: -77%;
  width: 80%;
  height: 4px;
  background: #000;
}
.loading .loading-box p {
  margin-top: 20px;
  line-height: 1.5;
  color: #222;
  font-size: 14px;
}
@keyframes moveBox {
  from {
    left: -77%;
  }
  to {
    left: 97%;
  }
}

/* common */
.btn-default {
  display: block;
  position: relative;
  top: 0;
  margin: 0 2px;
  padding: 0 12px;
  width: 100%;
  height: 48px;
  line-height: 48px;
  font-size: 1.4rem;
  color: #444;
  vertical-align: middle;
  border: 1px solid #444;
  box-sizing: border-box;
}
.btn-default .arrow {
  font-family: serif;
}
.btn-default.btn-full {
  width: 100%;
  text-align: center;
}
.btn-default:hover {
  text-decoration: underline;
}
.btn-default:active {
  top: 1px;
}
.btn-default.btn-m {
  height: 40px;
  line-height: 38px;
  padding: 0 20px;
  font-size: 1.6rem;
}
.btn-default.btn-l {
  height: 50px;
  line-height: 48px;
  padding: 0 22px;
  font-size: 1.9rem;
  font-weight: 600;
}
.btn-default.btn-xl {
  height: 55px;
  line-height: 53px;
  padding: 0 32px;
  font-size: 2.2rem;
  font-weight: 600;
}
.btn-default.btn-default {
  border: 1px solid #999;
}
.btn-default.btn-sky {
  color: #fff;
  background: #00affa;
}
.btn-default.btn-white {
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
}
.btn-default i {
  color: #fff;
  font-size: 1.3rem;
}
.btn-gray {
  color: #fff;
  border-color: #5c5c5c;
  background: #777;
}
.btn-light-gray {
  color: #fff;
  border-color: #5c5c5c;
  background: #9e9e9e;
}
.btn-black {
  color: #fff;
  border-color: #444;
  background: #333;
}
.btn-blue {
  color: #fff;
  border-color: #2e6da4;
  background: #2e6da4;
}
.btn-deep-green {
  color: #fff;
  border-color: rgb(65, 134, 65);
  background: #2e792e;
}
.btn-green {
  color: #fff;
  border-color: #4cae4c;
  background: #5cb85c;
}
.btn-kakao {
  color: #3b1212;
  border-color: #dac50d;
  background: #fae100;
}
.btn-reborn {
  color: #000;
  border-color: #55a7c7;
  background: #6dcff6;
}
.btn-sky {
  color: #fff;
  border-color: #46b8da;
  background: #5bc0de;
}
.btn-yellow {
  color: #fff;
  border-color: #eea236;
  background: #f0ad4e;
}
.btn-red {
  color: #fff;
  border-color: #d43f3a;
  background: #d9534f;
}
.btn-disabled {
  color: #c9c9c9;
  border-color: #d1d1d1;
  background: #f2f2f2;
  cursor: default;
}
.btn-disabled:hover {
  text-decoration: none;
}
.btn-disabled:active {
  top: 0;
}

.default-form input[type='email'],
.default-form input[type='password'],
.default-form input[type='text'] {
  padding: 0 12px;
  width: 100%;
  height: 40px;
  letter-spacing: 0;
  font-size: 14px;
  box-sizing: border-box;
  border: 1px solid #ddd;
}
.default-form input[type='email']:focus,
.default-form input[type='password']:focus,
.default-form input[type='text']:focus {
  border: 1px solid #00affa;
}
.default-form input[type='password'] {
  font-family: '맑은고딕', Malgun-Gothic;
}
.default-form .message {
  margin: 10px 0 20px;
  color: #d00;
  font-size: 14px;
}
.default-form .btn {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.default-form .btn button,
.default-form .btn a {
  display: block;
}
.default-form .btn.full button,
.default-form .btn.full a {
  width: 100%;
  height: 46px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.btn-deep-gray {
  color: #fff;
  border: 1px solid #444;
  background: #444;
}

/* login */
.member-p {
  margin: 0 auto;
  width: 90%;
  max-width: 400px;
}
.member-p .container .service-name {
  font-size: 35px;
  font-weight: 400;
  text-align: center;
}
.member-p .container .service-name a {
  color: #999;
}
.member-p .container .service-name span {
  color: #444;
  font-weight: 600;
}
.member-p .member-box {
  margin-top: 15px;
  padding: 15px 0;
}
.member-p .member-box select {
  margin-top: 5px;
  width: 100%;
  border: 1px solid #ddd;
}
.default-form input[name='memb-name'],
.member-p .member-box input[type='password'] {
  margin-top: 5px;
}
.member-p .member-box .check-member {
  margin-top: 20px;
  line-height: 20px;
  font-size: 14px;
  text-align: center;
}
.member-p1 .member-box .link-join {
  display: block;
  margin-top: 10px;
  color: #00affa;
  font-size: 16px;
  text-align: center;
  text-decoration: underline;
}

/* car comment */
.container.car-comment {
  padding-top: 135px;
}
.page-title {
  margin-bottom: 20px;
  line-height: 38px;
  font-size: 32px;
  text-align: center;
}
.page-title input[type='text'] {
  display: inline-block;
  padding: 0 15px;
  width: 210px;
  font-size: 32px;
  font-weight: 600;
  border: 0;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}
.page-title select {
  position: relative;
  top: -4px;
  color: #444;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #999;
}
.page-summary {
  margin: 10px 0 40px;
  line-height: 1.4;
  font-size: 16px;
  text-align: center;
}
.page-summary a {
  text-decoration: underline;
}
.page-top-btn {
  margin-bottom: 15px;
  text-align: center;
}
.page-top-btn .btn-link {
  display: inline-block;
  padding: 0 16px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  font-size: 15px;
  background: #222;
}
.page-top-btn .btn-link:hover {
  background: #444;
}
.comment-info {
  margin-bottom: 30px;
  line-height: 28px;
  font-size: 18px;
  text-align: center;
}
.car-comment-list {
  padding: 0 30px;
}
.car-comment-list ul {
  display: flex;
  flex-wrap: wrap;
}
.car-comment-list li {
  position: relative;
  padding: 20px;
  margin: 18px 0.5%;
  width: 32.3%;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background: #fff;
  transition: background 0.3s;
}
.car-comment-list li:hover {
  background: #f5f5f5;
}
.car-comment-list li .info {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.car-comment-list li .comment {
  line-height: 24px;
  font-size: 16px;
  word-break: break-all;
}
.car-comment-list li .comment .posi_keyword {
  color: #2944cc;
}
.car-comment-list li .comment .nega_keyword {
  color: #ce2c2c;
}
.car-comment-list li .comment .va_keyword {
  color: #187424;
}
.car-comment-list li .mining-result {
  position: absolute;
  top: -24px;
  left: -1px;
  width: 100%;
  height: 22px;
  border: 1px solid #ddd;
  background: #f9f9f9;
}
.car-comment-list li .mining-result > div {
  position: absolute;
  bottom: 0;
  height: 22px;
  line-height: 22px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  opacity: 0.9;
}
.car-comment-list li .mining-result .positive {
  left: 0;
  background: #2944cc;
}
.car-comment-list li .mining-result .negative {
  right: 0;
  background: #ce2c2c;
}
.car-comment-list li .mining-view {
  position: absolute;
  left: 2%;
  bottom: 10px;
  z-index: 100;
  padding: 15px;
  width: 96%;
  border: 1px solid #999;
  background: #fff;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}
.car-comment-list li .mining-view p {
  line-height: 20px;
  font-size: 15px;
}
.car-comment-list li .mining-view p .posi {
  color: #2944cc;
}
.car-comment-list li .mining-view p .nega {
  color: #ce2c2c;
}
.car-comment-list li .txt-ing {
  line-height: 22px;
  color: #888;
  font-size: 14px;
  text-align: center;
}
.car-comment .choice-model {
  position: absolute;
  right: 0;
  top: 7px;
}
.car-comment .choice-model select {
  color: #444;
  vertical-align: middle;
}
.car-comment .choice-model .btn-choice {
  display: inline-block;
  padding: 0 20px;
  height: 38px;
  font-size: 14px;
  vertical-align: middle;
}
.car-comment .page-title span {
  display: block;
}
.car-comment .video-list {
  padding: 0 30px;
}
.car-comment .video-list ul {
  zoom: 1;
}
.car-comment .video-list ul:after {
  display: block;
  content: '';
  clear: both;
}
.car-comment .video-list li {
  position: relative;
  float: left;
  margin-top: 20px;
  padding-bottom: 25%;
  padding-top: 30px;
  width: 49.5%;
  height: 0;
  overflow: hidden;
}
.car-comment .video-list li:nth-child(1),
.car-comment .video-list li:nth-child(2) {
  margin-top: 0;
}
.car-comment .video-list li:nth-child(2n) {
  float: right;
}
.car-comment .video-list li iframe,
.car-comment .video-list li object,
.car-comment .video-list li embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.car-comment .box {
  position: relative;
}
.car-comment .btn-back {
  display: block;
  width: 15%;
  height: 46px;
  line-height: 46px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  background: #222;
}
.car-comment .car-list {
  position: absolute;
  top: 0;
  width: 100%;
}
.car-comment .car-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.car-comment .car-list ul li {
  margin-top: 35px;
  width: 19%;
}
.car-comment .car-list ul li a {
  display: block;
  position: relative;
  text-align: center;
}
.car-comment .car-list ul li a .picture {
  height: 140px;
}
.car-comment .car-list ul li a .picture img {
  position: relative;
  left: 0;
  top: 0;
  width: 90%;
  transition: all 0.2s;
}
.car-comment .car-list ul li a:hover .picture img {
  left: -5px;
  top: 2px;
}
.car-comment .car-list ul li a strong {
  display: block;
  color: #444;
  font-size: 20px;
}
.car-comment .car-list ul li a .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
  top: -80px;
  margin-left: -47.5%;
  padding: 3px 15px 15px;
  width: 95%;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.3s;
}
.car-comment .car-list ul li a:hover .box {
  top: -100px;
  opacity: 1;
}
.car-comment .car-list ul li a .box dt,
.car-comment .car-list ul li a .box dd {
  margin-top: 12px;
  width: 50%;
  font-size: 14px;
}
.car-comment .car-list ul li a .box dt {
  font-size: 16px;
  font-weight: 600;
}
.car-comment .common-tab-content {
  position: absolute;
  top: 60px;
  width: 100%;
}

/* 최근 뉴스 */
.monitoring-p {
  margin: 0 auto;
  max-width: 1180px;
}
.monitoring-p .group .group-title {
  display: block;
  padding: 0 12px;
  height: 44px;
  line-height: 44px;
  color: #222;
  font-size: 26px;
  border-bottom: 2px solid #444;
}
.monitoring-p .group.ap .group-title {
  border-color: #2944cc;
}
.monitoring-p .group + .group {
  margin-top: 40px;
}
.monitoring-p .group .row {
  padding: 20px 12px 0;
}
.monitoring-p .group .row + .row {
  margin-top: 20px;
}
.monitoring-p .group .row .row-title {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 12px;
  color: #444;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
}
.monitoring-p .group ul li a:hover {
  background: #f9f9f9;
}
.monitoring-p .group ul li a:hover .subject {
  text-decoration: underline;
}
.monitoring-p .group.keywords {
  margin-top: 100px;
  padding-bottom: 18px;
  border-top: 3px dashed #000;
  background: #f9f9f9;
}
.monitoring-p .group.keywords ul {
  display: flex;
  flex-wrap: wrap;
}
.monitoring-p .group.keywords ul li {
  margin-right: 8px;
  line-height: 1.4;
  color: #444;
  background: #f9f9f9;
}
.monitoring-p .news-list li a {
  display: block;
  padding: 10px 10px 14px;
}
.monitoring-p .news-list li a .subject {
  margin-bottom: 10px;
  line-height: 1.4;
  color: #222;
  font-size: 20px;
  font-weight: 600;
}
.monitoring-p .news-list li a .summary {
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #666;
  font-size: 15px;
}
.monitoring-p .news-list li a .summary strong {
  font-weight: 400;
}
.monitoring-p .news-list li a span {
  color: #777;
  font-size: 14px;
}
.monitoring-p .news-list li.none {
  padding: 20px 0 40px;
  line-height: 1.4;
  color: #666;
  font-size: 18px;
}
.monitoring-p .news-list li + li {
  border-top: 1px solid #ddd;
}
.monitoring-p .group ul li a {
  display: flex;
  justify-content: space-between;
}
.monitoring-p .group ul li a .thumb {
  width: 100px;
  height: 64px;
  border: 1px solid #ddd;
}
.monitoring-p .group ul li a .thumb img {
  width: 100px;
  height: 64px;
}
.monitoring-p .group ul li a.in-img .cont {
  width: calc(100% - 120px);
}
.monitoring-p .flex-box {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.monitoring-p .flex-box .result {
  width: 840px;
}
.monitoring-p .flex-box .etc {
  padding-top: 40px;
  width: 300px;
}
.monitoring-p .flex-box .etc .group + .group {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
.monitoring-p .flex-box .etc .group a,
.monitoring-p .flex-box .etc .group a img {
  display: block;
  width: 100%;
}
.monitoring-p .flex-box .etc .group a {
  border: 1px solid #fff;
}
.monitoring-p .flex-box .etc .group a:hover {
  border: 1px solid #ddd;
}
.monitoring-p .flex-box .etc.fixed {
  position: fixed;
  top: 90px;
  left: 50%;
  margin-left: 290px;
}

/* 보배드림 */
.container.bobaedream-news {
  padding-top: 150px;
}
.bobaedream-news .box {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.bobaedream-news .box .group {
  width: 49%;
}
.bobaedream-news .box .group-title {
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}
.bobaedream-news .box ul li {
  padding: 16px;
  border: 1px solid #ddd;
}
.bobaedream-news .box ul li + li {
  margin-top: 10px;
}
.bobaedream-news .box ul li .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bobaedream-news .box ul li .flex-box:last-child {
  margin: 20px auto 0;
  width: 50%;
}
.bobaedream-news .box ul li:hover {
  background: #f0f0f0;
}
.bobaedream-news .box ul li .subject {
  margin: 0 20px;
  line-height: 1.4;
  font-size: 18px;
}
.bobaedream-news .box ul li .key {
  letter-spacing: -1px;
  color: #333;
  font-size: 30px;
}
.bobaedream-news .box ul li .date {
  color: #666;
}
.bobaedream-news .box ul li .flex-box a {
  display: block;
  width: 30%;
  height: 36px;
  line-height: 36px;
  color: #444;
  text-align: center;
  border: 1px solid #ccc;
  background: #fff;
}
.bobaedream-news .box ul li .flex-box a:hover {
  color: #fff;
  background: #444;
}
.bobaedream-comm .input-box {
  margin: 0 auto;
  max-width: 700px;
}
.bobaedream-comm .input-box textarea {
  padding: 10px;
  width: 100%;
  line-height: 1.3;
  font-size: 18px;
  border: 1px solid #999;
  box-sizing: border-box;
}
.bobaedream-comm .input-box input[type='text'] {
  margin-bottom: 8px;
  width: calc(100% - 2px);
  height: 55px;
  line-height: 55px;
  font-size: 24px;
  text-align: center;
  box-sizing: border-box;
}
.bobaedream-comm .input-box .btn-default {
  margin: 0;
  height: 55px;
  line-height: 55px;
}
.bobaedream-comm .result-title {
  display: none;
  padding-bottom: 8px;
  font-size: 22px;
  border-bottom: 1px solid #ccc;
}
.bobaedream-comm .result {
  margin: 40px auto 20px;
  max-width: 700px;
}
.bobaedream-comm .result ul {
  padding: 20px 10px;
}
.bobaedream-comm .result li + li {
  margin-top: 10px;
}
.bobaedream-comm .result li a:hover {
  text-decoration: underline;
}
.bobaedream-comm .result li p {
  font-size: 18px;
  color: #666;
  font-weight: 600;
}
.bobaedream-comm .result li.nodata {
  padding-bottom: 40px;
  text-align: center;
}
.bobaedream-comm .result .result-title.type02 {
  margin-top: 20px;
}

.container.chat {
  padding-top: 110px;
}
.chat-box {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  background: #fff;
}
.chat-box .message-list > ul {
  padding: 16px 8px;
}
.chat-box .message-list > ul > li {
  display: flex;
  flex-wrap: wrap;
  max-width: 98%;
}
.chat-box .message-list > ul > li.user {
  max-width: 100%;
}
.chat-box .message-list > ul > li .picture-box {
  margin-bottom: 5px;
}
.chat-box .message-list > ul > li .picture-box img {
  display: block;
  width: 100%;
  border-radius: 18px;
}
.chat-box .message-list > ul > li .box {
  display: flex;
}
.chat-box .message-list > ul > li .box .default {
  padding: 16px;
  line-height: 1.4;
  font-size: 14px;
  background: #f6f6f6;
  border-radius: 5px 20px 20px 20px;
}
.chat-box .message-list > ul > li .box .default a {
  display: inline-block;
  margin: 10px 3px 0 0;
  padding: 0 20px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  font-size: 15px;
  background: #2e6da4;
}
.chat-box .message-list > ul > li .box .default a:hover {
  text-decoration: underline;
}
.chat-box .message-list > ul > li .box .default strong {
  text-decoration: underline;
}
.chat-box .message-list > ul > li .box .name {
  display: block;
  margin-right: 8px;
  font-size: 18px;
}
.chat-box .message-list > ul > li .box .in-box {
  padding: 0;
}
.chat-box .message-list > ul > li.ai .box .in-box {
  max-width: 310px;
}
.chat-box .message-list > ul > li.type03 .box .in-box {
  width: 100%;
}
.chat-box .message-list > ul > li.user .box .in-box {
  max-width: 480px;
}
.chat-box .message-list > ul > li .message-time {
  display: block;
  margin: 8px 0 0 58px;
  width: 100%;
  color: #999;
  font-size: 12px;
}
.chat-box .message-list > ul > li.user {
  flex-direction: row-reverse;
}
.chat-box .message-list > ul > li.user .message-time {
  padding-right: 10px;
  text-align: right;
}
.chat-box .message-list > ul > li.user .box .default {
  padding: 10px 16px;
  color: #fff;
  background: #292929;
  border-radius: 20px 5px 20px 20px;
}
.chat-box .message-list > ul > li + li {
  margin-top: 10px;
}
.chat-box .message-list .links {
  margin-top: 5px;
  padding: 5px;
  min-width: 200px;
}
.chat-box .message-list .links li {
  background: #fff;
}
.chat-box .message-list .links li + li {
  margin-top: 5px;
}
.chat-box .message-list .links a {
  display: block;
  position: relative;
  padding: 0 18px;
  width: 100%;
  height: 40px;
  line-height: 39px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid #ddd;
}
.chat-box .message-list .links a p {
  color: #333;
  font-size: 14px;
}
.chat-box .message-list .links a:hover {
  background: #2944cc;
  border: 1px solid #2944cc;
}
.chat-box .message-list .links a:hover p {
  color: #fff;
  font-weight: 600;
}
/* .chat-box .message-list .links a:after {display:block; content:">"; position:absolute; right:18px; top:0; color:#000; font-family:serif; font-size:18px; font-weight:600; transition:all .3s;}
.chat-box .message-list .links a:hover:after {right:10px;} */
.chat-box .message-list .links.half {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.chat-box .message-list .links.half li {
  width: 49%;
}
.chat-box .message-list .links.half li:nth-child(n + 3) {
  margin-top: 4px;
}
.chat-box .message-list .links.half li + li {
  margin-top: 0;
}
.chat-box .message-list .etc-btns {
  margin-top: 10px;
}
.chat-box .message-list .etc-btns a {
  display: inline-block;
  margin-right: 3px;
  padding: 0 16px;
  height: 38px;
  line-height: 38px;
  color: #2944cc;
  font-size: 13px;
  border-radius: 18px;
  border: 1px solid #2944cc;
}
.chat-box .message-list .etc-btns a:hover {
  text-decoration: underline;
}
.chat-box .message-list .etc-btns .back {
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 2px;
}
.chat-box .message-list .etc-btns .prev .back {
  width: 10px;
  height: 10px;
  background: url('../images/ico_chatbot_back.png') no-repeat center;
}
.chat-box .message-list .etc-btns .home .back {
  width: 10px;
  height: 12px;
  background: url('../images/ico_chatbot_home.png') no-repeat center;
}
.chat-box .news-list {
  margin-top: 8px;
  padding: 0 10px;
  border: 1px solid #ddd;
}
.chat-box .news-list li {
  position: relative;
}
.chat-box .news-list li a {
  display: block;
  padding: 10px 5px;
}
.chat-box .news-list li a p {
  width: 90%;
  line-height: 1.4;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-box .news-list li a p strong {
  display: inline-block;
  font-weight: 400;
  background: #eee;
}
.chat-box .news-list li + li {
  border-top: 1px solid #ddd;
}
.chat-box .news-list li a:hover {
  text-decoration: underline;
  background: #f9f9f9;
}
.chat-box .news-list li a:after {
  display: block;
  content: '>';
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -12px;
  color: #000;
  font-family: serif;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}
.chat-box .news-list li a:hover:after {
  right: 10px;
}
.chat-box .fixed-box {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
}
.chat-box .input-box {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px;
  width: 99%;
  max-width: 1000px;
  height: 60px;
  box-sizing: border-box;
  border-radius: 0 0 22px 22px;
}
.chat-box .input-box input[type='text'] {
  padding: 0 22px;
  width: calc(100% - 50px);
  height: 40px;
  font-size: 16px;
  box-sizing: border-box;
  background: #f6f6f6;
  border-radius: 22px;
  border: none;
}
.chat-box .input-box .btn-send {
  width: 40px;
  height: 40px;
  background: url('../images/ico_chatbot_send.png') no-repeat center;
}
.chat-box .input-box .btn-send.disabled {
  cursor: default;
  background: url('../images/ico_chatbot_send_disabled.png') no-repeat center;
}
.container.rebornshow {
  padding-top: 135px;
}
.rebornshow .tab {
  margin-top: 20px;
  padding: 0 20px;
}
.rebornshow .tab ul {
  display: flex;
  border-bottom: 1px solid #ddd;
}
.rebornshow .tab ul li a {
  display: inline-block;
  padding: 10px 30px;
  color: #444;
  font-size: 22px;
  background: #fff;
}
.rebornshow .tab ul li:nth-child(1).active a {
  color: #fff;
  background: #088cf1;
  border: 1px solid #0463ac;
  border-bottom: 0;
}
.rebornshow .tab ul li:nth-child(2).active a {
  color: #222;
  background: #4dffcb;
  border: 1px solid #17aa7e;
  border-bottom: 0;
}
.reborn-show-list {
  padding: 10px 20px;
}
.reborn-show-list ul {
  display: flex;
  flex-wrap: wrap;
}
.reborn-show-list li {
  display: none;
  position: relative;
  margin-top: 15px;
  margin-left: 2%;
  width: 32%;
  border: 1px solid #ddd;
  transition: all 0.3s;
  box-sizing: border-box;
}
.reborn-show-list li:nth-child(1),
.reborn-show-list li:nth-child(3n + 1) {
  margin-left: 0;
}
.reborn-show-list li:hover {
  top: -2px;
  box-shadow: 0 3px 15px rgba(151, 185, 25, 0.2);
}
.reborn-show-list li .visual {
  display: flex;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.reborn-show-list li .visual a,
.reborn-show-list li .visual .wordcloud {
  position: relative;
  width: 50%;
  background: #222;
}
.reborn-show-list li .visual .wordcloud:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.reborn-show-list li .visual a,
.reborn-show-list li .visual a img {
  display: block;
}
.reborn-show-list li .visual a img {
  width: 100%;
}
.reborn-show-list li .visual .type {
  display: inline-block;
  position: absolute;
  right: 6px;
  top: 6px;
  padding: 7px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.reborn-show-list li .visual .type.rebornshow {
  background: #088cf1;
}
.reborn-show-list li .visual .type.sasira {
  background: #0a3b70;
}
.reborn-show-list li .visual .type.reshowra {
  color: #333;
  background: #4dffcb;
}
.reborn-show-list li .detail-info {
  padding: 18px;
}
.reborn-show-list li .detail-info .infos {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 14px;
  padding: 0 4px;
}
.reborn-show-list li .detail-info .infos dl {
  display: flex;
  position: relative;
  margin-left: 14px;
}
.reborn-show-list li .detail-info .infos dl:after {
  display: block;
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  margin-top: -1px;
  width: 3px;
  height: 3px;
  background: #666;
  border-radius: 50em;
}
.reborn-show-list li .detail-info .infos dl:last-child:after {
  display: none;
}
.reborn-show-list li .detail-info .infos dl dt,
.reborn-show-list li .detail-info .infos dl dd {
  font-size: 12px;
}
.reborn-show-list li .detail-info .infos dl dt {
  margin-right: 4px;
  color: #777;
}
.reborn-show-list li .detail-info .date {
  font-size: 14px;
}
.reborn-show-list li .detail-info .subject {
  display: block;
  margin-top: 8px;
  width: 100%;
  height: 46px;
}
.reborn-show-list li .detail-info .subject p {
  display: -webkit-box;
  line-height: 1.4;
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.reborn-show-list li .detail-info .subject:hover p {
  text-decoration: underline;
}
.reborn-show-list li .detail-info .btns {
  display: flex;
  margin-top: 14px;
}
.reborn-show-list li .detail-info .btns a {
  display: block;
  width: 50%;
  height: 50px;
  line-height: 50px;
  color: #2e6da4;
  text-align: center;
  border: 1px solid #2e6da4;
  border-left: 0;
}
.reborn-show-list li .detail-info .btns a:first-child {
  color: #2e6da4;
  border-left: 1px solid #2e6da4;
  background: #fff;
}
.reborn-show-list li .detail-info .btns a:hover {
  text-decoration: underline;
}

.container.car_anal {
  padding-top: 135px;
}
.car_anal .chart-header {
  display: flex;
  justify-content: end;
  align-items: center;
}
.car_anal .chart-header select,
.car_anal .chart-header span {
  font-size: 18px;
  font-weight: 600;
}
.car_anal .chart-header select {
  color: #444;
}
.car_anal .chart-header span {
  margin-left: 10px;
}
.car_anal .flex-box {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #ddd;
}
.car_anal .flex-box > div {
  width: 48%;
}
.car_anal .flex-box h3 {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  color: #fff;
  font-size: 18px;
  background: #000;
}
.car_anal .chart-box #chart01,
.car_anal .chart-box #chart02 {
  width: 100%;
  height: 500px;
}

/***** 
    responsive 
                */
/*****
     1420 < w 
				*/
@media screen and (min-width: 1420px) {
  .car-comment-list li {
    width: 32.3%;
  }
}
@media screen and (max-width: 1419px) {
  .header .search-box {
    width: 16%;
  }
}
/*****
     1280 > w 
				*/
@media screen and (max-width: 1280px) {
  .header {
    height: 136px;
  }
  .header > .row > .inner {
    flex-flow: column;
  }
  .header .service-name {
    text-align: left;
  }
  .outer-gnb {
    margin: 20px 0 0 0;
  }
  .category-list {
    top: 136px;
  }
  .header .search-box {
    width: 30%;
  }

  .car-comment-list li {
    width: 49%;
  }
  .car-comment .car-list ul li {
    width: 24%;
  }
  .car-comment .car-list ul li a strong {
    font-size: 18px;
  }

  .rebornshow .tab ul li a {
    font-size: 18px;
  }
  .reborn-show-list li {
    margin-top: 12px;
    margin-left: 0;
    width: 49%;
  }
  .reborn-show-list li:nth-child(1),
  .reborn-show-list li:nth-child(3n + 1) {
    margin-left: 0;
  }
  .reborn-show-list li:nth-child(2n) {
    margin-left: 2%;
  }

  .car_anal .flex-box {
    display: block;
  }
  .car_anal .flex-box > div {
    width: 100%;
  }
  .car_anal .chart-box h3 {
    margin-bottom: 10px;
  }
  .car_anal .chart-box #chart01,
  .car_anal .chart-box #chart02 {
    width: 100%;
    height: 350px;
  }
  .car_anal .chart-box .right {
    margin-top: 30px;
  }

  .realtime-visitor-view .box {
    right: -550px;
    padding: 12px 15px;
  }
  .realtime-visitor-view .box .txt {
    font-size: 14px;
  }
}
/*****
     1140px > w 
                */
@media screen and (max-width: 1140px) {
  .realtime-visitor-view .box {
    right: -450px;
  }
}

/*****
     1024 > w 
                */
@media screen and (max-width: 1040px) {
  .header .fncs .box {
    display: block;
  }
  .header .gnb-box .box {
    left: -40%;
    padding-top: 140px;
    padding-left: 40px;
    width: 40%;
  }
  .header .search-box {
    width: 40%;
  }

  .container {
    padding-top: 200px;
  }

  .category-list .result-info.show {
    margin-top: -6px;
  }

  .car-comment .page-title {
    margin-bottom: 15px;
  }
  .car-comment .choice-model {
    position: static;
    margin-bottom: 20px;
    text-align: center;
  }
  .car-comment-list ul {
    border-top: 1px solid #ddd;
  }
  .car-comment-list li {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ddd;
  }
  .car-comment .car-list ul li {
    width: 32%;
  }
  .car-comment .car-list ul li a strong {
    font-size: 16px;
  }

  .bobaedream-news .box {
    display: block;
  }
  .bobaedream-news .box .group {
    width: 100%;
  }
  .bobaedream-news .box .group + .group {
    margin-top: 45px;
  }
  .bobaedream-news .box ul li .flex-box {
    display: block;
    text-align: center;
  }
  .bobaedream-news .box ul li .flex-box:last-child {
    margin: 20px auto 0;
    width: 50%;
  }
  .bobaedream-news .box ul li .flex-box a {
    width: 100%;
  }
  .bobaedream-news .box ul li .flex-box a + a {
    margin-top: 5px;
  }
  .bobaedream-news .box ul li .key {
    display: none;
  }

  .related-car-list ul li {
    margin-left: 2%;
    width: 32%;
  }
  .related-car-list ul li:nth-child(3n + 1) {
    margin-left: 0;
  }
  .related-car-list ul li:nth-child(4n + 1) {
    margin-left: 0;
  }
  .related-car-list ul li .car-info {
    padding-bottom: 45px;
  }
  .related-car-list ul li .car-info .model span {
    font-size: 18px;
  }
  .related-car-list ul li .car-info .row span {
    padding: 0 10px;
    font-size: 15px;
  }
  .related-car-list ul li .car-info .price {
    font-size: 16px;
  }

  .monitoring-p .flex-box .result {
    width: 100%;
  }
  .monitoring-p .flex-box .etc {
    display: none;
  }

  .page-title {
    margin-bottom: 10px;
    line-height: 26px;
    font-size: 26px;
  }
  .page-title select {
    top: -2px;
  }

  .realtime-visitor-view {
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .realtime-visitor-view .box {
    right: auto;
    left: 0;
    bottom: 0;
    padding: 6px 15px;
    width: 100%;
    box-shadow: 0;
    border: none;
    border-top: 1px solid #ddd;
  }
  .realtime-visitor-view.show .box {
    bottom: 0;
  }
  .realtime-visitor-view .box .out-cnt {
    display: none;
  }
  .realtime-visitor-view .box .txt {
    margin-top: 0;
  }

  .rebornshow .tab ul li a {
    font-size: 16px;
  }
}
/*****
     880 > w 
                */
@media screen and (max-width: 880px) {
  .header {
    height: 131px;
  }
  .category-list {
    position: static;
    top: 131px;
  }
  .header .search-box {
    width: 50%;
  }
  .category-list ul li a {
    font-size: 15px;
  }
  .outer-gnb .menu > ul > li > a {
    font-size: 17px;
  }

  .car-comment .page-title {
    font-size: 28px;
  }
  .comment-info {
    line-height: 22px;
    font-size: 16px;
  }
  .car-comment-list {
    padding: 0;
  }

  .related-car-list ul li {
    margin-left: 0;
    width: 49%;
  }
  .related-car-list ul li:nth-child(1),
  .related-car-list ul li:nth-child(4n + 1) {
    margin-left: 0;
  }
  .related-car-list ul li:nth-child(2n) {
    margin-left: 2%;
  }
  .related-car-list ul li .car-info .row span {
    padding: 0 12px;
    font-size: 15px;
  }

  .reborn-show-list li .detail-info .btns a {
    font-size: 14px;
  }

  .news-keywords .wordcloud li {
    padding: 15px;
  }
  .news-keywords .wordcloud li strong {
    font-size: 20px;
  }

  .item-list .news-group li a .thumb,
  .item-list .news-group li a .thumb img {
    width: 120px;
    height: 70px;
  }
  .item-list .news-group li a.in-img .cont {
    width: calc(100% - 140px);
  }
  .item-list .news-group li .tags span {
    line-height: 19px;
    font-size: 11px;
  }
  .item-list .news-group li a .subject {
    margin: 6px 0 8px;
    font-size: 16px;
  }
  .item-list .news-group li a .summary {
    font-size: 12px;
  }
}
/*****
     768 > w 
                */
@media screen and (max-width: 768px) {
  .outer-gnb .inner {
    width: 100%;
  }
  .category-list {
    top: 136px;
  }
  .category-list ul li {
    margin: 8px 20px 6px 0;
  }
  .category-list ul li a {
    font-size: 14px;
  }
  .outer-gnb .menu > ul > li > a {
    font-size: 15px;
  }
  .header {
    padding: 14px 5%;
    height: 136px;
    text-align: left;
  }
  .header .btn-gnb {
    display: block;
  }
  .header.no-search {
    height: 72px;
  }
  .header.no-search .service-name {
    padding-top: 0;
  }
  .header > .row > .inner {
    width: 100%;
  }
  .header .service-name {
    text-align: center;
  }
  .header .service-name {
    padding-top: 0;
  }
  .header .service-name > a,
  .header .service-name > a span {
    font-size: 32px;
  }
  .header .service-name span {
    font-size: 20px;
  }
  .header .service-name sup {
    font-size: 13px;
  }
  .header .fncs {
    display: none;
    z-index: 200;
  }
  .header .fncs.show {
    display: block;
  }
  .header .fncs .box {
    display: inline-block;
  }
  .header .btn-gnb.active {
    left: 20px;
  }
  .header .btn-gnb {
    left: 2%;
    top: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid #444;
  }
  .header .btn-gnb:before,
  .header .btn-gnb:after {
    width: 25px;
  }
  .header .gnb-box .box {
    left: -65%;
    padding-top: 120px;
    padding-left: 20px;
    width: 65%;
  }
  .header .outer-gnb {
    display: none;
  }
  .header .search-box {
    position: static;
    right: 0;
    top: 0;
    margin: 15px auto 0;
    width: 70%;
  }
  /* .item-list ul li {margin-top:34px; padding-bottom:15px; width:100%;}
	.item-list ul li:nth-child(2n) {margin-left:0;}
	.item-list ul li a {display:flex; justify-content:space-between;}
	.item-list ul li .picture {width:125px; height:125px; overflow:hidden;}
	.item-list ul li .picture p {padding:26px 0 0; line-height:16px; font-size:12px;}
	.item-list ul li .info-box {width:calc(100% - 140px);}
	.item-list ul li .tags {left:0; top:0;}
	.item-list ul li .subject {margin:0 0 10px;}
	.item-list ul li .infos {position:absolute; left:auto; right:15px; bottom:15px; width:calc(100% - 170px);} */
  .category-list {
    height: auto;
  }
  .category-list .inner {
    padding-bottom: 0;
  }
  .category-list ul {
    margin-top: 0;
  }
  .category-list ul li {
    margin-right: 18px;
    margin-bottom: 10px;
  }
  .comment-info {
    line-height: 20px;
    font-size: 14px;
  }
  .car-comment .video-list {
    padding: 0 15px;
  }
  .car-comment .video-list li {
    float: none;
    margin-top: 15px;
    padding-bottom: 56.25%;
    width: 100%;
  }
  .car-comment .video-list li:nth-child(1) {
    margin-top: 0;
  }
  .car-comment .video-list li:nth-child(2) {
    margin-top: 15px;
  }
  .car-comment .video-list li:nth-child(2n) {
    float: none;
  }
  .car-comment .car-list ul li {
    width: 49%;
  }
  .car-comment .car-list ul li a strong {
    font-size: 18px;
  }
  .news-detail-p .container {
    padding-top: 64px;
  }
  .news-detail .n-title {
    padding: 14px 0;
    line-height: 26px;
    font-size: 20px;
  }
  .news-detail .n-info {
    padding: 10px 0;
  }
  .page-btns {
    margin-top: 14px;
  }
  .page-btns .btn {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .news-detail-p .header.no-search {
    height: 64px;
  }
  .related-car-list .title {
    font-size: 22px;
  }
  .related-car-list ul li .car-info .model span {
    font-size: 18px;
  }
  .related-car-list ul li .car-info .price {
    font-size: 20px;
  }

  .container.chat {
    padding-top: 90px;
  }
  .container.chat .inner {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .container.chat .page-title {
    font-size: 28px;
  }
  .chat-box .input-box {
    width: 96%;
    padding: 10px 0;
  }

  .container.rebornshow {
    padding-top: 105px;
  }
  .container.rebornshow .page-title {
    font-size: 26px;
  }

  .rebornshow .tab {
    padding: 0 10px;
  }
  .reborn-show-list {
    padding: 10px;
  }
  .reborn-show-list li {
    margin-top: 12px;
    margin-left: 0;
    width: 100%;
  }
  .reborn-show-list li:nth-child(1),
  .reborn-show-list li:nth-child(3n + 1) {
    margin-left: 0;
  }
  .reborn-show-list li:nth-child(2n) {
    margin-left: 0;
  }

  .monitoring-p .group .group-title {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .monitoring-p .news-list li.none {
    font-size: 15px;
  }
  .monitoring-p .news-list li a .subject {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .monitoring-p .news-list li a .summary {
    font-size: 13px;
  }
}

@media screen and (max-width: 650px) {
  .header > .row {
    padding-top: 5px;
  }
  .header .btn-gnb {
    left: 5%;
  }
  .related-car-list .title {
    font-size: 18px;
  }
  .related-car-list ul li {
    width: 100%;
  }
  .related-car-list ul li:nth-child(2n) {
    margin-left: 0;
  }
  .related-car-list ul li .car-info .row span {
    font-size: 14px;
  }
}

@media screen and (max-width: 550px) {
  .container > .inner {
    padding-right: 3%;
    padding-left: 3%;
    width: 100%;
    box-sizing: border-box;
  }
  .page-title {
    font-size: 22px;
  }
  .page-summary {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .monitoring-p .group .group-title {
    font-size: 16px;
  }
  .monitoring-p .group .row {
    padding: 15px 0 0;
  }
  .monitoring-p .group ul li a .thumb,
  .monitoring-p .group ul li a .thumb img {
    width: 85px;
    height: 50px;
  }
  .monitoring-p .group ul li a .cont {
    width: calc(100% - 95px);
  }
  .monitoring-p .news-list li a .subject {
    font-size: 16px;
  }
  .monitoring-p .news-list li a .summary {
    display: none;
  }
  .monitoring-p .news-list li a span {
    font-size: 13px;
  }

  .item-list .news-group li a .thumb,
  .item-list .news-group li a .thumb img {
    width: 85px;
    height: 50px;
  }
  .item-list .news-group li a.in-img .cont {
    width: calc(100% - 95px);
  }
  .item-list .news-group li a .subject {
    font-size: 16px;
  }
  .item-list .news-group li a .summary {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .header {
    height: 125px;
  }
  .header .service-name {
    padding-left: 18px;
    letter-spacing: -1px;
    font-size: 32px;
  }
  .header .search-recommend a {
    font-size: 13px;
  }
  .header .btn-gnb {
    top: 14px;
  }
  .header .fncs {
    top: 14px;
  }
  /* .header .fncs a {display:block; position:fixed; bottom:0; left:0; width:100%; height:50px; line-height:50px; color:#fff; font-size:18px; font-weight:600; text-align:center; background:#444;} */
  .header .gnb-box .box {
    left: -90%;
    width: 90%;
  }
  .header .search-box {
    margin-top: 20px;
    width: 80%;
  }
  .header .search-box input[type='text'],
  .header .search-box .btn-search {
    height: 36px;
    font-size: 14px;
  }
  .container {
    padding-top: 155px;
  }
  .container.bobaedream-news {
    padding-top: 100px;
  }
  .container .inner {
    width: 96%;
  }
  .category-list {
    top: 125px;
  }
  .category-list ul li {
    margin-right: 12px;
  }
  .category-list ul li a {
    font-size: 13px;
  }
  .category-list .result-info.show {
    display: block;
    line-height: 26px;
    justify-content: space-between;
  }
  .category-list .result-info p {
    font-size: 13px;
  }
  .category-list .result-info a {
    position: relative;
    top: -2px;
    margin-left: 0;
    font-size: 13px;
  }
  .category-list .result-info a span {
    font-size: 18px;
  }

  .loading .dim {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 300;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  .loading .loading-box {
    margin-left: -165px;
    width: 250px;
  }
  .loading .loading-box p {
    line-height: 20px;
    font-size: 16px;
  }

  .container.car-comment {
    padding-top: 100px;
  }
  .car-comment .page-title {
    font-size: 22px;
  }
  .comment-info {
    margin-bottom: 15px;
    line-height: 18px;
    font-size: 14px;
  }
  .car-comment-list li {
    padding: 15px;
  }
  .car-comment-list li .comment {
    line-height: 20px;
    font-size: 14px;
  }
  .car-comment .car-list ul li a strong {
    font-size: 14px;
  }
  .car-comment .btn-back {
    width: 100%;
  }

  .category-list ul li.new:after {
    right: -9px;
    top: -6px;
    width: 13px;
    height: 13px;
    line-height: 14px;
    font-size: 10px;
  }

  .news-detail .n-info span {
    padding: 0 8px;
  }

  .bobaedream-news .box ul li .flex-box:last-child {
    width: 100%;
  }

  .container.chat .page-title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .news-keywords .wordcloud li {
    padding: 0;
  }
  .news-keywords .wordcloud li strong {
    display: block;
    font-size: 16px;
  }
  .monitoring-p .group.keywords {
    margin-top: 50px;
  }
  .monitoring-p .group .row + .row {
    margin-top: 10px;
  }
  .monitoring-p .group.keywords ul li {
    font-size: 15px;
  }

  .item-list .inner {
    padding: 0;
  }

  .rebornshow .tab {
    padding: 0;
  }
  .reborn-show-list {
    padding: 10px 0;
  }
}
