@charset "utf-8";

/* ========================================================== */
/* 기본 스타일 (1200px 이상 - 데스크탑) */
/* ========================================================== */
.sub_cont {
    margin: 0 auto;
    padding: 40px 24px;
}

.sTit_loc-wrapper {
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 0;
}

.title {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    padding-bottom: 20px;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.main-content {
    width: 100%;
}
.noti {
    width: 100%;
    border-collapse: collapse;
}
.noti th,
.noti td {
    text-align: center;
    border-left: none;
    border-right: none;
}
.noti thead th {
    padding: 15px 0;
    background-color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
    color: #3c3c3c;
}
.noti tbody td {
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: #555555;
    font-weight: 500;
}
.noti .t_l {
    text-align: left;
    padding: 0 0 0 25px;
    margin: 15px 0;
}

.noti-frame {
    border-bottom: 1px solid #dadada;
    display: flex;
}3


.status-cell img {
    margin: 20px 20px;
}



/* 날짜, 번호, 제목을 감싸는 컨테이너 */
.noti-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* 가로 중앙 정렬 */
    justify-content: center; /* 세로 중앙 정렬 */
    height: 100%; /* 부모 요소의 높이를 채우도록 설정 */
    text-align: center; /* 텍스트 정렬 */
}

/* 제목 텍스트와 new 아이콘을 감싸는 컨테이너 */
.noti-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px; /* 날짜와 제목 사이 간격 조정 */
}

/* 제목 링크 스타일 */
.noti-text-wrapper a {
    text-decoration: none;
    color: #555555;
    font-size: 16px;
    font-weight: 500;
}

/* 날짜와 번호 스타일 */
.noti-date-num {
    display: flex;
    flex-direction: column;
    align-items: center; /* 가로 중앙 정렬 */
}

.noti-arrow {
    width: 8px;
    transition: transform 0.3s ease-in-out;
}

.noti-arrow.rotated {
    transform: rotate(90deg);
}

.new_ico{
    padding: 3px 0 0 8px;
}

/* ========================================================== */
/* 고객센터 스타일 */
/* ========================================================== */
.cs-tr{
    border-bottom: 1px solid #dadada;
}

.status-cell{
    font-size: 16px;
    color: #555555;
}

/* ========================================================== */
/* 견적상담 스타일 */
/* ========================================================== */

.es_T1{
    width: 100%;
}

/* ========================================================== */
/* 사이드 메뉴 (Side Menu) 스타일 */
/* ========================================================== */
.side-menu {
    flex-shrink: 0;
    width: 180px;
}

.side-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
/*    height: 430px;*/
    padding: 0;
    margin: 0;
    border-radius: 30px;
    border: 1px solid #e1e1e1;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.side-menu li:last-child {
    border-bottom: none;
}

.side-menu a {
    display: block;
    padding: 15px 0 0 0;
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    text-align: left;
    margin: 0 auto;
}

.side-menu li.faq a {
    font-size: 21px !important;
    color: #333;
    font-weight: bold!important;
    padding-bottom: 30px;
}

/* FAQ 링크에만 적용되는 호버 스타일 */
.side-menu li.faq:hover a {
    color: #00c7b3 !important; /* 호버 시 색상 변경에 !important 적용 */
}

.side-menu-wrap {
    width: 100px;
    margin: 0 auto;
    flex: 1; /* 남은 공간을 채우도록 함 */

}

.nav-title {
    text-align: left;
    margin: 30px 0 0 0;
    font-size: 21px;
}

.side-menu li.nav_on a {
    color: #00c7b3;
}

.side-menu li:not(.nav_on):hover a {
    color: #00c7b3;
}

.tab-menu {
    display: none;
}


/* ========================================================== */
/* FAQ 스타일 */
/* ========================================================== */

/* FAQ 컨테이너 */
.faq-list {
}

/* 개별 FAQ 항목 (질문과 답변) */
.faq-item {
    border-bottom: 1px solid #d0d0d0;
}

/* 질문 제목 스타일 */
.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.faq-question a.question-text {
    flex-grow: 1;
    color: inherit;
    text-decoration: none;
    display: block;
}

