
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('https://kenwheeler.github.io/slick/slick/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('https://kenwheeler.github.io/slick/slick/fonts/slick.eot');
    src: url('https://kenwheeler.github.io/slick/slick/fonts/slick.eot?#iefix') format('embedded-opentype'), url('https://kenwheeler.github.io/slick/slick/fonts/slick.woff') format('woff'), url('https://kenwheeler.github.io/slick/slick/fonts/slick.ttf') format('truetype'), url('https://kenwheeler.github.io/slick/slick/fonts/slick.svg#slick') format('svg');
        font-weight: normal;
        font-style: normal;
        
}
/* Arrows */
.slick-prev,
.slick-next,
.slick_newhot-prev,
.slick_newhot-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;
    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus,
.slick_newhot-prev:hover,
.slick_newhot-prev:focus,
.slick_newhot-next:hover,
.slick_newhot-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before,
.slick_newhot-prev:hover:before,
.slick_newhot-prev:focus:before,
.slick_newhot-next:hover:before,
.slick_newhot-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before,
.slick_newhot-prev.slick_newhot-disabled:before,
.slick_newhot-next.slick_newhot-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
	  border: solid #fff;
	  border-width: 0px 4px 4px 0;
	  display: inline-block;
	  padding: 12px ;
}

.slick-prev
{
    left: 10px;
    position: absolute;
    z-index:999;
}
.slick-prev:before
{
    /*content: '→';
    content: '‹';*/
    content: '';
	  transform: rotate(135deg);
}
.slick-next
{
    right: 18px;
}
.slick-next:before
{
    /*content: '←';
    content: '›';*/
    content: '';
	  transform: rotate(-45deg);
}

/* Dots */
/* 3. 分頁圓點 (Dots) - 徹底解決位移問題 */
.slick-dots {
    position: absolute;
    bottom: 15px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 3;
}

.slick-dots li {
    position: relative;
    margin: 0 6px;
    padding: 0;
    width: 12px;   /* 固定寬度 */
    height: 12px;  /* 固定高度 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li button {
    box-sizing: border-box; /* 確保 border 不撐開寬度 */
    cursor: pointer;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFF;
    border: none;
    outline: none;
    opacity: 0.5;
    padding: 0;
    text-indent: -999px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* --- 徹底隱藏數字的關鍵組合 --- */
    font-size: 0;          /* 字體大小變 0 */
    line-height: 0;        /* 行高變 0 */
    color: transparent;    /* 文字透明 */
    text-indent: -9999px;  /* 傳統位移法 */
    overflow: hidden;      /* 溢出隱藏 */
    /* -------------------------- */
    

}

/* --- 選中或點擊狀態 (Active) --- */
.slick-dots li.slick-active button {
    opacity: 1;
    background: transparent;
    /* 用 box-shadow 代替 border，這絕對不會導致位移 */
    box-shadow: inset 0 0 0 2px #FFF; 
    transform: scale(1.3); /* 選中時稍微放大，視覺更亮眼 */
}

/* 懸停狀態 */
.slick-dots li button:hover {
    opacity: 0.9;
}

/* 移除所有舊有的 :before 影響 */
.slick-dots li button:before {
    display: none !important;
}

/* Arrows_newhot */

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #DDD;
    color: #FFF;
    border: none;
    padding: 10px 3px;
    cursor: pointer;
    z-index: 10;
  }

  .prev-btn { left: 0; }
  .next-btn { right: 0; }