@charset "UTF-8";
/* 변수설정 */
/* 믹스인 MIXIN */
/* 웹폰트 */
@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 300;
  src: url("/assets/webfonts/NanumGothic-Light.woff2") format("woff2"), url("/assets/webfonts/NanumGothic-Light.woff") format("woff"), url("/assets/webfonts/NanumGothic-Light.otf") format("opentype");
}

@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 400;
  src: url("/assets/webfonts/NanumGothic-Regular.woff2") format("woff2"), url("/assets/webfonts/NanumGothic-Regular.woff") format("woff"), url("/assets/webfonts/NanumGothic-Regular.otf") format("opentype");
}

@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 700;
  src: url("/assets/webfonts/NanumGothic-Bold.woff2") format("woff2"), url("/assets/webfonts/NanumGothic-Bold.woff") format("woff"), url("/assets/webfonts/NanumGothic-Bold.otf") format("opentype");
}

@font-face {
  font-family: 'NanumGothic';
  font-style: normal;
  font-weight: 800;
  src: url("/assets/webfonts/NanumGothic-ExtraBold.woff2") format("woff2"), url("/assets/webfonts/NanumGothic-ExtraBold.woff") format("woff"), url("/assets/webfonts/NanumGothic-ExtraBold.otf") format("opentype");
}

/* 디폴트 */
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  color: #222222;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
strong,
b,
th {
  font-weight: 700;
}

