/* Resets */
* {
    padding: 0;
    border: 0;
    margin: 0;
    font-family: 'Roboto', 'Noto Sans KR' ,sans-serif;
}

body{
    padding-top: 56px;
}
body::-webkit-scrollbar{
    display: none;
}

a {
    color: inherit;
    font-family: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    -ms-interpolation-mode:bicubic
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

select {
    background-color: transparent;
    outline: none;
    cursor: pointer;
    border-radius: 0;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button {
    background-color: transparent;
    cursor: pointer;
    overflow: visible;
    outline: none;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-family: inherit;
    font-weight: normal;
}

em{
    font-style: normal;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Typograghy */
:root {
    font-size: 16px;
}
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://example.com/MaterialIcons-Regular.eot); /* For IE6-8 */
    src: local('Material Icons'),
         local('MaterialIcons-Regular'),
         url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
         url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
         url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}


/* Layouts */
.l_wrapper {
    max-width: 375px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.l_row {}
.l_col {
    float: left;
    box-sizing: border-box;
}
.l_col_12_12 { width: 100%; }
.l_col_11_12 { width: 91.66666667%; }
.l_col_10_12 { width: 83.33333333%; }
.l_col_9_12 { width: 75%; }
.l_col_8_12 { width: 66.66666667%; }
.l_col_7_12 { width: 58.33333333%; }
.l_col_6_12 { width: 50%; }
.l_col_5_12 { width: 41.66666667%; }
.l_col_4_12 { width: 33.33333333%; }
.l_col_3_12 { width: 25%; }
.l_col_2_12 { width: 16.66666667%; }
.l_col_1_12 { width: 8.33333333%; }


/* Commons */
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}
.clearfix::after {
    clear: both;
}

/* Components */

/*================================ i n d e x p a g e ====================================*/
.hidden{
    height:100%; 
    min-height:100%; 
    overflow:hidden 
    !important; touch-action:none;
}

/* Intro */
.intro{
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
}
.intro-inside{
    width: inherit;
    height: inherit;
    background-image: url(image/main/main_cover.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.intro-logo{
    position: absolute;
    left: 50%;
    top: 110px;
    transform: translateX(-50%);
}
.intro-logo img{
    width: 88px;
}
.intro-logo h1{
    display: inline-block;
    color: #EC6608;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1;
    text-align: left;
    padding: 6px 0;
}
.intro-logo h1 span{
    font-family: 'Arial';
    display: block;
    opacity: 0;
}
.intro-logo h1 span.show{
    opacity: 1;
}


/* Header */
.header{
    width: 100%;
    height: 56px;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #fff;
    transition: all .3s ease-in-out;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.header.index{
    opacity: 0;
}
.header.index.show{
    opacity: 1;
}
.header-logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
.header-logo img{
    width: 44px;
    height: 38px;
}

.header-menu{
    position: absolute;
    right: 0;
    width: 56px;
    height: 56px;
    text-align: center;
    cursor: pointer;
}
.header-menu span{
    color: #EC6608;
    font-weight: bold;
    line-height: 56px;
}

.header-side{
    position: fixed;
    width: 80vw;
    height: 100vh;
    background-color: #EC6608;
    z-index: 9999;
    top: 0;
    right: -100vw;
    transition: all .5s;
    padding: 0 20px;
    box-sizing: border-box;
}
.header-side.move{
    right: 0;
}
.header-side-top{
    margin: 0 -20px;
    background-color: #fff;
    height: 56px;
    position: relative;
}
.header-side-top-logo{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.header-side-top-logo img{
    width: 44px;
    height: 38px;
}
.header-side-top-btn{
    position: absolute;
    top: 0;
    right: 0;
} 
.header-side-top-btn{
    width: 56px;
    height: 56px;
    text-align: center;
}
.header-side-top-btn span{
    color: #EC6608;
    font-weight: bold;
    line-height: 56px;
}

.header-side-nav{   
    margin-top: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header-side-nav li{
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    cursor: pointer;
}
.header-side-sns{
    margin-top: 20px;
    color: #fff;
}
.header-side-sns h3{
    font-size: 18px;
    margin-bottom: 20px;
}
.header-side-sns li{
    margin-bottom: 18px;
}
.header-powerbrand{
    background-color: #D55901;
    border-radius: 3px;
    color: #FFE5BE;
    margin-top: 10px;
}
.header-powerbrand ul{
    padding: 18px;
    box-sizing: border-box;
}
.header-powerbrand li{
    padding: 0;
    font-size: 16px;
    position: relative;
    margin-bottom: 16px;
}
.header-powerbrand li:last-child{
    margin-bottom: 0;
}
.header-powerbrand li a{
    margin-left: 6px;
}
.header-powerbrand li::before{
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    background-color:  #FFE5BE;
    top: 50%;
    left: 0;
    transform: translate(-50%);
}

.header-side-bottom{
    margin-top: 20px;
    color: #fff;
}
.header-side-bottom-btn{
    height: 38px;
    text-align: center;
}
.header-side-bottom-btn a{
    display: block;
    border: 1px solid #fff;
    line-height: 38px;
    margin-right: 4px;
    border-radius: 3px;
}
.header-side-bottom-btn:nth-child(2) .header-side-bottom-btn a{
    margin-right: 0;
}

.header-side-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    margin-top: -56px;
    display: none;
}

/* main */
.main{
    width: 100vw;
    height: 100vh;
    position: relative;
    margin-top: -56px;
}
.main-logo{
    position: absolute;
    top: 30px;
    right: 20px;
    width: 97px;
    height: 40px;
}
.main-cover{
    width: inherit;
    height: inherit;
    background-image: url(image/main/main_cover.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.main-inside{
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
}
.main-inside-title{
    position: absolute;
    left: 34px;
    top: 60px;
}
.main-inside-title h2{
    font-size: 22px;
    line-height: 24px;
    font-weight: bold;
}
.main-inside-title p{
    font-size: 12px;
    margin-top: 7px;
}
.main-inside-title p:last-child{
    font-weight: lighter;
    font-size: 10px;
    margin-top: 27px;
}

/* Contents */
section .l_wrapper{
    padding: 0 20px;
}

/*title*/
.title{
    margin-top: 50px;
}
.title h2{
    font-size: 28px;
    margin-bottom: 23px;
    line-height: 1.2;
}
.title h2 strong{
    display: block;
    margin-bottom: 10px
}
.title p{
    word-break: keep-all;
    margin-bottom: 16px;
}
.title p:last-child{
    font-weight: bold;
    margin-bottom: 0;
}

/*banner*/
.banner{
    margin: 50px -20px 0 -20px;
}
.banner-inside{
    height: 540px;
    background-image: url(image/main/banner_cover.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -170px center;
    position: relative;
    padding: 0 20px;
    position: relative;
    color: #fff;
}
.history-title{
    position: absolute;
    left: 20px;
    top: 30px;
    border-bottom: 2px solid #fff;
}
.history-title h3{
    font-size: 22px;
}
.history-container{
    padding-top: 80px;
    box-sizing: border-box;
}
.history-container ul{
    position: relative;
    width: 80%;
}
.history-container li{
    font-size: 14px;
    line-height: 1.4;
    word-break: keep-all;
    padding-bottom: 1rem;
    position: relative;
    padding-left: 20px;
    border-left: 1px solid #fff;
}
.history-container li::before{
    width: 10px;
    height: 10px;
    position: absolute;
    left: -12px;
    top: -7px;
}
.history-container li:nth-child(1)::before{
    content: url(image/main/icon/icon_milestones_01.png);
}
.history-container li:nth-child(2)::before{
    content: url(image/main/icon/icon_milestones_02.png);
}
.history-container li:nth-child(3)::before{
    left: -6px;
    content: url(image/main/icon/icon_milestones_03.png);
}
.history-container li:nth-child(4)::before{
    left: -6px;
    content: url(image/main/icon/icon_milestones_04.png);
}
.history-container li:nth-child(5)::before{
    left: -6px;
    content: url(image/main/icon/icon_milestones_05.png);
}
.history-container li:nth-child(6)::before{
    left: -6px;
    content: url(image/main/icon/icon_milestones_06.png);
}

/* content */
.content{
    margin-top: 50px;
    word-break: keep-all;
}
.content h3{
    color: #EC6608;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}
.content-detail p{
    line-height: 26px;
}

/* profile */
.detail .content:nth-child(2) h3{
    display: inline-block;
}
.detail .content:nth-child(2) h3::after{
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #E5E5E5;
    margin: 0 12px;
}
.content-title span{
    color: #666666;
    font-size: 12px;
}
.content-profile{
    margin-bottom: 12px;
}
.content-profile p{
    color: #000;
    font-size: 14px;
    margin-bottom: 20px;
}
.profile-box{
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 12px;
}
.profile-box img{
    width: 44px;
    height: 44px;
    margin-right: 25px;
}
.profile-box span{
    line-height: 44px;
    font-size: 13px;
    margin-right: 10px;
}
.content-profile:nth-child(1) .profile-box{
    color: #AB0065;
}
.content-profile:nth-child(2) .profile-box{
    color: #DB0031;
}
.content-profile:nth-child(3) .profile-box{
    color: #EC6608;
}
.profile-box strong{
    font-size: 52px;
}

/*================================ w h o w e a r e ====================================*/
section.whoweare{
    margin-bottom: 80px;
}
.whoweare-content{
    margin-top: 33px;
}
.whoweare-content:nth-child(1),
.whoweare-content:nth-child(2){
    border-bottom: 1px solid #E5E5E5;
}
.whoweare-content:nth-child(2){
    padding-bottom: 32px;
}

.whoweare-title h2{
    font-size: 28px;
    font-weight: bold;
    color: #EC6608;
    margin-bottom: 25px;
}
.whoweare-content p{
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 26px;
    word-break: keep-all;
}
.whoweare-content h3{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}
.whoweare-content:last-child h3{
    font-size: 30px;
}
.whoweare-content:nth-child(3) h3{
    font-size: 20px;
    margin-bottom: 23px;
}
.whoweare-content-detail li{
    list-style: disc;
    font-size: 14px;
    line-height: 22px;
    word-break: keep-all;
    position: relative;
    margin-left: 20px;
}

/*=== box style ===*/
.whoweare-box-field{
    box-sizing: border-box;
}
.whoweare-box{
    margin-bottom: 3px;
}

.whoweare-box-inside{
    height: 260px;
}
.whoweare-box-inside:nth-child(1){
    padding-right: 3px;
}
.whoweare-box:nth-child(2) .whoweare-box-inside.left{
    float: right;
    padding-right: 0;
}
.whoweare-box:nth-child(2) .whoweare-box-inside.right{
    padding-right: 3px;
}

/* 왼쪽 큰 박스 */
.whoweare-box-inside.left div{
    height: inherit;
    text-align: center;
    padding: 40px 0;
    box-sizing: border-box;
    color: #fff;
}
.whoweare-box:nth-child(1) .whoweare-box-inside.left div{
    background-color: #5063AB;
}
.whoweare-box:nth-child(2) .whoweare-box-inside.left div{
    background-color: #AB0065;
}
.whoweare-box:nth-child(3) .whoweare-box-inside.left div{
    background-color: #65B32E;
}
.whoweare-box-inside.left strong{
    font-size: 100px;
    font-weight: 400;
}

/* 오른쪽 상/하 박스 */
.box-inside{
    height: 50%;
}
.box-inside:nth-child(1){
    box-sizing: border-box;
    padding-bottom: 3px;
}
.box-inside:nth-child(2){
    box-sizing: border-box;
}
.whoweare-box:nth-child(3) .box-inside{
    height: 100%;
}
.box-inside div{
    height: 100%;
    box-sizing: border-box;
    position: relative;
}
.whoweare-box:nth-child(1) .box-inside div{
    background-color: #F3F3FB;
}
.whoweare-box:nth-child(2) .box-inside div{
    background-color: #FAF1F7;
}
.whoweare-box:nth-child(3) .box-inside div{
    background-color: #F7FAF3;
}

.box-inside-detail{
    text-align: center;
    padding-top: 2em;
    box-sizing: border-box;
}
.box-inside-detail span{
    font-size: 12px;
    word-break: keep-all;
    display: block;
}
.whoweare-box:nth-child(1) .box-inside-detail{
    color: #5063AB;
}
.whoweare-box:nth-child(2) .box-inside-detail{
    color: #AB0065
}
.whoweare-box:nth-child(3) .box-inside-detail{
    color: #65B32E;
    padding: 40% 18px 0 18px;
}
.box-inside-detail strong{
    display: inline-block;
    font-size: 40px;
    position: relative;
}
.whoweare-box:nth-child(2) .box-inside:nth-child(2) .box-inside-detail span:nth-child(1),
.whoweare-box:nth-child(2) .box-inside:nth-child(2) .box-inside-detail span:nth-child(2){
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
}
.whoweare-box:nth-child(2) .box-inside:nth-child(2) .box-inside-detail span:nth-child(1){
    margin-right: 18px;
}
.whoweare-box:nth-child(2) .box-inside:nth-child(2) .box-inside-detail strong em:nth-child(1){
    margin-right: 25px;
}
.whoweare-box:nth-child(2) .box-inside:nth-child(2) .box-inside-detail strong em:nth-child(1)::after{
    content: "";
    position: absolute;
    top: 25%;
    left: 50%;
    width: 0.5px;
    height: 1.7em;
    background-color: #AB0065;
    display: inline-block;
}
.box-inside-detail em{
    font-size: 14px;
    font-weight: 300;
    margin-left: 5px;
}
.box-inside-detail span em{
    font-weight: 300;
}

/*achivement*/
.achivement-title{
    color: #EC6608;
}

.achivement-title-box{
    text-align: center;
    font-size: 11px;
    margin: 0 -20px;
}
.achivement-title-box li{
    height: 56px;
    padding: 14px 0;
}
.achivement-title-box li p{
    font-size: 11px;
    color: #fff;
    line-height: 14px;
}
.achivement-title-box li:nth-child(1){
    background-color: #EC6608;
}
.achivement-title-box li:nth-child(2){
    background-color: #AB0065
}
.achivement-title-box li:nth-child(3){
    background-color: #00ADC6;
}
.achivement-title-box li:nth-child(4){
    background-color: #65B32E;
}

.achivement-detail{
    margin: 0 -20px;
}
.achivement-detail-inside{
    padding: 20px;
}
.achivement-cover{
    background-image: url(image/whoweare/achivement.png);
    height: 450px;
    background-size: cover;
    background-position: center center;
}

.achivement-license{
    margin-top: 10px;
}
.achivement-license p{
    font-size: 12px;
    color: #999999;
    line-height: 20px;
}

/*================================ p o r t f o l i o ====================================*/

.portfolio-title{
    margin-top: 36px;
}
.portfolio-title h2{
    color: #EC6608;
    font-size: 28px;
    font-weight: bold;
}

.portfolio-list{
    margin: 25px -20px 97px -20px;
    border-top: 1px solid #E5E5E5;
}
.portfolio-list li{
    border-bottom: 1px solid #E5E5E5;
    box-sizing: border-box;
}
.portfolio-list-title{
    position: relative;
    width: 100%;
    height: 56px;
    padding: 16px 20px;
    box-sizing: border-box;
}
.portfolio-list-title h3.show{
    color: #fff;
}

.portfolio-list li:nth-child(1) .portfolio-list-title h3{
    color: #EC6608;
}
.portfolio-list li:nth-child(2) .portfolio-list-title h3{
    color: #AB0065;
}
.portfolio-list li:nth-child(3) .portfolio-list-title h3{
    color: #65B32E;
}
.portfolio-list li:nth-child(4) .portfolio-list-title h3{
    color: #00ADC6;
}
.portfolio-list li:nth-child(5) .portfolio-list-title h3{
    color: #FB9700;
}
.portfolio-list li:nth-child(6) .portfolio-list-title h3{
    color: #E61E41;
}
.portfolio-list-title h3 em{
    font-size: 14px;
    margin-left: 6px;
}
.portfolio-list-title span{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}
.portfolio-list-title span.move{
    transform: translateY(-50%) rotate(-180deg);
}

.portfolio-list-inside{
    padding-top: 30px;
    display: none;
}
.portfolio-detail{
    padding: 0 20px;
}
.portfolio-section{
    margin-bottom: 50px;
}
.portfolio-section-title{
    position: relative;
}
.portfolio-section-title h3{
    font-weight: bold;
    padding-bottom: 8px;
    margin: 0 -20px 0 auto;
}
.portfolio-list li:nth-child(1) .portfolio-section-title h3{
    color: #EC6608;
    border-bottom: 1px solid #EC6608;
}
.portfolio-list li:nth-child(2) .portfolio-section-title h3{
    color: #AB0065;
    border-bottom: 1px solid #AB0065;
}
.portfolio-list li:nth-child(3) .portfolio-section-title h3{
    color: #65B32E;
    border-bottom: 1px solid #65B32E;
}
.portfolio-list li:nth-child(4) .portfolio-section-title h3{
    color: #00ADC6;
    border-bottom: 1px solid #00ADC6;
}
.portfolio-list li:nth-child(5) .portfolio-section-title h3{
    color: #FB9700;
    border-bottom: 1px solid #FB9700;
}
.portfolio-list li:nth-child(6) .portfolio-section-title h3{
    color: #E61E41;
    border-bottom: 1px solid #E61E41;
}
.portfolio-section-title-btn{
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: 24px;
    font-size: 12px;
    border: 1px solid #CCCCCC;
    border-radius: 30px;
    text-align: center;
    box-sizing: border-box;
    padding-left: 10px;
}
.portfolio-section-title-btn span{
    font-size: 13px;
    vertical-align: text-bottom;
}
.portfolio-section-field{
    position: relative;
}

.portfolio-list li:nth-child(1) .portfolio-section-title::after,
.portfolio-list li:nth-child(2) .portfolio-section-title::after{
    width: 64px;
    height: 20px;
    background-color: #ED7520;
    color: #fff;
    font-size: 10px;
    position: absolute;
    border-radius: 3px;
    text-align: center;
    top: 0;
    right: 0;
    padding: 2px 0;
    box-sizing: border-box;
}
.portfolio-list li:nth-child(1) .portfolio-section:nth-child(1) .portfolio-section-title::after{
    content: "건강기능식품";
}
.portfolio-list li:nth-child(1) .portfolio-section:nth-child(2) .portfolio-section-title::after,
.portfolio-list li:nth-child(1) .portfolio-section:nth-child(3) .portfolio-section-title::after{
    content: "일반의약품";
}
.portfolio-list li:nth-child(2) .portfolio-section:nth-child(1) .portfolio-section-title::after{
    content: "의약외품";
    width: 48px;
}
.portfolio-list li:nth-child(2) .portfolio-section:nth-child(4) .portfolio-section-title::after{
    content: "의료기기";
    width: 48px
}

.portfolio-section-field img{
    margin: 0 auto;
    display: block;
}
.portfolio-section-field p{
    margin-top: 7px;
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 26px;
    word-break: keep-all;
}
.portfolio-section-field li{
    border: 0;
    padding: 0;
    color: #555555 ;
    list-style: disc;
    margin: 0 20px;
    word-break: keep-all;
}

.line-up-inside{
    width: 100%;
    background-color: #F9F8F7;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
    color: #6F625A;
}
.line-up-inside h4{
    font-weight: bold;
}
.line-up-inside p{
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 0;
    font-weight: normal;
    line-height: 20px;
    word-break: keep-all;
}

/*================================ d e t a i l * c e n t r u m * ====================================*/
.detail{
    margin-bottom: 80px;
}
.detail-top{
    color: #EC6608;
    margin-top: 33px;
}
.detail-top .detail-top-btn{
    vertical-align: middle;
    font-size: 28px;
    font-weight: bold;
}
.detail-top h2{
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
}

.detail-banner{
    margin: 0 -20px;
    margin-top: 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 550px;
}
.detail-banner.centrum{
    background-image: url(image/detail/centrum/cover.png);
}
.detail-banner.sensodyne{
    background-image: url(image/detail/sensodyne/cover.png);
}
.detail-banner.teraflu{
    background-image: url(image/detail/teraflu/cover.png);
}

.detail-title{
    margin-top: 30px;
}
.detail-title h3{
    font-size: 24px;
    font-weight: bold;
}
.detail-title p{
    margin-top: 17px;
    color: #EC6608;
    font-size: 18px;
    font-weight: bold;
}

.detail-explain{
    margin: 0 -20px;
    margin-top: 17px;
    padding: 20px;
    background-color: #F9F8F7;
}
.detail-explain h4{
    font-weight: bold;
    font-size: 16px;
}
.detail-explain li{
    color: #666666;
    margin-top: 8px;
    line-height: 26px;
}
.detail-explain li em{
    color: #EC6608;
}
.detail-explain li em:last-child{
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

.detail-list h3{
    font-weight: bold;
    margin: 50px -20px 0 -20px;
    padding: 0 0 20px 20px;
    border-bottom: 1px solid #666666;
}
.detail-list ul{
    margin: 0 -20px;
}
.detail-list li{
    border: 1px solid #E5E5E5;
    border-left: 0;
    border-top: 0;
}
.detail-list-inside{
    height: inherit;
    text-align: center;
    padding: 40px 8px 10px 8px;
    box-sizing: border-box;
    position: relative;
}
.detail-list-inside img{
    height: 110px;
}
.detail-list-inside h5{
    font-size: 16px;
    font-weight: bold;
}
.detail-list-inside p{
    font-size: 14px;
    color: #666666;
    margin-top: 4px;
    word-break: keep-all;
}
.detail_ct .detail-list:last-child li:last-child {
    height: 160px;
    border-bottom: 1px solid #E5E5E5;
}

.badge{
    height: 20px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    border-radius: 20px;
    line-height: 20px;
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 10px;
    font-weight: bold;
}
.badge.only{
    width: 52px;
    background-color: #EC6608;
}
.badge.new{
    width: 40px;
    background-color: #E61E41;
}
.badge.release{
    width: 80px;
    background-color: #65B32E;
    left: 60px;
}
section.detail .badge.release.long{
    width: 80px;
    background-color: #65B32E;
    left: 60px;
    height: auto;
    top: auto;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

/*================================ d e t a i l * s e n s o d y n e * ====================================*/
.detail.sd .detail-list li{
    height: 160px;
}
.detail.sd .detail-list li:nth-child(5){
    height: 314px;
}
.detail.sd .detail-list li:nth-child(6){
    height: 300px;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

.detail.sd .detail-list-inside img{
    width: 160px;
    height: 60px;
}
.detail.sd .detail-list li:nth-child(5) img{
    width: 110px;
    height: 250px;
}
.detail.sd .detail-list li:nth-child(6) img{
    width: 26px;
    height: 140px;
}

.detail.sd .detail-list-inside{
    padding: 0;
}
.detail.sd .detail-list-inside div{
    height: inherit;
}
.detail.sd .detail-list-inside div:nth-child(1){
    padding: 60px 25px;
}
.detail.sd .detail-list-inside div:nth-child(2){
    padding: 34px 30px 34px 18px;
}
.detail.sd .detail-list li:nth-child(5) .detail-list-inside div:nth-child(2){
    padding-top: 100px;
}
.detail.sd .detail-list li:nth-child(6) ul{
    margin: 24px auto;
}
.detail.sd .detail-list li:nth-child(6) li{
    display: inline-block;
    margin-right: 40px;
    border: 0;
}
.detail.sd .detail-list li:nth-child(6) li:last-child{
    margin-right: 0;
}

/*================================ d e t a i l * t e r a f l u * ====================================*/
.detail-explain .detail-explain-list{
    margin-bottom: 30px;
} 
.detail-explain li li{
    list-style: disc;
    margin-left: 20px;
    line-height: 1;
}
.detail-explain li p{
    font-weight: bold;
}
.detail-explain li em.day{
    color: #F8AA00;
    font-size: 16px;
    font-weight: 400;
}
.detail-explain li em.night{
    color: #31519D;
}
.detail-explain li span{
    margin-left: 20px;
}
.detail-explain .tf-icon-list{
    text-align: center;
}
.detail-explain .tf-icon-list li{
    list-style: none;
    display: inline-block;
    margin-right: 12px;
    margin-left: 0;
}
.detail-explain .tf-icon-list li:last-child{
    margin-right: 0;
}

.detail-teraflu{
    margin: 0 -20px;
}
.detail-teraflu li{
    height: 270px;
    position: relative;
}
.detail-teraflu li:nth-child(odd){
    background-color: rgba(248, 170, 0, 0.20);
}
.detail-teraflu li:nth-child(3){
    background-color: #F8AA00;
    height: 132px;
}
.detail-teraflu li:nth-child(even){
    background-color: rgba(80, 99, 171, 0.20)
}
.detail-teraflu li:nth-child(4){
    background-color: #5063AB;
    height: 132px;
}

.teraflu-box-top{
    background-color: #31519D;
    color: #fff;
    font-size: 12px;
    text-align: center;
    height: 26px;
    line-height: 26px;
}
.teraflu-box-bottom{
    background-color: #FB9700;
    color: #fff;
    font-size: 12px;
    text-align: center;
    height: 26px;
    line-height: 26px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.teraflu-box-inside{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
}
.detail-teraflu li:nth-child(3) .teraflu-box-inside::before{
    content: url("image/detail/teraflu/triangle_d.png");
    position: absolute;
    top: -19.5px;
    left: 50%;
    transform: translateX(-50%);
}
.detail-teraflu li:nth-child(3) .teraflu-box-inside::after{
    content: url("image/detail/teraflu/triangle_d.png");
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%) rotate(-180deg);
}
.detail-teraflu li:nth-child(4) .teraflu-box-inside::before{
    content: url("image/detail/teraflu/triangle_n.png");
    position: absolute;
    top: -19.5px;
    left: 50%;
    transform: translateX(-50%);
}
.detail-teraflu li:nth-child(4) .teraflu-box-inside::after{
    content: url("image/detail/teraflu/triangle_n.png");
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%) rotate(-180deg);
}
.detail-teraflu li:nth-child(3) .teraflu-box-inside,
.detail-teraflu li:nth-child(4) .teraflu-box-inside{
    color: #fff;
    text-align: left;
    padding: 0 12px;
    box-sizing: border-box;
    top: 45%;
}

.teraflu-box-inside h5{
    font-weight: bold;
    font-size: 16px;
    margin-top: 22px;
}
.detail-teraflu li:nth-child(3) .teraflu-box-inside h5,
.detail-teraflu li:nth-child(4) .teraflu-box-inside h5{
    display: inline-block;
    margin-left: 12px;
}

.teraflu-box-inside p{
    color: #333333;
    font-size: 14px;
}
.detail-teraflu li:nth-child(3) .teraflu-box-inside p,
.detail-teraflu li:nth-child(4) .teraflu-box-inside p{
    color: #fff;
    margin-top: 8px;
}

.detail-teraflu li:nth-child(1) .teraflu-box-inside img,
.detail-teraflu li:nth-child(2) .teraflu-box-inside img{
    width: 85px;
    height: 110px;
}
.detail-teraflu li:nth-child(3) .teraflu-box-inside img,
.detail-teraflu li:nth-child(4) .teraflu-box-inside img{
    width: 46px;
    height: 46px;
    vertical-align: middle;
}
.detail-teraflu li:nth-child(5) .teraflu-box-inside img,
.detail-teraflu li:nth-child(6) .teraflu-box-inside img{
    width: 108px;
    height: 103px;
}

/*================================ c s r ====================================*/
.csr-top{
    margin-top: 33px;
}
.csr-top h2{
    color: #EC6608;
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}
.csr-top p{
    font-weight: 500;
    margin-bottom: 20px;
    word-break: keep-all;
}

.csr-banner{
    margin: 0 -20px;
    position: relative;
    background-image: url(image/csr/cover.png);
    height: 342px;
    margin-bottom: 100px;
}
.csr-banner-inside{
    position: absolute;
    right: 20px;
    bottom: -35px;
    z-index: 99;
}
.csr-banner-inside p{
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    opacity: 0;
}
.csr-banner-inside p:last-child{
    color: #000;
}
.csr-banner-inside p.showing{
    opacity: 1;
}

.csr-section{
    margin-bottom: 50px;
}
.csr-section h3{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 17px;
}
.csr-section p{
    margin-bottom: 36px;
    word-break: keep-all;
}
.csr-section:nth-child(2) p:nth-of-type(4){
    margin-bottom: 0;
}
.csr-section .csr-section-point{
    color: #65B32E;
    font-weight: bold;
    margin-bottom: 0;
}
.csr-section:nth-child(2) .csr-section-point{
    margin-bottom: 9px;
}
.csr-section-img{
    text-align: center;
    margin: 15px auto;
}
.csr-section:nth-child(1) .csr-section-img.dj{
    width: 160px;
    height: 90px;
}
.csr-section:nth-child(2) .csr-section-img:last-child{
    width: 218px;
    height: 48px;
}
.csr-section ul{
    margin: 16px 0;
    margin-left: 20px;
}
.csr-section li{
    list-style: disc;
    word-break: keep-all;
}

/* footer */
.footer{
    text-align: center;
}

.footer-download{
    height: 60px;
    background-color: #00ADC6;
    padding: 18px 0;
    box-sizing: border-box;
    margin-bottom: 26px;
}
.footer-download a{
    color: #fff;
    font-weight: bold;
}

.footer-detail{
    margin-bottom: 21px;
}
.footer-detail p{
    font-size: 12px;
    line-height: 18px;
}

.footer-copy{
    margin-bottom: 40px;
}
.footer-copy p{
    font-size: 12px;
    color: #999999;
}

/* to the top */
.tothetop-btn{
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background-color: #fff;
    border: 1px solid #CCCCCC;
    box-shadow: 0 3px 6px rgba(204, 204, 204, 0.92);
}
.tothetop-btn span{
    color: #333333;
}