@charset "utf-8";
/*********** 前後台編輯器區塊共用的CSS設定 ***********/
/* ------- about ------- */
/* 首頁關於我們 */
.about-sect .index-about-editor .editor h3 {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: left;
    font-size: 24px;
    font-weight: normal;
    color: #46B183;
    letter-spacing: 12px;
    line-height: 1.2;
    margin: 0 0 20px;
}
.about-sect .editor p {
    margin: 0;
}
@media screen and (max-width: 1000px) {
    .about-sect .index-about-editor .editor h3 {
        text-align: center;
        font-size: 22px;
        letter-spacing: 3px;
        margin: 0 0 10px;
    }
}
/* 內頁關於我們 */
.al_layout {
    position: relative;
    box-sizing: border-box;
    max-width: 1330px;
    margin: 0 auto;
}
.al_layout .a_item,
.al_layout .a_item .a_col {
    position: relative;
    box-sizing: border-box;
    display: block;
}
.al_layout .a_item + .a_item {
    margin: 60px 0 0;
}
.al_layout h3 {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    color: #46B183;
    letter-spacing: 12px;
    line-height: 1.2;
    margin: 0 0 10px;
}
.al_layout h4 {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: left;
    font-size: 20px;
    font-weight: normal;
    color: #46B183;
    letter-spacing: 6px;
    line-height: 1.2;
    margin: 0 0 10px;
    padding: 0 0 0 15px;
}
.al_layout h4::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 20px;
    background: #46B183;
}
.al_layout p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.85;
    margin: 0;
}
.al_layout .a_item.one .a_col:last-of-type {
    text-align: center;
    padding: 40px 0 0;
    margin: 0 auto;
}
.al_layout .a_item.two,
.al_layout .a_item.three {
    display: flex;
    align-items: center;
}
.al_layout .a_item.three{
    margin: 40px 0 0;
}
.al_layout .a_item.two .a_col:first-of-type,
.al_layout .a_item.three .a_col:first-of-type {
    width: 50%;
    padding-right: 30px;
}
.al_layout .a_item.two .a_col:last-of-type,
.al_layout .a_item.three .a_col:last-of-type {
    width: 50%;
    padding-left: 30px;
}
.al_layout .a_item.four {
    text-align: center;
    margin: 60px auto 0;
    width: 100%;
    max-width: 780px;
}
@media screen and (max-width: 1000px) {
    .al_layout h3 {
        font-size: 22px;
        letter-spacing: 3px;
    }
    .al_layout h4 {
        font-size: 18px;
        letter-spacing: 1.5px;
        text-align: center;
        width: fit-content;
        margin: 0 auto 10px;
    }
    .al_layout .a_item + .a_item {
        margin: 50px 0 0;
    }
    .al_layout p {
        font-size: 15px;
    }
    .al_layout .a_item.two,
    .al_layout .a_item.three {
        flex-direction: column;
    }
    .al_layout .a_item.two .a_col:first-of-type,
    .al_layout .a_item.three .a_col:first-of-type {
        width: 100%;
        padding: 0 0 20px;
        text-align: center;
    }
    .al_layout .a_item.two .a_col:last-of-type,
    .al_layout .a_item.three .a_col:last-of-type {
        width: 100%;
        padding: 0;
        text-align: center;
        max-width: 600px;
    }
    .al_layout .a_item.one .a_col:last-of-type {
        padding: 20px 0 0;
    }
}
/* 跑馬燈 */
.marquee {
    width: 100%;
    position: absolute;
    left: -49rem;
    right: -49rem;
    top: 0;
    height: auto; 
    white-space: nowrap;
}
@keyframes marqueeAnimation {
    0% { 
        transform: translateX(0%); 
    }
    100% { 
        transform: translateX(100%); 
    }
}
@keyframes marqueeAnimation2 {
    0% { 
        transform: translateX(-100%); 
    }
    100% { 
        transform: translateX(0%); 
    }
}
.marquee-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    position: absolute;
    top: 0;
}
.marquee-content ul:first-child{
    display: flex;
    animation: marqueeAnimation 70s linear infinite;
}
.marquee-content ul:last-child{
    display: flex;
    animation: marqueeAnimation2 70s linear infinite;
    animation-delay: -70s; 
}
.marquee-content ul > li{
    margin: 0 16px;
    width: 880px;   
}
@media screen and (max-width: 1000px){
    .about-sect .editor h3 {
        font-size: 23px;
        margin: 0 0 5px;
    }
    .marquee-content ul > li {
        margin: 0 16px;
        width: 440px;
    }
}
@media screen and (max-width: 480px) { 
    .marquee-content ul > li {
        margin: 0 8px;
    }
}
/* ------- /about ------- */
/* ------- /products ------- */
.products-editor-pics {
    margin: 0 -6px;
}
.products-editor-pics .col {
    float: left;
    width: 25%;
    padding: 0 6px;
    margin-bottom: 10px;
    text-align: center;
}
/* ------- /products ------- */
/* ------- contact ------- */
.contact-info-list {
    list-style-type: none;
    padding: 15px 0 0;
    margin: 0;
}
.contact-info-list li,
.contact-info-list i,
.contact-info-list span {
    display: inline-block;
    vertical-align: middle;
}
.contact-info-list li {
    width: calc(100% / 4);
    padding: 0;
    font-size: 18px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}
.contact-info-list li:first-child {
    font-size: 14px;
}
.contact-info-list i {
    position: relative;
    box-sizing: border-box;
    width: 55px;
    height: 55px;
    background: #F9F4EA;
    border-radius: 100%;
}
.contact-info-list .ic.ic5-fax:before {
    font-family: 'icon-font' !important;
    content: "\ff002"; 
}
.contact-info-list i::before{
    display: inline-block;
    font-family: 'icon-font-5' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #31160B;
    font-size: 22px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
}
.contact-info-list span,
.contact-info-list a {
    position: relative;
    width: calc(100% - 70px);
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 1px;
}
.contact-info-list a {
    transition: all 0.5s ease;
}
.contact-info-list a:hover {
    color: #46B183;
    text-decoration: underline;
}
/* ------- /contact ------- */
/* ------- terms ------- */
.terms-title {
    color: #46B183;
    font-size: 18px;
    margin: 0 0 0.5em;
    font-weight: normal;
    line-height: 1.2;
}
@media screen and (max-width: 1000px) {
    .terms-title {
        font-size: 16px;
    }
}
/* ------- /terms ------- */
@media screen and (max-width: 1000px) {
    .products-editor-pics .col {
        width: 50%;
    }
    .contact-info-list li {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        width: auto;
        float: none;
    }
    .contact-info-list li:nth-child(n) {
        font-size: 16px;
    }
    .contact-info-list .ic-wrap {
        width: 60px;
    }
    .contact-info-list .txt {
        width: calc(100% - 75px);
    }
}
@media screen and (max-width: 500px) {
    .products-editor-pics .col {
        width: 100%;
    }
}