pre {
  white-space: pre-wrap;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

ul,
ol {
  margin-bottom: 0;
}

ul li,
ol li {
  list-style: none;
}

p {
  margin-bottom: 0;
}

a,
select,
button,
input,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus, a:visited {
  text-decoration: none;
}

dl {
  margin-bottom: 0;
}

button,
input[type=submit] {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.tts {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.tts:not(caption) {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

caption.tts {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.clearfix {
  position: relative;
}

.clearfix:after {
  display: block;
  clear: both;
  content: '';
}

/* 레이아웃 */
.wrapper {
  position: relative;
  width: 100%;
  min-width: 1200px;
  height: 100%;
  overflow-x: hidden;
}

.left-sidebar {
  width: 240px;
  height: 100%;
  background-color: #21303e;
}

.left-sidebar a {
  color: #ffffff;
}

.left-sidebar .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
  padding: 7px 15px 0;
  border-bottom: 1px solid #2d445c;
}

.left-sidebar .logo a {
  color: #939aa1;
  font-weight: 700;
  font-size: 18px;
}

.left-sidebar .logo img {
  height: 24px;
  margin-top: -9px;
  margin-right: 2px;
}

.left-sidebar .nav > li {
  width: 100%;
}

.left-sidebar .nav > li > a {
  position: relative;
  height: 40px;
  opacity: .7;
}

.left-sidebar .nav > li > a:after {
  content: '';
  position: absolute;
  top: 19px;
  right: 20px;
  width: 7px;
  height: 7px;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #fff;
  margin-left: 10px;
  -webkit-transform: rotate(135deg) translate(0, -50%);
          transform: rotate(135deg) translate(0, -50%);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.left-sidebar .nav > li.active > a {
  font-weight: 700;
  opacity: 1;
}

.left-sidebar .nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 15px;
}

.left-sidebar .nav-second-level {
  background-color: rgba(0, 0, 0, 0.3);
}

.left-sidebar .nav-second-level > li > a {
  line-height: 1.9;
  opacity: .6;
}

.left-sidebar .nav-second-level > li:first-child a {
  padding-top: 12px;
}

.left-sidebar .nav-second-level > li:last-child a {
  padding-bottom: 12px;
}

.left-sidebar .nav-second-level > li.active a {
  opacity: 1;
}

.page-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 240px;
  width: calc(100% - 240px);
  background-color: #f5f5f5;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-top {
  height: 46px;
  border-bottom: 1px solid #e6e6e6;
  background-color: #ffffff;
}

.page-top:after {
  display: block;
  clear: both;
  content: '';
}

.breadcrumb {
  float: left;
  margin-bottom: 0;
  padding-left: 25px;
  border-radius: 0;
  background-color: #ffffff;
}

.breadcrumb a {
  color: #222222;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 5px;
}

.breadcrumb-item + .breadcrumb-item:before {
  content: '>';
  margin-top: -5px;
  padding-right: 3px;
  vertical-align: middle;
}

.breadcrumb-item.active {
  color: #222222;
  font-weight: 700;
}

.breadcrumb-item.active:before {
  font-weight: 400;
}

.util {
  float: right;
  height: 100%;
  padding: .75rem 25px;
}

.util li {
  display: inline-block;
}

.util li:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: -2px 10px 0;
  background-color: #444444;
}

.util li:first-child:before {
  display: none;
}

.page-content {
  height: calc(100% - 46px);
  padding: 15px 25px 30px;
}

.text-xxs {
  font-size: 10px !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 13px !important;
}

.text-md {
  font-size: 14px !important;
}

.text-lg {
  font-size: 18px !important;
}

.text-xl {
  font-size: 20px !important;
}

.text-xxl {
  font-size: 24px !important;
}

.text-normal {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

.text-color01 {
  color: #21303e;
}

.text-color02 {
  color: #222222;
}

.text-color03 {
  color: #444444;
}

.text-color05 {
  color: #999999;
}

.text-color06 {
  color: #df01d7;
}

/* 컨텐츠 */
.table {
  border-top: 2px solid #2d445c;
}

.table thead th {
  vertical-align: middle;
}

.table th,
.table td,
.table input[type=checkbox] {
  vertical-align: middle;
}

.table th {
  padding: 8px 12px;
  background-color: #eaeff4;
}

.table th .btn {
  font-weight: 700;
  vertical-align: top;
}

.table td {
  background-color: #ffffff;
}

.table a:hover {
  text-decoration: underline;
}

.table a.btn:hover {
  text-decoration: none;
}

.table .no-data {
  padding: 30px 0;
  text-align: center;
}

.table-list {
  border-bottom: 1px solid #dee2e6;
}

.table-list th,
.table-list td {
  text-align: center;
}

.table-bordered th {
  background-color: #eaeff4;
}

.table-bordered td {
  height: 60px;
}

.btn-sort {
  padding: 0;
}

.btn-area {
  margin-top: 10px;
  text-align: center;
}

.btn-area .btn {
  min-width: 100px;
}

.btn {
  font-size: 14px;
}

.btn-xs {
  padding: 3px 10px;
  font-size: 13px;
}

.btn-outline-dark {
  background-color: #ffffff;
}

.btn-outline-dark:hover, .btn-outline-dark:active, .btn-outline-dark:focus, .btn-outline-dark.active {
  color: #212529 !important;
  background-color: #f5f5f5 !important;
}

.btn-toolbar .btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #21303e;
  background-color: #ffffff;
}

input[type=text].date-picker {
  padding-right: 34px;
  background: url(/assets/images/admin/ico-calendar.png) no-repeat right 8px center;
  background-size: auto 18px;
}

.input-group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-group select {
  min-width: 120px;
}

.input-group-text {
  padding: 0.282rem .75rem;
  border-color: #e6e6e6;
}

.form-control {
  border: 1px solid #e6e6e6;
  color: inherit;
  font-size: 14px;
  background-color: #ffffff;
}

.custom-control {
  padding-left: 0;
}

.custom-control-label {
  padding-left: 1.5rem;
  cursor: pointer;
}

.custom-control-label:before, .custom-control-label:after {
  top: .33rem;
  left: 0;
  margin-top: -2px;
}

.custom-checkbox,
.custom-radio {
  cursor: pointer;
}

.custom-control-input:checked ~ .custom-control-label:before {
  border-color: #4589d9;
  background-color: #4589d9;
}

.form-control-file {
  padding: 5px;
  border-radius: .25rem;
  border: 1px solid #e6e6e6;
  background-color: transparent;
}

.login {
  background-color: #f5f5f5;
}

.login-box {
  width: 350px;
  margin: 10% auto 0;
  padding-top: 100px;
}

.login-box .logo {
  margin-bottom: 7px;
  padding: 15px 10px 20px;
  font-size: 28px;
  text-align: center;
}

.login-box .logo strong {
  display: block;
  margin-bottom: 12px;
  font-size: 36px;
}

.login-box .logo img {
  margin-top: -12px;
}

.login-box .btn-primary {
  padding-top: 0.575rem;
  padding-bottom: 0.575rem;
  border-color: #21303e;
  background-color: #21303e;
}

.login-box .btn-primary:hover, .login-box .btn-primary:active, .login-box .btn-primary:focus, .login-box .btn-primary.active {
  border-color: #21303e !important;
  background-color: #21303e !important;
}

.login-box .login-ctrl {
  margin-top: 5px;
}

.login-box .custom-control-input:checked ~ .custom-control-label:before {
  border-color: #3c5770;
  background-color: #3c5770;
}

.bar {
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: -2px 6px 0;
  background-color: #444444;
}

.content-box {
  padding: 15px 15px 20px;
  background-color: #ffffff;
}

.pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.pagination a {
  color: inherit;
}

.pagination .page-item.active .page-link {
  border-color: #999999;
  background-color: #999999;
}

.pagination .page-item .page-link:hover, .pagination .page-item .page-link:focus {
  border-color: #cccccc;
  color: #ffffff;
  background-color: #cccccc;
}

.ibox {
  border-top: 2px solid #e6e6e6;
  background-color: #ffffff;
}

.ibox-title {
  padding: 12px 15px;
  border-bottom: 1px solid #e6e6e6;
}

.ibox-content {
  padding: 20px 15px;
}

.bul-dot {
  text-align: left;
  position: relative;
  padding-left: 6px;
  line-height: 1.3;
}

.bul-dot:before {
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #222222;
  content: '';
}

.bul-dot > li {
  position: relative;
  padding-left: 6px;
}

.bul-dot > li:before {
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #222222;
  content: '';
}

.bul-hyphen {
  text-align: left;
  position: relative;
  padding-left: 10px;
}

.bul-hyphen > li {
  padding-left: 10px;
  position: relative;
}

.bul-hyphen:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: '- ';
}

.bul-hyphen > li:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: '- ';
}