/* 질문 아이콘(Q.) */
.faq-question .q-icon {
    font-weight: bold;
    color: #000;
    font-size: 30px;
    margin-right: 15px;
    margin-bottom: 7px;
}

/* 펼치기/접기 아이콘 */
.faq-arrow {
    width: 8px;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.faq-question.active .faq-arrow {
    transform: rotate(90deg);
}

/* 답변 내용 스타일 */
.faq-answer {
    display: none; /* 기본적으로 답변 숨기기 */
    padding: 0;
}

.answer-content {
    display: flex;
    align-items: center;
    padding: 0 25px 25px 25px;
    line-height: 1.6;
    color: #555;
    white-space: pre-wrap;
}

/* 답변 아이콘(A.) */
.answer-content .a-icon {
    color: #60CABC;
    font-size: 30px;
    margin-right: 15px;
    margin-bottom: 7px;
    font-weight: bold;
}
.answer-content span{
    font-size: 16px;
    font-weight: 500;
    color: #3c3c3c;
}


/* ========================================================== */
/* 메인 컨텐츠 탭 메뉴 */
/* ========================================================== */
.board-title {
    font-size: 20px;
    display: flex;
}

.tab-menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}
.tab-menu li {
    flex-grow: 1;
    text-align: center;
    position: relative;
    padding: 15px 0;
    cursor: pointer;
}
.tab-menu a {
    text-decoration: none;
    color: #666;
    font-size: 17px;
    font-weight: bold;
    transition: color 0.2s;
}
.tab-menu li:hover a {
    color: #333;
}
.tab-menu .nav-on {
    border-bottom: 3px solid #1c1c1c;
}
.tab-menu .nav-on a {
    color: #000;
}

.board-title {
    font-size: 30px;
    font-weight: bold;
    margin-left: 25px;
}

.sub-title-wrap{
    display: flex;
    justify-content: space-between;
/*    align-items: center;*/
}

.sub-title {
    font-size: 13px;
    margin-left: 25px;
}

.cs-sub-txt{
    display: flex;
    margin-right: 35px;
    width: 16%;
}

.all-look{
    display: flex;
    justify-content: flex-end;
    position: relative; /* 드롭다운 메뉴 위치 기준점 설정 */
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    width: 100%;
}

.progress{
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    width: 100%;
}


.all-look .tri_icon {
    margin-left: 5px;
    transition: transform 0.3s ease; /* 회전 애니메이션 효과 */
}

.qkind-dropdown-menu {
    position: absolute; /* .all-look을 기준으로 위치 설정 */
    top: 100%; /* .all-look 바로 아래에 위치 */
    left: 0;
    min-width: 120px;
    padding: 5px 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 100;
    display: none; /* 초기 상태는 숨김 */
}

/* 드롭다운 메뉴  버튼 스타일 */
.qkind-dropdown-menu .filter-btn {
    display: block;
    width: 100%;
    padding: 8px 15px;
    text-align: left;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
    transition: background-color 0.2s;
}

.qkind-dropdown-menu .filter-btn:hover {
    background-color: #f5f5f5;
}

.all-look:hover .qkind-dropdown-menu {
    display: block;
}

.all-look:hover .tri_icon {
    display: inline-block;
    transform: rotate(180deg);
}

.dev-line {
    display: block;
    margin: 20px 0 0 0;
    border: 1px solid #333;
}

.noti-date-num {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 가운데 정렬 */
    padding-left: 25px;
}

.noti-date {
    font-size: 13px;
    font-weight: 400;
    color: #727272;
    margin-bottom: 5px;
}

.noti-number {
    font-size: 15px;
    font-weight: normal;
    color: #5B5B5B;
    font-weight: 500;
}
/* ========================================================== */
/* 견적상담 검색 스타일 */
/* ========================================================== */
.bbs-search-form {
	display: flex;
	align-items: center;
	gap: 6px; /* 요소들 사이의 통일된 간격 (Gutter) */
    margin-bottom: -11px;
}

