@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body main, body footer {
    line-height: 1;
    text-align: center;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h4,
h5,
h6 {
    font-family: "Roboto Condensed",Roboto,"Noto Sans TC","Noto Sans SC","Noto Sans JP","Noto Sans KR",Prompt,sans-serif !important;
}

main *{
    box-sizing: border-box;
}

/* universal */
.font-small {
    font-size: 0.8rem;
    font-family: "Roboto Condensed",Roboto,"Noto Sans TC","Noto Sans SC","Noto Sans JP","Noto Sans KR",Prompt,sans-serif !important;
    line-height: 1.2;
}

.font-normal {
    font-size: 1rem;
    font-family: "Roboto Condensed",Roboto,"Noto Sans TC","Noto Sans SC","Noto Sans JP","Noto Sans KR",Prompt,sans-serif !important;
    line-height: 1.5;
}

.font-medium,
.font-large {
    font-size: 1.2rem;
    font-family: "Roboto Condensed",Roboto,"Noto Sans TC","Noto Sans SC","Noto Sans JP","Noto Sans KR",Prompt,sans-serif !important;
    line-height: 1.5;

}

.font-title {
    font-size: 2rem;
    line-height: 1.2;
    font-family: Superscripts-Oswald,Oswald,"Roboto Condensed",Roboto,"Noto Sans TC","Noto Sans SC","Noto Sans JP","Noto Sans KR",Prompt,sans-serif !important;

}

@media screen and (min-width: 1024px) {
    .font-large {
        font-size: 1.5rem;
    }

    .font-large {
        font-size: 2rem;
        line-height: 1.2;
    }

    .font-title {
        font-size: 3rem;
    }
}

.font-black {
    color: black !important;
}

.font-white {
    color: white !important;
}

.font-gray {
    color: #999999 !important;
}

.font-dark-gray {
    color: #666666 !important;
}

.oswald {
    font-family: Superscripts-Oswald,Oswald,"Roboto Condensed",Roboto,"Noto Sans TC","Noto Sans SC","Noto Sans JP","Noto Sans KR",Prompt,sans-serif !important;
}

.roboto {
    font-family: "Roboto Condensed",Roboto,"Noto Sans TC","Noto Sans SC","Noto Sans JP","Noto Sans KR",Prompt,sans-serif !important;
}

.padding-left-right {
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (min-width: 1024px) {
    .padding-left-right {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.btn-black {
    background-color: black;
    border: 1px solid black;
    color: white !important;
    padding: 10px 20px;
    border-radius: 40px;
    display: inline-block;
    font-family: "Roboto Condensed",Roboto,"Noto Sans TC","Noto Sans SC","Noto Sans JP","Noto Sans KR",Prompt,sans-serif !important;
}

.btn-black.outline {
    background-color: transparent !important;
    color: black !important;
}

.btn-black.white-outline {
    background-color: transparent !important;
    color: white !important;
    border-color: white!important;
}

@media screen and (min-width: 1024px) {
    .btn-black:hover {
        background-color: white;
        color: black !important;
    }

    .btn-black.outline:hover, .btn-black.white-outline:hover {
        opacity: 0.6;
    }

    .btn-black.white-outline:hover {
        color: white !important;
    }
}

/* scroll hint */
.scroll-wrapper {
    width: fit-content;
    text-align: center;
    position: relative;
    margin: 0 auto 20px;
    padding-right: 16px;
}

.scroll i {
    position: absolute;
    right: -10px;
    top: 0;
    animation: right 1.5s infinite;
}

@keyframes right {
    65% {
        opacity: 1;
    }

    100% {
        right: 0;
        opacity: 0;
    }
}

@media screen and (min-width: 720px) {
    .scroll-wrapper {
        display: none;
    }
}

/* scroll bar */
body ::-webkit-scrollbar {
    width: 6px;
    height: 5px;
}

/* hero */
.hero {
    background-image: url(../images/hero-bg.jpg);
    background-size: auto 38%;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: white;
    position: relative;
    z-index: 4;
    overflow: hidden;
}

@media screen and (min-width: 640px) {
    .hero {
        background-size: auto 50%;
    }
}

@media screen and (min-width: 1024px) {
    .hero {
        background-size: 100% auto;
    }
}

.hero-products {
    width: 95%;
    max-width: 700px;
    margin: 45% auto 0;
}

@media screen and (min-width: 1024px) {
    .hero-products {
        margin: 7% auto 0;
    }
}

.hero h2 a {
    margin: 10px auto;
}

/* nav */
.category {
    width: 100%;
    max-width: 1560px;
    margin: 40px auto;
    padding: 0 20px 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    white-space: nowrap;
    overflow-x: auto;
}

.category-content {
    width: 200px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    .category-content:hover span::after {
        content: '';
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background-color: black;
        opacity: 0.2;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.category-content img {
    width: 50%;
    max-width: 100px;
    position: relative;
    z-index: 1;
}

.category-content span {
    width: 100%;
    height: 100%;
    padding: 40px 10px 20px;
    margin-top: -40px;
    border-radius: 10px;
    position: relative;
    word-break: break-word;
    white-space: normal;
}

/* sticky nav */
.nav-bar {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow-x: auto;
    margin: -113px auto 60px;
}

.nav-bar a {
    display: inline-block;
    padding: 15px 20px;
}

.nav-bar a.on {
    color: black!important;
    border-bottom: 3px solid black;
    padding: 15px 20px 12px;
}

@media screen and (min-width: 1024px) {
    .nav-bar a:hover {
        color: black!important;
        border-bottom: 3px solid black;
        padding: 15px 20px 12px;
    }
}

/* main */
.main-content {
    padding-top: 52px;
    margin-top: -52px;
}

.section-banner {
    width: 100vw;
    max-height: 450px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-banner img {
    width: 150%;
}

@media screen and (min-width: 640px) {
    .section-banner img {
        width: 100%;
    }
}

.section-banner h2 {
    position: absolute;
    top: 45%;
}

.decorative-border {
    width: 30%;
    height: 5px;
    display: block;
    margin: 5px auto 0;
}

.fix-btn {
    position: fixed;
    right: 10px;
    bottom: 40px;
    z-index: 3;
    margin-bottom: 0;
}

.fix-btn a {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #6DCFF6;
    border: 1px solid #6DCFF6;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

@media screen and (min-width: 1024px) {
    .fix-btn a:hover::after {
        content: '';
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: black;
        opacity: 0.2;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.fix-btn span {
    line-height: 1.2;
}

/* table */
.top-sell-product {
    width: 100%;
    margin: 40px auto;
    /* overflow: auto; */
    position: relative;
}

.top-sell-product-scroll {
    position: sticky;
    top: -150px;
    left: 0;
    z-index: 2;
}

.top-sell-product-content {
    /* width: fit-content;
    width: -moz-fit-content; */
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    margin: 0 auto 20px auto;
    padding-bottom: 20px;
    overflow: auto;
}

/* 1隻產品*240px width */
@media screen and (min-width: 240px){
}

/* 2隻產品*240px width */
@media screen and (min-width: 480px){
    #golf-products {
        justify-content: center;
    }
}

/* 3隻產品*240px width */
@media screen and (min-width: 720px){
    #run-products, #health-products {
        justify-content: center;
    }
}

/* 4隻產品*240px width */
@media screen and (min-width: 960px){
    #fashion-products, #dive-products {
        justify-content: center;
    }
}

/* 5隻產品*240px width */
@media screen and (min-width: 1200px){
    #marq-products {
        justify-content: center;
    }
}

/* 6隻產品*240px width */
@media screen and (min-width: 1440px){
}

/* 7隻產品*240px width */
@media screen and (min-width: 1680px){
    #outdoor-products {
        justify-content: center;
    }
}

.top-sell-product-content .products {
    width: 240px;
    min-width: 240px;
    text-align: center;
    vertical-align: baseline;
    padding: 0 10px 55px 10px;
    position: relative;
}

.top-sell-product-content .products .sale-price {
    margin: 0;
}

.top-sell-product-content .products dl.color-con {
    position: relative;
    margin-top: 10px;
}

.top-sell-product-content .products dl.color-con dt.on {
    display: block;
    margin: 5px auto;
}

.top-sell-product-content .products dl.color-con dt.off {
    display: none;
}

.top-sell-product-content .products dl.color-con dd {
    width: 20px;
    height: 20px;
    background-color: #3C3C3C;
    border-radius: 50%;
    display: inline-block;
    margin: 7px;
    cursor: pointer;
    position: relative;
    color: #adadad;
    font-size: 12px;
    font-weight: normal;
    line-height: 2;
    vertical-align: middle;
}

.top-sell-product-content .products dl.color-con dd,
.top-sell-product-content .products dl.color-con dd:focus {
    outline: none;
    caret-color: transparent;
    -webkit-tap-highlight-color: transparent;
}

.top-sell-product-content .products dl.color-con dd img {
    vertical-align: middle;
    filter: invert(88%) sepia(1%) saturate(975%) hue-rotate(357deg) brightness(82%) contrast(78%);
}

.top-sell-product-content .products dl.color-con dd.active::after {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #999;
    position: absolute;
    top: -2px;
    left: -2px;
}

.top-sell-product-content .products .price-con {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.top-sell-product-content .products .products-image,
.top-sell-product-content .products .series-name span,
.top-sell-product-content .products .price-con div {
    display: none;
}

.top-sell-product-content .products .products-image.active,
.top-sell-product-content .products .series-name span.active,
.top-sell-product-content .products .price-con div.active {
    display: inline;
}

.disappear {
    display: none;
}

.compare-item-wrapper {
    /* width: fit-content;
    width: -moz-fit-content; */
    overflow: auto;
}

.compare-item {
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
    position: relative;
    display: none;
}

.compare-item-wrapper.on .compare-item,
.compare-item:nth-child(1),
.compare-item:nth-child(2),
.compare-item:nth-child(3),
.compare-item:nth-child(4),
.compare-item:nth-child(5),
.compare-item:nth-child(6) {
    display: block;
}

.compare-item .compare-item-name {
    width: 100vw;
    margin-bottom: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
}

.compare-item .compare-item-name .centered-title {
    background-color: white;
    padding: 0 10px;

}

.compare-item .question-mark {
    border: 1px solid black;
    border-radius: 50%;
    padding: 0.5px 5px;
    margin-left: 5px;
    vertical-align: middle;
}

.compare-item-content {
    width: fit-content;
    width: -moz-fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.compare-item-content::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #d5d5d5;
    position: absolute;
    top: -35px;
    left: 0;
}

.compare-item-content h5 {
    width: 240px;
    min-width: 240px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.show-more {
    margin-bottom: 40px;
    cursor: pointer;
}

.show-more img {
    vertical-align: baseline;
}

/* common-features */
.custom-html.features {
    padding: 40px 0 35px;
    background-color: #f1f1f1;
    position: relative;
}

.common-features h4 {
    width: 170px;
    font-size: 1rem;
    color: #666666;
    font-weight: normal;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin: 20px 10px;
}

.common-features h4 a {
    font-size: 1rem;
    line-height: 1.5;
    color: #666666;
    text-decoration: none;
}

.common-features h4 img {
    width: 50px;
    display: block;
    margin: 0 auto;
}

/* pop up */
.feature-popup {
    width: 80vw;
    font-size: 1rem;
    max-width: 500px !important;
    text-align: center !important;
    padding: 40px;
}

/* Marq */
#marq .top-sell-product {
    background-image: url(../images/marq-spec-bg.jpg);
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    padding: 40px 0;
}

#marq .top-sell-product h2 {
    width: fit-content;
    margin: 40px auto 0;
}

#marq .top-sell-product .marq-logo {
    max-width: 300px;
    margin-top: 40px;
}

#marq .top-sell-product-content {
    background-color: transparent;
}

#marq-products .product-image-con img {
    max-width: 140px;
    margin: 0 auto;
}

#marq-products .series-name {
    color: white!important;
}

#marq-products .price-con a {
    border-color: white;
    background-color: transparent;
}

@media screen and (min-width: 1024px){
    #marq-products .price-con a:hover {
        border-color: black;
        background-color: black;
        color: white!important;
    }
}

.marq-features {
    /* background-image: url(../images/stone-bg.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y; */
    background-color: black;
    text-align: center;
    padding: 80px 0;
}

.marq-features img {
    max-width: 1000px;
    margin: 0 auto;
}

.marq-watch-case {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.marq-watch-case h5 {
    max-width: 1400px;
}

.marq-content {
    padding-bottom: 80px;
}