@charset "utf-8";
/* ODDLAB 고도몰 메인 — oddlab.org index 정렬 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css');

:root {
  --od-yellow: #F5C400;
  --od-yellow-light: #FFF8D6;
  --od-dark: #1A1A1A;
  --od-text-main: #222222;
  --od-text-sub: #555555;
  --od-text-muted: #888888;
  --od-border: #E5E7EB;
  --od-gray-bg: #F2F4F8;
  --od-max-w: 1200px;
  --od-font: 'Pretendard Variable', 'Pretendard', 'Noto Sans KR', sans-serif;
  --gray-light: #F7F8FA;
}

/* 고도몰 컨테이너 초기화 */
#container { margin-top: 0 !important; }
#contents .sub_content { width: 100%; margin: 0; padding: 0; }

#indexMain {
  font-family: var(--od-font);
  color: var(--od-text-main);
  overflow-x: clip;
  line-height: 1.6;
}
#indexMain a { text-decoration: none; color: inherit; }
#indexMain img { -webkit-user-drag: none; user-select: none; }

/* ══ WRAP ══ */
#indexMain .wrap {
  max-width: var(--od-max-w);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  #indexMain .wrap { padding: 0 24px; }
}
@media (max-width: 480px) {
  #indexMain .wrap { padding: 0 18px; }
}

/* ══ SCROLL REVEAL ══ */
#indexMain .rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s, transform .65s;
}
#indexMain .rv.in { opacity: 1; transform: none; }
#indexMain .rv2 {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s .14s, transform .65s .14s;
}
#indexMain .rv2.in { opacity: 1; transform: none; }

/* ══ HERO ANIMATIONS ══ */
@keyframes odFu { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes odFuRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes odFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes odBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 196, 0, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(245, 196, 0, 0); }
}
@keyframes odBarFill { to { height: 100%; } }
@keyframes odTScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══ HERO ══ */
#indexMain .hero {
  background: url('/data/oddlab/img/bg-cat.png');
  background-position: 50% 30%;
  position: relative;
  overflow: hidden;
}
#indexMain .hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.13) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#indexMain .hero-inner {
  max-width: var(--od-max-w);
  margin: 0 auto;
  padding: 64px 40px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 540px;
  box-sizing: border-box;
}
#indexMain .hero-content { max-width: 520px; position: relative; z-index: 1; }
#indexMain .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--od-yellow);
  color: var(--od-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: odFu .6s ease both, odBadgePulse 2.5s 1s ease infinite;
}
#indexMain .hero-badge::before {
  content: '✦';
  color: var(--od-yellow);
  font-size: 10px;
}
#indexMain .hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
  color: #fff;
  animation: odFu .7s .08s ease both;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
}
#indexMain .hero h1 .hl { color: var(--od-yellow); }
#indexMain .hero-desc {
  font-size: 20px;
  color: #fff;
  line-height: 1.75;
  margin: 0 0 60px;
  animation: odFu .7s .16s ease both;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
}
#indexMain .hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: odFu .7s .24s ease both;
}
#indexMain .btn-cta,
#indexMain .btn-outline,
#indexMain .btn-dark,
#indexMain .btn-dark-outline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
#indexMain .btn-cta {
  background: var(--od-yellow);
  color: var(--od-text-main);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  transition: background .2s, transform .15s, box-shadow .2s;
}
#indexMain .btn-cta:hover {
  background: #e07b00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, .3);
  color: var(--od-text-main);
}
#indexMain .btn-outline {
  background: #fff;
  color: var(--od-text-main);
  border: 1.5px solid var(--od-border);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  transition: border-color .2s, transform .15s;
}
#indexMain .btn-outline:hover {
  border-color: var(--od-yellow);
  transform: translateY(-2px);
  color: var(--od-text-main);
}
#indexMain .hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  max-width: 45%;
  min-height: 280px;
  animation: odFuRight .8s .2s ease both;
}
#indexMain .hero-bubble1 {
  position: absolute;
  top: -120px;
  right: 220px;
  width: 145px;
  height: 117px;
}
#indexMain .hero-bubble2 {
  position: absolute;
  top: 40px;
  right: 170px;
  width: 60px;
  height: 47px;
}
#indexMain .hero-bubble3 {
  position: absolute;
  top: 150px;
  right: 60px;
  width: 158px;
  height: 96px;
}
#indexMain .hero-bubble1 img,
#indexMain .hero-bubble2 img,
#indexMain .hero-bubble3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: odFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ══ SECTION COMMON ══ */
#indexMain .section-wrap { padding: 100px 0; }
#indexMain .section-title {
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -1px;
  margin: 0 0 56px;
  color: var(--od-text-main);
}
#indexMain .section-title .col { color: var(--od-yellow); }

/* ══ STEPS ══ */
#indexMain .steps-section { background: var(--od-gray-bg); }
#indexMain .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
#indexMain .step-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s;
}
#indexMain .step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
}
#indexMain .step-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
#indexMain .step-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--od-text-muted);
  margin-bottom: 6px;
}
#indexMain .step-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--od-dark);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin: 0;
}
#indexMain .step-illust {
  width: 100px;
  height: 80px;
  border-radius: 12px;
  flex-shrink: 0;
}
#indexMain .img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#indexMain .img-ph img { width: 120px; height: auto; display: block; }
#indexMain .step-card p {
  font-size: 16px;
  color: var(--od-text-sub);
  line-height: 1.7;
  margin: 0;
}

