    @charset "UTF-8";
/**************************************

通用格式

**************************************/

body {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans TC', sans-serif, "微軟正黑體", Arial, Helvetica, sans-serif;
    font-weight: 500;
}

img {
    width: 100%;
    display: block;
}

ul,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}
/**************************************

全域使用設定

**************************************/

.wrapBg {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.couponBg{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5e489b;
    padding: 4px 0;
    box-sizing: border-box;
}

.couponBg .text{
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    margin-right: 8px;
}
.couponBg a{
    width: 278px;
    animation-name: btnAction;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
}

.uuid-code{
    font-size: 0;
}

.productBg ul {
    display: flex;
    flex-wrap: wrap;
    padding: 2% 4px;
    box-sizing: border-box;
}

.productBg ul li {
    margin-bottom: 2%;
    flex: 0 0 33.3333%;
}

.productBg ul li a {
    margin: 0 4px;
    display: block;
}

.productBg ul li a .text {
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 2% 0;
    box-sizing: border-box;
    background-color: #000;
}

footer {
    padding-bottom: 1px;
}

footer .linkArea {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 2% 0;
    box-sizing: border-box;
}

footer .linkArea span {
    font-size: 20px;
}

footer .linkArea .text {
    margin: 0 4px;    
}

footer .linkArea .item {
    margin: 0 4px;
    width: 32px;
}

footer .infoArea {
    background-color: rgba(255, 255, 255, 0.6);
    margin: 2% 2%;
    text-align: center;
    padding: 2% 2%;
    box-sizing: border-box;
    font-size: 20px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
}

footer .infoArea .head {
    text-align: center;
    font-weight: 900;
    margin-bottom: 4px;
}

footer .infoArea .text {
    margin-bottom: 4px;
}

footer .infoArea a {
    text-decoration: underline;
    color: #00aaff;
}

@keyframes btnAction {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
}

@media only screen and (max-width: 468px) {
    .productBg ul li {
        flex: 0 0 50%;
    }
    .productBg ul li a .text {
        font-size: 16px;
    }
    footer .linkArea span {
        font-size: 16px;
    }
    footer .infoArea {
        text-align: left;
        font-size: 16px;
    }
    footer .infoArea .head {
        font-size: 20px;
    }
    footer .linkArea .item {
        margin: 0 8px;
    }
    .couponBg .text{
        font-size: 5vw;
    }
    .couponBg a{
        width: 32vw;
    }
}

/**************************************

顏色設定

**************************************/
body.first .wrapBg{
    background-color: #e89509;
}
body.first footer{
    background: url(../images/bottomBg_a.jpg) center bottom no-repeat;
    background-size: 100% auto;
}
body.first footer .linkArea {
    background-color: #eb6109;
    border: 1px solid #f18900;
}

body.second .wrapBg{
    background-color: #cde6eb;
}
body.second footer{
    background: url(../images/bottomBg_b.jpg) center bottom no-repeat;
    background-size: 100% auto;
}
body.second footer .linkArea {
    background-color: #2351a3;
    border: 1px solid #fff;
}
