You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.5 KiB
Vue
116 lines
2.5 KiB
Vue
|
2 months ago
|
<!-- components/process/ProcessSection.vue -->
|
||
|
|
<template>
|
||
|
|
<section class="process-section">
|
||
|
|
<div class="section-container">
|
||
|
|
|
||
|
|
<div class="section-header">
|
||
|
|
<h2 class="section-title">Proceso de Admisión 2026</h2>
|
||
|
|
<p class="section-subtitle">
|
||
|
|
Sigue estos pasos para postular al Examen General 2026-I
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="process-timeline">
|
||
|
|
<a-steps :current="2" class="modern-steps">
|
||
|
|
<a-step title="Preinscripción Virtual" description="20 Oct - 30 Nov" />
|
||
|
|
<a-step title="Inscripción Presencial" description="1 - 5 Dic" />
|
||
|
|
<a-step title="Examen" description="15 Diciembre" />
|
||
|
|
<a-step title="Resultados" description="20 Diciembre" />
|
||
|
|
<a-step title="Control Biométrico Ingresantes" description="8 - 12 Ene" />
|
||
|
|
</a-steps>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.process-section {
|
||
|
|
padding: 30px 0; /* mucho menos espacio */
|
||
|
|
background: #ffffff; /* quitamos el gris */
|
||
|
|
font-family: "Times New Roman", Times, serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-container {
|
||
|
|
max-width: 1100px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 0 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-header {
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 25px; /* reducido */
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-title {
|
||
|
|
font-size: 2.1rem;
|
||
|
|
font-weight: 600;
|
||
|
|
color: #2c3e50;
|
||
|
|
margin: 0 0 6px 0; /* sin espacio exagerado */
|
||
|
|
line-height: 1.2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-subtitle {
|
||
|
|
font-size: 1rem;
|
||
|
|
color: #777;
|
||
|
|
margin: 0;
|
||
|
|
line-height: 1.4;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ====== STEPS ====== */
|
||
|
|
|
||
|
|
.process-timeline {
|
||
|
|
max-width: 900px;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.modern-steps {
|
||
|
|
padding: 15px 10px; /* MUY compacto */
|
||
|
|
}
|
||
|
|
|
||
|
|
/* QUITAR ESPACIO EXTRA DE ANT DESIGN */
|
||
|
|
.modern-steps :deep(.ant-steps-item) {
|
||
|
|
padding-bottom: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.modern-steps :deep(.ant-steps-item-title) {
|
||
|
|
font-size: 0.9rem;
|
||
|
|
font-weight: 600;
|
||
|
|
color: #34495e;
|
||
|
|
line-height: 1.2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.modern-steps :deep(.ant-steps-item-description) {
|
||
|
|
font-size: 0.8rem;
|
||
|
|
color: #888;
|
||
|
|
margin-top: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Iconos más pequeños */
|
||
|
|
.modern-steps :deep(.ant-steps-item-icon) {
|
||
|
|
width: 28px;
|
||
|
|
height: 28px;
|
||
|
|
line-height: 28px;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Línea más fina */
|
||
|
|
.modern-steps :deep(.ant-steps-item-tail::after) {
|
||
|
|
height: 2px;
|
||
|
|
background: #dfe6e9;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Step activo */
|
||
|
|
.modern-steps :deep(.ant-steps-item-process .ant-steps-item-icon) {
|
||
|
|
background-color: #4a69bd;
|
||
|
|
border-color: #4a69bd;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Quitar altura extra que mete Ant */
|
||
|
|
.modern-steps :deep(.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item) {
|
||
|
|
margin-top: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
</style>
|