﻿#flexiselDemo3
{
	display: none;
}

.nbs-flexisel-container
{
	position: relative;
	max-width: 100%;
}
.nbs-flexisel-ul
{
	width:9999px;
	position: relative;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}

.nbs-flexisel-inner
{
	overflow:hidden;
    float:left;
    width:100%;
    background:#fcfcfc;
    background: #fcfcfc -moz-linear-gradient(top, #fcfcfc 0%, #eee 100%); /* FF3.6+ */
    background: #fcfcfc -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(100%,#eee)); /* Chrome,Safari4+ */
    background: #fcfcfc -webkit-linear-gradient(top, #fcfcfc 0%, #eee 100%); /* Chrome10+,Safari5.1+ */
    background: #fcfcfc -o-linear-gradient(top, #fcfcfc 0%, #eee 100%); /* Opera11.10+ */
    background: #fcfcfc -ms-linear-gradient(top, #fcfcfc 0%, #eee 100%); /* IE10+ */
    background: #fcfcfc linear-gradient(top, #fcfcfc 0%, #eee 100%); /* W3C */
    border:0px solid #ccc;
    border-radius:0px;
    -moz-border-radius:0px;
    -webkit-border-radius:0px;  
}

.nbs-flexisel-item
{
	float: left;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	position: relative;
	line-height: 0px;

}
.nbs-flexisel-item img
{
	width: 100%;
	cursor: pointer;
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 110px;
	height: 44px;
	text-align: center;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
	width: 22px;
	height: 22px; 
	position: absolute;
	cursor: pointer;
	z-index: 999;
	opacity: 0.5;
}

.nbs-flexisel-nav-left {
	left: 10px;
	background: url(../images/button-previous.png) no-repeat;
}

.nbs-flexisel-nav-right {
	right: 5px;
	background: url(../images/button-next.png) no-repeat;
}

/*-----------------------------------------------------------*/
.ad-pulse-right-bottom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    z-index: 9999;
    overflow: visible;
    animation: pulseAnimation 2s infinite ease-in-out;
}


.ad-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background-color: #222;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 10;
    transition: background 0.2s;
}

    .ad-close-btn:hover {
        background-color: #ff3333;
    }


.ad-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

    .ad-image-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: scale(1.05); /* 放大 5% */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* 放大時陰影加深 */
    }

    100% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }
}