/* 폼 요소들의 기본 높이와 박스 모델 설정 */
.search-select,
.input-search,
.btn-search {
	/* 모든 요소의 높이를 32px로 통일 */
	height: 32px; 
	line-height: 30px; /* 텍스트 수직 중앙 정렬을 위한 line-height 조정 (버튼) */
	box-sizing: border-box; /* 패딩/보더를 크기에 포함 */
}

/* 1. 검색 모드 선택 박스 */
.search-select {
	min-width: 90px; /* 너무 좁아지지 않도록 최소 너비 설정 */
	padding: 0 8px;
	border: 1px solid #ccc; /* 은은한 회색 보더 */
	border-radius: 4px; /* 살짝 둥근 모서리 */
	font-size: 14px;
	color: #333;
}

/* 2. 검색어 입력 필드 */
.input-search {
	flex-grow: 1; /* 남은 공간을 채우도록 확장 */
	max-width: 150px; /* 너무 줄어들지 않도록 최소 너비 설정 */
	padding: 0 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	transition: border-color 0.2s; /* 포커스 시 부드러운 전환 */
    font-size: 14px;
}

/* 포커스 시 시각적 피드백 */
.input-search:focus {
	border-color: #555; /* 포커스 시 진한 색상으로 */
	outline: none;
}

/* 3. 검색 버튼 (input[type="submit"] 대신 button 사용) */
.btn-search {
	width: 60px; /* 고정 너비로 깔끔하게 */
	background-color: #333; /* 버튼은 진한 색상으로 명확하게 */
	color: #fff; /* 흰색 텍스트 */
	border: 1px solid #333;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 500;
	padding: 0;
	transition: background-color 0.15s;
    font-size: 14px;
}

/* 호버 시 디테일 */
.btn-search:hover {
	background-color: #555;
	border-color: #555;
}
/* ========================================================== */
/* 공지 버튼 스타일 */
/* ========================================================== */

.status-cell {
    text-align: center;
}
.status-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    border-radius: 50px;
    background-color: #00c7b3;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    flex-shrink: 0;
}
.b_btn_noti {
    float: left;
    width: 80px;
    border-radius: 30px;
    background-color: #E4E4E4;
    text-align: center;
    padding: 10px 0;
    display: inline-block;
    color: #7D7D7D;
    margin-right: 5px;
}
/* ========================================================== */
/* 고객센터 버튼 스타일 */
/* ========================================================== */
.btn_wrap {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}
.cs_re_btn{
    width: 90px;
    height: 45px;
    border-radius: 30px;
    background-color: #E4E4E4;
    text-align: center;
    padding: 10px 0;
    display: inline-block;
    color: #7D7D7D;
    margin-right: 5px;
    border: none;
}

/* ========================================================== */
/* 페이징 (Paging) 스타일 */
/* ========================================================== */

.paging-wrap{
    display: flex;
    justify-content: space-between;
}


