@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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 {}
.banner h5 { content: "— 工程實績 —" !important;}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}



/* = = = = = == = = header = = = = =  = = = = = = = == = = */
.main_header_area .container {max-width: 1500px;    margin: auto;}
.header_area {background-image: url(https://pic03.eapple.com.tw/yiyang-wall/header-der2.png); box-shadow: 0 0 10px #a2abbc;
}
.stellarnav > ul > li > a {    color: #0091aa;font-weight: bold;margin: 0 15px;}
.main_header_area {
    background-color: #ffff;
    transition: 0.3s 
ease;
    box-shadow: unset;
    background-position: center;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/yiyang-wall/header-der2.png);
    padding: 10px;
}
.header_area.sticky {background: url(https://pic03.eapple.com.tw/yiyang-wall/header-der2.png);}
.stellarnav > ul > li > a:hover b { color: #e00012;}
.stellarnav > ul > li > a {font-size: 18px;}
.pageIndex .sticky.header_area .stellarnav li.has-sub > a:after {border-top: 6px solid #0091aa;}/* 主選單三角顏色 */

.tp_links {display: none;}
.header_area {padding: 0px;}
#to_top{ background: unset; border: 2px solid #0091aa; color: #0091aa; padding-top: 0px; line-height: 10px; position: fixed; bottom: 120px;left: unset; right: 1px;box-shadow:unset;}
#to_top:hover{ background: #e00012; color: #fff; border: 0px;}
#to_top i.top:before, #to_top i.top:after{ display: none;}

#to_top{
    -webkit-animation: topmoveTop 3000ms infinite;
    animation: topmoveTop 3000ms infinite;
}

@keyframes topmoveTop {from{transform:translateY(20px);}55%{transform:translateY(0px);}60%{transform:translateY(10px);}70%{transform:translateY(0px);}to{transform:translateY(20px);}}
@-webkit-keyframes topmoveTop {from{transform:translateY(20px);}55%{transform:translateY(0px);}60%{transform:translateY(10px);}70%{transform:translateY(0px);}to{transform:translateY(20px);}}
.topmoveTop {animation: topmoveTop 3000ms infinite;}


/* 導覽列連結設定 */
.menu-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #cc6600;  /* 線條顏色，可以改 */
  transform: scaleX(0);       /* 預設隱藏 */
  transition: transform 0.3s ease;
  transform-origin: center;
}

.menu-button:hover {
  color: #ffffff;             /* hover 文字變色 */
}

.menu-button:hover::after {
  transform: scaleX(1);       /* hover 顯示橫線 */
}

.stellarnav > ul > li > a::before{
    content: "";
    position: absolute;
    height: 1px;
    background:#e00012;
    width: 0;
    transition: all 0.3s;
    right: 0;
    left: 50%;
    transform: translate(-50% , 0);
    bottom: 0;
    width: 0%;.}
.stellarnav > ul > li:hover > a::before{width: 100%;}
.me_tp_features {
    width: 99%;
    text-align: right;
}

/* 主選單 hover */
.stellarnav > ul > li > a:hover {
    transform: scale(1.1);
    color: #0091aa;
}
/* 子選單初始隱藏 */
.stellarnav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 5px 0;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 999;
}

/* 主選單 hover顯示子選單 */
.stellarnav li.has-sub:hover > ul {
    display: block;
}

/* 子選單 li a 初始樣式 */
.stellarnav ul ul li a {
    display: block;
    padding: 10px 20px;
    color: #0091aa;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* 子選單 hover */
.stellarnav ul ul li a:hover {
    transform: scale(1.05);
    color: #ffff;
    background: #00b8d8;
}

/* 子選單底線動畫 */
.stellarnav ul ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #d9d9d9;
    transition: width 0.3s ease;
}

.stellarnav ul ul li a:hover::after {
    width: 100%;
}
.sticky.header_area  .stellarnav li.has-sub > a:after {    border-top: 6px solid #fff;}
/* 子選單三角形 */
.stellarnav li.has-sub > a:after {    border-top: 6px solid #0091aa;}/* 首頁子選單三角形變色 */
.other_page .sticky.header_area .stellarnav li.has-sub > a:after{    border-top: 6px solid #0091aa;}/* 其他頁子選單三角形變色 */
.album_page .sticky.header_area .stellarnav li.has-sub > a:after{    border-top: 6px solid #0091aa;}/* 相簿子選單三角形變色 */
.album_class_page  .sticky.header_area .stellarnav li.has-sub > a:after{    border-top: 6px solid #0091aa;}/* 相簿子選單2層三角形變色 */
.album_info_page  .sticky.header_area .stellarnav li.has-sub > a:after{    border-top: 6px solid #0091aa;}/* 相簿子選單3層三角形變色 */
.blog_page .sticky.header_area .stellarnav li.has-sub > a:after{    border-top: 6px solid #0091aa;}/* 文章子選單三角形變色 */
.blog_in_page .sticky.header_area .stellarnav li.has-sub > a:after{    border-top: 6px solid #0091aa;}/* 文章子選單三角形變色 */

/* 關於翊揚 */
.edit_part {padding: 0px;}
.pageIndex #content_main {
    background-image: url(https://pic03.eapple.com.tw/yiyang-wall/page-content.png);
}

/* 文章裝飾 */
.blog_list_le:before,
.i_blog_le:before {
    content: 'MORE';
    font-size: 0.8em;
    color: #ccc;
    position: absolute;
    top: 0;
    right: 0;
    background: #e00012;
    color: #FFF;
    text-align: center;
    line-height: 35px;
    padding: 0 10px;
    -moz-transform: translate(50px, -40px);
    -ms-transform: translate(50px, -40px);
    -webkit-transform: translate(50px, -40px);
    transform: translate(50px, -40px);
    -moz-transition: -moz-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    position: absolute;
    z-index: 1;
    opacity: 0;
    font-family: "Inconsolata", monospace;;
}

.subbox_item:hover .blog_list_le:before,
.module_i_news li:hover .i_blog_le:before {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}
/* 首頁的相簿管理 */
.module_i_album .title_i_box h6 {    font-size: 17px;
    color: #0091aa;
    font-family: "Inconsolata", monospace;
    font-weight: normal;
}
.module_i_album .title_i_box h4 {    color: #0091aa;
    font-size: 32px;
    font-weight: bold;
    font-family: "Microsoft JhengHei UI";
    letter-spacing: 3px;
}

.i_album_list {    grid-template-columns: repeat(3, 1fr);}
.module_i_album {padding: 40px 0px 0px 0px;}
.i_album_list li a p {
    background: #0091aa4a;
}

/* 首頁相簿只顯示前 6 張 */
.pageIndex .i_album_list li:nth-child(n+7) {
    display: none;
}

/* 相簿圖片容器 */
.pageIndex .i_album_list li a {
    position: relative;   /* 文字定位容器 */
    display: block;
    overflow: hidden;     /* 避免文字跑出圖片 */
}
.i_album_list_box, .albumSwiper.swiper {    padding: 40px 0;}

/* 首頁相簿文字平時隱藏 */
.pageIndex .i_album_list li a p span,
.pageIndex .i_album_list li a .show_name {
    position: absolute;
    top: 50%;               /* 垂直置中 */
    left: 50%;              /* 水平置中 */
    transform: translate(-50%, -50%) translateY(-10px); /* 初始稍微往上偏移 */
    opacity: 0;              /* 隱藏文字 */
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    pointer-events: none;    /* 不阻擋滑鼠 */
    transition: all 0.3s ease;
    z-index: 10;             /* 確保在圖片上方 */
}

/* hover 時文字出現並稍微往上 */
.pageIndex .i_album_list li a:hover p span,
.pageIndex .i_album_list li a:hover .show_name {
    opacity: 1;
    transform: translate(-50%, -50%); /* 完全移到圖片上方 */
}

/* 圖片縮放效果 */
.pageIndex .i_album_list li a .show_pic img {
    transition: transform 0.3s ease;
}
.pageIndex .i_album_list li a:hover .show_pic img {
    transform: scale(1.05);
}

/* 首頁的文章管理 */
.module_i_news{ padding: 100px 20px; max-width: 1400px; margin: auto;}
.pageIndex .module_i_news .title_i_box h4 {
    color: #0091aa; font-size: 32px; font-weight: bold;
    font-family: "Microsoft JhengHei UI";
    letter-spacing: 3px;
}


.animated-arrow{ background: transparent; color: #0091aa; border: 1px solid #0091aa; width: 180px;height: 41px; line-height: 41px; padding-left: 17px;}
.fa-arrow-right::before{ display: none;}



/*文章管理/＝＝＝＝＝*/
.blog_page .main_part{ max-width: 1400px;}
.blog_in_page .main_part{ max-width: 1400px;}
h4.blog_category_title{font-size: 28px; color: #0091aa;}
h4.blog_category_title span{font-size: 24px;}
h5.blog_le_t{ display: none;}
/*文章管理/外層＝＝*/
.module_i_news {    padding: 100px 20px;}
.module_i_news ul, .blog_subbox {    display: grid;    gap: 0;}
.module_i_news li, .subbox_item {
    width: 100%;
    position: relative;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}
.i_blog_le img, .blog_list_le img{ opacity: 0.7;}
.subbox_item a:hover img { opacity: 1;}
.subbox_item{margin-bottom: 0;}
.module_i_news li:hover, .subbox_item:hover {
    background-color: #0091aa;
    transition: all 0.3s ease-in-out;
}
.module_i_news li:hover:before, .subbox_item:hover:before {    opacity: 0;}
.module_i_news li:hover::after, .subbox_item:hover::after {    opacity: 0;}

.module_i_news li:before, .subbox_item:before, .module_i_news li:after, .subbox_item:after {
    position: absolute;
    width: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 86.04%;
    background-color: #e00012;
    -webkit-transition: opacity .4s linear;
    transition: opacity .4s linear;
    content: "";
}
.module_i_news li:before, .subbox_item:before {left: 0;}
.module_i_news li:after, .subbox_item:after  {    right: 0;}

.module_i_news .title_i_box h6 {
    font-size: 17px;
    color: #0091aa;
    font-family: "Inconsolata", monospace;;
    font-weight: normal;
}
.i_blog_ri h5, .blog_list_ri h5 {
    color: #0091aa;
    font-size: 18px;
    padding-top: 7px;
    padding-bottom: 7px;
    height: 54px;
}
.i_blog_ri p, .blog_list_ri p {
    color: #e00012;
    font-size: 14px;
    line-height: 190%;
    min-height: 60px;
    -webkit-line-clamp: 2;
}
.module_i_news li a, .subbox_item a {
    padding: 5px;
    padding: 8% 14.28% 7.71% 14.28%;
}
.module_i_news li a:after , .subbox_item a:after{pointer-events:none; }
.module_i_news li a:before, .subbox_item a:before {
    display: none;
}
.module_i_news li a:after, .subbox_item a:after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #0091aa;
    -webkit-transition: opacity .4s linear;
    transition: opacity .4s linear;
    content: "";
    opacity: 1;
    border: none;
    top: 100%;
}
.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri {    width: 100%;}
.blog_list_ri{ padding-top: 15px;}
.i_blog_le , .blog_list_le{    position: relative;    padding-bottom: 100%;    height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */



.i_blog_le img , .blog_list_le img{
	display:block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.i_blog_ri em, .blog_list_ri em {
    padding-right: 3.1em;
    font-size: 10px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 14.66%;
    left: 5%;
    color: #24231f;
    font-family: "Noto Serif TC", serif;
}
.module_i_news li a:hover h5, .subbox_item a:hover h5 {    color: #fff;}
.module_i_news li a:hover:before, .subbox_item a:hover:before {    color: #fff;}
.module_i_news li a:hover em, .subbox_item a:hover em {    color: #fff;}
.module_i_news li a:hover  p, .subbox_item a:hover p {    color: #fff;}


/* 卡片滑入效果 */
.product_page .products-list { animation: showleft 1s ease-in-out forwards;}

@keyframes showleft {
    0% { opacity: 0; -webkit-transform: translateX(20px)scale(1); -ms-transform: translateX(20px)scale(1); transform: translateX(20px)scale(1);
    }
  
    100% { opacity: 1; -webkit-transform: translateX(0)scale(1); -ms-transform: translateX(0)scale(1); transform: translateX(0)scale(1);
    }
}
  
.products-list .item a:hover{transform: translateY(-20px);}
.product_pic #bx-pager h6 {display: none;}




/* 服務項目 */
.other_page .banB {display: none;}


/* 工程實績 */
.banE {background-image: url(https://pic03.eapple.com.tw/yiyang-wall/projects.png);
padding: 0px;}
.show-list .item:hover .show_name {color: #ffff;}
.show-list .show_name {    color: #ffff;
}
.other_album_choice li {background: #0091aa;}
.subalbum-menu h2 {color: #0091aa;}
.album_fixed_title {display: none;}

.show-list .show_pic img {border-radius: 10px;}
.other_subalbum li a p {color: unset;
font-size: 16px;
font-weight: bold;}
.pic-list .show_pic img {border-radius: 10px;}
.other_subalbum li {    background: #e00012;border-radius: 10px;}
.other_subalbum li a p {color: #fff;padding: 5px;    text-align: center;}
.album_page .main_part, .album_class_page .main_part, .album_info_page .main_part {padding: 100px 0;}
.album_page .show_content, .album_class_page .show_content, .album_info_page .show_content {max-width: 100%;}
.show-list{grid-template-columns: repeat(3, 1fr);grid-gap: 15px;}
.show-list .item a, .pic-list .item a {display: flex;align-items: center;justify-content: center;}
.show-list .show_pic {width: 100%;aspect-ratio: 5 / 3;}
.show-list .item .overlay {-webkit-transform: scale(1);transform: scale(1);opacity: 1;transition: all 1s 100ms cubic-bezier(.42,0,.58,1);    border-radius: 10px;}
.show-list .item:hover .overlay {opacity: 0;}
.show-list .show_name, .other_subalbum li a p {position: absolute;font-size: 17px;color: #f5f5f5;font-weight: normal;margin-top: 0;
    -webkit-line-clamp: 1;height: auto;opacity: 1;transition: all 1s 100ms cubic-bezier(.42,0,.58,1);}
.show-list .item:hover .show_name, .show-list .item:hover a p {opacity: 0;color: #f5f5f5;transition: all 1s 100ms cubic-bezier(.42,0,.58,1);}
.pic-list .item a .show_pic img {transition: all 1s 100ms cubic-bezier(.42,0,.58,1);}
.pic-list .item a:hover .show_pic img {transform: scale(1.05);transition: all 1s 100ms cubic-bezier(.42,0,.58,1);}

.pic-list{display: block;column-width: 250px;column-count:3;column-gap: 15px; break-inside: avoid;}
.pic-list .item {padding-bottom: 15px;}
.pic-list .show_pic {width: 100%;aspect-ratio: inherit;}

/*次分類*/
.subalbum-menu {margin: 0;padding: 0;}
.subalbum-menu h2, .pic-list .item h6 {display: none;}

.album_descrip {max-width: 1200px;padding: 0 5%;margin: auto;margin-bottom: 50px;color: #ccc;line-height: 1.8;
    font-size: 17px;font-weight: 300;letter-spacing: 0.05em;}

.other_album {max-width: 1500px;margin: auto;padding: 0 5%;}
.album_fixed_title {font-size: 16px;letter-spacing: 0.08em;background: unset;color: #ccc;}







/* 專欄分享 */
.banner.banblog {background-image: url(https://pic03.eapple.com.tw/yiyang-wall/projects.png);}
.blog_back a.article_btn_back {background: #0091aa;}
a:active, a:hover {color: #fff;}
.blog_back a.article_btn_prev {background: #e00012;}
.blog_back a.article_btn_next {background: #e00012;}
a:active, a:hover {color: #fff;}
.news_related h6 {display: none;}
.news_related {display: none;}
.articel_mainPic img {    max-width: 30%;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #0091aa !important;}
.path p, .path p a {display: none;}
.blog_shareData {display: none;}

/* 最新消息-底下按鈕 */
.blog_back a.article_btn_prev {background: #e00012;border-radius: 10px;/* 上一篇 */
transition: all 0.3s ease;/* 動畫時間與平滑效果 */}
.blog_back a.article_btn_prev:hover {
    transform: translateY(-5px) scale(1.05);  /* 浮起並放大 */
    background-color: #0d1d5e;   /* hover 時底色變橘，可換你要的顏色 */
    color: #fff;                 /* hover 時文字變白 */
    box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* 陰影，增加立體感 */
}
.blog_back a.article_btn_next {background: #e00012;border-radius: 10px;/* 下一篇 */
transition: all 0.3s ease;/* 動畫時間與平滑效果 */}
.blog_back a.article_btn_next:hover {
    transform: translateY(-5px) scale(1.05);  /* 浮起並放大 */
    background-color: #0d1d5e;   /* hover  */
    color: #fff;                 /* hover 時文字變白 */
    box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* 陰影，增加立體感 */
}
.blog_back a.article_btn_back {border-radius: 10px;/* 回列表 */
transition: all 0.3s ease;/* 動畫時間與平滑效果 */}
.blog_back a.article_btn_back:hover {
    transform: translateY(-5px) scale(1.05);  /* 浮起並放大 */
    background-color: #0d1d5e;   /* hover */
    color: #fff;                 /* hover 時文字變白 */
    box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* 陰影，增加立體感 */
}
.blog_back {    grid-template-columns: repeat(3, auto);
    justify-content: center;}
.subbox_item a:hover:before, .subbox_item a:hover:after {color: #0091aa;}
.subbox_item a:after {    background: #0091aa4d;}


/* 聯絡我們 */
.path p, .path p a {display: none;}
/* 背景 */
#content {
    min-height: 100vh;   /* 至少佔滿一個螢幕高度 */
    height: auto;        /* 內容可撐高 */
    background: url(https://pic03.eapple.com.tw/yiyang-wall/content-back.png) no-repeat center top;
    background-size: cover;   /* 讓背景隨螢幕縮放填滿 */
    background-repeat: repeat-y;}

.banner h5 {
    width: 100%;
    margin: 0 auto;
    font-size: 40px;
    color: #0091aa;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    position: absolute;
    letter-spacing: 3px;
    font-weight: 500;
    content: "— 工程實績 —" ;}


/*footer*/
/*********下方footer******************/
.footer {background-image: url(https://pic03.eapple.com.tw/yiyang-wall/header-der.png);    overflow: hidden;
}
.footer_menu a {background: none;}
.footer_menu a:hover {background: #e00012;}
.footer_menu a {    color: #0091aa;    border: 1px #0091aa solid;}
.footer_info li p {    color: #0091aa;font-weight: bold;}
.box_link {    display: none;}
a:active, a:hover {    color: #e00012;}


.footer_menu a:nth-of-type(1) {
    display: none;
}
.footer_logo img {    width: 100%;}
.footer_logo {
    text-align: center;
    margin: auto;
	width: 200px;
}
.footer_info {display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;grid-gap: 5px;}
.footer_menu {display: grid;    grid-template-columns: repeat(auto-fit, minmax(min(110px,100%), 1fr));    gap: 5px;}/*footer100px*/
.footer_menu a {    margin: 0;	text-align: center;	padding: 5px;	transition: all 0.3s; color: #0091aa; background: rgba(0,0,0,0); border: 1px #0091aa solid;}
.footer_menu a:hover {    background: #e00012; color: #fff;}
.copy { background: #0091aa; color: #fff;	border:none;}
.copy a{    color: #fff;transition:all 0.3s;}
.box_link { display: none;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {    background: #e00012;    color: #fff;}

p.add, p.phone { display: none;}
.footer_info li {
    flex: 0 0 100%; /* 每個項目佔滿整行 */
    box-sizing: border-box;
    display: block; /* 確保它是 block 元素 */
    width: 100%; /* 萬一需要保險 */
}
.box_link a {color: #0091aa;}

/* 如果裡面有 <p> 或其他元素，也確保他們占滿寬度 */
.footer_info li p {
    display: block;
    width: 100%;
    margin: 0; /* 可以調間距 */
    padding: 0; /* 如需 */
}
/* Copy 橫向滿版 */
.copy {
    width: 100vw;   /* 強制橫向到底 */
    margin: 20px 0 0 0;
    padding: 12px 0;
    background: #0091aa;
    color: #fff;
    text-align: center;
}
.copy p {
    margin: 0;
}
.copy a {
    color: #fff;
    transition: all 0.3s;
}
.copy a:hover {
    color: #ffeb3b;
}
.copy {
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%)/2);
    background: #0091aa;
    color: #fff;
    text-align: center;
    padding: 12px 0;
}
.footer_info li a {color: #0091aa;}
.footer_info {    padding-right: 0px;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* RWD */

@media screen and (max-width:1500px) {
/* BLOG*/
.module_i_news{ width: 80%;}}

@media screen and (max-width: 1024px) {
/* ALBUM*/
.i_album_list, .show-list {grid-template-columns: repeat(2, 1fr);}
}

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
.copy {    padding-bottom: 30px !important;
    margin-bottom: 20px !important;}
.footer {    font-size: 12px;}
.copy {    padding-bottom: 20px;
    margin-bottom: 30px;}
    /* 手機menu子選單 */
.stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 3px #0091aa;}
.stellarnav a.dd-toggle .icon-plus:before { border-bottom: solid 3px #0091aa;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {    background: #fff;}
.stellarnav .icon-close:after {    border-bottom: solid 3px #0091aa;}
.stellarnav .icon-close:before {  border-bottom: solid 3px #0091aa;}
.stellarnav a {color: #0091aa !important;}
.stellarnav .menu-toggle:after {    color: #0091aa;}
.stellarnav .menu-toggle span.bars span {    background: #0091aa;}
/* ALBUM*/
.album_page .main_part, .album_class_page .main_part, .album_info_page .main_part {padding: 80px 0;}
.show-list .show_name, .other_subalbum li a p, .i_album_list li a p {font-size: 16px;}
.album_descrip {font-size: 16px;}

}

@media screen and (max-width: 640px) {
/* BLOG*/
.blog_subbox {grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));}
}

@media screen and (max-width: 600px) {
/* ALBUM*/
.i_album_list, .show-list {grid-template-columns: repeat(1, 1fr);}
.show-list .show_name, .other_subalbum li a p, .i_album_list li a p {font-size: 15px;}
.album_descrip {font-size: 15px;}
}

@media screen and (max-width: 450px) {
/* ALBUM*/
.show-list .show_name, .other_subalbum li a p, .i_album_list li a p {font-size: 14px;}
.album_descrip {font-size: 14px;}
/* BLOG*/
.module_i_news {
    padding: 100px 0px;
}
}
@media screen and (max-width: 425px) {
/* ALBUM*/
.show-list .show_name, .other_subalbum li a p, .i_album_list li a p {font-size: 14px;}
/* BLOG*/
.module_i_news ul {grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));}

}

@media screen and (max-width: 400px) { 
.nav-header {    max-width: 100px;}
.me_tp_features {margin: 0px;}
.stellarnav.mobile {left: 10px;right: 0px;top: 4px;}
#to_top {bottom: 120px;right: 1px;}
#bottom_menu li a {padding: 6px 5px 2px;}
.copy {padding: 5px 0px 30px 0px;position: relative;}
.main_part {padding: 50px 20px 20px;}
.copy {margin-bottom: 20px;}
}


@media screen and (max-width:350px) {
/* BLOG*/
.pageIndex .module_i_news .title_i_box h4:before{width: 280px;margin-left: -15px;}
}





