<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
	font-family: 'Roboto', "Noto Sans TC", sans-serif;
}

body{
	width: 100vw;
	overflow-x: hidden;
	background-image: url(../img/kv-bg2.png),
						linear-gradient(98deg, #5177C8 0%, #51B6C8 92%);
	background-repeat: no-repeat, no-repeat;
	background-position: top center, top center;
	font-size: 16px;
}

@media all and (max-width: 768px) {
	body {
		background-size: contain;
	}
}


h1, h2, h3, h4, h5, h6{
	font-family: 'Roboto', "Noto Sans TC", sans-serif;
}

h1{
	font-size: 3.4em;
	font-weight: 700;
	line-height: 1.2em;
}

h2{
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.4em;
	margin-bottom: 10px;
}

h3{
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.4em;
}

h4{
	font-size: 1.25em;
	font-weight: 700;
}

h5{
	font-size: 1.125em;
	font-weight: 500;
}

h6{
	font-size: 1.1em;
    font-weight: 500;
}

p{
	font-family: 'Roboto', "Noto Sans TC", sans-serif;
	text-align: justify;
	font-size: 1em;
    line-height: 1.4em;
    font-weight: 400;
}

@media all and (min-width: 1024px){
	p{
		font-size: 1.1em;
	}
}

::selection {
    color: #000000;
    background: #ffcc00;
}

.show{
	display: block;
}

.hide{
	display: none;
}

.mobile{
	display: none;
}

.desktop{
	display: block;
}

.clearfix{
	clear: both;
}

section{
	position: relative;
	width: 100%;
	margin: 0 auto;
	/* overflow: hidden; */
}

@media all and (min-width: 1024px){
	h2{
		font-size: 2.2em;
	}

	p{
		font-size: 1.1em;
	}
}

/* ============================================================
LOADING
============================================================ */
.progress {
	position: fixed;
	z-index: 11111;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #f5f5f5;
	color: #ffffff;
}

.progress-inner {
	position: absolute;
	left: calc(50% - 80px);
	top: calc(50% - 26px);
	width: 160px;
	height: 52px;
	background-color: #f5f5f5;
	/*overflow: hidden;*/
}

/* .progress-inner img{
	width: 100%;
} */

.progress-bar {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #f5f5f5;
}

.progress-text {
	color: #007caf;
	font-family: "Roboto", "Noto Sans TC", sans-serif;
	font-size: 1em;
	font-weight: 700;
	position: absolute;
	z-index: 9999999;
	width: 160px;
	text-align: center;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
}

/* .complete {
	overflow: auto;
} */

.progress-logo {
	-moz-transform: scale(1.02, 1.02);
	-ms-transform: scale(1.02, 1.02);
	-webkit-transform: scale(1.02, 1.02);
	transform: scale(1.02, 1.02);
	position: absolute;
	top: 0;
}

.progress-complete .progress-bar {
	background-color: #f5f5f5;
}

/* ============================================================
HEADER
============================================================ */
header{
	width: 100%;
	/* height: 60vh; */
	position: relative;
	margin: 0 auto;
	overflow: hidden;
	/* background: linear-gradient(0deg, #ffcc00, #ffffff, #ffffff); */
}

/* @media screen and (orientation: landscape) {
	header{
		height: 65vh;
	}
} */

.header-bg{
	position: absolute;
	/* top: -25%; */
	left: 50%;
	transform: translate(-50%,0);
	width: 100%;
	max-width: 1400px;
}

.header-bg img{
	width: 100%;
}

.header-content{
	width: 100%;
	/* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%); */
	position: relative;
	/* padding: 10vh 0; */
	background: linear-gradient(180deg, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.00) 100%);
}

.h1-all{
	width: 85%;
	max-width: 300px;
	position: relative;
	margin: 0 auto;
	padding: 4vh 0;
}

.countdown{
	width: 100%;
	max-width: 700px;
	position: relative;
	margin: 0 auto;
	margin-top: 20px;
}

h1{
	width: 100%;
}

h1 img{
	width: 100%;
}

.sub-h1{
	width: 100%;
	height: 50px;
	position: relative;
	text-align: center;
	line-height: 50px;
	color: #ffffff;
	background: #ff6347;
	border-radius: 10px;
	font-size: 1.2em;
    font-weight: 500;
    /* box-shadow: 4px 4px 10px rgba(0,0,0,.5); */
}