/* ══ PROGRAMS CAROUSEL ══ */
#indexMain .programs-section {
  background: #111;
  padding: 100px 0;
  overflow: hidden;
}
#indexMain .programs-section .section-title { color: #fff; }
#indexMain .progs-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
#indexMain .progs-nav { display: flex; gap: 8px; }
#indexMain .p-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: rgba(255, 255, 255, .7);
  transition: background .2s, border-color .2s, color .2s;
}
#indexMain .p-btn:hover {
  background: #fff;
  color: var(--od-dark);
  border-color: #fff;
}
#indexMain .p-btn:disabled,
#indexMain .p-btn.is-locked {
  opacity: .4;
  cursor: default;
  pointer-events: none;
}
#indexMain .car-vp { overflow: hidden; cursor: grab; }
#indexMain .car-vp:active { cursor: grabbing; }
#indexMain .car-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform .56s cubic-bezier(.25, .8, .25, 1);
  padding: 8px 0 32px;
}
#indexMain .car-track.nt { transition: none !important; }
#indexMain .pcard {
  flex-shrink: 0;
  width: 300px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background: #1e1e1e;
  position: relative;
  cursor: pointer;
  user-select: none;
  display: block;
  transition: transform .38s cubic-bezier(.2, .8, .2, 1), box-shadow .38s;
}
#indexMain .pcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .4);
}
#indexMain .pcard-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#indexMain .pcard-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
#indexMain .pcard:hover .pcard-img img { transform: scale(1.05); }
#indexMain .pcard-img-ph {
  position: absolute;
  inset: 0;
  background: #1e1e1e;
  border: 1.5px dashed #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 16px;
}
#indexMain .pcard-ft {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 18px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .5) 60%, transparent 100%);
  z-index: 2;
}
#indexMain .pcard-cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--od-yellow);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
#indexMain .pcard-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -.3px;
}
#indexMain .pcard-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
}

/* ══ VALUE TABS ══ */
#indexMain .value-section {
  background: #fff;
  padding: 100px 0;
}
#indexMain .value-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
#indexMain .value-left { position: relative; }
#indexMain .value-panel {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--od-gray-bg);
}
#indexMain .v-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
#indexMain .v-img.active {
  opacity: 1;
  transform: none;
}
#indexMain .v-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#indexMain .value-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: var(--od-yellow);
  opacity: .15;
  animation: odFloat 5s ease-in-out infinite;
}
#indexMain .value-right {
  display: flex;
  flex-direction: column;
}
#indexMain .v-tab {
  padding: 22px 20px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
#indexMain .v-tab:hover { background: rgba(0, 0, 0, .03); }
#indexMain .v-tab.active {
  background: var(--gray-light);
  border-color: var(--od-border);
}
#indexMain .v-tab-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: rgba(0, 0, 0, .06);
  overflow: hidden;
}
#indexMain .v-tab.active .v-tab-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--od-yellow);
  animation: odBarFill var(--bar-dur, 5s) linear forwards;
}
#indexMain .v-tab-icon { font-size: 20px; margin-bottom: 8px; }
#indexMain .v-tab-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, .4);
  margin-bottom: 4px;
}
#indexMain .v-tab.active .v-tab-title {
  color: var(--od-dark);
  font-size: 22px;
}
#indexMain .v-tab-desc {
  font-size: 16px;
  color: var(--od-text-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
#indexMain .v-tab.active .v-tab-desc { max-height: 72px; }

/* ══ TESTIMONIALS ══ */
#indexMain .testi-section {
  background: var(--od-gray-bg);
  padding: 80px 0;
  overflow: hidden;
}
#indexMain .testi-track-wrap {
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 4px 0 8px;
}
#indexMain .testi-row {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: odTScroll 40s linear infinite;
}
#indexMain .testi-track-wrap:hover .testi-row {
  animation-play-state: paused;
}
#indexMain .t-card {
  flex-shrink: 0;
  width: 400px;
  background: #fff;
  border: 1px solid var(--od-border);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .25s, border-color .25s;
}
#indexMain .t-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
  border-color: rgba(245, 196, 0, .5);
}
#indexMain .t-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--od-text-main);
  margin: 0;
}
#indexMain .t-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--od-border);
}
#indexMain .t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--od-yellow);
  flex-shrink: 0;
}
#indexMain .t-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--od-dark);
}
#indexMain .t-school {
  font-size: 16px;
  color: var(--od-text-muted);
  margin-left: 4px;
}

