1571 lines
31 KiB
CSS
1571 lines
31 KiB
CSS
/* ========================================
|
|
Services 페이지 전용 스타일
|
|
======================================== */
|
|
|
|
/* 페이지 헤더 */
|
|
.page-header {
|
|
background: var(--gradient-main);
|
|
color: var(--text-white);
|
|
padding: var(--spacing-3xl) 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: var(--font-5xl);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.page-header p {
|
|
font-size: var(--font-xl);
|
|
opacity: 0.95;
|
|
}
|
|
|
|
/* 서비스 테이블 */
|
|
.services-table-wrapper {
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
.services-table-wrapper .card {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.services-table-wrapper h3 {
|
|
margin-bottom: var(--spacing-lg);
|
|
font-size: var(--font-2xl);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.table-responsive {
|
|
overflow-x: auto;
|
|
border-radius: var(--border-radius-sm);
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.services-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: var(--bg-white);
|
|
}
|
|
|
|
.services-table th,
|
|
.services-table td {
|
|
padding: var(--spacing-lg);
|
|
text-align: left;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.services-table th {
|
|
background: var(--bg-light);
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
text-align: center;
|
|
}
|
|
|
|
.services-table tbody tr:hover {
|
|
background: rgba(255, 136, 0, 0.02);
|
|
}
|
|
|
|
.main-service {
|
|
background: linear-gradient(135deg, rgba(255, 136, 0, 0.05), rgba(255, 153, 51, 0.05));
|
|
}
|
|
|
|
.service-name {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.service-icon {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.service-features {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.service-features li {
|
|
margin-bottom: var(--spacing-sm);
|
|
padding-left: var(--spacing-lg);
|
|
position: relative;
|
|
}
|
|
|
|
.service-features li::before {
|
|
content: '•';
|
|
color: var(--primary-color);
|
|
position: absolute;
|
|
left: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.pricing {
|
|
text-align: center;
|
|
min-width: 180px;
|
|
}
|
|
|
|
.price-main {
|
|
font-size: var(--font-xl);
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.price-sub {
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.price-detail {
|
|
font-size: var(--font-sm);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* 대관 절차 */
|
|
.process-flow {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: var(--spacing-lg);
|
|
margin: var(--spacing-xl) 0;
|
|
padding: var(--spacing-xl);
|
|
background: var(--bg-light);
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.process-step {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
flex: 1;
|
|
min-width: 150px;
|
|
}
|
|
|
|
.step-number {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
background: var(--gradient-main);
|
|
color: var(--text-white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: var(--font-xl);
|
|
font-weight: 700;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.step-content h4 {
|
|
font-size: var(--font-lg);
|
|
margin-bottom: var(--spacing-sm);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.step-content p {
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.process-arrow {
|
|
font-size: var(--font-2xl);
|
|
color: var(--primary-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* 예약 버튼 */
|
|
.booking-buttons {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
justify-content: center;
|
|
margin: var(--spacing-xl) 0 var(--spacing-sm);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.booking-note {
|
|
text-align: center;
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
|
|
/* 이메일 양식 */
|
|
.email-form {
|
|
margin-top: var(--spacing-2xl);
|
|
padding: var(--spacing-xl);
|
|
background: var(--bg-light);
|
|
border-radius: var(--border-radius);
|
|
border: 2px solid var(--primary-color);
|
|
}
|
|
|
|
.email-form h4 {
|
|
color: var(--primary-color);
|
|
margin-bottom: var(--spacing-md);
|
|
font-size: var(--font-xl);
|
|
}
|
|
|
|
.email-template {
|
|
background: var(--bg-white);
|
|
padding: var(--spacing-xl);
|
|
border-radius: var(--border-radius-sm);
|
|
margin: var(--spacing-lg) 0;
|
|
border: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.email-field {
|
|
margin-bottom: var(--spacing-md);
|
|
font-size: var(--font-base);
|
|
word-break: break-all;
|
|
}
|
|
|
|
.form-section {
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
|
|
.form-section h5 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
font-size: var(--font-base);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.form-help {
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
margin-bottom: var(--spacing-sm);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.form-placeholder {
|
|
background: #f8f9fa;
|
|
padding: var(--spacing-md);
|
|
border-radius: var(--border-radius-sm);
|
|
border: 1px dashed #d1d5db;
|
|
font-family: monospace;
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* ========================================
|
|
새로운 서비스 패키지 스타일
|
|
======================================== */
|
|
|
|
/* 서비스 패키지 */
|
|
.service-package {
|
|
background-color: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacing-2xl);
|
|
margin-bottom: var(--spacing-2xl);
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
transition: var(--transition);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.service-package.featured {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
/* 패키지 헤더 */
|
|
.package-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-md);
|
|
margin-bottom: var(--spacing-xl);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.package-icon {
|
|
font-size: var(--font-3xl);
|
|
}
|
|
|
|
.package-header h3 {
|
|
font-size: var(--font-2xl);
|
|
color: var(--text-primary);
|
|
margin: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.package-badge {
|
|
background: var(--primary-color);
|
|
color: var(--text-white);
|
|
padding: var(--spacing-xs) var(--spacing-md);
|
|
border-radius: var(--border-radius-full);
|
|
font-size: var(--font-sm);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.package-badge.featured {
|
|
background: var(--gradient-main);
|
|
}
|
|
|
|
/* 가격 그리드 */
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
|
|
.pricing-card {
|
|
background-color: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacing-xl);
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
transition: var(--transition);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(255, 136, 0, 0.15);
|
|
}
|
|
|
|
/* 가격 헤더 */
|
|
.pricing-header {
|
|
text-align: center;
|
|
margin-bottom: var(--spacing-lg);
|
|
padding-bottom: var(--spacing-lg);
|
|
border-bottom: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.pricing-header.unified {
|
|
text-align: left;
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.pricing-header h4 {
|
|
font-size: var(--font-xl);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
align-items: baseline;
|
|
justify-content: center;
|
|
gap: var(--spacing-xs);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.price-amount {
|
|
font-size: var(--font-3xl);
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.price-unit {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.price-note {
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
margin: 0;
|
|
}
|
|
|
|
/* 통합 가격 구조 */
|
|
.pricing-structure {
|
|
display: flex;
|
|
gap: var(--spacing-xl);
|
|
margin-bottom: var(--spacing-lg);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.price-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.price-label {
|
|
font-size: var(--font-base);
|
|
color: var(--text-secondary);
|
|
font-weight: 600;
|
|
min-width: 30px;
|
|
}
|
|
|
|
/* 가격 특징 */
|
|
.pricing-features h5 {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
/* 서비스 개요 */
|
|
.service-overview {
|
|
background-color: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacing-xl);
|
|
margin-bottom: var(--spacing-xl);
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
/* 통합 서비스 특징 */
|
|
.service-features.unified {
|
|
margin-top: var(--spacing-lg);
|
|
}
|
|
|
|
.service-features.unified h5 {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.pricing-features ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.pricing-features li {
|
|
padding: var(--spacing-xs) 0;
|
|
position: relative;
|
|
padding-left: var(--spacing-lg);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.pricing-features li::before {
|
|
content: '✓';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--primary-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.minimum-time {
|
|
background: #fef3cd;
|
|
color: #92400e;
|
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
border-radius: var(--border-radius-sm);
|
|
font-size: var(--font-sm);
|
|
font-weight: 600;
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
/* 서비스 노트 */
|
|
.service-note {
|
|
background: #f0f9ff;
|
|
border: 1px solid #bae6fd;
|
|
border-radius: var(--border-radius-sm);
|
|
padding: var(--spacing-lg);
|
|
margin-top: var(--spacing-xl);
|
|
}
|
|
|
|
.service-note p {
|
|
margin: 0;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* 스트리밍 패키지 */
|
|
.streaming-package {
|
|
display: grid;
|
|
gap: var(--spacing-xl);
|
|
}
|
|
|
|
.package-overview {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-2xl);
|
|
padding: var(--spacing-xl);
|
|
background: var(--gradient-main);
|
|
border-radius: var(--border-radius);
|
|
color: var(--text-white);
|
|
}
|
|
|
|
.package-price .price-amount {
|
|
font-size: var(--font-4xl);
|
|
font-weight: 700;
|
|
color: var(--text-white);
|
|
}
|
|
|
|
.package-price .price-unit {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-white);
|
|
opacity: 1;
|
|
}
|
|
|
|
.package-duration h4 {
|
|
font-size: var(--font-2xl);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.package-duration p {
|
|
font-size: var(--font-lg);
|
|
opacity: 0.9;
|
|
margin: 0;
|
|
}
|
|
|
|
/* 패키지 특징 */
|
|
.package-features {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
}
|
|
|
|
.feature-column h5 {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.feature-column ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.feature-column li {
|
|
padding: var(--spacing-sm) 0;
|
|
position: relative;
|
|
padding-left: var(--spacing-lg);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.feature-column li::before {
|
|
content: '•';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--primary-color);
|
|
font-weight: bold;
|
|
font-size: var(--font-lg);
|
|
}
|
|
|
|
.additional-pricing {
|
|
text-align: center;
|
|
padding: var(--spacing-lg);
|
|
background: #fef3cd;
|
|
border-radius: var(--border-radius-sm);
|
|
}
|
|
|
|
.additional-pricing p {
|
|
margin: 0;
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
/* 결합상품 */
|
|
.combo-services {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
}
|
|
|
|
.combo-card {
|
|
background-color: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacing-xl);
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.combo-card h4 {
|
|
font-size: var(--font-xl);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.combo-pricing {
|
|
text-align: center;
|
|
margin-bottom: var(--spacing-lg);
|
|
padding: var(--spacing-md);
|
|
background: var(--bg-white);
|
|
border-radius: var(--border-radius-sm);
|
|
}
|
|
|
|
.combo-pricing .price {
|
|
font-size: var(--font-lg);
|
|
font-weight: 600;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.combo-features h5 {
|
|
font-size: var(--font-base);
|
|
color: var(--text-primary);
|
|
margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
|
|
}
|
|
|
|
.combo-features ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.combo-features li {
|
|
padding: var(--spacing-xs) 0;
|
|
color: var(--text-secondary);
|
|
position: relative;
|
|
padding-left: var(--spacing-md);
|
|
}
|
|
|
|
.combo-features li::before {
|
|
content: '→';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
/* 추가 옵션 */
|
|
.options-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: var(--spacing-xl);
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
.option-card {
|
|
background-color: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacing-xl);
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.option-card:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(255, 136, 0, 0.1);
|
|
}
|
|
|
|
.option-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-md);
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.option-icon {
|
|
font-size: var(--font-2xl);
|
|
}
|
|
|
|
.option-header h3 {
|
|
font-size: var(--font-xl);
|
|
color: var(--text-primary);
|
|
margin: 0;
|
|
}
|
|
|
|
.option-item {
|
|
margin-bottom: var(--spacing-lg);
|
|
padding-bottom: var(--spacing-lg);
|
|
border-bottom: 1px solid #f1f5f9;
|
|
}
|
|
|
|
.option-item:last-child {
|
|
border-bottom: none;
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.option-item h4 {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.option-note {
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
margin: var(--spacing-sm) 0 0 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* 이용 안내사항 */
|
|
.usage-notes {
|
|
background-color: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacing-2xl);
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.usage-notes h3 {
|
|
font-size: var(--font-xl);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-lg);
|
|
text-align: center;
|
|
}
|
|
|
|
.notes-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-xl);
|
|
}
|
|
|
|
.note-item {
|
|
text-align: center;
|
|
padding: var(--spacing-lg);
|
|
background: #f8fafc;
|
|
border-radius: var(--border-radius-sm);
|
|
}
|
|
|
|
.note-item h4 {
|
|
font-size: var(--font-lg);
|
|
color: var(--primary-color);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.note-item p {
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* 통합 특징 그리드 */
|
|
.features-grid.unified {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: var(--spacing-lg);
|
|
margin-top: var(--spacing-md);
|
|
}
|
|
|
|
.features-grid.unified .feature-item {
|
|
text-align: left;
|
|
padding: var(--spacing-md);
|
|
background: #f8fafc;
|
|
border-radius: var(--border-radius-sm);
|
|
border-left: 3px solid var(--primary-color);
|
|
}
|
|
|
|
.features-grid.unified .feature-item .feature-icon {
|
|
display: inline;
|
|
margin-right: var(--spacing-xs);
|
|
font-size: var(--font-base);
|
|
}
|
|
|
|
.features-grid.unified .feature-item p {
|
|
margin: 0;
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
display: inline;
|
|
}
|
|
|
|
/* ========================================
|
|
개선된 서비스 1 카드 레이아웃
|
|
======================================== */
|
|
|
|
/* 가격 카드 래퍼 */
|
|
.pricing-cards-wrapper {
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
/* 가격 카드 그리드 */
|
|
.pricing-cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
/* 개별 가격 카드 */
|
|
.pricing-card {
|
|
background: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacing-xl);
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
transition: var(--transition);
|
|
position: relative;
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 30px rgba(255, 136, 0, 0.15);
|
|
}
|
|
|
|
|
|
/* 카드 헤더 */
|
|
.card-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-md);
|
|
margin-bottom: var(--spacing-lg);
|
|
position: relative;
|
|
}
|
|
|
|
.person-icon {
|
|
font-size: var(--font-2xl);
|
|
}
|
|
|
|
.card-header h4 {
|
|
font-size: var(--font-xl);
|
|
color: var(--text-primary);
|
|
margin: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.popular-badge {
|
|
background: var(--primary-color);
|
|
color: var(--text-white);
|
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
border-radius: var(--border-radius-full);
|
|
font-size: var(--font-xs);
|
|
font-weight: 600;
|
|
position: absolute;
|
|
top: -10px;
|
|
right: -10px;
|
|
}
|
|
|
|
/* 가격 표시 */
|
|
.price-display {
|
|
text-align: center;
|
|
margin-bottom: var(--spacing-lg);
|
|
padding: var(--spacing-lg);
|
|
background: linear-gradient(135deg, #fff8f0, #fef3e2);
|
|
border-radius: var(--border-radius-sm);
|
|
}
|
|
|
|
.price-display .price-amount {
|
|
display: block;
|
|
font-size: var(--font-3xl);
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.price-display .price-unit {
|
|
font-size: var(--font-base);
|
|
color: var(--text-secondary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* 카드 특징 */
|
|
.card-features ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.card-features li {
|
|
padding: var(--spacing-sm) 0;
|
|
position: relative;
|
|
padding-left: var(--spacing-lg);
|
|
color: var(--text-secondary);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.card-features li::before {
|
|
content: '✨';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
/* 서비스 정보 카드 */
|
|
.service-info {
|
|
display: flex;
|
|
gap: var(--spacing-lg);
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.info-card {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-md);
|
|
background: #f0f9ff;
|
|
padding: var(--spacing-lg);
|
|
border-radius: var(--border-radius);
|
|
border: 1px solid #bae6fd;
|
|
}
|
|
|
|
.info-icon {
|
|
font-size: var(--font-xl);
|
|
}
|
|
|
|
.info-card p {
|
|
margin: 0;
|
|
color: var(--text-primary);
|
|
font-size: var(--font-sm);
|
|
}
|
|
|
|
/* 컴팩트 기술 사양 */
|
|
.tech-specs-compact {
|
|
margin-top: var(--spacing-xl);
|
|
padding: var(--spacing-lg);
|
|
background: #f8fafc;
|
|
border-radius: var(--border-radius);
|
|
border-left: 4px solid var(--primary-color);
|
|
}
|
|
|
|
.tech-specs-compact h5 {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
margin: 0 0 var(--spacing-md) 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.specs-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-sm);
|
|
justify-items: center;
|
|
}
|
|
|
|
.spec-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--spacing-xs);
|
|
background: var(--bg-white);
|
|
padding: var(--spacing-sm) var(--spacing-md);
|
|
border-radius: var(--border-radius-full);
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.spec-tag:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.spec-tag span {
|
|
font-size: var(--font-base);
|
|
}
|
|
|
|
/* 태블릿 반응형 */
|
|
@media (max-width: 1024px) and (min-width: 769px) {
|
|
.options-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
/* 모바일 반응형 */
|
|
@media (max-width: 768px) {
|
|
.pricing-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.pricing-structure {
|
|
flex-direction: column;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.features-grid.unified {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
/* 개선된 서비스 1 모바일 반응형 */
|
|
.pricing-cards {
|
|
grid-template-columns: 1fr;
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.service-info {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.info-card {
|
|
width: 100%;
|
|
max-width: 300px;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* 컴팩트 기술 사양 모바일 */
|
|
.specs-list {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-xs);
|
|
}
|
|
|
|
.spec-tag {
|
|
font-size: var(--font-xs);
|
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
}
|
|
|
|
.package-overview {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.package-features {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.combo-services {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.options-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.notes-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.package-header {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.service-package {
|
|
padding: var(--spacing-lg);
|
|
}
|
|
}
|
|
|
|
.email-send {
|
|
text-align: center;
|
|
margin-top: var(--spacing-xl);
|
|
}
|
|
|
|
/* ========================================
|
|
포트폴리오 팝업 스타일
|
|
======================================== */
|
|
|
|
.portfolio-preview {
|
|
text-align: center;
|
|
margin-top: var(--spacing-lg);
|
|
padding-top: var(--spacing-lg);
|
|
border-top: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.portfolio-btn {
|
|
background: var(--gradient-main);
|
|
color: var(--text-white);
|
|
border: none;
|
|
padding: var(--spacing-md) var(--spacing-xl);
|
|
border-radius: var(--border-radius);
|
|
font-size: var(--font-base);
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.portfolio-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
|
|
}
|
|
|
|
/* 팝업 오버레이 */
|
|
.portfolio-popup {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 10000;
|
|
}
|
|
|
|
.portfolio-popup.active {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.popup-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
.popup-content {
|
|
position: relative;
|
|
background: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
max-width: 90vw;
|
|
max-height: 90vh;
|
|
width: 1000px;
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
|
z-index: 1;
|
|
}
|
|
|
|
/* 팝업 헤더 */
|
|
.popup-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: var(--spacing-xl);
|
|
background: var(--gradient-main);
|
|
color: var(--text-white);
|
|
}
|
|
|
|
.popup-header h3 {
|
|
margin: 0;
|
|
font-size: var(--font-xl);
|
|
}
|
|
|
|
.popup-close {
|
|
background: none;
|
|
border: none;
|
|
color: var(--text-white);
|
|
font-size: var(--font-3xl);
|
|
cursor: pointer;
|
|
padding: 0;
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: var(--border-radius);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.popup-close:hover {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
/* 팝업 바디 */
|
|
.popup-body {
|
|
padding: var(--spacing-xl);
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.portfolio-section {
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
.portfolio-section:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.portfolio-section h4 {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-lg);
|
|
text-align: center;
|
|
}
|
|
|
|
.portfolio-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.portfolio-grid.shorts-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
}
|
|
|
|
.portfolio-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.portfolio-item .video-wrapper {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 0;
|
|
padding-bottom: 56.25%; /* 16:9 aspect ratio */
|
|
border-radius: var(--border-radius);
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.portfolio-item .video-wrapper.shorts-wrapper {
|
|
padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts */
|
|
max-width: 200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.portfolio-item iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
|
|
.portfolio-item p {
|
|
margin-top: var(--spacing-md);
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* 팝업 푸터 */
|
|
.popup-footer {
|
|
text-align: center;
|
|
padding: var(--spacing-xl);
|
|
background: #f8fafc;
|
|
border-top: 1px solid #e2e8f0;
|
|
}
|
|
|
|
/* 모바일 반응형 */
|
|
@media (max-width: 768px) {
|
|
.popup-content {
|
|
width: 95vw;
|
|
max-height: 95vh;
|
|
}
|
|
|
|
.popup-header {
|
|
padding: var(--spacing-lg);
|
|
}
|
|
|
|
.popup-body {
|
|
padding: var(--spacing-lg);
|
|
max-height: 70vh;
|
|
}
|
|
|
|
.portfolio-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.portfolio-grid.shorts-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
}
|
|
|
|
.portfolio-item .video-wrapper.shorts-wrapper {
|
|
max-width: 150px;
|
|
}
|
|
}
|
|
|
|
/* ========================================
|
|
스트리밍 포트폴리오 추가 스타일
|
|
======================================== */
|
|
|
|
.streaming-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
}
|
|
|
|
.streaming-info {
|
|
margin-top: var(--spacing-md);
|
|
}
|
|
|
|
.streaming-info p {
|
|
margin: 0 0 var(--spacing-sm) 0;
|
|
font-size: var(--font-base);
|
|
color: var(--text-primary);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.stream-details {
|
|
display: flex;
|
|
gap: var(--spacing-sm);
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.platform, .streamer {
|
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
border-radius: var(--border-radius-full);
|
|
font-size: var(--font-xs);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.platform {
|
|
background: #ff6b6b;
|
|
color: var(--text-white);
|
|
}
|
|
|
|
.streamer {
|
|
background: #e2e8f0;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* 스트리밍 특징 */
|
|
.streaming-features {
|
|
margin-top: var(--spacing-2xl);
|
|
padding-top: var(--spacing-xl);
|
|
border-top: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.streaming-features h4 {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-lg);
|
|
text-align: center;
|
|
}
|
|
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.feature-item {
|
|
text-align: center;
|
|
padding: var(--spacing-lg);
|
|
background: #f8fafc;
|
|
border-radius: var(--border-radius);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.feature-item:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: var(--font-2xl);
|
|
display: block;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.feature-item p {
|
|
margin: 0;
|
|
font-size: var(--font-sm);
|
|
color: var(--text-secondary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* 모바일 스트리밍 반응형 */
|
|
@media (max-width: 768px) {
|
|
.streaming-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.features-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
/* 정보 리스트 */
|
|
.info-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.info-list li {
|
|
margin-bottom: var(--spacing-md);
|
|
padding-left: var(--spacing-lg);
|
|
position: relative;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.info-list li::before {
|
|
content: '✓';
|
|
color: var(--primary-color);
|
|
position: absolute;
|
|
left: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* 환불 테이블 */
|
|
.refund-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
background: var(--bg-white);
|
|
}
|
|
|
|
.refund-table th,
|
|
.refund-table td {
|
|
padding: var(--spacing-md);
|
|
text-align: center;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.refund-table th {
|
|
background: var(--bg-light);
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.refund-100 { color: #10b981; font-weight: 600; }
|
|
.refund-70 { color: #f59e0b; font-weight: 600; }
|
|
.refund-50 { color: #f97316; font-weight: 600; }
|
|
.refund-0 { color: #ef4444; font-weight: 600; }
|
|
|
|
/* 장비 그리드 */
|
|
.equipment-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-2xl);
|
|
}
|
|
|
|
.equipment-card {
|
|
text-align: center;
|
|
padding: var(--spacing-2xl);
|
|
background: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.equipment-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.equipment-icon {
|
|
font-size: 3rem;
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.equipment-card h3 {
|
|
font-size: var(--font-xl);
|
|
margin-bottom: var(--spacing-md);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.equipment-card p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* 그리드 레이아웃 */
|
|
.grid {
|
|
display: grid;
|
|
gap: var(--spacing-xl);
|
|
margin: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.grid-2 {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.grid-3 {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.grid-4 {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
.grid-2-1 {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.grid-2-1 .card:nth-child(3) {
|
|
grid-column: 1 / -1;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.card {
|
|
background: var(--bg-white);
|
|
padding: var(--spacing-2xl);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
|
|
margin-bottom: var(--spacing-xl);
|
|
}
|
|
|
|
.card:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.card h3 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-lg);
|
|
font-size: var(--font-xl);
|
|
}
|
|
|
|
/* CTA 섹션 */
|
|
.cta-section {
|
|
background: var(--gradient-warm);
|
|
padding: var(--spacing-3xl) 0;
|
|
}
|
|
|
|
.cta-section h2 {
|
|
font-size: var(--font-4xl);
|
|
margin-bottom: var(--spacing-md);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.cta-section p {
|
|
font-size: var(--font-xl);
|
|
margin-bottom: var(--spacing-2xl);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cta-section .btn-outline {
|
|
border-color: var(--primary-color);
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.cta-section .btn-outline:hover {
|
|
background: var(--primary-color);
|
|
color: var(--text-white);
|
|
}
|
|
|
|
/* 반응형 디자인 */
|
|
@media (max-width: 768px) {
|
|
.page-header h1 {
|
|
font-size: var(--font-3xl);
|
|
}
|
|
|
|
.page-header p {
|
|
font-size: var(--font-base);
|
|
}
|
|
|
|
.services-table th,
|
|
.services-table td {
|
|
padding: var(--spacing-md);
|
|
font-size: var(--font-sm);
|
|
}
|
|
|
|
.process-flow {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.process-arrow {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.booking-buttons {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.booking-buttons .btn {
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
|
|
.equipment-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.grid-2,
|
|
.grid-3,
|
|
.grid-4,
|
|
.grid-2-1 {
|
|
grid-template-columns: 1fr;
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.grid-2-1 .card:nth-child(3) {
|
|
max-width: none;
|
|
}
|
|
|
|
.card {
|
|
margin-bottom: var(--spacing-lg);
|
|
padding: var(--spacing-xl);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.services-table {
|
|
font-size: var(--font-xs);
|
|
}
|
|
|
|
.pricing {
|
|
min-width: 120px;
|
|
}
|
|
|
|
.price-main {
|
|
font-size: var(--font-base);
|
|
}
|
|
|
|
.process-step {
|
|
min-width: 120px;
|
|
}
|
|
|
|
.step-number {
|
|
width: 40px;
|
|
height: 40px;
|
|
font-size: var(--font-base);
|
|
}
|
|
} |