default.scss 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571
  1. @charset "UTF-8";
  2. .max--w320{
  3. max-width:320px;
  4. }
  5. .container{
  6. height:100%;
  7. .content{
  8. height:100%;
  9. display: flex;
  10. aside{
  11. width:250px;
  12. border-right:1px solid #ccc;
  13. .aside--main--title{
  14. padding:20px;
  15. background: #33559B;
  16. color:#fff;
  17. font-size:20px;
  18. }
  19. .aside--list{
  20. display: flex;
  21. flex-direction: column;
  22. .v-btn{
  23. padding:15px 10px;
  24. font-size:16px;
  25. cursor: pointer;
  26. justify-content: flex-start;
  27. padding-left:20px;
  28. &.actv{
  29. background:#e4e4e4;
  30. }
  31. }
  32. }
  33. }
  34. .main{
  35. padding:1.625rem;
  36. width:calc(100%);
  37. .data--list--wrap{
  38. width:100%;
  39. padding-top:40px;
  40. .btn--actions--wrap{
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. padding-bottom:25px;
  45. }
  46. .left--sections{
  47. display: flex;
  48. gap: 1rem;
  49. }
  50. .right--sections{
  51. display: flex;
  52. gap: 1rem;
  53. .caption--wrap{
  54. display: flex;
  55. align-items: center;
  56. position: relative;
  57. .ico{
  58. font-size: 1rem;
  59. width: 2rem;
  60. height: 2rem;
  61. text-align: center;
  62. cursor: pointer;
  63. line-height: 2rem;
  64. border-radius: 50%;
  65. background-color: #F74F78;
  66. color: #fff;
  67. display: inline-block;
  68. position: relative;
  69. font-style: normal;
  70. }
  71. .caption--box{
  72. position: absolute;
  73. font-size: 0.875rem;
  74. bottom: 100%;
  75. border: 2px solid #DFE7EF;
  76. background-color: #fff;
  77. border-radius: 10px;
  78. right:0;
  79. line-height: 1.4;
  80. padding: 15px 20px;
  81. white-space: nowrap;
  82. color: #9DA9B6;
  83. z-index: 10;
  84. display: none;
  85. }
  86. &:hover{
  87. .caption--box{
  88. display: block;
  89. }
  90. }
  91. }
  92. }
  93. .item--section{
  94. border: 1px solid #ccc;
  95. padding: 2rem;
  96. display: flex;
  97. gap: 1rem;
  98. border-radius: 1rem;
  99. margin-bottom: 25px;
  100. .item--thumb{
  101. background-color: #d9d9d9;
  102. justify-content: center;
  103. align-items: center;
  104. width: 20%;
  105. height: auto;
  106. overflow: hidden;
  107. display: flex;
  108. &.min--240{
  109. min-height: 240px;
  110. }
  111. img{
  112. width: 100%;
  113. height: 100%;
  114. object-fit: cover;
  115. }
  116. }
  117. .item--info{
  118. display: flex;
  119. flex-direction: column;
  120. h2{
  121. font-size: 1.5rem;
  122. margin-bottom: 1rem;
  123. }
  124. p{
  125. font-size: 1rem;
  126. line-height: 1.4;
  127. }
  128. }
  129. }
  130. }
  131. .search--modules{
  132. width:100%;
  133. display: flex;
  134. align-items: center;
  135. justify-content: center;
  136. gap:10px;
  137. border: 1px solid #eee;
  138. border-radius: 15px;
  139. padding:20px;
  140. margin-top:25px;
  141. background: #f0f4ff;
  142. &.type2{
  143. flex-direction: column;
  144. align-items: flex-start;
  145. position: relative;
  146. .search--inner{
  147. width: calc(100% - 120px);
  148. gap: 10px;
  149. display: flex;
  150. }
  151. .sch--btn{
  152. position: absolute;
  153. right: 20px;
  154. top: 20px;
  155. height: calc(100% - 40px);
  156. }
  157. }
  158. .month--selector{
  159. display: flex;
  160. align-items: center;
  161. overflow: hidden;
  162. border-radius: 10px;
  163. margin-left: 10px;
  164. background: #fff;
  165. border:1px solid #E2E2E2;
  166. .v-btn{
  167. color: #666;
  168. font-size: 0.8rem;
  169. height: 2.25rem;
  170. font-style: normal;
  171. font-weight: 500;
  172. line-height: 100%; /* 12px */
  173. letter-spacing: -0.48px;
  174. padding:0 1.2rem;
  175. border-radius: 0px;
  176. position: relative;
  177. &.actv{
  178. color:#fff;
  179. background-color:#007aff;
  180. &:after{
  181. display: none;
  182. }
  183. }
  184. }
  185. }
  186. .form--cont--filter{
  187. width:100%;
  188. max-width:10.5rem;
  189. }
  190. .form--cont--text{
  191. width:100%;
  192. max-width:calc(100% - 10.5rem);
  193. }
  194. .sch--btn{
  195. // height:36px;
  196. height: 2.25rem;
  197. max-width:80px;
  198. }
  199. }
  200. .inner--headers{
  201. display: flex;
  202. align-items: center;
  203. justify-content: space-between;
  204. margin-bottom:20px;
  205. > h2{
  206. font-size:1.625rem;
  207. }
  208. .bread--crumbs--wrap{
  209. display: flex;
  210. align-items: center;
  211. gap:5px;
  212. span{
  213. font-size:.9rem;
  214. font-weight: 500;
  215. display: flex;
  216. align-items: center;
  217. gap:5px;
  218. &:before{
  219. content:"";
  220. display: inline-flex;
  221. width:15px;
  222. height:15px;
  223. background: url(../img/ic_arrow_right_chv.svg) no-repeat center;
  224. }
  225. &:nth-of-type(1){
  226. &:before{
  227. display: none;
  228. }
  229. }
  230. &:last-child{
  231. font-weight: bold;
  232. }
  233. }
  234. }
  235. }
  236. .item--list--wrap{
  237. .no--data{
  238. padding-top: 80px;
  239. text-align: center;
  240. }
  241. .item--list{
  242. display: flex;
  243. gap: 20px;
  244. .item{
  245. position: relative;
  246. cursor: pointer;
  247. width: calc((100% - 80px) / 5);
  248. border-radius: 20px;
  249. border: 1px solid #cccccc;
  250. padding: 1rem 1rem 1rem 1rem;
  251. .item--img {
  252. width: 100%;
  253. height: 10rem;
  254. background-color: #eee;
  255. border-radius: 20px;
  256. margin-bottom: 1.2rem;
  257. overflow: hidden;
  258. position: relative;
  259. img {
  260. width: 100%;
  261. height: 100%;
  262. object-fit: cover;
  263. object-position: center;
  264. position: absolute;
  265. top: 0;
  266. left: 0;
  267. }
  268. }
  269. h3{
  270. color: #444444;
  271. font-size: 1rem;
  272. overflow: hidden;
  273. line-height: 1.2;
  274. text-overflow: ellipsis;
  275. display: -webkit-box;
  276. -webkit-line-clamp: 2;
  277. -webkit-box-orient: vertical;
  278. margin-bottom: 1rem;
  279. }
  280. p{
  281. color: #888;
  282. line-height: 1.2;
  283. font-size: 0.8rem;
  284. margin-bottom: 0.8rem;
  285. }
  286. span{
  287. color: #999;
  288. line-height: 1.2;
  289. display: block;
  290. font-size: 0.8rem;
  291. }
  292. .sold--out{
  293. position: absolute;
  294. top: 0;
  295. left: 0;
  296. width: 100%;
  297. height: 100%;
  298. background-color: rgba(0,0,0,0.2);
  299. border-radius: 18px;
  300. display: flex;
  301. align-items: center;
  302. justify-content: center;
  303. &.blue--type{
  304. >span{
  305. background-color: #007aff;
  306. }
  307. }
  308. >span{
  309. color: #ffffff;
  310. text-align: center;
  311. font-size: 1.2rem;
  312. font-weight: 500;
  313. display: inline-block;
  314. padding: 0.8rem 3rem;
  315. background-color: red;
  316. border-radius: 50px;
  317. }
  318. }
  319. }
  320. }
  321. .cs--list--wrap{
  322. border: 1px solid #eee;
  323. border-radius: 15px;
  324. overflow: hidden;
  325. box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  326. .cs--header{
  327. background-color: #f0f4ff;
  328. padding: 20px 25px;
  329. height: 4rem;
  330. display: flex;
  331. align-items: center;
  332. justify-content: space-between;
  333. border-bottom: 1px solid #eee;
  334. h3{
  335. font-size: 1.2rem;
  336. font-weight: 600;
  337. color: #555;
  338. }
  339. .custom-btn{
  340. height: 2.5rem;
  341. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  342. border-radius: 10px;
  343. width: 10%;
  344. color:#fff;
  345. font-weight: 500;
  346. transition: all 0.3s ease;
  347. box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  348. &:hover {
  349. transform: translateY(-1px);
  350. box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  351. }
  352. }
  353. }
  354. .cs--list{
  355. .list{
  356. padding: 20px 25px;
  357. cursor: pointer;
  358. border-bottom: 1px solid #f0f0f0;
  359. transition: all 0.3s ease;
  360. display: flex;
  361. gap: 15px;
  362. align-items: center;
  363. &:hover {
  364. background-color: #f8f9ff;
  365. border-left: 4px solid #667eea;
  366. padding-left: 21px;
  367. }
  368. &:last-child {
  369. border-bottom: none;
  370. }
  371. > span, > div, > h3 {
  372. font-size: 0.9rem;
  373. &.list--seq { // SEQ
  374. font-weight: 600;
  375. color: #667eea;
  376. text-align: center;
  377. background: #f0f4ff;
  378. padding: 5px 10px;
  379. border-radius: 12px;
  380. font-size: 0.8rem;
  381. }
  382. &.list--circle {
  383. background: linear-gradient(135deg, #667eea, #764ba2);
  384. color: white;
  385. padding: 6px 12px;
  386. border-radius: 15px;
  387. font-size: 0.8rem;
  388. font-weight: 500;
  389. text-align: center;
  390. white-space: nowrap;
  391. // 마감
  392. &.status--off {
  393. background: linear-gradient(135deg, #727c89 0%, #8ca6ce 100%);
  394. color: white;
  395. box-shadow: 0 2px 6px rgba(145, 168, 200, 0.3);
  396. }
  397. }
  398. &.list--writer { // NICK_NAME + NAME + COM
  399. color: #666;
  400. font-weight: 500;
  401. font-size: 0.9rem;
  402. }
  403. &.list--title { // TITLE
  404. color: #333;
  405. font-weight: 600;
  406. line-height: 1.4;
  407. overflow: hidden;
  408. text-overflow: ellipsis;
  409. width: 70%;
  410. white-space: nowrap;
  411. }
  412. &.list--ml {
  413. margin-left: auto;
  414. }
  415. &.status-waiting {
  416. color: #ffffff;
  417. background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  418. padding: 4px 8px;
  419. border-radius: 10px;
  420. font-size: 0.8rem;
  421. font-weight: 600;
  422. box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
  423. }
  424. &.status-completed {
  425. color: #ffffff;
  426. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  427. padding: 4px 8px;
  428. border-radius: 10px;
  429. font-size: 0.8rem;
  430. font-weight: 600;
  431. box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
  432. }
  433. &.list--date { // REGDATE
  434. color: #999;
  435. font-size: 0.8rem;
  436. text-align: right;
  437. }
  438. }
  439. }
  440. // 데이터가 없을 때
  441. .no-data {
  442. padding: 60px 20px;
  443. text-align: center;
  444. color: #999;
  445. &:before {
  446. content: "📋";
  447. display: block;
  448. font-size: 3rem;
  449. margin-bottom: 15px;
  450. }
  451. h4 {
  452. font-size: 1.1rem;
  453. color: #666;
  454. margin-bottom: 8px;
  455. }
  456. p {
  457. font-size: 0.9rem;
  458. color: #999;
  459. }
  460. }
  461. }
  462. }
  463. .item--pagination{
  464. display: flex;
  465. justify-content: center;
  466. margin-top: 80px;
  467. gap: 30px;
  468. .v-pagination{
  469. width: 50%;
  470. max-width: 800px;
  471. }
  472. .v-btn{
  473. padding: 0;
  474. width: 50px;
  475. height: 50px;
  476. border-radius: 100px;
  477. min-width: 50px;
  478. border: 1px solid #DDD;
  479. background: #FFF;
  480. &.v-btn--disabled{
  481. opacity: 0.5;
  482. }
  483. .v-btn__content{
  484. color: #909090;
  485. font-size: 16px;
  486. font-weight: 400;
  487. line-height: 1;
  488. }
  489. &.prev--btn{
  490. background-image: url(/assets/img/ico_paging_prev.svg);
  491. background-repeat: no-repeat;
  492. background-position: center;
  493. }
  494. &.next--btn{
  495. background-image: url(/assets/img/ico_paging_next.svg);
  496. background-repeat: no-repeat;
  497. background-position: center;
  498. }
  499. }
  500. }
  501. }
  502. }
  503. }
  504. }
  505. /**********************************************
  506. | ag-grid
  507. **********************************************/
  508. .tbl-wrap {
  509. .ag-paging-panel {
  510. padding: 1.25rem 0px;
  511. }
  512. .ag-header-cell-resize {
  513. &:after {
  514. width: 1px;
  515. height: 1.25rem;
  516. top: calc(50% - (1.25rem)*0.5);
  517. }
  518. }
  519. .ag-checkbox-input-wrapper {
  520. &:after {
  521. content: '';
  522. width: 1rem;
  523. height: 1rem;
  524. background: url(../img/ico_chk_off.svg);
  525. background-repeat: no-repeat;
  526. }
  527. &.ag-checked {
  528. &:after {
  529. content: '';
  530. background: url(../img/ico_chk_on.svg);
  531. background-repeat: no-repeat;
  532. }
  533. }
  534. &.ag-indeterminate {
  535. &:after {
  536. content: '';
  537. background: url(../img/ico_check_indeterminate.svg);
  538. background-repeat: no-repeat;
  539. }
  540. }
  541. }
  542. .ag-root-wrapper {
  543. .ag-header-cell {
  544. padding: 0rem 1.25rem;
  545. }
  546. .ag-header-cell-text {
  547. text-align: left;
  548. }
  549. .ag-root-wrapper-body {
  550. &.ag-layout-normal {
  551. height: 100%;
  552. }
  553. }
  554. .ag-cell-label-container {
  555. height: 3.125rem;
  556. }
  557. .ag-header-cell-text {
  558. color: #444;
  559. font-size: 0.875rem;
  560. font-style: normal;
  561. font-weight: 700;
  562. }
  563. .ag-header {
  564. border-top: 0px;
  565. .ag-header-container {
  566. background: #F2F7FF;
  567. }
  568. &.ag-header-allow-overflow {
  569. .ag-header-row {
  570. background: #F2F7FF;
  571. }
  572. }
  573. }
  574. .ag-center-cols-container {
  575. .ag-row {
  576. &.disabled{
  577. opacity: .5;
  578. pointer-events: none;
  579. }
  580. .ag-cell {
  581. color: #444;
  582. font-size: 0.875rem;
  583. font-style: normal;
  584. font-weight: 400;
  585. text-align: left;
  586. justify-content: flex-start;
  587. padding: 0px 1.25rem;
  588. }
  589. }
  590. }
  591. }
  592. .ag-overlay-no-rows-center {
  593. display: flex;
  594. align-items: center;
  595. justify-content: center;
  596. gap: 0.62rem;
  597. color: #444;
  598. text-align: center;
  599. font-size: 0.875rem;
  600. font-weight: 700;
  601. &:before {
  602. content: '';
  603. display: inline-flex;
  604. width: 1.25rem;
  605. height: 1.25rem;
  606. background: url(../img/ico_no_data_nw.svg);
  607. background-size: contain;
  608. }
  609. }
  610. }
  611. .check--box--group{
  612. display: flex;
  613. }
  614. .form--group--inner{
  615. display: flex;
  616. align-items: center;
  617. gap:10px;
  618. .visible{
  619. display: none;
  620. }
  621. }
  622. .status--box{
  623. display: flex;
  624. align-items: center;
  625. justify-content: center;
  626. padding:5px 25px;
  627. border-radius: 35px;
  628. background: #e4e4e4;
  629. &.actv{
  630. background: #33559B;
  631. color:#fff;
  632. }
  633. }
  634. .img--content{
  635. display: flex;
  636. align-items: center;
  637. }
  638. .equip--image--wrap{
  639. display: flex;
  640. align-items: center;
  641. .equip--image{
  642. width:90px;
  643. height: 90px;
  644. margin-right: 25px;
  645. #preview_image{
  646. width: 90px;
  647. height: 90px;
  648. position: relative;
  649. border: 1px solid rgba(0, 0, 0, 0.2);
  650. overflow: hidden;
  651. img{
  652. width: 100%;
  653. position: absolute;
  654. top: 50%;
  655. object-fit: contain;
  656. left: 50%;
  657. transform: translate(-50%, -50%);
  658. }
  659. }
  660. .images-wrapper{
  661. width: 100%;
  662. height: 90px;
  663. .image{
  664. background-size: cover;
  665. width: 100%;
  666. height: 90px;
  667. background-repeat: none;
  668. cursor: pointer;
  669. }
  670. }
  671. .cool-lightbox {
  672. .cool-lightbox-toolbar{
  673. top: 30px;
  674. right: 30px;
  675. .cool-lightbox-toolbar__btn{
  676. border-radius: 50%;
  677. width: 56px;
  678. height: 56px;
  679. display: inline-block;
  680. background-image: url(../img/ic_close.svg);
  681. background-position: center;
  682. background-repeat: no-repeat;
  683. svg{
  684. display: none;
  685. }
  686. }
  687. }
  688. }
  689. }
  690. .equip--image--select{
  691. display:flex;
  692. flex-direction: column;
  693. .form--group{
  694. margin-bottom: 25px;
  695. margin-top: 10px;
  696. display: flex;
  697. .file--btn{
  698. width: 75px;
  699. height:33px;
  700. display: inline-flex;
  701. align-items: center;
  702. justify-content: center;
  703. border-radius: 0px!important;
  704. background: #6C7281!important;
  705. cursor: pointer;
  706. }
  707. }
  708. .equip--image--desc{
  709. color: #0131AD;
  710. font-size: 12px;
  711. font-style: normal;
  712. font-weight: 500;
  713. letter-spacing: -0.36px;
  714. }
  715. }
  716. }
  717. .form--group--inner{
  718. display: flex;
  719. align-items: center;
  720. justify-content: flex-start;
  721. gap:10px;
  722. margin-bottom:10px;
  723. .text--box{
  724. height:36px;
  725. border-radius: 0px;
  726. border:1px solid #b5b5b5;
  727. white-space: nowrap;
  728. display: flex;
  729. align-items: center;
  730. width:324px;
  731. justify-content: flex-start;
  732. padding:0 20px;
  733. text-overflow: ellipsis;
  734. }
  735. }
  736. .v-file-input{
  737. &.custom-input {
  738. .v-input__control {
  739. .v-field{
  740. border-radius: 0px;
  741. }
  742. .v-field__field {
  743. input{
  744. &:placeholder {
  745. font-size: 0.75rem!important;
  746. font-weight: 400;
  747. color: #8e8e8e!important;
  748. }
  749. }
  750. .v-field__input {
  751. padding:0px;
  752. min-height:36px;
  753. padding-left: 0.75rem;
  754. font-size: 0.75rem !important;
  755. font-weight: 400 !important;
  756. &::placeholder {
  757. font-size: 0.75rem!important;
  758. font-weight: 400;
  759. color: #8e8e8e!important;
  760. }
  761. }
  762. }
  763. }
  764. }
  765. margin-top: 0px;
  766. padding-top: 0px;
  767. .v-input__control{
  768. .v-input__slot{
  769. padding: 0 15px;
  770. &::before{
  771. display: none;
  772. }
  773. &::after{
  774. display: none;
  775. }
  776. .v-file-input__text,
  777. .v-file-input__text--placeholder,
  778. input::placeholder{
  779. color: #444!important;
  780. font-size: 12px!important;
  781. font-style: normal!important;
  782. font-weight: 300!important;
  783. letter-spacing: -0.36px!important;
  784. }
  785. .v-input__append-inner{
  786. .v-input__icon--clear{
  787. opacity: 1;
  788. .mdi-close::before{
  789. content: '';
  790. background-image: url(../static/ic_clear.svg);
  791. display: inline-block;
  792. width: 16px;
  793. height: 16px;
  794. background-position: center;
  795. }
  796. }
  797. }
  798. }
  799. }
  800. }
  801. .flex--type{
  802. display: flex;
  803. align-items: center;
  804. gap:12px;
  805. }
  806. .file--btn{
  807. border-radius: 0px!important;
  808. background: #4B5161!important;
  809. color: #FFF!important;
  810. font-size: 12px!important;
  811. font-weight: 500!important;
  812. }
  813. .radio--group{
  814. .v-selection-control-group{
  815. gap:10px;
  816. }
  817. }
  818. .mdi-radiobox-marked::before{
  819. content:''!important;
  820. width:15px;
  821. height:15px;
  822. display: inline-flex;
  823. background: url(../img/ic_radio_on.svg) no-repeat center;
  824. }
  825. .mdi-radiobox-blank::before{
  826. content:''!important;
  827. width:15px;
  828. height:15px;
  829. display: inline-flex;
  830. background: url(../img/ic_radio_off.svg) no-repeat center;
  831. }
  832. /**********************************************
  833. | 문의 등록 팝업 모달
  834. **********************************************/
  835. .inquiry-modal {
  836. border-radius: 20px !important;
  837. overflow: hidden;
  838. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  839. .modal-header {
  840. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  841. color: white;
  842. padding: 1rem 25px;
  843. display: flex;
  844. align-items: center;
  845. justify-content: space-between;
  846. h3 {
  847. font-size: 1rem;
  848. font-weight: 600;
  849. margin: 0;
  850. }
  851. .close-btn {
  852. background: rgba(255, 255, 255, 0.2) !important;
  853. color: white !important;
  854. border-radius: 50%;
  855. width: 40px;
  856. height: 40px;
  857. &:hover {
  858. background: rgba(255, 255, 255, 0.3) !important;
  859. }
  860. .v-icon {
  861. font-size: 20px;
  862. }
  863. }
  864. }
  865. .modal-body {
  866. padding: 30px;
  867. background: #fafafa;
  868. .form-group {
  869. &:last-child{
  870. margin-bottom: 0;
  871. }
  872. margin-bottom: 20px;
  873. label {
  874. display: block;
  875. font-size: 0.95rem;
  876. font-weight: 600;
  877. color: #333;
  878. margin-bottom: 8px;
  879. .required {
  880. color: #ff6b6b;
  881. margin-left: 3px;
  882. }
  883. }
  884. .custom-select,
  885. .custom-file-input {
  886. border-radius: 8px !important;
  887. .v-field {
  888. border-radius: 8px !important;
  889. background: white;
  890. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  891. border: 1px solid #e1e5e9 !important;
  892. min-height: 3.63rem !important;
  893. &.v-field--focused {
  894. border-color: #667eea !important;
  895. box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
  896. }
  897. .v-field__outline {
  898. border-radius: 8px !important;
  899. &__start {
  900. border-radius: 8px 0 0 8px !important;
  901. }
  902. &__end {
  903. border-radius: 0 8px 8px 0 !important;
  904. }
  905. }
  906. &__field {
  907. border-radius: 8px !important;
  908. }
  909. &__overlay {
  910. border-radius: 8px !important;
  911. }
  912. }
  913. .v-field__input {
  914. padding: 12px 16px;
  915. font-size: 0.9rem;
  916. min-height: 3.63rem !important;
  917. &::placeholder {
  918. color: #9ca3af;
  919. }
  920. }
  921. .v-field__field {
  922. border-radius: 8px !important;
  923. min-height: 3.63rem !important;
  924. .v-field__input {
  925. min-height: 3.63rem !important;
  926. align-items: center;
  927. display: flex;
  928. }
  929. }
  930. .v-input__control {
  931. min-height: 3.63rem !important;
  932. }
  933. // Select dropdown
  934. .v-select__selection {
  935. border-radius: 8px !important;
  936. }
  937. // Input 요소들
  938. input, textarea {
  939. border-radius: 8px !important;
  940. }
  941. }
  942. .custom-title-input {
  943. border-radius: 8px !important;
  944. .v-field {
  945. border-radius: 8px !important;
  946. background: white;
  947. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  948. border: 1px solid #e1e5e9 !important;
  949. min-height: 2.25rem !important;
  950. &.v-field--focused {
  951. border-color: #667eea !important;
  952. box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
  953. }
  954. .v-field__outline {
  955. border-radius: 8px !important;
  956. &__start {
  957. border-radius: 8px 0 0 8px !important;
  958. }
  959. &__end {
  960. border-radius: 0 8px 8px 0 !important;
  961. }
  962. }
  963. &__field {
  964. border-radius: 8px !important;
  965. }
  966. &__overlay {
  967. border-radius: 8px !important;
  968. }
  969. }
  970. .v-field__input {
  971. padding: 12px 16px;
  972. font-size: 0.9rem;
  973. min-height: 3.63rem !important;
  974. &::placeholder {
  975. color: #9ca3af;
  976. }
  977. }
  978. .v-field__field {
  979. border-radius: 8px !important;
  980. min-height: 3.63rem !important;
  981. .v-field__input {
  982. min-height: 3.63rem !important;
  983. align-items: center;
  984. display: flex;
  985. }
  986. }
  987. .v-input__control {
  988. min-height: 3.63rem !important;
  989. }
  990. input {
  991. border-radius: 8px !important;
  992. }
  993. }
  994. .custom-textarea {
  995. border-radius: 8px !important;
  996. .v-field {
  997. border-radius: 8px !important;
  998. background: white;
  999. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  1000. border: 1px solid #e1e5e9 !important;
  1001. &.v-field--focused {
  1002. border-color: #667eea !important;
  1003. box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
  1004. }
  1005. .v-field__outline {
  1006. border-radius: 8px !important;
  1007. &__start {
  1008. border-radius: 8px 0 0 8px !important;
  1009. }
  1010. &__end {
  1011. border-radius: 0 8px 8px 0 !important;
  1012. }
  1013. }
  1014. &__field {
  1015. border-radius: 8px !important;
  1016. }
  1017. &__overlay {
  1018. border-radius: 8px !important;
  1019. }
  1020. }
  1021. .v-field__input {
  1022. padding: 16px;
  1023. font-size: 0.9rem;
  1024. &::placeholder {
  1025. color: #9ca3af;
  1026. }
  1027. }
  1028. .v-field__field {
  1029. border-radius: 8px !important;
  1030. }
  1031. input, textarea {
  1032. border-radius: 8px !important;
  1033. }
  1034. }
  1035. .custom-textarea {
  1036. .v-field__field {
  1037. .v-field__input {
  1038. padding: 16px;
  1039. line-height: 1.5;
  1040. resize: none !important;
  1041. }
  1042. }
  1043. textarea {
  1044. resize: none !important;
  1045. }
  1046. }
  1047. .custom-file-input {
  1048. .v-file-input__text {
  1049. display: flex;
  1050. align-items: center;
  1051. min-height: 2.25rem;
  1052. }
  1053. }
  1054. .file-info {
  1055. font-size: 0.8rem;
  1056. color: #6b7280;
  1057. margin-top: 8px;
  1058. margin-bottom: 0;
  1059. }
  1060. }
  1061. }
  1062. .modal-footer {
  1063. padding: 20px 30px;
  1064. background: white;
  1065. border-top: 1px solid #e5e7eb;
  1066. display: flex;
  1067. justify-content: flex-end;
  1068. gap: 12px;
  1069. .cancel-btn {
  1070. background: #f3f4f6 !important;
  1071. color: #6b7280 !important;
  1072. border: 1px solid #d1d5db;
  1073. border-radius: 10px;
  1074. padding: 0 24px;
  1075. height: 42px;
  1076. font-weight: 500;
  1077. &:hover {
  1078. background: #e5e7eb !important;
  1079. }
  1080. }
  1081. .submit-btn {
  1082. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  1083. color: white !important;
  1084. border-radius: 10px;
  1085. padding: 0 24px;
  1086. height: 42px;
  1087. font-weight: 600;
  1088. box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  1089. &:hover {
  1090. transform: translateY(-1px);
  1091. box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
  1092. }
  1093. &:disabled {
  1094. opacity: 0.7;
  1095. transform: none !important;
  1096. box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2) !important;
  1097. }
  1098. }
  1099. }
  1100. }
  1101. // 모달 배경 오버레이 스타일
  1102. .v-overlay__content {
  1103. .inquiry-modal {
  1104. max-height: 90vh;
  1105. overflow-y: auto;
  1106. }
  1107. }
  1108. /**********************************************
  1109. | CS 디테일 페이지
  1110. **********************************************/
  1111. .cs--detail--wrap {
  1112. border: 1px solid #eee;
  1113. border-radius: 15px;
  1114. overflow: hidden;
  1115. box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  1116. background: white;
  1117. .cs--detail--header {
  1118. background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  1119. padding: 25px 30px;
  1120. border-bottom: 1px solid #eee;
  1121. display: flex;
  1122. align-items: center;
  1123. justify-content: space-between;
  1124. .status-badge {
  1125. padding: 8px 16px;
  1126. border-radius: 20px;
  1127. font-size: 0.85rem;
  1128. font-weight: 600;
  1129. &.status-waiting {
  1130. background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  1131. color: #ffffff;
  1132. border: 1px solid #ff6b6b;
  1133. box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  1134. font-weight: 600;
  1135. }
  1136. &.status-completed {
  1137. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  1138. color: #ffffff;
  1139. border: 1px solid #667eea;
  1140. box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  1141. font-weight: 600;
  1142. }
  1143. }
  1144. .inquiry-meta {
  1145. display: flex;
  1146. align-items: center;
  1147. gap: 15px;
  1148. .category-badge {
  1149. background: linear-gradient(135deg, #667eea, #764ba2);
  1150. color: white;
  1151. padding: 6px 12px;
  1152. border-radius: 15px;
  1153. font-size: 0.8rem;
  1154. font-weight: 500;
  1155. }
  1156. .date {
  1157. color: #666;
  1158. font-size: 0.9rem;
  1159. }
  1160. }
  1161. }
  1162. .cs--detail--content {
  1163. padding: 30px;
  1164. .inquiry-title {
  1165. font-size: 1.5rem;
  1166. font-weight: 700;
  1167. color: #333;
  1168. margin-bottom: 25px;
  1169. line-height: 1.4;
  1170. border-bottom: 2px solid #f0f4ff;
  1171. padding-bottom: 15px;
  1172. }
  1173. .inquiry-info {
  1174. display: flex;
  1175. gap: 30px;
  1176. margin-bottom: 30px;
  1177. padding: 20px;
  1178. background: #fafbfc;
  1179. border-radius: 12px;
  1180. border-left: 4px solid #667eea;
  1181. .info-item {
  1182. display: flex;
  1183. flex-direction: column;
  1184. gap: 5px;
  1185. .label {
  1186. font-size: 0.85rem;
  1187. color: #666;
  1188. font-weight: 500;
  1189. }
  1190. .value {
  1191. font-size: 1rem;
  1192. color: #333;
  1193. font-weight: 600;
  1194. }
  1195. }
  1196. }
  1197. .inquiry-content {
  1198. margin-bottom: 30px;
  1199. h4 {
  1200. font-size: 1.1rem;
  1201. font-weight: 600;
  1202. color: #333;
  1203. margin-bottom: 15px;
  1204. display: flex;
  1205. align-items: center;
  1206. gap: 8px;
  1207. &:before {
  1208. content: "📝";
  1209. font-size: 1.2rem;
  1210. }
  1211. }
  1212. .content-text {
  1213. background: white;
  1214. border: 1px solid #e1e5e9;
  1215. border-radius: 12px;
  1216. padding: 25px;
  1217. line-height: 1.6;
  1218. color: #333;
  1219. font-size: 1rem;
  1220. min-height: 120px;
  1221. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  1222. }
  1223. }
  1224. .attachment-section {
  1225. margin-bottom: 30px;
  1226. h4 {
  1227. font-size: 1.1rem;
  1228. font-weight: 600;
  1229. color: #333;
  1230. margin-bottom: 15px;
  1231. display: flex;
  1232. align-items: center;
  1233. gap: 8px;
  1234. &:before {
  1235. content: "📎";
  1236. font-size: 1.2rem;
  1237. }
  1238. }
  1239. .attachment-item {
  1240. background: white;
  1241. border: 1px solid #e1e5e9;
  1242. border-radius: 12px;
  1243. padding: 20px;
  1244. display: flex;
  1245. align-items: center;
  1246. gap: 15px;
  1247. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  1248. .mdi-paperclip {
  1249. font-size: 1.5rem;
  1250. color: #667eea;
  1251. }
  1252. .file-name {
  1253. flex: 1;
  1254. font-size: 1rem;
  1255. color: #333;
  1256. font-weight: 500;
  1257. }
  1258. .download-btn {
  1259. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  1260. color: white !important;
  1261. border-radius: 8px;
  1262. box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  1263. &:hover {
  1264. transform: translateY(-1px);
  1265. box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  1266. }
  1267. .mdi-download {
  1268. margin-right: 5px;
  1269. }
  1270. }
  1271. }
  1272. }
  1273. .answer-section {
  1274. border-top: 2px solid #f0f4ff;
  1275. padding-top: 30px;
  1276. h4 {
  1277. font-size: 1.1rem;
  1278. font-weight: 600;
  1279. color: #333;
  1280. margin-bottom: 15px;
  1281. display: flex;
  1282. align-items: center;
  1283. gap: 8px;
  1284. &:before {
  1285. content: "💬";
  1286. font-size: 1.2rem;
  1287. }
  1288. }
  1289. .answer-content {
  1290. background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  1291. border: 1px solid #e1e5e9;
  1292. border-radius: 12px;
  1293. padding: 25px;
  1294. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  1295. .answer-meta {
  1296. display: flex;
  1297. align-items: center;
  1298. gap: 15px;
  1299. margin-bottom: 15px;
  1300. padding-bottom: 15px;
  1301. border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  1302. .admin-badge {
  1303. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  1304. color: white;
  1305. padding: 4px 12px;
  1306. border-radius: 12px;
  1307. font-size: 0.8rem;
  1308. font-weight: 600;
  1309. }
  1310. .answer-date {
  1311. color: #666;
  1312. font-size: 0.9rem;
  1313. }
  1314. }
  1315. .answer-text {
  1316. line-height: 1.6;
  1317. color: #333;
  1318. font-size: 1rem;
  1319. }
  1320. }
  1321. }
  1322. }
  1323. }
  1324. // 하단 버튼 스타일 개선
  1325. .view-btm-btn {
  1326. margin-top: 40px;
  1327. padding: 25px 0;
  1328. border-top: 1px solid #eee;
  1329. display: flex;
  1330. justify-content: space-between;
  1331. align-items: center;
  1332. .btn-l, .btn-r {
  1333. display: flex;
  1334. gap: 12px;
  1335. }
  1336. .custom-btn {
  1337. &.btn-list {
  1338. background: #f3f4f6 !important;
  1339. color: #6b7280 !important;
  1340. border: 1px solid #d1d5db;
  1341. border-radius: 10px;
  1342. padding: 0 24px;
  1343. height: 42px;
  1344. font-weight: 500;
  1345. &:hover {
  1346. background: #e5e7eb !important;
  1347. }
  1348. .mdi-format-list-bulleted {
  1349. margin-right: 8px;
  1350. }
  1351. }
  1352. }
  1353. }
  1354. // 팝업 내 모든 Vuetify 필드 요소들의 border-radius 강제 적용
  1355. .inquiry-modal {
  1356. .v-field,
  1357. .v-field__field,
  1358. .v-field__overlay,
  1359. .v-field__outline,
  1360. .v-field__outline__start,
  1361. .v-field__outline__end,
  1362. .v-input__control,
  1363. .v-input__slot,
  1364. input,
  1365. textarea,
  1366. .v-select__slot {
  1367. border-radius: 8px !important;
  1368. }
  1369. .v-field__outline__start {
  1370. border-radius: 8px 0 0 8px !important;
  1371. }
  1372. .v-field__outline__end {
  1373. border-radius: 0 8px 8px 0 !important;
  1374. }
  1375. // 포커스 상태에서도 border-radius 유지
  1376. .v-field--focused {
  1377. .v-field__outline,
  1378. .v-field__outline__start,
  1379. .v-field__outline__end {
  1380. border-radius: 8px !important;
  1381. }
  1382. .v-field__outline__start {
  1383. border-radius: 8px 0 0 8px !important;
  1384. }
  1385. .v-field__outline__end {
  1386. border-radius: 0 8px 8px 0 !important;
  1387. }
  1388. }
  1389. }