.live-icon{
	width: 50px;
	position: absolute;
	right: 0;
	top: 0;
	animation: liveIconMove 1s linear forwards infinite;
}

.live-icon img{
	width: 100%;
}

@keyframes liveIconMove{
	0%{
		top: 0;
	}

	50%{
		top: 20px;
	}

	100%{
		top: 0;
	}
}

@media all and (min-width: 768px){
	.header-bg{
		/* top: -50%; */
		/* opacity: .8; */
	}
}

@media all and (min-width: 480px){
	.live-icon{
		width: 70px;
	}
}



/* ============================================================
FORM
============================================================ */
section.form{
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding-bottom: 50px;
}

.section-container{
	width: 96%;
	max-width: 1100px;
	position: relative;
	margin: 0 auto;
	border-radius: 20px;
	background: #ffffff;
}

.section-content{
	width: 94%;
	position: relative;
	margin: 0 auto;
	padding: 30px 0;
}

.section-content h2{
	font-size: 1.6em;
	font-weight: 600;
	text-align: center;
	color: #5177C8;
}

.section-content p{
	font-size: 1em;
	color: #333333;
	text-align: left;
	margin-bottom: 10px;
}

.section-content p em{
	color: #ff6347;
	font-weight: 500;
	text-decoration: underline;
}

.section-content p.result{
	text-align: center;
}

.intro-all{
	width: 90%;
	max-width: 768px;
	position: relative;
	margin: 10px auto;
}

