@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


body{ font-family: "Noto Sans TC", serif;}



  /* 捲軸寬度及高度 */
  &::-webkit-scrollbar {
      background: #a7c9ba;
      width: 5px;
    }
    
  /* 捲軸兩側頂端的按鈕 */
  &::-webkit-scrollbar-button {
      display: none;
    }
  /* 滑桿顏色 */
  &::-webkit-scrollbar-thumb {
        background-color: #f7d5aa;
        border-radius: 2px;
        transition: all 0.3s;
    }
&::-webkit-scrollbar-thumb:hover {
        background-color: #f7d5aa;
        transition: all 0.3s;
    }
  /* 軌道背景底色 */
  &::-webkit-scrollbar-track {  
        background-color: #a7c9ba;
    }

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*大圖特效*/


#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}

.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
    }

/*第一張大圖*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/alldaycover/LOGO.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 7%;
    right: 14%;
    width: 16% !important;
    height: 7% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
    animation:bounce-in-top 2s both;
    animation-delay: .1.5s;
    filter: drop-shadow(0px 0px 8px #fff);
}


.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/alldaycover/banner02.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 32%;
    right: 1%;
    width: 42% !important;
    height: 53% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.12);
    animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) both
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}




/*logo*/

.nav-header {
    max-width: 230px;
    width: 230px;
}

/*header*/
.me_tp_features {
display: none;
}

.header_area {
    background: #ffffff;
    padding: 25px 10px 15px;
    box-shadow: 1px 1px 25px rgb(0 0 0 / 6%);
}

.header_area.sticky {
    background: #FFF
}

.navigation {
    display: flex;
    align-items: center;
}

/*第一層*/

.stellarnav > ul > li > a {
    margin: 0px 10px;
    font-size: 15px;
    letter-spacing: 2px;
    color: #74614c;
    font-weight: 500;

}

.stellarnav > ul > li:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #f6d3aa;
  border-radius: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
}

.stellarnav > ul > li:hover:before {
  transform: translate(-50%, -50%) scale(2);
}
    .stellarnav > ul > li.has-sub > a {
    padding-right:0px
    }

    .stellarnav li.has-sub > a:after{
        display: none;
    }


/*第二層*/
.stellarnav ul ul{
    background: transparent;
    width: 180px;
    animation:scale-in-ver-top .5s cubic-bezier(.25,.46,.45,.94) both

}
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 8px 9px;
    transition: all 0.3s;
    color: #74614c;
    font-size: 14px;
    background: #ffffff;
    border-radius: 10px;
    margin: 8px 0px;
    letter-spacing: 1px;
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    background: #fff;
    color: #f3c691;
    transition: all 0.3s;
    box-shadow: 4px 4px 9px #ececec;
}

@keyframes scale-in-ver-top{0%{transform:scaleY(0);transform-origin:100% 0;opacity:1}100%{transform:scaleY(1);transform-origin:100% 0;opacity:1}}

