/*套件*/
@import "bootstrap.min.css";
@import "hover-min.css";
@import "animate.css";

/*手機版*/
@import "main-mobile.css";


:root {
    /* 橘 var(--orange) */
    --orange: #f76f1a;
    /* oneone紅 var(--oneone-red) */
    --oneone-red: #D1080F;
}

.bg-black {
    background: #000;
}

.bg-white {
    background: #fff;
}

.bg-orange {
    background: var(--orange)
}


/* 共同css */

body {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
    background: #f6f6f6;
}

img {
    max-width: 100%;
}

a {
    cursor: pointer;
}

p,
li {

    text-align: left;
}

.display-web {
    display: inline-block;
}

.display-mobile {
    display: none;
}

.container {
    padding: 0;
    width: 100%;
    max-width: 1280px;
    text-align: center;
    margin: 0 auto;

}

p,
a,
li {
    font-size: 20px;
    color: var(--navbar-color);
}


a:hover {

    text-decoration: none;
    color: #000;
}



/*按鈕*/
/*bootstrape-fix*/
.btn {
    background: var(--accent-color);
    text-align: center;
    display: inline-block;
    margin: 0 10px 20px;
    color: #fff !important;
    padding: 5px 20px;
    font-size: 20px;
    border-radius: 0;
    min-width: 200px;
}

.btn:hover,
.btn:active,
.btn.active {
    background: var(--secondary-color);
}



/*flex橫排均分*/
.flex-between {
    display: flex;
    justify-content: space-between;
}

/*flex靠左對齊*/
.flex-left {
    display: flex;
    justify-content: flex-start;
}

/*flex靠右對齊*/
.flex-right {
    display: flex;
    justify-content: flex-end;
}

/*flex靠中對齊*/
.flex-center {
    display: flex;
    justify-content: center;
}

/*flex靠上對齊*/
.flex-start {
    display: flex;
    align-items: flex-start;
}

/*flex上下置中對齊*/
.flex-middle {
    display: flex;
    align-items: center;
}






/*fixed按鈕*/
.btn-fixed {
    position: fixed;
    right: 10px;
    bottom: 100px;
    display: none;
    text-align: right;
    z-index: 1200;
}


.btn-fixed a {
    display: block;
    margin: 0 0 20px 0;
}

nav {
    background: #fff;
    padding: 15px;
}

nav .logo,
nav .logo img {
    width: 220px;
    height: auto;
}

nav .btn-icon,
nav .btn-icon img {
    width: 80px;
    height: auto;
}

.index-header {
    background: #a0d4bd url(../img/bg.jpg) center 0 no-repeat;
    position: relative;
    background-size: cover;
    text-align: center;
    aspect-ratio: 1400 / 860;
    width: 100%;
}

.header-title {
    max-width: 60%;
    padding: 3% 0 0 0;
    margin: 0 auto;
}

.header-left {
    position: absolute;
    top: 30%;
    left: 0;
    z-index: 50;
    max-width: 35%;
}


.index-header .monster {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-bottom {
    padding: 0;
    position: absolute;
    bottom: 5%;
    left: 0;
    z-index: 150;
    text-align: center;
    width: 100%;
}

.header-bottom img {
    max-width: 55%;
    display: block;
    margin: 0 auto;
}

.header-bottom a img {
    max-width: 22%;
}

section {
    padding: 60px;
}

.btn-go {
    margin: 30px auto;
}

.btn-go a {
    position: relative;
}

.btn-go a img {
    max-width: 60%;
}

.point {
    position: absolute;
    right: -50px;
    bottom: -100px
}

footer {
    width: 100%;
    background: #000;
    margin: 0;
    padding: 15px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 10px;
    color: #fff;
    text-align: center;
}

footer .nav-logo {
    width: 100px;
    margin: 0 10px;
}

@media screen and (max-width:800px) {
    .display-web {
        display: none;
    }

    .display-mobile {
        display: inline-block;
    }

    section {
        padding: 30px;
    }

    .index-header {
        aspect-ratio: 800 / 1000;

    }

    .header-title {
        max-width: 90%;
        padding: 5% 0 0 0;

    }

    .header-left {
        position: absolute;
        top: 16%;
        max-width: 50%;
    }




    .header-bottom img {
        max-width: 90%;
    }

    .header-bottom a img {
        max-width: 40%;
    }

    .btn-go a img {
        max-width: 90%;
    }

    .point {
        position: absolute;
        right: 0;
        bottom: -25px;
    }

    .btn-go .point img {
        max-width: 40px;
    }

    .btn-fixed {
        right: 10px;
        bottom: 50px;
    }
}