body {
    background: #eee;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

/* banner */
.banner{
    height:950px;
    width: 100%;
    background-image:url(../images/hot-page/banner.jpg);
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-size: cover; 
}

.page-title{
    position: relative;
    max-width: 100px;
    top:20%;
    left: 70%;
}

.bannerText{
    position: relative;
    width: 670px;
    right: 500px;
    top: 20px;
    font-size: 40px;
    text-align: right;
}
  
/* 輪播區塊 */
.wrapper{
    width: 100%;
    background-image:url('../images/hot-page/plants-background.jpg') ;
    background-size: cover;
    padding: 100px 0;
}

.swiper-container {
    width: 80%;
    height: 100%;
    padding: 5% 35px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 50px 0;
    display: flex;
}

.swiper-slide::before{
    content: "";
    padding-top: 75%;
}

/* 點點 */
.swiper-pagination-custom {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-pagination-customs {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background: #000;
    opacity: .3;
    margin: 0 5px;
}

.swiper-pagination-customs-active {
    opacity: 1;
    background-color: #F78E00;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 40px;
    left: 0;
    width: 100%;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 12px;
}

.swiper-pagination-bullet {
    width: 100px;
    height: 4px;
    display: inline-block;
    border-radius: 0%;
    background: #51585f;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff0d0d;
}


/*解析度在1366像素下的樣式*/
@media screen and (max-width: 1366px) {
    
    .page-title img{
        width: 140px;
        padding: 0 5%;
    }

    .bannerText{
        width: 600px;
        font-size: 30px;
    }
}


/*解析度在1024像素下的樣式*/
@media screen and (max-width: 1024px) {
    .banner{
        height:800px;
    }

    .page-title img{
        width: 120px;
        padding: 0 5%;
    }
}


/*解析度在768像素下的樣式*/
@media screen and (max-width: 768px) {
    .banner{
        height:80vw;
        background-attachment: local;   
    }
    
    .page-title{
        top:105%;
        left: 10%;
    }

    .page-title img{
        width: 100px;
        padding: 0 5%;
    }
    
    .bannerText{
        max-width: 450px;
        font-size: 25px;
        right: 50px;
    }
    
    .swiper-container{
        width: 100%;
    }
    
    .swiper-pagination-bullet {
        width: 42px;
    }
    .swiper-container {
        padding: 15% 50px 40px;
    }
}


/*解析度在580像素下的樣式*/
@media screen and (max-width: 580px) {
    .page-title{
        top:110%;
        left: 10%;
    }

    .page-title img{
        width: 80px;
        padding: 0 5%;
    }

    .bannerText{
        font-size: 18px;
        right: 100px;
        top:0px;
    }

    .wrapper{
        padding: 70px 0;
    }

    .swiper-container {
        padding: 20% 25px 40px;
    }
}


/*解析度在414像素下的樣式*/
@media screen and (max-width: 414px) {
    
    .page-title{
        top:110%;
        left: 10%;
    }

    .page-title img{
        width: 60px;
        padding: 0 5%;
        margin-bottom: 15px;
    }

    .bannerText{
        right: 150px;
        /* top:15px; */
    }

    /* 輪播條長度 */
    .swiper-pagination-bullet {
        width: 40px;
    }

    .swiper-container {
        padding: 20% 25px 40px;
    }

}


/*解析度在320像素下的樣式*/
@media screen and (max-width: 320px) {
    
    .bannerText{
        font-size: 15px;
        /* top: 0px; */
        right: 200px;
    }

    .wrapper{
        padding: 50px 0;
    }

}