(201030)사업자등록증 삭제 조건 수정
This commit is contained in:
parent
b87332ea93
commit
9ec09354fc
|
|
@ -683,6 +683,14 @@ namespace NP.Base
|
||||||
// uno = -999;
|
// uno = -999;
|
||||||
//}
|
//}
|
||||||
break;
|
break;
|
||||||
|
case "assign.fgnobno":
|
||||||
|
var u = Dao.Get<NP.Model.Assign>("users.users.assign", new System.Collections.Hashtable() { { "userno", SUserInfo.UserNo } }).FirstOrDefault();
|
||||||
|
if(u.fgnobno == file.fgno)
|
||||||
|
{
|
||||||
|
isauth = true;
|
||||||
|
uno = -999;
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
@ -692,7 +700,7 @@ namespace NP.Base
|
||||||
{
|
{
|
||||||
if (Dao.Save("sys.file.del", new System.Collections.Hashtable() { { "fileno", fileNo }, { "uip", GetUserIP() }, { "uno", uno } }) > 0)
|
if (Dao.Save("sys.file.del", new System.Collections.Hashtable() { { "fileno", fileNo }, { "uip", GetUserIP() }, { "uno", uno } }) > 0)
|
||||||
{
|
{
|
||||||
//System.IO.File.Delete(Server.MapPath(NP.Model.Base.Files + file.FileUrl));
|
//System.IO.File.Delete(Server.MapPath(NP.Model.Base.Files + file.fileurl));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
|
|
@ -24,9 +24,9 @@ namespace NP.Base.Controllers
|
||||||
else { filterContext.Result = new RedirectResult("/Account/Error?_code=" + NP.Base.ENUM.JSONCode.Error + "&_msg=알수없는오류"); }
|
else { filterContext.Result = new RedirectResult("/Account/Error?_code=" + NP.Base.ENUM.JSONCode.Error + "&_msg=알수없는오류"); }
|
||||||
}
|
}
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public JsonResult FileDel(Int64 fileno = 0, String filename = "", Int64 fgno = 0, int issinglefile = 0, String log = "")
|
public JsonResult FileDel(Int64 fileno = 0, String filename = "", Int64 fgno = 0, int issinglefile = 0, String log = "",String datakey=null)
|
||||||
{
|
{
|
||||||
var rtn = DropFile(fileno, filename);
|
var rtn = DropFile(fileno, filename,datakey);
|
||||||
if (rtn < 1)
|
if (rtn < 1)
|
||||||
{
|
{
|
||||||
throw new System.ArgumentNullException("nodata");
|
throw new System.ArgumentNullException("nodata");
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
//var _hidemode = (int)(ViewData["hide"] ?? 0);
|
//var _hidemode = (int)(ViewData["hide"] ?? 0);
|
||||||
var fileext = ViewData["fileext"] ?? "*";//jpg,png,ppt
|
var fileext = ViewData["fileext"] ?? "*";//jpg,png,ppt
|
||||||
var issubject = (ViewData["issubject"] ?? "").ToString() == "1";
|
var issubject = (ViewData["issubject"] ?? "").ToString() == "1";
|
||||||
|
var datakey = (ViewData["datakey"] ?? "").ToString();
|
||||||
}
|
}
|
||||||
<div>
|
<div>
|
||||||
<input type="hidden" name="@name" value="@value" />
|
<input type="hidden" name="@name" value="@value" />
|
||||||
|
|
@ -25,13 +26,13 @@
|
||||||
<a class="file" href="/focommon/downfile?fno=@(f.fileno + (issubject?"&issubject=1":""))">@f.orgname</a>
|
<a class="file" href="/focommon/downfile?fno=@(f.fileno + (issubject?"&issubject=1":""))">@f.orgname</a>
|
||||||
@if (_readmode != 1)
|
@if (_readmode != 1)
|
||||||
{
|
{
|
||||||
<a href="#" class="filedel" onclick="filedel(@f.fileno, this)">삭제</a>
|
<a href="#" class="filedel" onclick="filedel(@f.fileno, this,@(string.IsNullOrEmpty(datakey) ? null : "\'"+datakey+"\'" ))">삭제</a>
|
||||||
}
|
}
|
||||||
</li>
|
</li>
|
||||||
}
|
}
|
||||||
@if (filecount > files.Count() && _readmode != 1)
|
@if (filecount > files.Count() && _readmode != 1)
|
||||||
{
|
{
|
||||||
<li><input type="file" class="file" name="@fname" accept="media_type" onchange="filechange(this)" @*capture="gallery"*@ /><a href="#" class="filedel" onclick="filedel(0, this)">삭제</a></li>
|
<li><input type="file" class="file" name="@fname" accept="media_type" onchange="filechange(this)" @*capture="gallery"*@ /><a href="#" class="filedel" onclick="filedel(0, this,@(string.IsNullOrEmpty(datakey) ? null : "\'"+datakey+"\'" ))">삭제</a></li>
|
||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
250
FO/css/style.css
250
FO/css/style.css
|
|
@ -682,66 +682,27 @@ a.msBtn {
|
||||||
|
|
||||||
|
|
||||||
/* pageCommon */
|
/* pageCommon */
|
||||||
#subTitle.subBg01 {
|
#subTitle {height: 200px; padding-bottom: 60px; background: url('../../img/common/subTitle_bg.jpg')no-repeat center center; background-size: cover;}
|
||||||
background: rgb(75,210,239);
|
#subTitle > div {display: table; width: 100%; height: 100%;}
|
||||||
background: -moz-linear-gradient(left, rgba(75,210,239,1) 0%, rgba(135,161,243,1) 100%);
|
#subTitle > div > div {display: table-cell; width: 100%; vertical-align: middle;}
|
||||||
background: -webkit-linear-gradient(left, rgba(75,210,239,1) 0%,rgba(135,161,243,1) 100%);
|
#subTitle h2 {line-height:1.2em; font-weight:400; color:#fff; font-size:26pt; text-align: center; line-height: 1.0em;}
|
||||||
background: linear-gradient(to right, rgba(75,210,239,1) 0%,rgba(135,161,243,1) 100%);
|
#subTitle h2 span {display: block; font-size: 14pt; font-weight: 300;}
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4bd2ef', endColorstr='#87a1f3',GradientType=1 );
|
#subTitle h2 b {font-weight: 700;}
|
||||||
}
|
|
||||||
#subTitle.subBg02 {
|
|
||||||
background: rgb(75,109,238);
|
|
||||||
background: -moz-linear-gradient(left, rgba(75,109,238,1) 0%, rgba(146,121,244,1) 100%);
|
|
||||||
background: -webkit-linear-gradient(left, rgba(75,109,238,1) 0%,rgba(146,121,244,1) 100%);
|
|
||||||
background: linear-gradient(to right, rgba(75,109,238,1) 0%,rgba(146,121,244,1) 100%);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b6dee', endColorstr='#9279f4',GradientType=1 );
|
|
||||||
}
|
|
||||||
#subTitle.subBg03 {
|
|
||||||
background: rgb(82,165,141);
|
|
||||||
background: -moz-linear-gradient(left, rgba(82,165,141,1) 0%, rgba(114,173,175,1) 100%);
|
|
||||||
background: -webkit-linear-gradient(left, rgba(82,165,141,1) 0%,rgba(114,173,175,1) 100%);
|
|
||||||
background: linear-gradient(to right, rgba(82,165,141,1) 0%,rgba(114,173,175,1) 100%);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#52a58d', endColorstr='#72adaf',GradientType=1 );
|
|
||||||
}
|
|
||||||
#subTitle.subBg04 {
|
|
||||||
background: rgb(79,89,165);
|
|
||||||
background: -moz-linear-gradient(left, rgba(79,89,165,1) 16%, rgba(136,117,175,1) 100%);
|
|
||||||
background: -webkit-linear-gradient(left, rgba(79,89,165,1) 16%,rgba(136,117,175,1) 100%);
|
|
||||||
background: linear-gradient(to right, rgba(79,89,165,1) 16%,rgba(136,117,175,1) 100%);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f59a5', endColorstr='#8875af',GradientType=1 );
|
|
||||||
}
|
|
||||||
#subTitle.subBg05 {
|
|
||||||
background: rgb(82,124,166);
|
|
||||||
background: -moz-linear-gradient(left, rgba(82,124,166,1) 0%, rgba(114,123,175,1) 100%);
|
|
||||||
background: -webkit-linear-gradient(left, rgba(82,124,166,1) 0%,rgba(114,123,175,1) 100%);
|
|
||||||
background: linear-gradient(to right, rgba(82,124,166,1) 0%,rgba(114,123,175,1) 100%);
|
|
||||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#527ca6', endColorstr='#727baf',GradientType=1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#subTitle.subBg01 .container:before {content:""; display:block; width:200px; position:absolute; right:0; top:0; bottom:0; background:url("/img/common/subTitle_ico01.png")no-repeat right center; background-size:auto 100% !important;}
|
#breadcrumb {background: rgba(0,0,0,0.7); margin-top: -60px;}
|
||||||
#subTitle.subBg02 .container:before {content:""; display:block; width:200px; position:absolute; right:0; top:0; bottom:0; background:url("/img/common/subTitle_ico02.png")no-repeat right center; background-size:auto 100% !important;}
|
|
||||||
#subTitle.subBg03 .container:before {content:""; display:block; width:200px; position:absolute; right:0; top:0; bottom:0; background:url("/img/common/subTitle_ico03.png")no-repeat right center; background-size:auto 90% !important;}
|
|
||||||
#subTitle.subBg04 .container:before {content:""; display:block; width:200px; position:absolute; right:0; top:0; bottom:0; background:url("/img/common/subTitle_ico04.png")no-repeat right center; background-size:auto 90% !important;}
|
|
||||||
#subTitle.subBg05 .container:before {content:""; display:block; width:200px; position:absolute; right:0; top:0; bottom:0; background:url("/img/common/subTitle_ico05.png")no-repeat right center; background-size:auto 90% !important;}
|
|
||||||
#subTitle h2 {line-height:1.2em; font-weight:100; color:#fff; font-size:30pt; padding:28px 0;}
|
|
||||||
#subTitle h2 span {font-weight:500; font-size:30pt; color:#fff;}
|
|
||||||
|
|
||||||
|
|
||||||
#breadcrumb {border-bottom:solid 1px #e6e6e6;}
|
|
||||||
#breadcrumb dl {}
|
#breadcrumb dl {}
|
||||||
#breadcrumb dl:after {content:""; display:table; clear:both;}
|
#breadcrumb dl:after {content:""; display:table; clear:both;}
|
||||||
#breadcrumb dl > dd {float:left; position:relative; border-left:solid 1px #e6e6e6; border-right:solid 1px #e6e6e6; margin-left:-1px;}
|
#breadcrumb dl > dd {float:left; position:relative; border-right:solid 1px rgba(255,255,255,0.2); margin-left:-1px;}
|
||||||
#breadcrumb dl > dd:first-child {border-right:solid 1px #e6e6e6; margin-left:0;}
|
#breadcrumb dl > dd:first-child {border-right: none;}
|
||||||
#breadcrumb dl > dd > a,
|
#breadcrumb dl > dd > a,
|
||||||
#breadcrumb dl > dd > span {display:block; height:60px; line-height:60px; position:relative;}
|
#breadcrumb dl > dd > span {display:block; height:60px; line-height:60px; position:relative; color: #fff;}
|
||||||
#breadcrumb dl > dd > span:after {content:""; display:block; width:14px; height:8px; position:absolute; right:20px; top:50%; margin-top:-4px; background:url("/img/common/breadcrumb_arrow.png")no-repeat center bottom; background-size:100% auto !important;}
|
#breadcrumb dl > dd > span:after {content:""; display:block; width:16px; height:10px; position:absolute; right:20px; top:50%; margin-top:-5px; background:url("../../img/common/breadcrumb_arrow.png")no-repeat center bottom; background-size:100% auto !important;}
|
||||||
#breadcrumb dl > dd > span.on:after {background-position:center top !important;}
|
#breadcrumb dl > dd > span.on:after {background-position:center top !important;}
|
||||||
#breadcrumb dl > dd > a {width:60px; text-indent:-9999px; background:#383838 url("/img/common/breadcrumb_home.png")no-repeat center center; background-size:16px auto;}
|
#breadcrumb dl > dd > a {width:60px; text-indent:-9999px; background: #0047a7 url("../../img/common/breadcrumb_home.png")no-repeat center center; background-size:14px auto;}
|
||||||
#breadcrumb dl > dd > span {width:260px; padding-left:20px; cursor:pointer;}
|
#breadcrumb dl > dd > span {width:260px; padding-left:20px; cursor:pointer;}
|
||||||
#breadcrumb dl > dd:last-child > span {width:350px;}
|
#breadcrumb dl > dd:last-child > span {width:350px;}
|
||||||
#breadcrumb dl > dd:last-child > span:before {content:""; display:block; position:absolute; left:0; right:0; bottom:0; height:2px; background:#000;}
|
#breadcrumb dl > dd > ul {position:absolute; left:0; right:-1px; top:100%; background:#fff; padding:10px 0; border:solid 1px #e5e7ea; display:none; z-index:10;}
|
||||||
#breadcrumb dl > dd > ul {position:absolute; left:-1px; right:-1px; top:100%; background:#fff; padding:10px 0; border:solid 1px #e6e6e6; display:none; z-index:10;}
|
|
||||||
#breadcrumb dl > dd > ul > li {padding:5px 20px;}
|
#breadcrumb dl > dd > ul > li {padding:5px 20px;}
|
||||||
#breadcrumb dl > dd > ul > li > a {display:block;}
|
#breadcrumb dl > dd > ul > li > a {display:block;}
|
||||||
#breadcrumb dl > dd > ul > li.current > a {color:#238dfa; font-weight:500;}
|
#breadcrumb dl > dd > ul > li.current > a {color:#238dfa; font-weight:500;}
|
||||||
|
|
@ -751,12 +712,22 @@ a.msBtn {
|
||||||
#pageTitle > h3 {text-align:center; font-size:30pt; color:#333; letter-spacing:-0.025em; font-weight:700; line-height:1.0em; letter-spacing:-0.075em; position:relative;}
|
#pageTitle > h3 {text-align:center; font-size:30pt; color:#333; letter-spacing:-0.025em; font-weight:700; line-height:1.0em; letter-spacing:-0.075em; position:relative;}
|
||||||
#pageTitle > p {text-align:center; font-size:12pt; color:#6b6b6b; letter-spacing:0em; font-weight:300; margin-top:40px; line-height:1.8em;}
|
#pageTitle > p {text-align:center; font-size:12pt; color:#6b6b6b; letter-spacing:0em; font-weight:300; margin-top:40px; line-height:1.8em;}
|
||||||
|
|
||||||
|
.subTab {}
|
||||||
|
.subTab:after {content: ''; display: table; clear: both;}
|
||||||
|
.subTab li {float: left; color: #949494; font-size: 14pt; border: solid 1px #d3d3d3; border-left: solid 1px #fff; background: #f9f9f9;}
|
||||||
|
.subTab li:first-child {border-left: solid 1px #d3d3d3;}
|
||||||
|
.subTab.col2 li {width: 50%;}
|
||||||
|
.subTab.col3 li {width: 33.3333%;}
|
||||||
|
.subTab.col4 li {width: 25%;}
|
||||||
|
.subTab.col5 li {width: 20%;}
|
||||||
|
.subTab li a {display: block; height: 58px; line-height: 58px; text-align: center;}
|
||||||
|
.subTab li.current {border-color: #1e52bd !important; color: #1e52bd; border-bottom: solid 1px #fff !important; background: #fff;}
|
||||||
|
|
||||||
@media (max-width:800px) {
|
@media (max-width:800px) {
|
||||||
#subTitle.subBg01 .container:before {right:15px; top:5px; bottom:5px; width:200px;}
|
#subTitle {height: 160px; background-size: cover !important; padding-bottom: 40px;}
|
||||||
#subTitle.subBg02 .container:before {right:15px; top:5px; bottom:5px; width:200px;}
|
#subTitle h2 {font-size:18pt; line-height: 1.0em;}
|
||||||
#subTitle h2 {font-size:15pt; padding:15px 0;}
|
#subTitle h2 span { font-size:10pt;}
|
||||||
#subTitle h2 span { font-size:15pt;}
|
#breadcrumb {margin-top: -40px;}
|
||||||
#breadcrumb .container {padding-left:0; padding-right:0;}
|
#breadcrumb .container {padding-left:0; padding-right:0;}
|
||||||
#breadcrumb dl {position:relative; padding-left:40px;}
|
#breadcrumb dl {position:relative; padding-left:40px;}
|
||||||
#breadcrumb dl > dd {float:left; width:50%; margin-left:0; border-right:none;}
|
#breadcrumb dl > dd {float:left; width:50%; margin-left:0; border-right:none;}
|
||||||
|
|
@ -765,16 +736,18 @@ a.msBtn {
|
||||||
#breadcrumb dl > dd > span {height:40px; line-height:40px;}
|
#breadcrumb dl > dd > span {height:40px; line-height:40px;}
|
||||||
#breadcrumb dl > dd > a {width:40px; background-size:15px auto !important;}
|
#breadcrumb dl > dd > a {width:40px; background-size:15px auto !important;}
|
||||||
#breadcrumb dl > dd > span {width:100% !important; padding-left:10px; font-size:10pt; padding-right:25px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
|
#breadcrumb dl > dd > span {width:100% !important; padding-left:10px; font-size:10pt; padding-right:25px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
|
||||||
#breadcrumb dl > dd > span:after {right:10px;}
|
#breadcrumb dl > dd > span:after {right:10px; width: 8px; height: 5px; background-size: cover !important; margin-top: -3px;}
|
||||||
#breadcrumb dl > dd > ul > li {padding:5px 10px;}
|
#breadcrumb dl > dd > ul > li {padding:5px 10px;}
|
||||||
#breadcrumb dl > dd > ul > li > a {font-size:10pt;}
|
#breadcrumb dl > dd > ul > li > a {font-size:10pt;}
|
||||||
#subPage {padding-bottom:70px;}
|
#subPage {padding-bottom:70px;}
|
||||||
#pageTitle {margin:40px 0;}
|
#pageTitle {margin:40px 0;}
|
||||||
#pageTitle.lgn {padding-top:0; background:none;}
|
#pageTitle.lgn {padding-top:0; background:none;}
|
||||||
#pageTitle > h3 {font-size:18pt; padding-top:20px;}
|
#pageTitle > h3 {font-size:18pt;}
|
||||||
#pageTitle > h3:before {width:24px; height:2px; margin-left:-12px;}
|
#pageTitle > h3:before {width:24px; height:2px; margin-left:-12px;}
|
||||||
}
|
|
||||||
|
|
||||||
|
.subTab li {font-size: 10pt;}
|
||||||
|
.subTab li a {height: 42px; line-height: 42px;}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -2441,6 +2414,8 @@ html.lock, body.lock {display:block; width:100%; height:100%; overflow:hidden;}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* ±³¼ö¼Ò°³ */
|
/* ±³¼ö¼Ò°³ */
|
||||||
.tchCont {margin-top: 30px;}
|
.tchCont {margin-top: 30px;}
|
||||||
.tchCont h4 {height: 60px; line-height: 58px; text-align: center; border: solid 1px #d6d6d6; font-size: 16pt; font-weight: 500;}
|
.tchCont h4 {height: 60px; line-height: 58px; text-align: center; border: solid 1px #d6d6d6; font-size: 16pt; font-weight: 500;}
|
||||||
|
|
@ -2466,6 +2441,7 @@ html.lock, body.lock {display:block; width:100%; height:100%; overflow:hidden;}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* ½º¸¶Æ®°Ë»ö */
|
/* ½º¸¶Æ®°Ë»ö */
|
||||||
.pt0 {
|
.pt0 {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
|
|
@ -3051,6 +3027,162 @@ span.org {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ÁøÇàÀýÂ÷ */
|
||||||
|
.plcStep {}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.plcStep {margin: 0 -6px;}
|
||||||
|
.plcStep:after {content: ''; display: table; clear: both;}
|
||||||
|
.plcStep li {float: left; width: 16.6666%; padding: 0 6px;}
|
||||||
|
.plcStep li > div {
|
||||||
|
height: 80px; padding: 2px;
|
||||||
|
border-radius: 40px; -moz-border-radius: 40px; -webkit-border-radius: 40px;
|
||||||
|
background: #0047a7;
|
||||||
|
background: -moz-linear-gradient(45deg, #0047a7 21%, #e8b800 54%);
|
||||||
|
background: -webkit-linear-gradient(45deg, #0047a7 21%,#e8b800 54%);
|
||||||
|
background: linear-gradient(45deg, #0047a7 21%,#e8b800 54%);
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0047a7', endColorstr='#e8b800',GradientType=1 );
|
||||||
|
}
|
||||||
|
.plcStep li > div > div {height: 76px; background: #fff; color: #0047a7; text-align: center; padding: 15px 0; border-radius: 40px; -moz-border-radius: 40px; -webkit-border-radius: 40px;}
|
||||||
|
.plcStep li h6 {font-size: 13pt; font-weight: 500;}
|
||||||
|
.plcStep li span {display: block; font-size: 11pt;}
|
||||||
|
.plcStep li.current > div {background: #0047a7;}
|
||||||
|
.plcStep li.current > div > div {background: #0047a7; color: #fff;}
|
||||||
|
.plcInfo {margin-top: 50px; border-top: solid 1px #d6d6d6;}
|
||||||
|
.plcInfo dl {display: table; width: 100%; padding: 20px 0; border-bottom: solid 1px #d6d6d6;}
|
||||||
|
.plcInfo dl dt {display: table-cell; width: 200px;}
|
||||||
|
.plcInfo dl dd {display: table-cell;}
|
||||||
|
.plcUrl {margin-top: 30px;}
|
||||||
|
.plcUrl dl {display: table; width: 100%; margin-bottom: 10px;}
|
||||||
|
.plcUrl dl:last-child {margin-bottom: 0;}
|
||||||
|
.plcUrl dl dt {display: table-cell; width: 190px; vertical-align: middle; height: 40px; line-height: 40px; text-align: center; color: #fff; background: #0070d5; border-radius: 40px; -moz-border-radius: 40px; -webkit-border-radius: 40px;}
|
||||||
|
.plcUrl dl dd {display: table-cell; vertical-align: middle; padding-left: 20px; text-transform: uppercase; font-size: 12pt;}
|
||||||
|
.plcWrap {margin: -20px;}
|
||||||
|
.plcWrap:after {content: ''; display: table; clear: both;}
|
||||||
|
.plcWrap > li {padding: 20px; width: 50%; float: left;}
|
||||||
|
.plcCont {padding-left: 210px; position: relative; padding-top: 10px;}
|
||||||
|
.plcTitle {position: absolute; left: 0; top: 0; width: 190px; height: 70px; border: solid 1px #d1d1d1; border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px;}
|
||||||
|
.plcTitle > div {display: table; width: 100%; height: 100%;}
|
||||||
|
.plcTitle > div > div {display: table-cell; width: 100%; vertical-align: middle; text-align: center; color: #0047a7; font-size: 12pt; font-weight: 500;}
|
||||||
|
.gryBox {background: #f9f9f9; padding: 30px; margin-top: 30px;}
|
||||||
|
.gryBox dl {margin-top: 30px;}
|
||||||
|
.gryBox dl:first-child {margin-top: 0;}
|
||||||
|
.gryBox dt {font-size: 12pt; color: #000; font-weight: 400;}
|
||||||
|
.gryBox dd {margin-top: 10px;}
|
||||||
|
|
||||||
|
.cclCont {margin: 0 -30px;}
|
||||||
|
.cclCont:after {content: ''; display: table; clear: both;}
|
||||||
|
.cclCont li {float: left; width: 50%; padding: 0 30px;}
|
||||||
|
.cclCont li div {background: #fafafa; overflow: hidden; padding: 0px 100px 30px; border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px;}
|
||||||
|
.cclCont li h5 {height: 100px; padding-top: 50px; line-height: 50px; background: #3a3a3b; color: #fff; margin-top: -50px; text-align: center; font-size: 12pt; font-weight: 500; border-radius: 40px; -moz-border-radius: 40px; -webkit-border-radius: 40px;}
|
||||||
|
.cclCont li p {margin: 0 -70px; padding-top: 30px;}
|
||||||
|
|
||||||
|
.inGds {}
|
||||||
|
.inGds li {display: table; width: 100%; margin-bottom: 10px;}
|
||||||
|
.inGds li:last-child {margin-bottom: 0;}
|
||||||
|
.inGds li em {display: table-cell; vertical-align: middle; width: 90px;}
|
||||||
|
.inGds li em span {display: block; height: 90px; border: solid 1px #0047a7; background-size: 56px auto !important;}
|
||||||
|
.inGds li div {display: table-cell; vertical-align: middle; padding-left: 20px;}
|
||||||
|
.inGds li div h5 {font-size: 13pt; color: #0047a7; font-weight: 500;}
|
||||||
|
.inGds li div p {color: #666; margin-top: 5px;}
|
||||||
|
|
||||||
|
.inTgt {margin: 0 -30px;}
|
||||||
|
.inTgt:after {content: ''; display: table; clear: both;}
|
||||||
|
.inTgt li {float: left; width: 50%; padding: 0 30px;}
|
||||||
|
.inTgt li > div {border: solid 2px #e0e0e0; overflow: hidden; border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px;}
|
||||||
|
.inTgt li h5 {color: #000; text-align: center; background: #f9f9f9; padding: 15px; font-size: 15pt; font-weight: 500;}
|
||||||
|
.inTgt li h5 span {display: block; color: #666; font-size: 11pt; font-weight: 400; margin-top: 5px;}
|
||||||
|
.inTgtCnt {color: #666; display: table; width: 100%; height: 150px; text-align: center;}
|
||||||
|
.inTgtCnt > div {display: table-cell; vertical-align: middle; line-height: 1.8em;}
|
||||||
|
.inTgtCnt span.blu {color: #0047a7;}
|
||||||
|
|
||||||
|
.inScd {margin-top: 20px;}
|
||||||
|
.inScd dl {display: table; margin-bottom: 10px;}
|
||||||
|
.inScd dl:last-child {margin-bottom: 0;}
|
||||||
|
.inScd dl dt {display: table-cell; vertical-align: middle; width: 80px; height: 40px; line-height: 40px; text-align: center; background: #555; color: #fff; font-size: 12pt; font-weight: 500; border-radius: 40px; -moz-border-radius: 40px; -webkit-border-radius: 40px;}
|
||||||
|
.inScd dl dd {display: table-cell; vertical-align: middle; padding-left: 15px;}
|
||||||
|
|
||||||
|
.inRul {margin: -15px -10px;}
|
||||||
|
.inRul:after {content: ''; display: table; clear: both;}
|
||||||
|
.inRul li {float: left; width: 50%; padding: 15px 10px;}
|
||||||
|
.inRul li > div {border: solid 1px #0047a7; overflow: hidden; border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px;}
|
||||||
|
.inRul li h5 {color: #fff; background: #0047a7; padding: 15px; font-size: 13pt; font-weight: 500;}
|
||||||
|
.inRul li h5 span {font-size: 18pt; font-weight: 700; margin-right: 10px;}
|
||||||
|
.inRulCnt {color: #666; display: table; width: 100%; height: 100px;}
|
||||||
|
.inRulCnt > div {display: table-cell; vertical-align: middle; line-height: 1.8em; padding-left: 15px; padding-right: 15px;}
|
||||||
|
|
||||||
|
.tal {text-align: left !important;}
|
||||||
|
.db {display: block;}
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width:900px) {
|
||||||
|
.plcStep {margin: -3px;}
|
||||||
|
.plcStep li {padding: 3px; width: 33.3333%;}
|
||||||
|
.plcStep li > div {height: auto; padding: 2px;}
|
||||||
|
.plcStep li > div > div {padding: 5px 0; height: auto;}
|
||||||
|
.plcStep li h6 {font-size: 10pt;}
|
||||||
|
.plcStep li span {height: auto; line-height: 1.5em; font-size: 9pt; white-space: nowrap;}
|
||||||
|
.plcInfo {margin-top: 30px;}
|
||||||
|
.plcInfo dl {display: block; padding: 15px 0;}
|
||||||
|
.plcInfo dl dt {display: block; width: 100%; font-size: 12pt;}
|
||||||
|
.plcInfo dl dd {display: block; margin-top: 10px; font-size: 11pt;}
|
||||||
|
.plcUrl dl {display: block; margin-bottom: 20px;}
|
||||||
|
.plcUrl dl dt {display: block; width: auto;}
|
||||||
|
.plcUrl dl dd {display: block; padding-left: 0;font-size: 11pt; text-align: center; margin-top: 5px;}
|
||||||
|
.plcWrap {margin: 0;}
|
||||||
|
.plcWrap > li {padding: 0; width: 100%; float: none;}
|
||||||
|
.plcCont {padding-left: 0; padding-top: 0; margin-top: 10px;}
|
||||||
|
.plcTitle {position: static; width: 100%; height: auto; padding: 5px; margin-bottom: 10px;}
|
||||||
|
.plcTitle > div > div {font-size: 11pt;}
|
||||||
|
.gryBox {padding: 15px;}
|
||||||
|
.gryBox dl {margin-top: 15px;}
|
||||||
|
.gryBox dt {font-size: 11pt;}
|
||||||
|
|
||||||
|
.cclCont {margin: 0;}
|
||||||
|
.cclCont li {float: none; width: 100%; padding: 0; margin-bottom: 15px;}
|
||||||
|
.cclCont li:last-child {margin-bottom: 0;}
|
||||||
|
.cclCont li div {padding: 0px 15px 15px;}
|
||||||
|
.cclCont li h5 {height: 100px; padding-top: 60px; line-height: 40px; margin-top: -60px; font-size: 11pt;}
|
||||||
|
.cclCont li p {margin: 0; padding-top: 15px;}
|
||||||
|
|
||||||
|
.inGds {margin-top: 10px;}
|
||||||
|
.inGds li em {width: 50px; vertical-align: top;}
|
||||||
|
.inGds li em span {height: 50px; background-size: 28px auto !important;}
|
||||||
|
.inGds li div {padding-left: 15px; vertical-align: top;}
|
||||||
|
.inGds li div h5 {font-size: 11pt;}
|
||||||
|
|
||||||
|
.inTgt {margin: 0; padding-top: 10px;}
|
||||||
|
.inTgt li {float: none; width: 100%; padding: 0; margin-bottom: 15px;}
|
||||||
|
.inTgt li:last-child {margin-bottom: 0;}
|
||||||
|
.inTgt li h5 {padding: 10px; font-size: 12pt;}
|
||||||
|
.inTgt li h5 span {font-size: 10pt; margin-top: 0;}
|
||||||
|
.inTgtCnt {display: block; height: auto;}
|
||||||
|
.inTgtCnt > div {display: block; padding: 15px; font-size: 11pt; line-height: 1.8em;}
|
||||||
|
|
||||||
|
.inScd {margin-top: 20px;}
|
||||||
|
.inScd dl {display: table; margin-bottom: 10px;}
|
||||||
|
.inScd dl:last-child {margin-bottom: 0;}
|
||||||
|
.inScd dl dt {display: table-cell; vertical-align: middle; width: 80px; height: 40px; line-height: 40px; text-align: center; background: #555; color: #fff; font-size: 12pt; font-weight: 500; border-radius: 40px; -moz-border-radius: 40px; -webkit-border-radius: 40px;}
|
||||||
|
.inScd dl dd {display: table-cell; vertical-align: middle; padding-left: 15px;}
|
||||||
|
|
||||||
|
.inRul {margin: 0; padding-top: 10px;}
|
||||||
|
.inRul li {float: none; width: 100%; padding: 0; margin-bottom: 15px;}
|
||||||
|
.inRul li:last-child {margin-bottom: 0;}
|
||||||
|
.inRul li h5 {padding: 10px; font-size: 11pt;}
|
||||||
|
.inRul li h5 span {font-size: 14pt;}
|
||||||
|
.inRulCnt {display: block; height: auto;}
|
||||||
|
.inRulCnt > div {display: block; padding: 10px;}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width:1200px) {
|
||||||
|
.root_daum_roughmap {width: 100% !important;}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var _filedela;
|
var _filedela;
|
||||||
function filedel(no, a) {
|
function filedel(no, a,datakey) {
|
||||||
_filedela = a;
|
_filedela = a;
|
||||||
var ul = $(a).closest("ul");
|
var ul = $(a).closest("ul");
|
||||||
if (no < 1) {
|
if (no < 1) {
|
||||||
|
|
@ -48,7 +48,7 @@ function filedel(no, a) {
|
||||||
$(ul).find("li.delme").remove();
|
$(ul).find("li.delme").remove();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
capp("/fcommon/filedel", { fileno: no }, "cbfiledel");
|
capp("/fcommon/filedel", { fileno: no ,datakey:datakey}, "cbfiledel");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function cbfiledel() {
|
function cbfiledel() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue