@charset "utf-8";

/* =========================
   1. DESKTOP MEGA MENU
   ========================= */
@media (min-width:1281px){

  body.econ .menuUItop{
    --mega-side-width: clamp(90px, 11vw, 175px);
    --mega-side-gap: clamp(4px, 0.7vw, 12px);

    --mega-col-width: clamp(98px, 9vw, 160px);
    --mega-gap: clamp(10px, 1.2vw, 22px);
    --mega-gap-2: clamp(6px, 0.7vw, 10px);
    --mega-gap-3: clamp(6px, 0.7vw, 10px);

    --mega-title-size: clamp(12px, 1vw, 16px);
    --mega-link-size: clamp(10px, 0.95vw, 15px);
    --mega-title-gap: clamp(10px, 1vw, 18px);
    --mega-item-gap: clamp(7px, 0.8vw, 12px);

    --mega-line-nudge: -3px;
  }

  body.econ header,
  body.econ .head_navi{
    position: relative;
  }

  body.econ .menuUItop{
    position: relative;
    overflow: visible !important;
    z-index: 300;
  }

  body.econ .menuUItop .div_2{
    display: none !important;
  }

  body.econ .econ-mega-bg{
    position: fixed;
    left: 50vw;
    top: var(--econ-mega-top, 0px);
    transform: translateX(-50%);
    width: 100vw;
    height: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    opacity: 0;
    visibility: hidden;
    transition: height .28s ease, opacity .2s ease, visibility .2s ease;
    z-index: 301;
    pointer-events: none;
    overflow: hidden;
  }

  body.econ .econ-mega-side{
    position: absolute;
    top: 0;
    width: var(--mega-side-width);
    height: 100%;
    background: #a51e2d;
    z-index: 1;
    overflow: hidden;
    display: block;
    padding: 0;
    box-sizing: border-box;
  }

  body.econ .econ-mega-side.left{ left: 0; }
  body.econ .econ-mega-side.right{ right: 0; }

  body.econ .econ-mega-side img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  body.econ .econ-mega-menu{
    position: fixed;
    left: 50vw;
    top: var(--econ-mega-top, 0px);
    transform: translate(-50%, 16px);
    width: 100vw;
    box-sizing: border-box;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding-top: 30px;
    padding-bottom: 38px;
    padding-left: calc(var(--mega-side-width) + var(--mega-side-gap));
    padding-right: calc(var(--mega-side-width) + var(--mega-side-gap));
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .28s ease, visibility .22s ease;
    z-index: 302;
    pointer-events: none;
  }

  body.econ .menuUItop.econ-mega-open .econ-mega-bg{
    height: var(--econ-mega-height, 620px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.econ .menuUItop.econ-mega-open .econ-mega-menu{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  body.econ .econ-mega-menu .econ-mega-col{
    --col-gap-current: var(--mega-gap);
    flex: 1 1 var(--mega-col-width) !important;
    width: var(--mega-col-width) !important;
    min-width: 0 !important;
    max-width: var(--mega-col-width) !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }

  body.econ .econ-mega-menu .econ-mega-col:nth-child(2){
    --col-gap-current: var(--mega-gap-2);
  }

  body.econ .econ-mega-menu .econ-mega-col:nth-child(3){
    --col-gap-current: var(--mega-gap-3);
  }

  body.econ .econ-mega-menu .econ-mega-col + .econ-mega-col{
    margin-left: var(--col-gap-current) !important;
  }

  body.econ .econ-mega-menu .econ-mega-separator{
    display: none !important;
  }

  body.econ .econ-mega-menu .econ-mega-col::after{
    content: none !important;
    display: none !important;
  }

  body.econ .econ-mega-menu .econ-mega-col + .econ-mega-col::before{
    content: "";
    position: absolute;
    top: 0;
    left: calc((var(--col-gap-current) / -2) + var(--mega-line-nudge));
    width: 0;
    height: calc(var(--econ-mega-height) - 72px);
    border-left: 1px solid #d9d9d9;
    background: none;
    pointer-events: none;
  }

  body.econ .econ-mega-title{
    margin: 0 0 var(--mega-title-gap);
    padding: 0;
    font-size: var(--mega-title-size);
    font-weight: 700;
    line-height: 1.25;
    color: #222;
    white-space: nowrap;
  }

  body.econ .menuUItop.econ-mega-open .econ-mega-title{
    color: #a51e2d;
  }

  body.econ .econ-mega-col ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body.econ .econ-mega-col li{
    margin: 0 0 var(--mega-item-gap) 0;
    padding: 0;
  }

  body.econ .econ-mega-col a{
    display: block;
    font-size: var(--mega-link-size);
    line-height: 1.3;
    color: #222;
    text-decoration: none;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  body.econ .econ-mega-col a:hover{
    color: #8f1d24;
  }

  body.econ header{
    z-index: auto;
  }

  body.econ .econ-mega-menu .ul_2,
  body.econ .econ-mega-menu .ul_2 ul{
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.econ .econ-mega-menu .li_2{
    position: static !important;
    display: block !important;
    float: none !important;
    margin: 0 0 var(--mega-item-gap) 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body.econ .econ-mega-menu .li_2:last-child{
    margin-bottom: 0 !important;
  }

  body.econ .econ-mega-menu .li_2 a{
    display: block !important;
    position: static !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: none !important;
    font-size: var(--mega-link-size) !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
    color: #222 !important;
    text-decoration: none !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }

  body.econ .econ-mega-menu .li_2 a:hover{
    color: #8f1d24 !important;
  }

  body.econ #menuUItop,
  body.econ .menuUItop,
  body.econ #top_k2wiz_GNB,
  body.econ .top_k2wiz_GNB{
    font-size: 0 !important;
  }

  body.econ #menuUItop .top_k2wiz_GNB > li,
  body.econ .menuUItop .top_k2wiz_GNB > li,
  body.econ #top_k2wiz_GNB > li{
    height: auto !important;
  }

  body.econ #menuUItop .top_k2wiz_GNB > li > a,
  body.econ .menuUItop .top_k2wiz_GNB > li > a,
  body.econ #top_k2wiz_GNB > li > a{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 90px !important;
    padding: 0 22px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #111 !important;
    box-sizing: border-box !important;
  }

  body.econ #menuUItop .top_k2wiz_GNB > li > a > span,
  body.econ .menuUItop .top_k2wiz_GNB > li > a > span,
  body.econ #top_k2wiz_GNB > li > a > span{
    display: inline-block !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    color: #111 !important;
    white-space: nowrap !important;
  }

  body.econ #menuUItop .top_k2wiz_GNB > li:hover > a > span,
  body.econ .menuUItop .top_k2wiz_GNB > li:hover > a > span,
  body.econ #top_k2wiz_GNB > li:hover > a > span,
  body.econ #menuUItop .top_k2wiz_GNB > li._active > a > span,
  body.econ .menuUItop .top_k2wiz_GNB > li._active > a > span,
  body.econ #top_k2wiz_GNB > li._active > a > span{
    color: #8b1f2b !important;
  }
}

/* =========================
   2. TABLET / MOBILE
   ========================= */
@media (max-width:1280px){
  body.econ .econ-mega-bg,
  body.econ .econ-mega-menu{
    display: none !important;
  }

  body.econ .menuUItop,
  body.econ .menuUItop.econ-mega-open{
    overflow: visible !important;
  }
}

/* =========================
   3. SUB VISUAL FINAL
   ========================= */
body.econ .wrap_contents{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.econ .wrap_contents > .subVisual{
  margin-top: 0 !important;
}

body.econ .subVisual{
  position: relative !important;
  height: 220px !important;
  min-height: 220px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background-image: url('/sites/econ/images/17508179705.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

body.econ .subVisual .subVisualContainer{
  position: relative !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.econ .subVisual .visual_intro{
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 20px !important;
  text-align: center !important;
  z-index: 2 !important;
}

body.econ .subVisual .visual_intro strong,
body.econ .subVisual .visual_intro span{
  display: block !important;
  margin: 0 !important;
}

body.econ .subVisual .visual_intro strong:empty{
  display: none !important;
}

body.econ .subVisual .visual_intro span{
  font-size: 25px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.22) !important;
  letter-spacing: -0.02em !important;
}

@media (max-width:1024px){
  body.econ .subVisual{
    height: 190px !important;
    min-height: 190px !important;
  }

  body.econ .subVisual .visual_intro span{
    font-size: 24px !important;
  }
}

@media (max-width:640px){
  body.econ .subVisual{
    height: 160px !important;
    min-height: 160px !important;
  }

  body.econ .subVisual .visual_intro{
    padding: 0 16px !important;
  }

  body.econ .subVisual .visual_intro span{
    font-size: 16px !important;
    line-height: 1.4 !important;
  }
}

/* =========================================================
   모바일 메뉴 / 레이어 최종 정리
   ========================================================= */
@media (max-width:1280px){

  body.econ .head_navi,
  body.econ .head_navi.head_navi_econ{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
  z-index: 10020 !important;
    height: 100dvh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: #fff !important;
  }

  body.econ .head_navi .gnb_m{
    justify-content: flex-end !important;
    padding: 18px 56px 14px 70px !important;
  }

  body.econ .head_navi #top_k2wiz_GNB > li,
  body.econ .head_navi .top_k2wiz_GNB > li{
    margin: 0 !important;
  }

  body.econ .head_navi #top_k2wiz_GNB > li > a,
  body.econ .head_navi .top_k2wiz_GNB > li > a{
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    padding: 18px 44px 18px 0 !important;
  }

  body.econ .head_navi #top_k2wiz_GNB > li > a::after,
  body.econ .head_navi .top_k2wiz_GNB > li > a::after{
    right: 0 !important;
  }

  body.econ .head_navi #top_k2wiz_GNB > li.mobile-open > .div_2,
  body.econ .head_navi .top_k2wiz_GNB > li.mobile-open > .div_2,
  body.econ .head_navi #top_k2wiz_GNB > li.mobile-open > .ul_2,
  body.econ .head_navi .top_k2wiz_GNB > li.mobile-open > .ul_2{
    background: transparent !important;
    border: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    padding: 6px 0 10px !important;
  }

  body.econ .head_navi #top_k2wiz_GNB > li.mobile-open > .div_2 li a,
  body.econ .head_navi .top_k2wiz_GNB > li.mobile-open > .div_2 li a,
  body.econ .head_navi #top_k2wiz_GNB > li.mobile-open > .ul_2 li a,
  body.econ .head_navi .top_k2wiz_GNB > li.mobile-open > .ul_2 li a{
    background: transparent !important;
    border: 0 !important;
    padding: 9px 0 9px 14px !important;
    color: #444 !important;
    font-size: 15px !important;
  }

  body.econ .head_navi #menuUItop,
  body.econ .head_navi .menuUItop,
  body.econ .head_navi #top_k2wiz_GNB,
  body.econ .head_navi .top_k2wiz_GNB{
    padding-bottom: 90px !important;
  }

  body.econ.econ-mobile-nav-open .wrap_contents,
  body.econ.econ-mobile-nav-open footer,
  body.econ.econ-mobile-nav-open #wrap-slider160,
  body.econ.econ-mobile-nav-open .econ-left-youtube-wrap,
  body.econ.econ-mobile-nav-open #menu1039_obj24,
  body.econ.econ-mobile-nav-open #menu1039_obj81,
  body.econ.econ-mobile-nav-open .subVisual,
  body.econ.econ-mobile-nav-open .locationNav,
  body.econ.econ-mobile-nav-open .goTop{
    position: relative !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  body.econ.econ-mobile-nav-open header,
  body.econ.econ-mobile-nav-open .openNav,
  body.econ.econ-mobile-nav-open .closeNav{
    z-index: 1000000 !important;
  }

  body.econ footer,
  body.econ .copyright,
  body.econ .footer_link,
  body.econ .footer_sns,
  body.econ .goTop{
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: 1 !important;
  }

  body.econ .containerB .innerB{
    position: relative !important;
    display: block !important;
  }

  body.econ .openNav{
    position: absolute !important;
    top: 50% !important;
    right: 14px !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 10020 !important;
  }

  body.econ .openFullPopup{
    position: absolute !important;
    top: 50% !important;
    right: 68px !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 10021 !important;
  }

  body.econ .openFullPopup span{
    display: block !important;
    white-space: nowrap !important;
  }

  body.econ.econ-mobile-nav-open .openFullPopup{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width:768px){
  body.econ .head_navi .gnb_m{
    justify-content: flex-end !important;
    padding: 16px 52px 12px 62px !important;
  }

  body.econ .head_navi #top_k2wiz_GNB > li > a,
  body.econ .head_navi .top_k2wiz_GNB > li > a{
    padding: 16px 40px 16px 0 !important;
  }

  body.econ .openNav{
    right: 10px !important;
  }

  body.econ .openFullPopup{
    right: 56px !important;
  }
}

/* =========================
   경제대학 국문/영문 전환
   ========================= */
.sg-intro-box{
  max-width:950px;
  margin:0 auto 30px;
  padding:30px 34px;
  border:1px solid #dddddd;
  border-radius:12px;
  background:linear-gradient(135deg,#fcfcfc 0%, #f5f5f5 100%);
  box-sizing:border-box;
  position:relative;
  text-align:center;
}
.sg-intro-box::before{
  content:"";
  position:absolute;
  left:0;
  top:24px;
  bottom:24px;
  width:6px;
  background:#920d14;
  border-radius:12px 0 0 12px;
}
.sg-intro-text{
  margin:0;
  font-size:22px;
  font-weight:700;
  line-height:1.8;
  color:#222;
  word-break:keep-all;
}
.sg-intro-text .point{
  color:#920d14;
  font-weight:800;
}

.sg-greeting-clean{
  font-family:"Noto Sans KR","Segoe UI",Arial,sans-serif;
  color:#111;
}
.sg-greeting-clean .inner{
  display:flex;
  gap:32px;
  align-items:flex-start;
}
.sg-greeting-clean .photo{
  flex:0 0 220px;
}
.sg-greeting-clean .photo img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}
.sg-greeting-clean .body{
  flex:1;
  min-width:0;
}
.sg-greeting-clean .body p{
  line-height:1.9;
  margin-bottom:14px;
}
.sg-greeting-clean .sign{
  text-align:right;
  font-weight:bold;
  margin-top:20px;
}

.econ-lang-wrap{
  position:relative;
}
.econ-lang-top{
  width:100%;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:8px;
  margin:0 0 18px 0;
}
a.econ-lang-btn{
  display:inline-block !important;
  padding:8px 16px;
  min-width:96px;
  box-sizing:border-box;
  border:1px solid #d0d0d0;
  border-radius:999px;
  background:#fff;
  color:#333 !important;
  text-align:center;
  text-decoration:none !important;
  font-size:14px;
  font-weight:700;
  line-height:1.2;
  cursor:pointer;
  transition:all .2s ease;
}
a.econ-lang-btn:hover{
  border-color:#920d14;
  color:#920d14 !important;
}
a.econ-lang-btn.active{
  background:#920d14;
  border-color:#920d14;
  color:#fff !important;
}
.econ-lang-panel{
  display:none;
}
.econ-lang-panel.active{
  display:block;
}

@media (max-width:860px){
  .sg-intro-box{
    padding:24px 20px 24px 24px;
  }
  .sg-intro-box::before{
    top:18px;
    bottom:18px;
    width:5px;
  }
  .sg-intro-text{
    font-size:18px;
    line-height:1.7;
  }
  .sg-greeting-clean .inner{
    flex-direction:column;
  }
  .sg-greeting-clean .photo{
    max-width:260px;
    margin:0 auto 20px auto;
  }
  .sg-greeting-clean .sign{
    text-align:center;
  }
  .econ-lang-top{
    justify-content:flex-end;
    margin-bottom:14px;
  }
  a.econ-lang-btn{
    min-width:88px;
    padding:8px 14px;
    font-size:13px;
  }
}

/* =========================
   History 페이지 전용
   ========================= */
.sg-history-page{
  position:relative;
}

.sg-history{
  line-height:1.7;
  font-size:14.5px;
  color:#222;
}

.sg-history .objImg{
  margin-right:32px;
}

.sg-history .objImg img{
  border-radius:6px;
}

.sg-history .objTxt p{
  margin-bottom:14px;
}

.sg-video-wrap{
  margin-top:40px;
  text-align:center;
}

.sg-history .sg-video-btn{
  display:inline-block;
  padding:14px 26px;
  background:#f6f6f6;
  border:1.5px solid #920d14;
  color:#920d14 !important;
  font-weight:700;
  font-size:15px;
  letter-spacing:-0.2px;
  text-decoration:none !important;
  border-radius:6px;
  transition:all .18s ease;
}

.sg-history .sg-video-btn:hover{
  background:#920d14;
  color:#ffffff !important;
  box-shadow:0 6px 16px rgba(146,13,20,.25);
  transform:translateY(-2px);
}

.econ-lang-en .txt0 p{
  word-break:keep-all;
  line-height:1.9;
}

@media (max-width:860px){
  .sg-history .objImg{
    margin-right:0;
    margin-bottom:20px;
  }

  .sg-history .objImg img{
    max-width:100%;
    height:auto !important;
  }
}


/* =========================================
   메인 Upcoming Events 모바일 깨짐 보정
========================================= */
@media (max-width:768px){

  body.econ .main-upcoming-events,
  body.econ .upcoming-events,
  body.econ #upcomingEvents,
  body.econ .main-event-wrap{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.econ .main-upcoming-events .title,
  body.econ .upcoming-events .title,
  body.econ #upcomingEvents .title,
  body.econ .main-event-wrap .title{
    font-size: 18px !important;
    line-height: 1.25 !important;
    word-break: keep-all !important;
  }

  body.econ .main-upcoming-events .view-more,
  body.econ .upcoming-events .view-more,
  body.econ #upcomingEvents .view-more,
  body.econ .main-event-wrap .view-more{
    font-size: 14px !important;
  }

  body.econ .main-upcoming-events .event-list,
  body.econ .upcoming-events .event-list,
  body.econ #upcomingEvents .event-list,
  body.econ .main-event-wrap .event-list{
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  body.econ .main-upcoming-events .event-card,
  body.econ .upcoming-events .event-card,
  body.econ #upcomingEvents .event-card,
  body.econ .main-event-wrap .event-card{
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 16px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }

  body.econ .main-upcoming-events .event-card-inner,
  body.econ .upcoming-events .event-card-inner,
  body.econ #upcomingEvents .event-card-inner,
  body.econ .main-event-wrap .event-card-inner{
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    height: auto !important;
  }

  body.econ .main-upcoming-events .event-date,
  body.econ .upcoming-events .event-date,
  body.econ #upcomingEvents .event-date,
  body.econ .main-event-wrap .event-date{
    width: 72px !important;
    min-width: 72px !important;
    height: 72px !important;
    border-radius: 18px !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
  }

  body.econ .main-upcoming-events .event-date strong,
  body.econ .upcoming-events .event-date strong,
  body.econ #upcomingEvents .event-date strong,
  body.econ .main-event-wrap .event-date strong{
    font-size: 28px !important;
  }

  body.econ .main-upcoming-events .event-title,
  body.econ .upcoming-events .event-title,
  body.econ #upcomingEvents .event-title,
  body.econ .main-event-wrap .event-title{
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    word-break: keep-all !important;
  }

  body.econ .main-upcoming-events .event-desc,
  body.econ .upcoming-events .event-desc,
  body.econ #upcomingEvents .event-desc,
  body.econ .main-event-wrap .event-desc{
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    word-break: keep-all !important;
  }

  body.econ .main-upcoming-events .event-thumb,
  body.econ .upcoming-events .event-thumb,
  body.econ #upcomingEvents .event-thumb,
  body.econ .main-event-wrap .event-thumb,
  body.econ .main-upcoming-events .event-card img,
  body.econ .upcoming-events .event-card img,
  body.econ #upcomingEvents .event-card img,
  body.econ .main-event-wrap .event-card img{
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    display: block !important;
  }

  body.econ .main-upcoming-events .event-thumb .more,
  body.econ .upcoming-events .event-thumb .more,
  body.econ #upcomingEvents .event-thumb .more,
  body.econ .main-event-wrap .event-thumb .more{
    transform: scale(.82) !important;
  }
}

/* =========================================
   서강대 기본 테이블 + 모바일 개선 최종본
========================================= */
.con-table{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  margin:30px 0 0;
}

.con-table::after{
  content:"";
  display:block;
  height:1px;
}

.con-table table{
  width:100%;
  min-width:1100px;
  table-layout:fixed;
  border-collapse:collapse;
  background:#fff;
}

.con-table table th,
.con-table table td{
  padding:14px 10px;
  text-align:center;
  vertical-align:middle;
  word-break:keep-all;
  line-height:1.6;
  transition:background-color .2s ease;
}

.con-table table th{
  white-space:normal;
}

.nowrap{
  white-space:nowrap !important;
}

.align-l{
  text-align:left !important;
  white-space:normal !important;
}

.con-table table tbody tr:hover > th,
.con-table table tbody tr:hover > td{
  background:#f8f8f8;
}

@media (max-width:1280px){
  .con-table{
    margin-top:24px;
  }

  .con-table table{
    min-width:1050px;
  }

  .con-table table th,
  .con-table table td{
    padding:13px 9px;
    font-size:15px;
  }
}

@media (max-width:768px){
  .con-table{
    margin-top:20px;
    border-radius:0;
  }

  .con-table table{
    min-width:980px;
  }

  .con-table table th,
  .con-table table td{
    padding:12px 8px;
    font-size:14px;
    line-height:1.5;
  }

  .con-table table tbody tr:hover > th,
  .con-table table tbody tr:hover > td{
    background:inherit;
  }

  .con-table table tbody tr:active > th,
  .con-table table tbody tr:active > td{
    background:#f8f8f8;
  }
}

@media (max-width:480px){
  .con-table table{
    min-width:920px;
  }

  .con-table table th,
  .con-table table td{
    padding:10px 7px;
    font-size:13px;
  }
}