 


/*  게시글 리스트  ==================================================================================== */
  
.board_category								{text-align:center; margin-bottom:20px;}
.board_category li							{display:inline-block; margin-right:3px;}
.board_category li:last-child			{margin:0;}
.board_category li a						{display:block; background:#f7f7f7; color:#555; padding:5px 15px; border-radius:2px; font-weight:500; }
.board_category li a:hover, .board_category .on a		{background:#f15f22; color:#fff; }
 
.board_list .content_wrap							{position:relative;display: grid;  grid-template-columns:repeat(3, 1fr); gap:1.4em;transition:var(--transition1);}
.board_list .content_wrap li							{position:relative;  text-align:center;  padding:20px; transition:var(--transition1); max-width:340px; }
.board_list .content_wrap li::after				{position:absolute;content:'';left:0;top:0;width:100%;height:100%; border:1px solid #dfdfdf;pointer-events: none; }
.board_list .content_wrap li .img				{position:relative; aspect-ratio:4/3; overflow:hidden;  }
.board_list .content_wrap li .img img			{width:100%; height:100%;object-fit:cover; transition:var(--transition1); }    
.board_list .content_wrap li:hover::after				{ border:3px solid #0c4da2;     }
.board_list .content_wrap li:hover .img img			{transform: scale(1.1);}

.board_list .content_wrap li .cont				{ }
.board_list .content_wrap li .subject			{font-size:1.2em;font-weight:700;color:#222; padding:15px 0 0 0;} 
.board_list .content_wrap li .subject span	{display:block;font-size:0.95rem;padding:5px 0 0 0;color:#666; letter-spacing:0;}
.board_list .content_wrap li .txt					{ border-top:1px solid #e9e9e9;padding:10px 0 0 0; }
  
.board_list .content_nolist						{padding:100px 0; text-align:center; border-top:2px solid #5e5e5e; border-bottom:1px solid #dfdfdf;}
 
.bbs_btn_wrap											{position:relative;padding-top:40px; display: grid; grid-template-columns:1fr; gap:20px;  } 
 
  
@media screen and (max-width:768px) {
    .board_list .content_wrap							{ grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); } 
    .board_list .content_wrap li							{ padding:15px;   } 
    .board_list .content_wrap li .subject			{font-size:1.1em; } 
}
@media screen and (max-width:580px) {
    .board_list .content_wrap li							{ max-width:initial; }
}
 
  
/*  게시글 뷰  ==================================================================================== */
.board_view													{position:relative; }
.board_view_top											{position:relative;display:flex; gap:4%; }
.board_view_top .img									{position:relative;width:45%;  }
.board_view_top .img img							{width:100%; border:1px solid #e5e5e5; padding:10px;   }
.board_view .tit_wrap									{flex:2;padding:30px 0  ;  border-top:var(--bbs-border-width1) solid var(--bbs-border-color1); } 
.board_view .tit_wrap .cate							{display:inline-block; padding:5px 10px; color:#fff; background:var(--color1); margin:0 0 10px 0;  border-radius:2px; }
.board_view .tit_wrap .tit								{font-size:1.8em;  line-height:140%; COLOR:#222; font-weight:700;padding:0 0 25px 10px;}  
.board_view .tit_wrap .tit	 span					{color:var(--color1);}
.board_view .tit_wrap .data							{padding:25px 30px  ;background:#f9f9f9;  }
.board_view .tit_wrap .data dl						{position:relative; padding:5px 0; font-size:0.95em;display:flex; } 
.board_view .tit_wrap .data dt					{position:relative; display:inline-block; min-width:120px;color:#555;  padding:0 15px;   } 
.board_view .tit_wrap .data dt::before		{position:absolute; content:''; display:block; left:2px; top:9px; width:3px; height:3px; background:var(--color1); border-radius:50%;}
.board_view .tit_wrap .data dt::after			{position:absolute; content:''; display:block; right:15px; top:5px; width:1px; height:1em; background:#ddd;  }
.board_view .tit_wrap .data dd					{flex:2;}

.board_view .tit_wrap .info							{padding:35px 30px  ;background:#fff;color:#333; font-size:0.95em;border-bottom:1px solid #e9e9e9;border-top:1px dashed #e0e0e0; }
.board_view .tit_wrap .info .tel					{color:#f45c00;font-weight:500;letter-spacing:0;padding:10px 0 0 0; }
.board_view .tit_wrap .info .tel span			{display:inline-block;padding:2px 20px 2px 0; font-weight:500;}
.board_view .tit_wrap .info .tel i					{display:inline-block;text-align:center; font-size:0.8em;width:30px;height:30px;line-height:29px; margin-right:10px;border:1px solid #d5dae2;color:#afb7c3;border-radius:50px; }

.board_view .tit_wrap .btn_wrap								{position:relative;padding:40px   0 0 0;text-align:center;  display: flex; flex-flow:wrap;justify-content:center; gap:1%; }
.board_view .tit_wrap .btn_wrap span						{position:relative;display:inline-block; line-height:60px;font-size:1.1em;font-weight:500; width:32.5%;transition:var(--transition1);}
.board_view .tit_wrap .btn_wrap .btn01					{ border:1px solid var(--color1);background:var(--color1);color:#fff; }
.board_view .tit_wrap .btn_wrap .btn02					{ border:1px solid #666;background:#fff;  }
.board_view .tit_wrap .btn_wrap .btn01 a				{display:block; color:#fff;font-weight:500; }
.board_view .tit_wrap .btn_wrap .btn02 a				{display:block;color:#222;font-weight:500; }
.board_view .tit_wrap .btn_wrap span:hover			{border:1px solid #111;background:#222;  }
.board_view .tit_wrap .btn_wrap span:hover a			{ color:#fff  ;}


.board_view .name										{padding:20px 20px 0 0; text-align:right;font-size:0.9rem;color:#999; }

.board_view .content_wrap							{overflow:hidden;padding:40px 10px; border-bottom:1px solid var(--bbs-border-color1);  } 
.board_view .content_wrap img					{max-width:100%; } 
.board_view .btn_wrap								{padding-top:40px  ; text-align:center; overflow:hidden;  }
.board_view .btn_wrap .bbs_btn02				{margin-right:3px;}
 
.board_view .bwrite_cm							{padding-top:20px;}


@media screen and (max-width:1200px) {
.board_view .tit_wrap									{ padding:25px 0  ;   }  
.board_view .tit_wrap .data							{padding:20px 25px  ;   }
.board_view .tit_wrap .tit								{font-size:1.65em; }
.board_view .tit_wrap .info							{padding:  25px 20px ;}
}
@media screen and (max-width:768px) {
	.board_view_top											{ flex-direction: column; gap:0; }
	.board_view_top .img									{ width:100%; }

	.board_view .tit_wrap						            {padding:20px 0; border:0;} 
	.board_view .tit_wrap .tit					            {font-size:1.4em; padding:0 0 15px 10px;}
	.board_view .tit_wrap .name						{font-size:0.85em;}
	.board_view .tit_wrap .data							{padding:15px  ;  }
	.board_view .tit_wrap .data dl						{font-size:0.9em;} 
	.board_view .tit_wrap .data dt					{ min-width:90px; } 
	.board_view .tit_wrap .btn_wrap				{ padding:30px   0 0 0; }
	.board_view .tit_wrap .btn_wrap span		{  line-height:50px; font-size:1em; width:42%;}

	.board_view .content_wrap					{padding:30px 10px;}  
}
 


/* 게시글 뷰페이지 버튼, 이전, 다음글	 ======================================*/ 
.board_view .pn_wrap                         {padding-top: 30px ; display: flex;}
.board_view .pn_wrap li                      {position: relative;display: table;flex:1;}
.board_view .pn_wrap li .inner           {position: relative;display: table-cell;z-index: 2; height:90px;padding: 0 20px;border: 1px solid #d5d5d5;vertical-align: middle; font-size: 0.9em; transition:var(--transition1); }
.board_view .pn_wrap li.prev .inner  {padding-left:90px; border-right-width:0; border-radius:0.7em 0 0 0.7em;}
.board_view .pn_wrap li.next .inner  {padding-right:90px;text-align: right; border-radius: 0 0.7em 0.7em 0;}
.board_view .pn_wrap li::after            { position:absolute; content:'';top:39px;  border:solid #777; border-width:1px 1px 0 0;  padding:5px; }
.board_view .pn_wrap li.prev::after	{ left:42px;  transform: rotate(-135deg);}
.board_view .pn_wrap li.next::after	{ right:42px; transform: rotate(45deg); } 

.board_view .pn_wrap li::before        {content:''; position: absolute;top: 50%;transform: translateY(-50%);width: 50px;height: 50px;border-radius: 100%;background:#f1f0ef; }
.board_view .pn_wrap li.prev::before {left: 20px;}
.board_view .pn_wrap li.next::before {  right: 20px;}
.board_view .pn_wrap .tit                   {display: block;padding-bottom:5px; font-weight: 700;color: #333;transition:var(--transition1); }
.board_view .pn_wrap .txt                  {text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp:1; -webkit-box-orient: vertical;overflow: hidden; color: #666666;transition:var(--transition1); line-height:1.3; }
.board_view .pn_wrap li a:hover .txt {text-decoration:underline;   }
.board_view .pn_wrap li div.inner .tit,
.board_view .pn_wrap li div.inner .txt               {color:#999  ; }

@media screen and (max-width:768px) {  
    .board_view .pn_wrap li .inner           { height:80px; }
    .board_view .pn_wrap li.prev .inner  {padding-left:75px;  }
    .board_view .pn_wrap li.next .inner  {padding-right:75px; }
    .board_view .pn_wrap li::before        { width:40px;height: 40px;  }
    .board_view .pn_wrap li::after            { top:36px;  padding:4px; }
    .board_view .pn_wrap li.prev::after	{  left:38px;  }
    .board_view .pn_wrap li.next::after	{  right:38px;   } 
}
@media screen and (max-width:480px) {  
    .board_view .pn_wrap li .inner           { height:60px; }
    .board_view .pn_wrap li.prev .inner  {padding-left:65px;  }
    .board_view .pn_wrap li.next .inner  {padding-right:65px; }
    .board_view .pn_wrap li::before        { width:32px;height: 32px;  }
    .board_view .pn_wrap li::after            { top:26px;  }
    .board_view .pn_wrap li.prev::after	{  left:34px;  }
    .board_view .pn_wrap li.next::after	{  right:34px;   } 
    .board_view .pn_wrap .tit                   { padding-bottom:0;  }
    .board_view .pn_wrap .txt                  {display:none; }
}
/* 게시글 뷰페이지 버튼, 이전, 다음글	 ======================================*/ 


/* 게시글 뷰페이지 파일다운  ======================================*/ 
.board_view .file_wrap 									{position:relative; padding:20px    ;font-size:0.95em; overflow:hidden; border-bottom:1px solid #ddd; display: grid; grid-template-columns:160px auto;   background:#f9f9f9; transition:var(--transition1);} 
.board_view .file_wrap .tit								{  padding-left:40px;margin-top:5px; color:#333; font-weight:bold; font-size:1em;   background:url('./img/icon_file.png') no-repeat 5px 0 ;background-size:25px auto; } 
.board_view .file_wrap li									{position:relative;  font-size:0.9em; padding:3px 0  ; line-height:1.3;  transition:var(--transition1);}
.board_view .file_wrap li a,
.board_view .file_wrap li button                     {position:relative; display:inline-block;  color:#777; text-align:left;  }
.board_view .file_wrap li button:hover,
.board_view .file_wrap li a:hover                   {color:#333; text-decoration:underline; } 
.board_view .file_wrap li a::before,
.board_view .file_wrap li button::before			{position:relative; padding:6px 30px 6px 10px; display:inline-block;  background:url('./img/icon_down.png') no-repeat right 8px top 7px #444;color:#fff; font-size:0.9em; border-radius:5px 0; margin-right:8px; min-width:88px; }
.board_view .file_wrap li a:hover::before,
.board_view .file_wrap li button:hover::before          {background-color:#222; }
.board_view .file_wrap li a::before                    { content:'다운로드';  }
.board_view .file_wrap li button::before          { content:'미리보기'; background-image:url('./img/icon_blink.png') ;}

@media screen and (max-width:1024px) {  
    .board_view .file_wrap 									{ padding:1em ; grid-template-columns:130px auto; } 
    .board_view .file_wrap li a::before,
    .board_view .file_wrap li button::before			{  padding:5px 22px 5px 8px;   min-width:78px; }
}
@media screen and (max-width:768px) {   
	.board_view .file_wrap 								{  grid-template-columns:1fr;  gap:6px;  }
	.board_view .file_wrap .tit							{  padding-left:28px; margin:0 ;   background-position: 0 0 ;background-size:20px auto; } 
}
 
/* 게시글 뷰페이지 파일다운  ======================================*/ 



/*  게시글 폼  ==================================================================================== */
.board_form													{ border-top:var(--bbs-border-width1) solid var(--bbs-border-color1);} 
.board_form .tit												{color:#333; font-weight:600; font-size:1.05em;padding:18px 10px;line-height:1.1em; text-align:center; background:var(--bbs-bgcolor1);   }
.board_form table											{border-collapse:collapse; width:100%; table-layout:fixed; font-size:0.95em;}
.board_form .thsize										{width:15%;}
.board_form table tbody th							{padding:10px ;  border:1px solid #e5e5e5;  background:#fafafa;  text-align:center;  line-height:1.3; }
.board_form table tbody th:first-child			{border-left:0;}
.board_form table tbody th:last-child			{border-right:0;} 
.board_form table tbody th span					{display:block;font-size:0.9em;color:#ec0b0b;}
.board_form table tbody td							{  padding:12px ;  word-break:break-all;   border:1px solid #e5e5e5;   } 
.board_form table tbody td:first-child			{border-left:0;}
.board_form table tbody td:last-child			{border-right:0;} 
 
.board_form .btn_wrap								{padding:40px 0; overflow:hidden; text-align:center; }
 
@media screen and (max-width:768px) {
    .board_form table											{  font-size:0.85em;}
    .board_form .tit												{ padding:15px 10px; }
    .board_form table tbody th							{padding:10px  5px; font-size:0.95em; } 
    .board_form table tbody td							{padding:10px  5px; }
    .board_form .thsize										{width:80px;}
}

/*  게시글 폼  ==================================================================================== */
