@import url(./fonts.css);

* {
  box-sizing: border-box;
  letter-spacing: -.05rem;
}

:root {
  --bg: #ffffff;
  --text: #000000;
  --headerBg: #eae7e5;
  --navBg: #f8f8f8;
  --navBorder: #c9c9c9;
  --navText: #222222;
  --fontOne: "SamsungOneKorean";

  --family-menuBg: #c8d5c5;
  --family-border: #a8bba3;
  --family-title: #08231c;
  --family-desc: #0b5637; 
  --family-hero-title: #061a15;
  --family-hero-desc: #084029;
  --family-media-title: #08231c;
  --family-media-desc: #77a485;
  --family-divider: #ebf1e7;
  
  --enter-menuBg: #eee2c5;
  --enter-border: #e2cfa3;
  --enter-title: #372511;
  --enter-desc: #795223;
  --enter-anc-desc: #b76002;
  --enter-hero-title: #291c0d;
  --enter-hero-desc: #5b3d1a;
  --enter-media-title: #372511;
  --enter-media-desc: #ec8700;
  --enter-divider: #faf7f0;
  
  --smart-menuBg: #c5d4d7;
  --smart-border: #a3b9be;
  --smart-title: #0b1e24;
  --smart-desc: #434f6c;
  --smart-anc-desc: #80b2ce;
  --smart-hero-title: #08161b;
  --smart-hero-desc: #323b51;
  --smart-media-title: #0b1e24;
  --smart-media-desc: #80b2ce;
  --smart-divider: #ebf0f4;
  
  --cooking-menuBg: #eed1ce;
  --cooking-border: #e2b5b0;
  --cooking-title: #301207;
  --cooking-desc: #8c3823;
  --cooking-anc-desc: #e1948e;
  --cooking-hero-title: #240d05;
  --cooking-hero-desc: #692a1a;
  --cooking-media-title: #301207;
  --cooking-media-desc: #e1948e;
  --cooking-divider: #ebf0f4;
}

body {
  font-family: "SamsungOneKorean","SamsungSharpSans",    
  '맑은 고딕', 'malgun gothic',        
  'Apple SD Gothic Neo', 'Apple SD 산돌고딕 Neo',        
  'Microsoft NeoGothic',         
  'Droid sans', sans-serif;
  overflow-x: hidden;
  color: var(--text);
}


h3,h2 {
  font-family: "SamsungSharpSans", "SamsungOneKorean", 
  '맑은 고딕', 'malgun gothic',        
  'Apple SD Gothic Neo', 'Apple SD 산돌고딕 Neo',        
  'Microsoft NeoGothic',         
  'Droid sans', sans-serif;  
  color: var(--text);
}

.section-banner .quick-list .title{
  font-family: "SamsungSharpSans", sans-serif;
}


.nav .title{
  font-family: "SamsungSharpSans", sans-serif;
}

#title-font{
  font-family: "SamsungSharpSans", sans-serif; 
}

#title-font16{
  font-family: "SamsungSharpSans", sans-serif; 
  font-size: 1.6rem;
}


body.fixed {
  overflow: hidden;
}
body.pc {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f7f4f1 url(../images/common/pc.png) 50% 50% / contain no-repeat;
}

#wrapper {
  display: none;
  position: relative;
  width: 100%;
  min-width: 360px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 40px;
  background-color: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-in-out;
}

#wrapper.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Splash */
#splash {
  position: relative;
  width: 100vw;
  top: -2px;
  padding-bottom: 195%;
}

#splash > video {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* //Splash */

.header {
  position: fixed;
  width: 100%;
  height: 48px;
  background-color: var(--bg);
  z-index: 10;
}

.header.main {
  background-color: var(--headerBg);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 10px;
  height: 100%;
}

.header-logo > a {
  display: block;
  width: 120px;
  height: 30px;
  background: transparent url(../images/common/logo.png) 50% 50% / 106px auto no-repeat;
  overflow: hidden;
  text-indent: -100%;
}