ul.bul-dot, ul.bul-hyphen {
  padding-left: 0;
}

ul.bul-dot:before, ul.bul-hyphen:before {
  display: none;
}

.loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.loading img {
  max-height: 100px;
}

.ui-timepicker-div .ui-widget-header {
  margin-bottom: 8px;
}

.ui-timepicker-div dl {
  text-align: left;
  overflow: hidden;
}

.ui-timepicker-div dl dt {
  float: left;
  padding: 0 0 0 5px;
}

.ui-timepicker-div dl dd {
  margin: 0 10px 15px 30%;
}

.ui-timepicker-div td {
  font-size: 90%;
}

.ui_tpicker_hour_label,
.ui_tpicker_minute_label {
  margin-top: -5px;
}

.ui-tpicker-grid-label {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

.ui-datepicker table {
  margin-bottom: 1em;
}

.ui-datepicker .ui-datepicker-buttonpane {
  margin-top: .5em;
}

.ui-timepicker-div .ui_tpicker_unit_hide {
  display: none;
}

.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input {
  background: none;
  color: inherit;
  border: none;
  outline: none;
  border-bottom: solid 1px #555;
  width: 95%;
}

.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus {
  border-bottom-color: #aaa;
}

.ui-timepicker-rtl {
  direction: rtl;
}

.ui-timepicker-rtl dl {
  text-align: right;
  padding: 0 5px 0 0;
}

.ui-timepicker-rtl dl dt {
  float: right;
  clear: right;
}

.ui-timepicker-rtl dl dd {
  margin: 0 40% 10px 10px;
}

/* Shortened version style */
.ui-timepicker-div.ui-timepicker-oneLine {
  padding-right: 2px;
}

.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time,
.ui-timepicker-div.ui-timepicker-oneLine dt {
  display: none;
}

.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label {
  display: block;
  padding-top: 2px;
}

.ui-timepicker-div.ui-timepicker-oneLine dl {
  text-align: right;
}

.ui-timepicker-div.ui-timepicker-oneLine dl dd,
.ui-timepicker-div.ui-timepicker-oneLine dl dd > div {
  display: inline-block;
  margin: 0;
}

.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_minute:before,
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before {
  content: ':';
  display: inline-block;
}

.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before,
.ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before {
  content: '.';
  display: inline-block;
}

.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide,
.ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before {
  display: none;
}

.bd-callout {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid #eee;
  border-left-width: .25rem;
  border-radius: .25rem;
}

.bd-callout h4 {
  margin-top: 0;
  margin-bottom: .25rem;
}

.bd-callout p:last-child {
  margin-bottom: 0;
}

.bd-callout code {
  border-radius: .25rem;
}

.bd-callout + .bd-callout {
  margin-top: -.25rem;
}

.bd-callout-primary {
  border-left-color: #428bca;
}

.bd-callout-primary h5 {
  color: #428bca;
  margin-bottom: 5px;
}

.bd-callout-success {
  border-left-color: #5cb85c;
}

.bd-callout-success h5 {
  color: #5cb85c;
  margin-bottom: 5px;
}

.bd-callout-info {
  border-left-color: #5bc0de;
}

.bd-callout-info h5 {
  color: #5bc0de;
  margin-bottom: 5px;
}

.bd-callout-warning {
  border-left-color: #f0ad4e;
}

.bd-callout-warning h5 {
  color: #f0ad4e;
  margin-bottom: 5px;
}

.bd-callout-danger {
  border-left-color: #d9534f;
}

.bd-callout-danger h5 {
  color: #d9534f;
  margin-bottom: 5px;
}

.ui-autocomplete { max-height: 200px; overflow-y: auto; overflow-x: hidden;}

.result-list,
.ui-autocomplete {
  margin-top: 5px;
}

.result-list li,
.ui-autocomplete li {
  border-bottom: 1px solid #e6e6e6;
}

.result-list li a,
.ui-autocomplete li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 30px;
  padding: 5px 15px 5px 27px !important;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
	color: #ffffff !important;
	background: #333 !important;
}