/*footer*/
.footer_menu a:first-child {display: none;}
.footer_info li:nth-child(1) {

}
.footer {background: #fff;box-shadow: 1px 1px 25px rgb(0 0 0 / 6%); }
.footer .center { padding: 20px 0px;}
.center { max-width: 1600px;}/*讓footer框變寬*/
.footer_info {    display: flex;    flex-wrap: wrap;    align-items: center;    justify-content: space-between;padding-left: 60px;}
.footer_menu {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(min(110px,100%), 1fr));    gap: 6px;}/*footer按鈕最小寬度100px*/
.footer_menu a {
    margin: 0;
    text-align: center;
    padding: 5px;
    transition: all 0.3s;
    color: #74614c;
    border: 1px solid #74614c82;
    padding: 10px 0px;
    border-radius: 50px;
    background: transparent;

}
.footer_info li p {
    color: #74614c;
}
a {
    color: #74614c;
}
.footer_menu a:hover {background: #a8c9b9;border: 1px solid #a8c9b9;}
.footer_menu a:nth-child(1) {display: none;}
.box_link { display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover { background: #ADA17E; color: #fff;}

.copy {
    background: #a8c9b9;
    color: #fff;
    border: none;

    letter-spacing: 1px;
}
.copy a{ color: #fff;transition:all 0.3s;}
.copy a:hover { color: #fff;}

.footer_logo img {  width: 230px;}




/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border:none; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    height: 40vw;
    background-size: cover;
    background-position: center top;
    max-height: 476px;
    min-height: 240px;
    position: relative;
    border-bottom: 5px solid #A6C8B0;
    background-image: url(https://pic03.eapple.com.tw/alldaycover/allbanner.jpg)
}

.banner h5 {
display: none;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁文章*/

.module_i_news li a:after {
    border: 2px #f6d0a3 solid;
}
.module_i_news .title_i_box{
    display: none;}
.module_i_news li a:before{
    display: none;}
.i_blog_ri h5 {
    font-weight: 400;
    font-size: 18px;
}

.module_i_news li a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.module_i_news ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.module_i_news {
    padding: 50px 20px;
    background-image: url(https://pic03.eapple.com.tw//in_01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

.blog_list_ri h5 {
    font-weight: 400;
    display: flex;
    font-size: 17px;
}

.subbox_item a {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}

.accordion li .link a {
    font-weight: 500;
    letter-spacing: 1px;
}

.blog_subbox {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.accordion li .link a {
    font-size: 16px;
}
.blog_le .accordion {
border-radius: 0px;
border: none;
}
.submenu a{font-size: 15px;}
.subbox_item a:after { background: rgba(0,0,0,0.5);}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {background: #A6C8B0;}
.blog_page .main_part {max-width:1600px;}
.submenu li.on_this_category a, .submenu a:hover {
    background: #f6d3aa;
    color: #fff;
    text-shadow: 2px 3px 4px #bd8848;
    font-weight: 500;
}
.blog_back a.article_btn_prev,.blog_back a.article_btn_next { background: #A6C8B0;}
.blog_back a.article_btn_back {background: #f6d3aa;}
.submenu {
    background: #f1f1f10f;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #f1f1f10f !important;
}
.subbox_item a:hover:before {
    transform: translate(-50%, -50%) scale(1);
    transition: all 500ms;
}
.path p, .path p a {
display: none;
}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    top: 87%;
    left: 50%;
    width: 145px;
    text-align: center;
    background: #A6C8B0;
    border-radius: 60px;
    font-size: 15px;
    color: #ffffff;
    padding: 10px 5px;
    transform: translate(-50%, -50%) scale(0, 0);
}

.subbox_item a:hover:after {
    opacity: 1;
    width: 100%;
    transition: all 500ms;
}
.subbox_item a:after {
    background: rgba(0, 0, 0, 0.5);
}
.subbox_item a:after {
    content: '';
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #ffffff99;
    opacity: 0;
    border: 2pt solid #A6C8B0;
    border-radius: 10px;
}

.blog_list_le img {
    z-index: 999;
}
h4.blog_category_title {
    color: #444;
    font-size: 25px;
    font-weight: 500;
}


/*相關文章*/

.news_related h6 span:before {
    color: #505050;
    font-weight: 400;
}

.lastPage {
    background: #A6C8B0;
    border-radius: 50px;
}

.news_related_list li a:hover {
    padding: 10px;
    transition: .3s;
}

.news_related_list li a {
    transition: .3s;
}




/*聯絡我們/＝＝＝＝＝*/
.contact_content {display: block !important}
.contact_editbox {    padding: 0;}
.contact_le_map a {    background: #e7e4df;}
.contact_form li.last cite {background: #b5a6cf;}
.contact_content {
    padding: 80px 10px 10px;
}


/*表格排列版面*/
.contact_content .information_left{display: none;}
.red {color: #b5a6cf;}
.contact_content .information_right {    width: 90%;    padding: 0;    margin: 0 auto 100px;    max-width: 1400px;    display: block;}
.blank_letter {     padding: 0;    font-size: 20px;    color: #3a3a3a;text-align: center;}
.blank_letter .note{display: block;color: #b5a6cf;text-align: center;}
.contact_form {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(min(400px,100%), 1fr));    gap: 30px;}
.contact_form li{padding: 0;}
.contact_form li .form__label {    display: block;    width: 100%;    text-align: end;    margin: 0 0 5px;    padding: 0;}
.contact_form li.last {    text-align: center;    grid-column: 1/-1;}
.contact_form li.last blockquote, .contact_form li.last cite{border-radius:50px;    border: 1px #b5a6cf solid;    padding: 0px;}


@media screen and (max-width: 600px){
    .contact_form li .form__label {
        text-align: justify;
        background: transparent;
        font-weight: 400;
    }  
}

/*相簿*/

.show-list .item:hover .show_name {
    color: #684798;
}

.other_album_choice li {
    background: #684798;
}


.subalbum-menu h2 {
    color: #444;
}

.show-list .item:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, #ffffff00, #8766b8);
    border-top-right-radius: 500px;
    left: 0;
    top: 0;
    opacity: 0;
    transform-origin: bottom;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}
.overlay {
    z-index: 1;
}


/*商品*/

.products-list .more {
    border: none;
    color: #444;
    background: #FFF;
    border-radius: 50px;
    font-weight: 400;
    border: 1pt solid #ceccda;
    box-shadow: 4px 4px 7px #ceccda40;
}

.products-list .item a:hover .more {
    background: #ceccda;
    color: #fff;
}

.products-list .price b {
    color: #ceccda;
}

.product-layer-two li a {
    color: #444;
}

.product-layer-two li li:hover > a {
    color: #A5CE4B;
}

.product-layer-two li li:hover > a:before {
    background: #A5CE4B;
}

.sidebarBtn {
    border: 2px #ddd solid;
}

.sidebarBtn .sp_price {
    color: #ceccda;
}

.inquiry_a1 {
    background: #ceccda;
}

.inquiry_a2 {
    background: #a5ce4b;
}

.prod_related h6 span:before {
    color: #444;
}

.pageIndex .products-list {
    grid-gap: 70px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.pageIndex .animated-arrow {
    background: #A6C8B0;
    color: #fff;
    display: inline-block;
    margin-top: 67px;
    height: 36px;
    line-height: 34px;
    overflow: hidden;
    width: 243px;
    text-align: center;
    position: relative;
}

/*首頁商品*/

.i_prod_tit, .i_video_tit {
    display: none;
    
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 1024px) {

    .nav-header {
        width: 200px;
        padding-bottom: 10px;
    }
}    


@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
.footer_info {    justify-content: center;    padding-left: 30px;}
.footer_logo {    text-align: center;}
.footer_info ul {width: 100%;margin-right: 70px;}
.stellarnav > ul > li > a:before{display: none;}
.stellarnav.mobile li.open li.open {
    padding: 0px;
}
.stellarnav.mobile li.open {
    background: #e7eff9;
    padding:10px;
}
.stellarnav .menu-toggle {
    padding-top: 10px;
    transition: all .5s;
}
.header_area.sticky .stellarnav .menu-toggle {
    padding-top: 6px;
    transition: all .5s;
}
.stellarnav > ul > li:before{display: none;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #feeedf;
}
.stellarnav.mobile li a{border:none}
}


@media screen and (max-width: 600px) { 
    /*Footer/＝＝＝＝＝*/
.box_link {    text-align: center;}

.nav-brand img {
    max-width: 100%;
    margin: 0px 0px 0px 15px;
}

.nav-header {
    width: 150px;
    transition: all 0.4s ease-in-out;
}

.header_area {
    padding: 20px 10px 10px;
}

.header_area.sticky .nav-header{
    width: 120px;
    transition: all 0.4s ease-in-out;
}

.header_area.sticky {

    padding: 15px 10px 0px;  
}


.footer_info { padding-left: 10px;}

.contact_form li .form__label {
    background: transparent
}

.pageIndex .products-list {
    grid-gap: 50px;
}

.copy {
    background: #fdfdfd;
    color: #adadad;
    padding: 5px;
    letter-spacing: 0.04em;
}

.copy a {
    color: #6d6d6d;
    transition: all 0.3s;
}

.total_view {
    padding: 5px;
}

}