/* header-menu animation */
.header-menu {
  width: 16px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.header-menu.open {
  width: 17px;
}

.header-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.header-menu span:nth-child(1) {
  top: 0px;
}

.header-menu span:nth-child(2),
.header-menu span:nth-child(3) {
  top: 6px;
}

.header-menu span:nth-child(4) {
  top: 12px;
}

.header-menu.open span:nth-child(1) {
  top: 6px;
  width: 0%;
  left: 50%;
}

.header-menu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header-menu.open span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}
/* //header-menu animation */

/* nav */
.nav {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: 0.2s 0.25s ease-in-out;
  -moz-transition: 0.2s 0.25s ease-in-out;
  -o-transition: 0.2s 0.25s ease-in-out;
  transition: 0.2s 0.25s ease-in-out;
}

.nav.open {
  display: block;
  opacity: 1;
}

.nav .dimmed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.75);
  z-index: 1;
}

.nav-list {
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
  position: fixed;
  width: 100%;
  height: 0;
  padding: 0 20px;
  background-color: var(--navBg);
  overflow: hidden;
  z-index: 1;
}

.nav.open .nav-list {
  height: auto;
}

.nav-item {
  width: 100%;
  padding: 18px;
  padding-right: 0;
  border-bottom: 1px solid var(--navBorder);
}

.nav-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navText);
}

.nav-item .nav-wrapper .title {
  margin-bottom: 4px;
  padding: 6px 0 0;
  font-size: 20px;
  font-weight: 700;
  font-size: 1.6rem;
}

.nav-item .nav-wrapper .desc {
  font-size: 20px;
  font-weight: 300;
  font-size: .8rem;
  color: #626262;
}

.nav-item .arrow {
  display: block;
  width: 8px;
  height: 13px;
  margin-right: 3px;
  background: url(../images/common/nav-arrow.png) 50% 50% / 8px 13px no-repeat;
}
/* //nav */

/* Contents Container */
.container {
  position: relative;
  padding-top: 48px;
}

.container-wrapper {
  padding: 10px;
}

/* card menu */
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px; 
  padding: 10px 0;
}

.menu-item {
  position: relative;
  height: 250px;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
}

.menu-item#menuFamily {background-color: var(--family-border); border-color: var(--family-border);}
.menu-item#menuEnter {background-color: var(--enter-border); border-color: var(--enter-border);}
.menu-item#menuSmart {background-color: var(--smart-border); border-color: var(--smart-border);}
.menu-item#menuCooking {background-color: var(--cooking-border); border-color: var(--cooking-border);}
.menu-item#menuFamily .title {color: var(--family-title);}
.menu-item#menuEnter .title {color: var(--enter-title);}
.menu-item#menuSmart .title {color: var(--smart-title);}
.menu-item#menuCooking .title {color: var(--cooking-title);}
.menu-item#menuFamily .desc {color: var(--family-desc);}
.menu-item#menuEnter .desc {color: var(--enter-desc);}
.menu-item#menuSmart .desc {color: var(--smart-desc);}
.menu-item#menuCooking .desc {color: var(--cooking-desc);}

.menu-item .menu-wrapper {
  width: 100%;
  height: 210px;
}

.menu-item#menuFamily .menu-wrapper {background: var(--family-menuBg) url(../images/family/bg-menu.png) center bottom / cover no-repeat;}
.menu-item#menuEnter .menu-wrapper {background: var(--enter-menuBg) url(../images/enter/bg-menu.png) center bottom / cover no-repeat;}
.menu-item#menuSmart .menu-wrapper {background: var(--smart-menuBg) url(../images/smart/bg-menu.png) center bottom / cover no-repeat;}
.menu-item#menuCooking .menu-wrapper {background: var(--cooking-menuBg) url(../images/cooking/bg-menu.png) center bottom / cover no-repeat;}

.menu-item .menu-wrapper .title {
  padding: 26px 5px 8px 5px;
  font-size: 1.5rem;
  font-weight: 700;
}