.result-list .name,
.ui-autocomplete .name {
  margin-right: 20px;
  color: #444444;
}

.ui-autocomplete li a {
  padding-left: 42px;
}

.ui-autocomplete .line {
  right: 15px;
}

.ui-widget-content {
  border: 0 !important;
}

.ui-state-active {
  margin: 0 !important;
  border: 0 !important;
}

.ui-widget.ui-widget-content {
	border : 1px solid #c5c5c5 !important;
}

.no-data {
  padding: 40px 0;
  text-align: center;
}

.no-data .text {
  color: #666666;
  font-size: 16px;
}

.request-list {
	height: 734px;
	overflow-y: auto;
}

.request-list .date, .request-view .date {
  color: #666666;
  font-size: 12px;
}

.request-list .name, .request-view .name {
  color: #222222;
  font-weight: 500;
  font-size: 16px;
}

.request-list .commnet-new, .request-view .commnet-new {
  display: inline-block;
  margin: -4px 0 0 1px;
  padding: 0 5px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 11px;
  vertical-align: middle;
  background-color: #e61e40;
}

.request-list .info span, .request-view .info span {
  color: #666666;
  font-size: 12px;
}

.request-list .info span:before, .request-view .info span:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: -2px 4px 0 1px;
  vertical-align: middle;
  background-color: #888888;
}

.request-list .info span:first-child:before, .request-view .info span:first-child:before {
  display: none;
}

.request-list .consultant, .request-view .consultant {
  position: relative;
  margin-top: 10px;
  color: #222222;
}

.request-list .consultant dt, .request-view .consultant dt {
  font-size: 12px;
}

.request-list .consultant dd.person, .request-view .consultant dd.person {
  font-weight: 500;
}

.request-list .consultant dd.person.matching, .request-view .consultant dd.person.matching {
  color: #e61e40;
  font-size: 12px;
}

.request-list .consultant dd.pic, .request-view .consultant dd.pic {
  position: absolute;
  top: -3px;
  right: 0;
  width: 40px;
  height: 40px;
}

.request-list .consultant dd.pic img, .request-view .consultant dd.pic img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.request-list.consultant li, .request-view.consultant li {
  position: relative;
}

.request-list.consultant .consultant-info, .request-view.consultant .consultant-info {
  margin-bottom: 8px;
}

.request-list.consultant .consultant-info .tel, .request-view.consultant .consultant-info .tel {
  color: #222222;
  font-size: 12px;
}

.request-list.consultant .name, .request-view.consultant .name {
  font-size: 14px;
}

.request-list.consultant .btn-tel, .request-view.consultant .btn-tel {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url(/assets/images/common/button/btn-tel2.png);
  background-size: auto 40px;
}

.request-list li {
  border-bottom: 1px solid #cccccc;
}

.request-list li a {
  display: block;
  padding: 10px;
}

.request-view {
  position: relative;
  height: 100%;
  margin: -20px -15px -25px;
}

.request-view .top-info {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 10px;
  border-bottom: 1px solid #444444;
  z-index: 100;
}

.request-view .top-info .pic a {
  display: block;
}

.request-view.consultant .top-info {
  position: absolute;
}

.request-view.consultant .info2:after {
  display: block;
  clear: both;
  content: '';
}

.request-view.consultant .info2 dt,
.request-view.consultant .info2 dd {
  float: left;
  font-size: 12px;
}

.request-view.consultant .info2 dt {
  clear: both;
}

.request-view.consultant .info2 dd {
  margin-left: 6px;
  color: #e61e40;
  font-weight: 500;
}

.request-view.consultant .note dt {
  font-size: 12px;
}

.request-view.consultant .note dt:after {
  display: block;
  clear: both;
  content: '';
}

.request-view.consultant .note dd {
  display: none;
  margin-top: 12px;
  padding: 10px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  line-height: 1.4;
  background-color: #ffffff;
}

.request-view.consultant .note .btn-toggle {
  float: right;
  margin-top: -6px;
  padding: 3px 10px;
  border-radius: 3px;
  color: #ffffff;
  background-color: #444444;
}

