pg견적문의 생성 및 퀵배너 변경

This commit is contained in:
2026-04-27 14:43:16 +09:00
parent 1888333fc2
commit 1ef649aa14
10 changed files with 54 additions and 117 deletions

View File

@@ -454,7 +454,7 @@ body.page-inquiry #m_logo img {
@media (hover:hover) {
.quick_wrap .top_btn:hover { border-color:var(--primary); color:var(--primary) }
}
@media (max-width:1400px) { .quick_wrap { display:none } }
@media (max-width:1024px) { .quick_wrap { display:none } }
/* ========================== 반응형 하단 버튼 공통 */

View File

@@ -57,37 +57,30 @@
letter-spacing:4pt;
word-break:keep-all;
}
@keyframes txtSlideDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 초기 상태 — 애니메이션 전엔 숨김 */
/* 초기 상태 ? 애니메이션 전엔 숨김 */
.txt_box .main-tit,
.txt_box .sub-tit,
.txt_box .visual-btn-wrap {
opacity: 0;
transform: translateY(-20px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
/* animate-in 클래스 붙으면 시간차 실행 */
.txt_box.animate-in .main-tit {
animation: txtSlideDown 0.7s ease forwards;
animation-delay: 0s;
}
.txt_box.animate-in .sub-tit {
animation: txtSlideDown 0.7s ease forwards;
animation-delay: 0.15s;
.txt_box.no-transition .main-tit,
.txt_box.no-transition .sub-tit,
.txt_box.no-transition .visual-btn-wrap {
transition: none;
}
/* animate-in 클래스 추가 시 최종 상태 (transition이 재실행되지 않으므로 zoom 후 유지) */
.txt_box.animate-in .main-tit,
.txt_box.animate-in .sub-tit,
.txt_box.animate-in .visual-btn-wrap {
animation: txtSlideDown 0.7s ease forwards;
animation-delay: 0.3s;
opacity: 1;
transform: translateY(0);
}
.txt_box.animate-in .sub-tit { transition-delay: 0.15s; }
.txt_box.animate-in .visual-btn-wrap { transition-delay: 0.3s; }
/* swiper controller */
#mainVisual .txt_wrap .swiper-controller {