.paging,
.cs-paging {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.paging .btn,
.cs-paging .btn {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.paging img,
.cs-paging img {
    vertical-align: middle;
}

.paging a,
.cs-paging a {
    display: inline-block;
    min-width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    color: #999;
    border: none;
    text-decoration: none;
/*    margin: 0 4px;*/
    transition: all 0.2s ease-in-out;
    font-size: 16px;
}

.paging a:hover,
.cs-paging a:hover {
    color: #333;
}

.paging strong,
.cs-paging strong {
    display: inline-block;
/*    line-height: 31px;*/
    text-align: center;
    font-weight: bold;
    border: none;
    color: #00c7b3;
    background-color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 34px;
}

.paging a.active,
.paging strong,
.cs-paging a.active,
.cs-paging strong {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    border: none;
    color: #00c7b3;
    background-color: #fff;
    margin-bottom: 10px;
}

a.b_btn {
    margin-top: 20px;
    margin-left: 20px;
}
/* ========================================================== */
/* 부서별 연락처 테이블 스타일 */
/* ========================================================== */

.dp_cnt_box {
    margin: 50px 0 0 0;
    float: left;
    width: 100%;
}

.tbl_list {
    width: 100%;
    border-collapse: collapse;
}

/* 오른쪽 보더 제거를 위한 추가 스타일 */
.tbl_list th, .tbl_list td {
    padding: 12px 15px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.tbl_list th:last-child, .tbl_list td:last-child {
    border-right: none;
}

.tbl_list th:first-child, .tbl_list td:first-child {
    border-left: none;
}

.tbl_list thead th {
    background-color: #f7f7f7;
    font-weight: 500;
    color: #333;
    border-top: 2px solid #555;
}

.tbl_list tbody td {
    border-top: none;
}

.tbl_list td.tac {
    text-align: center;
    border-right: 1px solid #e1e1e1;
}

.tbl_list td.bd_l {
    border-left: 1px solid #ddd;
}

.tbl_list tr:nth-child(2) td {
    border-top: 1px solid #ddd;
}

/* 색상 및 텍스트 스타일 */
.color_sky {
    color: #00c7b3; /* 이미지에 맞게 색상 변경 */
    font-weight: bold;
}

/* 추가 정보 섹션 (하단) 스타일 */
/* 기존 스타일 유지 */
.cust_info {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    flex: 1;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    background-color: #fcfcfc;
}

.info-card .tit {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    line-height: 1.6;
    color: #666;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    background-color: #555;
    padding: 8px 15px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
}

.card-link:hover {
    background-color: #333;
}

.tac bd_l{
    border-left: 1px solid #e1e1e1;
}

/* ========================================================== */
/* 견적/고객의 상담/소리 (쓰기) */
/* ========================================================== */

/* 전체 폼 디자인 */

/* 테이블 기본 스타일 */
.minimal-form-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif,-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: #333;
}

/* 제목 셀 (th) 스타일 */
.minimal-form-table .form-label {
  width: 120px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
  padding: 15px 0 18px 0;
}

/* 테이블 셀 (th, td) 공통 스타일 */
.minimal-form-table th,
.minimal-form-table td {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

/* 마지막 행의 보더 제거 */
.minimal-form-table tbody tr:last-child th,
.minimal-form-table tbody tr:last-child td {
  border-bottom: none;
}

/* ========================================================== */
/* 입력 필드 공통 스타일 */
/* ========================================================== */

.minimal-form-input,
.minimal-form-select,
.minimal-form-textarea {
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}

/* 포커스 상태 스타일 */
.minimal-form-input:focus,
.minimal-form-select:focus,
.minimal-form-textarea:focus {
  outline: none;
  border-color: #a0a0a0;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(160, 160, 160, 0.1);
}

/* Readonly 인풋 스타일 */
.minimal-form-input[readonly] {
  background-color: #ececec;
  cursor: not-allowed;
}

/* 플레이스홀더 스타일 */
.minimal-form-input::placeholder,
.minimal-form-textarea::placeholder {
  color: #b0b0b0;
  font-style: italic;
}

/* ========================================================== */
/* 각 필드별 전용 스타일 */
/* ========================================================== */

/* 제목 입력 필드 */
.minimal-form-input[name="subject"] {
  width: 100%;
}

/* 작성자 입력 필드 */
.minimal-form-input[name="name"] {
  width: 150px;
}

/* 분류 셀렉트 박스 */
.minimal-form-select {
  width: 150px;
}

/* 내용 텍스트 영역 */
.minimal-form-textarea {
  width: 100%;
  resize: vertical;
  min-height: 200px;
}

/* 파일 입력 필드 (숨김) */
.hidden-file-input {
  display: none;
}

/* ========================================================== */
/* 셀렉트 박스 커스텀 디자인 */
/* ========================================================== */

/* 기존 셀렉트 박스 숨기기 (JavaScript로 기능만 활용) */
.minimal-form-select {
  display: none;
}

/* 커스텀 셀렉트 박스 컨테이너 */
.custom-select-wrapper {
  position: relative;
  width: 150px; /* 기존 셀렉트 박스 너비와 동일 */
  font-size: 14px;
  box-sizing: border-box;
}

/* 선택된 값을 보여주는 영역 */
.custom-select-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease-in-out;
}

/* 포커스 및 호버 상태 */
.custom-select-display:hover,
.custom-select-display:focus {
  border-color: #a0a0a0;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(160, 160, 160, 0.1);
}

/* 드롭다운 화살표 */
.select-arrow {
  color: #888;
  font-size: 12px;
  transition: transform 0.2s ease;
}

/* 옵션 목록 (초기에는 숨김) */
.custom-select-options {
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

/* 옵션 목록이 보일 때 */
.custom-select-wrapper.open .custom-select-options {
  display: block;
}

/* 각 옵션 아이템 */
.custom-select-options li {
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.custom-select-options li:hover {
  background-color: #f0f0f0;
}

/* ========================================================== */
/* 파일 선택 버튼 커스텀 스타일 */
/* ========================================================== */

/* 커스텀 버튼 디자인 */
.custom-file-upload {
  display: inline-block;
  padding: 10px 18px;
  background-color: #f0f0f0;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  vertical-align: middle;
}

/* 호버 및 액티브 상태 */
.custom-file-upload:hover {
  background-color: #e0e0e0;
  border-color: #ccc;
}

.custom-file-upload:active {
  background-color: #d0d0d0;
  border-color: #bbb;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 선택된 파일 이름 표시 */
.uploaded-file-name {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  color: #777;
  vertical-align: middle;
  max-width: calc(100% - 150px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ========================================================== */
/* 미디어 쿼리 (태블릿, 769px ~ 1199px) */
/* ========================================================== */
@media (min-width: 769px) and (max-width: 1199px) {
    .content-wrapper {
        gap: 20px;
        padding: 0 20px;
    }
    .side-menu {
        width: 180px;
    }
    .side-menu-wrap {
        width: 90px;
    }
    .side-menu a {
        font-size: 15px;
    }
    .title {
        font-size: 24px;
    }
    .board-title {
        font-size: 30px;
    }
    .sub-title {
        font-size: 16px;
    }
    .noti thead th {
        font-size: 14px;
    }
    .noti tbody td {
        font-size: 14px;
    }
    .paging a, .paging strong {
        font-size: 16px;
        min-width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

/* ========================================================== */
/* 모바일 미디어 쿼리 (480px ~ 768px) */
/* ========================================================== */
@media (min-width: 480px) and (max-width: 768px) {
    .sub_cont {
        padding: 20px 15px;
    }
    .side-menu {
        display: none;
    }
    .tab-menu {
        display: flex; /* 모바일에서 탭 메뉴 표시 */
    }
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .title {
        font-size: 22px;
    }
    .board-title {
        font-size: 25px;
    }
    .sub-title {
        font-size: 15px;
    }
    .noti thead th {
        font-size: 13px;
    }
    .noti tbody td {
        font-size: 13px;
        padding: 10px 0;
    }
    .noti-arrow {
        width: 10px;
    }
    .paging {
        text-align: center;
    }
    .paging a, .paging strong {
        font-size: 14px;
        min-width: 28px;
        height: 28px;
        line-height: 28px;
        margin: 0 2px;
    }
}

/* ========================================================== */
/* 초소형 모바일 미디어 쿼리 (479px 이하) */
/* ========================================================== */
@media (max-width: 479px) {
    .sub_cont {
        padding: 15px 10px;
    }
    .side-menu {
        display: none;
    }
    .tab-menu {
        display: flex;
    }
    .content-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .title {
        font-size: 20px;
    }
    .board-title {
        font-size: 22px;
    }
    .sub-title {
        font-size: 13px;
    }
    .noti thead th, .noti tbody td {
        font-size: 12px;
        padding: 8px 0;
    }
    .noti .t_l {
        padding: 0 3px;
        margin: 10px 0;
    }
    .noti-arrow {
        width: 8px;
    }
    .paging {
        text-align: center;
    }
    .paging a, .paging strong {
        font-size: 12px;
        min-width: 24px;
        height: 24px;
        line-height: 24px;
        margin: 0 1px;
    }
    .b_btn_noti, .status-icon {
        width: 60px;
        font-size: 13px;
    }
}