.menu-item .menu-wrapper .desc {
  padding: 0 5px;
  font-size: .8rem;
  font-weight: 600;
}

.menu-item .icon {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 19px;
  height: 19px;
}

.menu-item#menuFamily .icon {background: url(../images/family/menu-icon.png) 50% 50% / contain no-repeat;}
.menu-item#menuEnter .icon {background: url(../images/enter/menu-icon.png) 50% 50% / contain no-repeat;}
.menu-item#menuSmart .icon {background: url(../images/smart/menu-icon.png) 50% 50% / contain no-repeat;}
.menu-item#menuCooking .icon {background: url(../images/cooking/menu-icon.png) 50% 50% / contain no-repeat;}

/* conponents */
.outro-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  font-weight: 700;
  font-size: .8rem;
}

.outro-link > a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.outro-link > a span {
  display: inline-block;
}

.outro-link .logo {
  width: 68px;
  height: 12px;
  margin-right: 6px;
  background: url(../images/common/s-logo.png) 50% 50% / contain no-repeat;
  overflow: hidden;
  text-indent: -100%;
}

.outro-link .text {
  margin-bottom: -2px;
}

.outro-link .arrow {
  width: 5px;
  height: 8px;
  margin-left: 4px;
  background: url(../images/common/nav-arrow.png) 50% 50% / contain no-repeat;
}

.nav-list .outro-link {
  margin: 20px 0;
}

#floatingTop {
  position: fixed;
  /* z-index: 99; */
  bottom: 0;
  left: 0;
  right: 0;
  opacity:0;
  visibility: hidden;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

#floatingTop.active {
  opacity: 1;
  visibility: visible;
}

#floatingTop > a {
  width: 74px;
  height: 74px;
  border: 1px solid #eae7e5;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.1);
  -moz-box-shadow: 1px 1px 3px rgba(0,0,0,.1);
  box-shadow: 1px 1px 3px rgba(0,0,0,.1);
  background:rgba(255,255,255,.75) url(../images/common/icon-top.png) 50% 50% / 30px 30px no-repeat;
  -webkit-background-size: 30px auto;
  background-size: 30px auto;
  -webkit-border-radius: 50% 50%;
  -moz-border-radius: 50% 50%;
  border-radius: 50% 50%;
  text-indent: -99em;
  overflow: hidden;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
#floatingTop > a:hover {
  background-color: #fff;
}

#floatingTop.up > a {
  bottom: 70px;
}
/* //conponents */

/* section */
.section-wrapper {
  margin: 0 10px;
}

.section-hero {
  width: 100%;
  padding-bottom: 123%;
  text-align: center;
}

#pageFamily .section-hero {background: url(../images/family/bg-hero.png) 50% 50% / cover no-repeat;}
#pageEnter .section-hero {background: url(../images/enter/bg-hero.png) 50% 50% / cover no-repeat;}
#pageSmart .section-hero {background: url(../images/smart/bg-hero.png) 50% 50% / cover no-repeat;}
#pageCooking .section-hero {background: url(../images/cooking/bg-hero.png) 50% 50% / cover no-repeat;}

.section-hero .title {
  padding: 50px 20px 7px;
  font-size: 2.6rem;
  font-weight: 700;
}

#pageFamily .section-hero .title {color: var(--family-hero-title)}
#pageEnter .section-hero .title {color: var(--enter-hero-title)}
#pageSmart .section-hero .title {color: var(--smart-hero-title)}
#pageCooking .section-hero .title {color: var(--cooking-hero-title)}

.section-hero .desc {
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 600;
}

#pageFamily .section-hero .desc {color: var(--family-hero-desc)}
#pageEnter .section-hero .desc {color: var(--enter-hero-desc)}
#pageSmart .section-hero .desc {color: var(--smart-hero-desc)}
#pageCooking .section-hero .desc {color: var(--cooking-hero-desc)}