/* ══ CTA ══ */
#indexMain .cta-section {
  background: #fff;
  text-align: center;
  padding: 100px 0;
}
#indexMain .cta-desc {
  font-size: 20px;
  color: var(--od-text-sub);
  line-height: 1.7;
  margin: 0 0 40px;
}
#indexMain .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
#indexMain .btn-dark {
  background: var(--od-dark);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  transition: background .2s, transform .15s;
}
#indexMain .btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  color: #fff;
}
#indexMain .btn-dark-outline {
  background: #fff;
  color: var(--od-dark);
  border: 1.5px solid var(--od-dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  transition: background .2s, color .2s, transform .15s;
}
#indexMain .btn-dark-outline:hover {
  background: var(--od-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ══ BLOG ══ */
#indexMain .blog-section {
  background: var(--od-gray-bg);
  padding: 100px 0;
}
#indexMain .blog-section a { text-decoration: none; color: inherit; }
#indexMain .blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
#indexMain .blog-main-card {
  background: var(--od-yellow);
  border-radius: 20px;
  padding: 32px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
#indexMain .blog-main-card:hover { transform: translateY(-4px); }
#indexMain .blog-main-card h3 {
  font-size: 40px;
  font-weight: 800;
  color: var(--od-dark);
  line-height: 1.3;
  margin: 0;
  z-index: 1;
  position: relative;
}
#indexMain .blog-main-desc {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 12px;
  line-height: 1.65;
}
#indexMain .blog-main-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--od-dark);
  z-index: 1;
  position: relative;
  transition: gap .2s;
}
#indexMain .blog-main-card a:hover { gap: 10px; }
#indexMain .blog-main-card a::after { content: '→'; }
#indexMain .blog-card-char {
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  z-index: 0;
}
#indexMain .blog-card-char img {
  width: 100px;
  height: auto;
  display: block;
}
#indexMain .blog-col { display: flex; flex-direction: column; }
#indexMain .blog-col-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--od-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#indexMain .blog-col-title a {
  font-size: 16px;
  font-weight: 600;
  color: var(--od-text-muted);
}
#indexMain .blog-col-title a:hover { color: var(--od-dark); }
#indexMain .blog-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--od-border);
  transition: padding-left .2s;
}
#indexMain .blog-item:hover { padding-left: 6px; }
#indexMain .blog-item:last-child { border-bottom: none; }
#indexMain .blog-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--od-dark);
  line-height: 1.45;
}
#indexMain .blog-item-date {
  font-size: 16px;
  color: var(--od-text-muted);
  margin-top: 4px;
}
#indexMain .blog-banner {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid #e3e3e3;
  background: #fff url('/data/oddlab/img/sect-blog-2.jpg') center / contain no-repeat;
  transition: transform .3s;
}
#indexMain .blog-banner:hover { transform: translateY(-4px); }

/* ══ RESPONSIVE ══ */
@media (min-width: 1025px) {
  #indexMain .blog-item-title {
    width: 360px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #indexMain .blog-item-title {
    width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #indexMain .m-hidden { display: none; }
  #indexMain .blog-main-card h3 { font-size: 32px; }
  #indexMain .blog-main-card { justify-content: flex-start; }
  #indexMain .blog-banner {
    background-image: url('/data/oddlab/img/sect-blog-2-.jpg');
  }
}

@media (max-width: 1024px) {
  #indexMain .hero { background-position: 65% 30%; }
  #indexMain .hero-bubble1 { top: -120px; right: 240px; }
  #indexMain .hero-bubble2 { display: none; }
  #indexMain .blog-item-title { width: 280px; }
}

@media (max-width: 768px) {
  #indexMain .hero { background-position: 70% 30%; }
  #indexMain .hero-bubble1,
  #indexMain .hero-bubble2 { display: none; }
  #indexMain .hero-bubble3 { top: 80px; right: -180px; }
  #indexMain .blog-item-title { width: 100%; }
  #indexMain .hero-inner {
    flex-direction: column-reverse;
    padding: 32px 24px 48px;
    gap: 24px;
    min-height: auto;
  }
  #indexMain .hero-visual {
    width: 100%;
    max-width: none;
    min-height: 160px;
  }
  #indexMain .hero h1 {
    font-size: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  }
  #indexMain .hero-btns { flex-direction: column; }
  #indexMain .btn-cta,
  #indexMain .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  #indexMain .section-wrap { padding: 64px 0; }
  #indexMain .section-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  #indexMain .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #indexMain .programs-section,
  #indexMain .value-section,
  #indexMain .cta-section,
  #indexMain .blog-section { padding: 64px 0; }
  #indexMain .pcard {
    width: 240px;
    height: 360px;
  }
  #indexMain .value-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #indexMain .testi-track-wrap { margin: 0 -24px; }
  #indexMain .t-card { width: 300px; }
  #indexMain .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  #indexMain .btn-dark,
  #indexMain .btn-dark-outline {
    width: 100%;
    max-width: 320px;
  }
  #indexMain .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #indexMain .cta-desc { font-size: 16px; }
}

@media (max-width: 480px) {
  #indexMain .hero {
    background-position: 75% 45%;
    background-size: 1000px;
  }
  #indexMain .hero-bubble1,
  #indexMain .hero-bubble2,
  #indexMain .hero-bubble3,
  #indexMain .hero-desc { display: none; }
  #indexMain .hero h1 { font-size: 42px; }
  #indexMain .pcard {
    width: 200px;
    height: 300px;
  }
}