.request-view.consultant .btn-state {
  margin-top: 10px;
  width: 100%;
  height: 30px;
  border-radius: 0;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  background-color: #7b68a7;
}

.request-view.consultant .btn-tel {
  right: 60px;
}

.request-view.consultant .btn-modify {
  display: inline-block;
  text-indent: -9999px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url(/assets/images/common/button/btn-modify.png);
  background-size: auto 40px;
}

.request-view.consultant .comment-body .message.to .cont {
  border-color: #d3c6f1;
  background-color: #f2ecff;
}

.request-view.consultant .comment-body .message.to .cont:before {
  background-image: url(/assets/images/content/bg-message3.png);
}

.request-view.consultant .comment-body .message.from .cont {
  display: block;
  margin-top: -15px;
}

.request-view.consultant .comment-footer .btn-send {
  background-image: url(/assets/images/common/button/btn-send2.png);
}

.request-view.new .top-info {
  background-color: #fff1f1;
}

.comment-area {
  height: 734px;
  overflow: hidden;
}

.comment-body {
  height: calc(100% - 50px);
  padding: 10px;
  background-color: #fafafa;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.comment-body:after {
  display: block;
  clear: both;
  content: '';
}

.comment-body .no-data {
  padding: 20px 0;
}

.comment-body .no-data .text {
  color: #666666;
  font-size: 13px;
}

.comment-body .message {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 35px;
  font-size: 12px;
}

.comment-body .message .cont {
  display: block;
  position: relative;
  width: 225px;
  padding: 10px;
  border-radius: 5px;
  color: #222222;
}

.comment-body .message .cont:before {
  content: '';
  position: absolute;
  top: -1px;
  width: 6px;
  height: 6px;
  background-size: auto 6px;
}

.comment-body .message.from {
  width: 100%;
  padding-left: 41px;
}

.comment-body .message.from .pic {
  display: inline-block;
  margin-left: -41px;
  width: 30px;
  height: 30px;
}

.comment-body .message.from .pic img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.comment-body .message.from .name {
  display: inline-block;
}

.comment-body .message.from .cont {
  border: 1px solid #e5e5e5;
  border-top-left-radius: 0;
  background-color: #ffffff;
}

.comment-body .message.from .cont:before {
  left: -6px;
  background-image: url(/assets/images/content/bg-message1.png);
}

.comment-body .message.from .date {
  width: 225px;
  text-align: right;
}

.comment-body .message.to {
  float: right;
  padding-right: 6px;
}

.comment-body .message.to .cont {
  border: 1px solid #ebc3c3;
  border-top-right-radius: 0;
  background-color: #fff1f1;
}

.comment-body .message.to .cont:before {
  right: -6px;
  background-image: url(/assets/images/content/bg-message2.png);
}

.comment-body .name {
  display: inline-block;
  margin-top: -2px;
  margin-left: 7px;
  color: #222222;
  font-weight: 500;
  font-size: 16px;
  vertical-align: middle;
}

.comment-body .date {
  margin-top: 1px;
  color: #666666;
  font-size: 11px;
}

.comment-body .btn-delete {
  position: absolute;
  right: 6px;
  bottom: 0;
  color: #e61e40;
  font-size: 11px;
}

.comment-footer .input-box {
  position: relative;
}

.comment-footer textarea {
  width: 100%;
  padding: 13px 50px 14px 15px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
}

.comment-footer textarea:focus {
  outline: 0;
}

.comment-footer input[type=file] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.comment-footer .btn-file,
.comment-footer .btn-send {
  display: inline-block;
  text-indent: -9999px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
  position: absolute;
  top: 10px;
  width: 30px;
  height: 30px;
  background-size: auto 30px;
}

.comment-footer .btn-file {
  left: 10px;
  background-image: url(/assets/images/common/button/btn-add.png);
}

.comment-footer .btn-send {
  right: 10px;
  background-image: url(/assets/images/common/button/btn-send1.png);
}

.request-list .state, .request-view .state {
  display: inline-block;
  margin-left: 5px;
  padding: 0 5px 1px;
  border-radius: 3px;
  color: #ffffff;
}

.request-list .state.type1, .request-view .state.type1 {
  background-color: #7b68a7;
}

.request-list .state.type2, .request-view .state.type2 {
  background-color: #e61e40;
}

.request-list .state.type3, .request-view .state.type3 {
  background-color: #666666;
}

.request-list .state.type4, .request-view .state.type4 {
  color:#222222;
  border:1px solid #d5d5d5;
  background-color: #ffffff;
}