.section-anchor {
  padding: 24px 0;
  margin-bottom: 24px;
}

.anchor-list {
  position: relative;
  width: 100%;
  padding: 0 18px;
}

.anchor-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 13px 0;
  border-bottom: 1px solid transparent;
}

#pageFamily .anchor-item > a {border-color: var(--family-divider);}
#pageEnter .anchor-item > a {border-color: var(--enter-divider);}
#pageSmart .anchor-item > a {border-color: var(--smart-divider);}
#pageCooking .anchor-item > a {border-color: var(--cooking-divider);}

.anchor-item .lt-box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.anchor-item .lt-box .icon {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 50% 50%;
  background-size: contain;
}

#pageFamily .anchor-item.item1 .lt-box .icon {background-image: url(../images/family/sub-icon1.png);}
#pageFamily .anchor-item.item2 .lt-box .icon {background-image: url(../images/family/sub-icon2.png);}
#pageFamily .anchor-item.item3 .lt-box .icon {background-image: url(../images/family/sub-icon3.png);}
#pageFamily .anchor-item.item4 .lt-box .icon {background-image: url(../images/family/sub-icon4.png);}
#pageEnter .anchor-item.item1 .lt-box .icon {background-image: url(../images/enter/sub-icon1.png);}
#pageEnter .anchor-item.item2 .lt-box .icon {background-image: url(../images/enter/sub-icon2.png);}
#pageEnter .anchor-item.item3 .lt-box .icon {background-image: url(../images/enter/sub-icon3.png);}
#pageEnter .anchor-item.item4 .lt-box .icon {background-image: url(../images/enter/sub-icon4.png);}
#pageSmart .anchor-item.item1 .lt-box .icon {background-image: url(../images/smart/sub-icon1.png);}
#pageSmart .anchor-item.item2 .lt-box .icon {background-image: url(../images/smart/sub-icon2.png);}
#pageSmart .anchor-item.item3 .lt-box .icon {background-image: url(../images/smart/sub-icon3.png);}
#pageSmart .anchor-item.item4 .lt-box .icon {background-image: url(../images/smart/sub-icon4.png);}
#pageSmart .anchor-item.item5 .lt-box .icon {background-image: url(../images/smart/sub-icon5.png);}
#pageCooking .anchor-item.item1 .lt-box .icon {background-image: url(../images/cooking/sub-icon1.png);}
#pageCooking .anchor-item.item2 .lt-box .icon {background-image: url(../images/cooking/sub-icon2.png);}
#pageCooking .anchor-item.item3 .lt-box .icon {background-image: url(../images/cooking/sub-icon3.png);}

.anchor-item .lt-box .desc {
  font-size: .9rem;
  font-weight: 500;
  line-height: 1;
}

.anchor-item .lt-box .desc .title {
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 700;
}

#pageFamily .anchor-item .lt-box .desc {color: var(--family-desc)}
#pageEnter .anchor-item .lt-box .desc {color: var(--enter-anc-desc)}
#pageSmart .anchor-item .lt-box .desc {color: var(--smart-anc-desc)}
#pageCooking .anchor-item .lt-box .desc {color: var(--cooking-anc-desc)}
#pageFamily .anchor-item .lt-box .desc .title {color: var(--family-title)}
#pageEnter .anchor-item .lt-box .desc .title {color: var(--enter-title)}
#pageSmart .anchor-item .lt-box .desc .title {color: var(--smart-title)}
#pageCooking .anchor-item .lt-box .desc .title {color: var(--cooking-title)}

.anchor-item .rt-box .icon {
  display: block;
  width: 9px;
  height: 16px;
  background: url(../images/common/anc-arrow.png) 50% 50% / contain no-repeat;
}

/* section contents */
.contents {
  padding: 10px 0;
}

/* media box contents */
.media-box {
  position: relative;
  width: 100%;
  margin-bottom: 5px;
  border-radius: 12px;
  background-color: white;
  overflow: hidden;
}

