/* BASIC css start */
.drv_header { 
    height: 60px;
    /* position: sticky; */
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #D1E6FB;
    z-index: 10;
    padding: 0 190px;
}

.drv_notice_box .drv_logo,
.drv_header .left_box,
.drv_header .left_box .drv_logo {
    display: flex;
    align-items: center;
}

.drv_notice_box .drv_logo img, 
.drv_header .left_box .drv_logo img { 
    width: 38px;
    margin-bottom: -5px;
}

.drv_notice_box .drv_logo span,
.drv_header .left_box .drv_logo span {
    color: #007AF0;
    font-weight: bold;
    font-size: 25px;
    letter-spacing: -1.5px;
}

.drv_header .left_box .dd_time {
    font-size: 16px;
    font-weight: 500;
    margin-left: 20px;
}

.drv_header .left_box .dd_time span { color: var(--main-color); }
.drv_header .left_box .dd_time span.timer { color: #000; }

.drv_header .right_box .drv_notice_btn { 
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.drv_notice_box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 45%);
    display: none;
}

.drv_notice_box > div {
    width: 570px;
    height: 100%;
    max-height: 750px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

.drv_notice_box > div > section {
    padding: 40px;
    box-sizing: border-box;
    height: calc(100% - 89px);
    overflow-y: scroll;
}

.drv_notice_box .drv_logo { 
    justify-content: center; 
    margin-bottom: 40px;
}
.drv_notice_box .drv_logo img { width: 47px; }
.drv_notice_box .drv_logo span { font-size: 33px; }

.drv_notice_box .tit {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.drv_notice_box .bn_box {
    background-color: #D6EBFC;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drv_notice_box .bn_box span {
    color: #6B7787;
    font-size: 15px;
    font-weight: 500;
}

.drv_notice_box .bn_box p {
    font-weight: bold;
    font-size: 22px;
    margin-top: 5px;
}

.drv_notice_box .bn_box img {
    width: 160px;
    margin-bottom: -10px;
}

.drv_notice_box .txt_box p {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    margin: 30px 0 10px;
}

.drv_notice_box .txt_box p span {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    text-align: center;
    text-indent: 1px;
    margin-right: 5px;
}

.drv_notice_box .txt_box li {
    position: relative;
    padding-left: 8px;
    color: #717B89;
    font-size: 13px;
    line-height: 1.6;
}

.drv_notice_box .txt_box li::before {
    content: '-';
    position: absolute;
    color: #717B89;
    font-size: 15px;
    top: -3px;
    left: 0;
}

.drv_notice_box .close_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #222;
    color: #fff;
    cursor: pointer;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.product_menu_tit { display: none !important; }

#content-mainbn { 
    margin: 0 0 55px;
    display: flex;
    justify-content: space-between;
    /*background: linear-gradient(#C0E7FF 2%, #9198e500 62%);*/
    padding: 55px 190px 0;
}

#content-mainbn h3 { 
    opacity: 0.2;
    animation: fadein 0.5s; 
    animation-fill-mode: forwards;
}

#content-mainbn h3 div {
    position: relative;
    font-weight: 500;
    font-size: 36px;
}

#content-mainbn h3 div img {
    width: 66px;    
    margin: -5px 0 0 7px;
}

#content-mainbn h3 span { 
    display: inline-block; 
}

#content-mainbn h3 .an_01 {
    color: #007AF0;
    opacity: 0;
    transform: translateY(-35px);
    animation: down;
    animation-delay: 0.8s;
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
    transition: 0.2s;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

#content-mainbn h3 .an_02 {
    transition: 0.5s;
    transform: translateX(-74px);
    animation: right;
    animation-delay: 0.4s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

#content-mainbn h3 .an_03 {
    opacity: 0;
    transform: translateY(-35px);
    animation: down;
    animation-delay: 0.8s;
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
    transition: 0.2s;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
} 
@keyframes fadein {
    from { opacity: 0.2; }

    to { opacity: 1; }
}

@keyframes down {
    from { 
        opacity: 0;
        transform: translateY(-35px); 
    }

    to { 
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes right {
    from { transform: translateX(-74px); }

    to { transform: translateX(0); }
}

#content-mainbn .switch_btn {
    display: flex;
    border: 1px solid #dedede;
    border-radius: 100px;
    width: 170px;
    height: 40px;
    margin-top: 12px;
    background-color: #fff;
}

#content-mainbn .switch_btn li { width: 100%; }
#content-mainbn .switch_btn li:last-child { margin-left: -5px; }

#content-mainbn .switch_btn li a {
    display: inline-block;
    color: #969696;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    text-align: center;
    line-height: 40px;
}

#content-mainbn .switch_btn li.on a {
    background-color: #0981EF;
    color: #fff;
    font-weight: normal;
}

@media (max-width: 1600px) {
    #content-mainbn { padding: 55px 5% 0; }
    .drv_header { padding: 0 5%; }
}