.intro-text{
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.intro-text h6{
	font-size: 1.2em;
	font-weight: 500;
	color: #333333;
}

.intro-text ul, .intro-text ul li{
	list-style: disc;
	color: #333333;
}

.intro-text ul{
	margin: 10px 0;
	margin-left: 1.2em;
}

.intro-text ul li em{
	color: #FF5B11;
	font-size: 1.5em;
	font-weight: 600;
}

.intro-text ul li span{
	color: #FF5B11;
}

.bag-img{
	width: 80%;
	max-width: 200px;
	position: relative;
	margin: 10px auto;
}

.bag-img img{
	width: 100%;
}

.section-content form{
	width: 100%;
	margin: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.cube-btn{
	width: 180px;
	height: 40px;
	text-align: center;
	line-height: 41px;
	position: relative;
	margin: 10px auto;
	border-radius: 5px;
	background: #ffcc00;
	color: #000000;
	font-size: 1em;
	transition: .2s linear;
}

.cube-btn a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@media all and (min-width: 768px){
	.intro-all{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	.intro-text{
		width: auto;
	}

	.bag-img{
		width: 35%;
		max-width: 35%;
	}

	.cube-btn:hover{
		background: #000000;
		color: #ffffff;
	}
}



.form-item{
	width: 100%;
	position: relative;
	margin: 15px 0;
}

.form-checkbox{
	margin: 0;
}

.form-item label{
	font-size: 1em;
	color: #333333;
	font-weight: 600;
}

.form-item input, .form-item select{
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	box-sizing: border-box;
	background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 1em;
}

.form-item select{
	appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /* background: url('../img/sort-down.svg') no-repeat 96% center transparent, rgba(255, 255, 255, 1.0);
    background-size: 3.5%; */
    padding: 0 10px;
}

.form-item select {
	background-image   : url('../img/sort-down.svg'),
	                     linear-gradient(to right, rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1));

	background-repeat  : no-repeat,
                       no-repeat;

	background-position: 96% center,
                       center;
	background-size: 3%,
					100%;
}

.form-item input.check-box{
	width: auto;
    vertical-align: middle;
}

input[type=checkbox] {
    transform: scale(1.4);
}

.form-item a{
	color: #5177C8;
}

.form-btn{
	width: 250px;
	height: 45px;
	position: relative;
	margin: 10px auto;
	text-align: center;
	line-height: 45px;
	border-radius: 5px;
	background: #FF6347;
	color: #ffffff;
}

.form-btn a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}




@media all and (min-width: 768px) {
	.section-content h2{
		font-size: 2em;
	}

	.form-item-50{
		width: 48%;

	}

	.test-roleAttr-has-zipcode{
		display: flex;
		justify-content: space-between;
	}

	.form-item select.county,
	.form-item select.district,
	.form-item input.zipcode{
		width: 33%;
		font-size: 1em;
	}
}


/* products */
.product-list {
	font-family: 'Roboto', "Noto Sans TC", sans-serif;
}

.product-list a {
	color: #333333;
	transition: all 0.3s ease;
	position: relative;
	display: block;
}

.cover-small a:after {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	padding: 2px;
	background: rgba(90,90,90,0.6);
	content: url(../img/icon-zoom.svg);
	position: absolute;
	right: -10px;
	bottom: 0;
	z-index: 1;
}

.product-list table {
	width: 100%;
	border-spacing: 0;
}

.product-list table tr {
	border-bottom: 1px solid #cccccc;
}

.product-list table tr:first-child {
	background: #646D81;
	color: #ffffff;
}

.product-list table tr td {
	padding: 0.5rem 1rem;
	border-bottom: 1px solid #eeeeee;
}

.product-list table tr td:first-child {
	width: 60px;
}

.product-list table tr td.on-sale {
	color: #ff6347;
}

.product-list button,
.cart-list button {
    width: 100px;
	padding: 4px 0;
	background: #FF5B11;
    border: 0;
    color: #ffffff;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.4s ease;
	outline: 0;
}

.product-list button:hover,
.cart-list button:hover {
	background: #FF8751;
	transition: all 0.4s ease;
}

.cart-list button {
	background: #3D6ED1;
}

.cart-list button:hover {
	background: #6290EC;
}

.cart-list a {
	color: #333333;
	transition: all 0.4s ease;
}

.cart-list a:hover {
	color: #FC9F4C;
	transition: all 0.4s ease;
}

.product-list button.sale-out {
	background: #999999;
	cursor: initial;
}

img.book-cover {
	width: 80px;
	height: auto;
}

p.book-intro {
	font-size: 0.875rem;
	color: #999999;
	max-height: 2.2rem;
	overflow: hidden;
	margin: 5px 0;
}

.see-more {
	font-size: 0.875rem;
}

.see-more:hover,
.see-more:hover {
	color: #FC9F4C;
	transition: all 0.3s ease;
}

.cart-list {
	width: 100%;
}

.cart-list table {
	border-spacing: 0;
	width: 100%;
}

.cart-list table tr:nth-child(odd) {
	background: #eeeeee;
}

.cart-list table tr:first-child {
	background: #646D81;
	color: #ffffff;
}

.cart-list table tr td {
	padding: 0.5rem 2rem;
}

.cart-list table tr td:first-child {
	width: 57%%;
}

.cart-list select {
	width: 70px;
    border: 1px solid #cccccc;
    padding: 5px;
    border-radius: 3px;
}

.cart-list option {
	font-size: 1rem;
}

.cart-list .staff-code {
	color: #ff6347;
}

h3.sub-title{
	font-size: 1.15em;
	font-weight: 600;
	color: #5177C8;
	width: 100%;
	margin: 5px 0;
}

.coupon-code {
	margin-top: 0;
	margin-bottom: 30px;
}

.go-checkout {
	background: #ffffff;
	color: #333333;
	width: 90px;
    height: 90px;
	position: fixed;
	top: 75vh;
	right: -7em;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 6px 20px 0 rgba(0,0,0,0.40);
	z-index: 1;
	font-size: 0.875rem;
}
.go-checkout.hide {
	display: block;
	animation: hideFloatBtn .3s;
	animation-fill-mode: forwards;
}

.go-checkout.show {
	animation: showFloatBtn .3s;
	animation-fill-mode: forwards;
}

@keyframes showFloatBtn {
    0% {
        right: -7em;
        display: block;
    }

    100% {
        right: 10px;
    }
}

@keyframes hideFloatBtn {
    0% {
        right: 10px;
    }

    100% {
        right: -7em;
        display: none;
    }
}

.go-checkout h4 {
	font-weight: 500;
    font-size: 1rem;
    padding: 4px;
    background: #5294D2;
    margin: 8px 0;
    color: #ffffff;
}

.go-checkout h4 img {
	width: 20px;
	height: auto;
    margin-right: 7px;
    margin-bottom: -2px;
}

.go-checkout em {
	font-size: 1.5rem ;
	padding-right: 4px;
	color: #ff6347;
	font-weight: 500;
}

@media all and (max-width: 1024px){
	.product-list button,
	.cart-list button {
		width: 80px;
	}

}

@media all and (max-width: 768px){

	.h1-all {
		max-width: 240px;
	}

	.product-list table,
	.cart-list table {
		font-size: 0.875rem;
		table-layout: fixed;
	}
	
	.product-list table tr td,
	.cart-list table tr td {
		padding: 0.5rem 0.2rem;
	}

	.product-list table tr td:first-child,
	img.book-cover {
		width: 40px;
	}
	
	.product-list table tr td:nth-child(2) {
		width: 45%;
	}

	.cover-small a:after {
		right: 0;
		bottom: -12px;
	}

	.book-intro {
		font-size: 0.6rem;
		max-height: 2rem;
	}

	.cart-list table tr td:first-child {
		width: 42%;
	}

	.product-list button,
	.cart-list button {
		width: 3rem;
		padding: 5px 0;
	}

	.cart-list select {
		width: 50px;
	}

}

.products-wrap{
	width: 100%;
	position: relative;
	margin: 40px auto;
}

.products-wrap.products-wrap-result{
	border-bottom: none;
}

.products-wrap ul{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}

.product-item{
	width: 100%;
	position: relative;
	background: #ffffff;
	border-radius: 10px;
	padding: 20px 0;
	margin: 20px 0;
}

.product-content{
	width: 90%;
	position: relative;
	margin: 0 auto;
	text-align: center;
}

.product-img{
	width: 100%;
	position: relative;
	text-align: center;
}

.product-img img{
	width: 100%;
	position: relative;
	margin: 0 auto;
}

.product-content h4{
	color: #FC9F4C;
	font-weight: 600;
	font-size: 1.25em;
	text-align: justify;
	margin: 10px 0;
}

.product-content h6{
	color: #333333;
	font-weight: 500;
	font-size: 1em;
	text-align: right
}

.product-content h6 em{
	font-weight: 600;
	font-size: 1.5em;
	color: #FF5B11;
	text-decoration: line-through;
}

.product-content select{
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	box-sizing: border-box;
	background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    margin: 10px 0;
	appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url('../img/sort-down.svg'), linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
    background-repeat: no-repeat, no-repeat;
    background-position: 96% center, center;
    background-size: 3%, 100%;
    padding: 0 10px;
    font-size: .95em;
    color: #222222;
}

@media all and (min-width: 768px) {
	.product-item{
		width: 48%;
		margin: 20px 1%;
	}
}

@media all and (min-width: 1024px) {
	.product-item{
		width: 32%;
		margin: 20px .6666%;
	}
}


.product-sum{
	width: 100%;
	border-top: 1px solid #dddddd;
	position: relative;
	margin-top: 3px;
}

.product-sum h5{
	text-align: right;
	color: #222222;
	font-size: 1.1em;
	font-weight: 500;
	margin: 10px 0;
	width: 100%;
}

.product-sum h5 em{
	font-size: 1.8em;
	font-weight: 600;
	color: #FF5B11;
}

.product-discount{
	width: 100%;
	position: relative;
	margin: 10px 0;
}

.product-discount p{
	text-align: left;
	color: #222222;
	font-weight: 400;
	font-size: 1em;
}

.product-discount p em{
	font-size: 1.5em;
	font-weight: 600;
	color: #ff6347;
}

.sale-all{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	padding-top: 40px;
}

.sale-point{
	width: 100%;
	position: relative;
	border-radius: 5px;
	border: 1px solid #eeeeee;
	background: #ffffff;
	margin: 15px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sale-point-container{
	width: 90%;
	position: relative;
	margin: 0 auto;
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.sale-text{
	font-size: 1em;
	color: #333333;
	text-align: left;
	width: 65%;
}

.sale-text em{
	font-size: 1.5em;
	font-weight: 600;
	color: #ff6347;
}

.sale-pic{
	width: 30%;
	position: relative;
}

.sale-pic img{
	width: 100%;
}

.sale-all h3.sub-title{
	width: 100%;
}

@media all and (min-width: 768px) {
	.product-sum{
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}

	.sale-point{
		width: 31%;
		margin: 0 1%;
	}
}

p.deliver-info{
	font-weight: 500;
	color: #ff6347;
	word-wrap: break-word;
	width: 100%;
}








.item-container{
	width: 100%;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.item-content {
    width: 100%;
    position: relative;
    margin: 10px 0;
    padding: 10px 5px;
    box-sizing: border-box;
    border: 2px solid #dedede;
    border-radius: 10px;
}

@media (min-width: 768px){
	.item-content {
	    width: 48%;
	    padding: 10px;
	}
}

.radio-container {
    width: 100%;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.radio-container input{
	width: 30px;
	position: relative;
	margin-top: 6px;
}

input[type=radio] {
    transform: scale(1.4);
}

.radio-container h5{
	width: calc(100% - 50px);
	position: relative;
	font-size: 1.1em;
	color: #333333;
	line-height: 1.4em;
}

.item-container label{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
}

@media all and (min-width: 768px){
	.item-content{
		width: 48%;
		padding: 10px;
	}

	input[type=radio] {
	    transform: scale(1.2);
	}

	.radio-container input{
		margin-top: 5px;
	}
}




/* ============================================================
FOOTER
============================================================ */
footer{
	width: 100%;
	position: relative;
	background: #000000;
	color: #ffffff;
}

footer h5{
	text-align: center;
	font-weight: 600;
	font-size: 1.2em;
	margin: 10px 0;
}

footer p{
	text-align: center;
}

footer p a{
	color: #ffffff;
	text-decoration: underline;
}



.copyright{
	width: 100%;
	position: relative;
	/* border-top: 1px solid #999999; */
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.ng-logo{
	width: 100px;
	position: relative;
	padding: 15px;
}

.boulder-logo{
	width: 150px;
	position: relative;
	padding: 15px;
}

.copyright-p{
	color: #ffffff;
	font-size: .9em;
	padding: 10px;
}

.footer-logo a{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.copyright-p a{
	text-decoration: none;
	color: #f5f5f5;
}



/* ============================================================
GO TOP
============================================================ */

#gotop{
	/* width: 52px;
	height: 52px; */
	/* background: rgba(255,99,71,.7); */
	z-index:9;
	position: fixed;
	right: 0;
	bottom: 0;
	cursor: pointer;
	display:none;
	-o-transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	transition:  .2s linear;
	z-index: 5;

	border-color: transparent rgba(56,235,210,.7) transparent transparent;
    border-style: solid solid solid solid;
 
    /* è¨­å®šé‚Šæ¡†å¤§å°å¯æ‹¼æ¹Šå‡ºä»»æ„å½¢ç‹€çš„ä¸‰è§’å½¢ */
    border-width: 90px 90px 0px 0px;
 
    /* è¨­å®š widthã€height å¯æ›´å¥½ç†è§£åŽŸç† */
    height: 0px;
    width: 0px;
}

#gotop i{
	font-size: 2.5em;
	color: #ffffff;
	/* width: 52px;
	line-height: 52px; */
	text-align: center;
	-o-transition: .2s linear;
	-webkit-transition: .2s linear;
	-moz-transition: .2s linear;
	transition:  .2s linear;
	position: absolute;
	bottom: 5px;
    right: -80px;
}


/* ============================================================
POP UP
============================================================ */
.jquery-modal {
	z-index: 999;
}

.jquery-modal.blocker {
	padding: 25px 10px 10px 10px;
}

.jquery-modal .modal {
	max-width: 600px;
	padding: 0;
}

.jquery-modal .modal a.close-modal {            
	width: 40px;
	height: 40px;
	top: -20px;
	right: -20px;
}

.modal-content {
	overflow: hidden;
	border-radius: 8px;
	padding: 2rem;
	text-align: center;
}

.modal-content img {
	width: 100%;
	max-width: 400px;
}

.modal-content p {
	text-align: left;
	padding-top: 1.5rem;
	font-size: 1rem;
	line-height: 1.5rem;
}

@media all and (max-width: 768px){
	
	.modal-content {
		padding: 2rem 1rem;
	}
	.modal-content img {
		max-width: 300px;
	}
}





/* ============================================================
RWD
============================================================ */
@media all and (max-width: 1440px) {
	
}

@media all and (max-width: 1366px){
	
}

@media all and (max-width: 1280px){
	
}

@media all and (max-width: 1024px) {
	
}

@media all and (max-width: 960px) {
	
}

@media screen and (orientation: portrait) {
	
}

@media all and (max-width: 768px) {
	
}

@media all and (max-width: 640px) {
	
}

@media all and (max-width: 480px) {
	
}


@media all and (max-width: 320px){
	
}

</pre></body></html>