.family-share .media-box {
  padding-bottom: 56.2%;
}

.smart-things .media-box,
.enter-tvplus .media-box,
.enter-cover .media-box {
  padding-bottom: 56.5%;
}

.family-board .media-box,
.family-calendar .media-box,
.enter-smartview .media-box,
.enter-music .media-box,
.smart-life .media-box,
.smart-bixby .media-box,
.alexa .media-box,
.smart-hub .media-box {
  padding-bottom: 100%;
}

.cooking-viewin .media-box {
  padding-bottom: 145%;
}

.cooking-shop .media-box {
  padding-bottom: 128.8%;
}

.cooking-recipe .media-box,
.family-memo .media-box {
  padding-bottom: 100%;
}

.media-box > * {
  position: absolute;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.media-box > video {
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* //media box contents */

.media-wrapper {
  padding: 16px 18px;
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-bottom: 14px;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1;
}

.media-header .title {
  margin: 8px 0 4px;
  font-size: 1.8rem;
  font-weight: 700;
}

#pageFamily .media-header {color: var(--family-media-desc);}
#pageEnter .media-header {color: var(--enter-media-desc);}
#pageSmart .media-header {color: var(--smart-media-desc);}
#pageCooking .media-header {color: var(--cooking-media-desc);}
#pageFamily .media-header .title {color: var(--family-media-title);}
#pageEnter .media-header .title {color: var(--enter-media-title);}
#pageSmart .media-header .title {color: var(--smart-media-title);}
#pageCooking .media-header .title {color: var(--cooking-media-title);}

/* media list icon */
.media-header .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.family-board .media-header .icon {background-image: url(../images/family/sub-icon1.png);}
.family-share .media-header .icon {background-image: url(../images/family/sub-icon2.png);}
.family-calendar .media-header .icon {background-image: url(../images/family/sub-icon3.png);}
.family-memo .media-header .icon {background-image: url(../images/family/sub-icon4.png);}
.enter-tvplus .media-header .icon {background-image: url(../images/enter/sub-icon1.png);}
.enter-music .media-header .icon {background-image: url(../images/enter/sub-icon3.png);}
.enter-smartview .media-header .icon {background-image: url(../images/enter/sub-icon2.png);}
.enter-cover .media-header .icon {background-image: url(../images/enter/sub-icon4.png);}
.smart-things .media-header .icon {background-image: url(../images/smart/sub-icon1.png);}
.smart-life .media-header .icon {background-image: url(../images/smart/sub-icon2.png);}
.smart-hub .media-header .icon {background-image: url(../images/smart/sub-icon3.png);}
.smart-bixby .media-header .icon {background-image: url(../images/smart/sub-icon4.png);}

.alexa .media-header .icon {background-image: url(../images/smart/sub-icon5.png);}

.cooking-viewin .media-header .icon {background-image: url(../images/cooking/sub-icon1.png);}
.cooking-recipe .media-header .icon {background-image: url(../images/cooking/sub-icon2.png);}
.cooking-shop .media-header .icon {background-image: url(../images/cooking/sub-icon3.png);}
/* //media list icon */

.media-body {
  padding-bottom: 24px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
}

.media-body > p {
  margin-bottom: .9rem;
}

.media-body .extra {
  font-size: .8rem;
  color: #7b7b7b;
}

.media-body .extra > p {
  margin-bottom: 6px;
}

.media-body .extra > p > a {
  color: var(--text);
}

.app-sub-list {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-weight: 500;
  color: #6f6f6f;
}

.app-sub-list > li {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: auto;
/*  margin-right: 20px;*/
  margin-right: 13px;
}

.app-sub-list > li .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.app-sub-list.share > li:nth-child(1) .icon {
  background: url(../images/family/icon-app1.png) 50% 50% / contain no-repeat;
}
.app-sub-list.share > li:nth-child(2) .icon {
  background: url(../images/family/icon-app2.png) 50% 50% / contain no-repeat;
}
.app-sub-list.share > li:nth-child(3) .icon {
  background: url(../images/family/icon-app3.png) 50% 50% / contain no-repeat;
}
.app-sub-list.music > li:nth-child(1) .icon {
  background: url(../images/enter/icon-app1.png) 50% 50% / contain no-repeat;
}
.app-sub-list.music > li:nth-child(2) .icon {
  background: url(../images/enter/icon-app2.png) 50% 50% / contain no-repeat;
}
.app-sub-list.music > li:nth-child(3) .icon {
  background: url(../images/enter/icon-app3.png) 50% 50% / contain no-repeat;
}
.app-sub-list.shop > li:nth-child(1) .icon {
  background: url(../images/cooking/icon-app1.png) 50% 50% / contain no-repeat;
}
.app-sub-list.shop > li:nth-child(2) .icon {
  background: url(../images/cooking/icon-app2.png) 50% 50% / contain no-repeat;
}

.app-sub-list > li.exp {
  justify-self: flex-end;
  width: 50%;
  margin-right: 0;
  font-size: .8rem;
  color: #7b7b7b;
}

hr {
  margin: 0 14px;
}

#pageFamily hr {border-top: 1px solid var(--family-divider);}
#pageEnter hr {border-top: 1px solid var(--enter-divider);}
#pageSmart hr {border-top: 1px solid var(--smart-divider);}
#pageCooking hr {border-top: 1px solid var(--cooking-divider);}

.section-banner {
  padding-top: 20px;
}

.quick-list {
  display: flex;
  flex-flow: column nowrap;
}

.quick-item {
  margin-bottom: 10px;
}

.quick-item > a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 100%;
  height: 130px;
  padding: 0 50px 0 28px;
  border-radius: 14px;
  background-size: 140px 130px;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.quick-item.family > a {
  border: 1px solid #bac9b6;
  background-color: #c8d5c5;
  background-image: url(../images/family/bg-banner.png);
}
.quick-item.family .title {
  color: var(--family-title);
}
.quick-item.family .desc {
  color: var(--family-desc);
}

.quick-item.enter > a {
  border: 1px solid #e9d9b6;
  background-color: #eee2c5;
  background-image: url(../images/enter/bg-banner.png);
}
.quick-item.enter .title {
  color: var(--enter-title);
}
.quick-item.enter .desc {
  color: var(--enter-desc);
}

.quick-item.smart > a {
  border: 1px solid #b6c8cc;
  background-color: #c5d4d7;
  background-image: url(../images/smart/bg-banner.png);
}
.quick-item.smart .title {
  color: var(--smart-title);
}
.quick-item.smart .desc {
  color: var(--smart-desc);
}

.quick-item.cooking > a {
  border: 1px solid #e9c4c1;
  background-color: #eed1ce;
  background-image: url(../images/cooking/bg-banner.png);
}
.quick-item.cooking .title {
  color: var(--cooking-title);
}
.quick-item.cooking .desc {
  color: var(--cooking-desc);
}

.quick-item .title {
  margin: 8px 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.quick-item .desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.life-sub-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.life-sub-item.item1 .image {background-image: url(../images/smart/bg-sub1.png);}
.life-sub-item.item2 .image {background-image: url(../images/smart/bg-sub2.png);}
.life-sub-item.item3 .image {background-image: url(../images/smart/bg-sub3.png);}
.life-sub-item.item4 .image {background-image: url(../images/smart/bg-sub4.png);}
.life-sub-item.item5 .image {background-image: url(../images/smart/bg-sub5.png);}
.life-sub-item.item6 .image {background-image: url(../images/smart/bg-sub6.png);}

.life-sub-item .sub-wrapper {
  padding: 13px 18px 15px;
}

.life-sub-item .title {
  margin: 8px 0 4px;
  margin-bottom: 14px;
  font-size: 1.8rem;
  font-weight: 700;
}

.life-sub-item .desc {
  padding-bottom: 26px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
}