#content-pro { width: 100%; }

#prd-w100 { width:100%;  padding:20px 0 10px; }
#prd-section01 { width:1350px; margin:0 auto;   }
#prd-section02  { width:1350px; padding:10px 0 15px 0}


/* ====== ºÐ·ùÆäÀÌÁö ÃßÃµ»óÇ°3¿­ÄÚµå ====== */

.prd-item-list3 { zoom: 1; overflow: hidden; clear: both; }
.prd-item-list3:after { content: ""; clear: both; display: block; }
.prd-item-list3 .item { float: left; width: 433px; /* text-align: center; */ padding-bottom: 20px ;}
.prd-item-list3 .item .item_box { width: 410px; margin: 0 auto;  background-color: #fff; border:10px solid #fff;  box-shadow: 0px 15px 35px rgba(50,50,90,0.1), 0px 5px 15px rgba(0,0,0,0.07); box-sizing: border-box; position: relative; }
.prd-item-list3 .item .item_box .thumb { margin: 0 auto; width:390px; height: auto;   position: relative;  }
.prd-item-list3 .item .item_box .thumb img { width:390px; height: auto; }
.prd-item-list3 .item .item_box .info { width: 100%; margin:0 auto; text-align:left; }
.prd-item-list3 .item .item_box .info li { padding:5px 0; }
.prd-item-list3 .item .item_box .info .name {padding-bottom: 5px; text-align:left; font-size:12px; color: #555;  font-weight:bold; border-bottom:1px solid #F0F0F0; }
.prd-item-list3 .item .item_box .info .subname { color: #c30000; font-size:12px; }
.prd-item-list3 .item .item_box .info .color { padding-top: 10px; }
.prd-item-list3 .item .item_box .info .icon { margin-top: 10px; }
.prd-item-list3 .item .item_box .info .price01 { font-weight:none; color:#999; padding-right:10px; text-decoration:line-through; }
.prd-item-list3 .item .item_box .info .price02 { font-weight:none; color:#555; }
.prd-item-list3 .item .item_box .besttit { position:absolute; top:0px; left:0px;  opacity: 0.7; filter: alpha(opacity=70); /* For IE8 and earlier */  z-index:2; }
.prd-item-list3 .item .item_box .besttit .box { padding:5px; background-color:#999; color:#F4F4F4; line-height:38px; border:1px solid #dedede; font-size:12px; letter-spacing:-0.5px; font-weight:bold; }
.prd-item-list3 .item .item_box:hover .besttit .box {background-color:#000; border:1px solid #000; color:#fff; }



/* ====== ºÐ·ùÆäÀÌÁö ÃßÃµ»óÇ°4¿­ÄÚµå ====== */

.prd-item-list4 { zoom: 1; overflow: hidden; clear: both; }
.prd-item-list4:after { content: ""; clear: both; display: block; }
.prd-item-list4 .item { float: left; width: 325px; /* text-align: center; */ padding-bottom: 20px ;}
.prd-item-list4 .item .item_box { width: 310px; margin: 0 auto;  background-color: #fff; border:10px solid #fff;  box-shadow: 0px 15px 35px rgba(50,50,90,0.1), 0px 5px 15px rgba(0,0,0,0.07); box-sizing: border-box; position: relative; }
.prd-item-list4 .item .item_box .thumb { margin: 0 auto; width:300px; height: auto;   position: relative;  }
.prd-item-list4 .item .item_box .thumb img { width:290px; height: auto; }
.prd-item-list4 .item .item_box .info { width: 100%; margin:0 auto; text-align:left; }
.prd-item-list4 .item .item_box .info li { padding:5px 0; }
.prd-item-list4 .item .item_box .info .name {padding-bottom: 5px; text-align:left; font-size:12px; color: #555;  font-weight:bold; border-bottom:1px solid #F0F0F0; }
.prd-item-list4 .item .item_box .info .subname { color: #c30000; font-size:12px; }
.prd-item-list4 .item .item_box .info .color { padding-top: 10px; }
.prd-item-list4 .item .item_box .info .icon { margin-top: 10px; }
.prd-item-list4 .item .item_box .info .price01 { font-weight:none; color:#999; padding-right:10px; text-decoration:line-through; }
.prd-item-list4 .item .item_box .info .price02 { font-weight:none; color:#555; }

.item .item_box .besttit { position:absolute; top:0px; left:0px;  opacity: 1; filter: alpha(opacity=100); /* For IE8 and earlier */  z-index:1; }
.item .item_box .besttit .box { padding:5px 10px; background-color:#000; color:#F4F4F4;  font-size:11px; letter-spacing:-0.5px; font-weight:bold; }
.item .item_box:hover .besttit .box {background-color:#000; border:0px solid #000; color:#fff; }




#prdBrand { position: relative; width:1350px;  margin:0 auto;  }







/* BASIC css end */

