@charset "utf-8";
/* CSS Document */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    font-family: "微軟正黑體", "Microsoft JhengHei", Helvetica
}

map :focus {
    outline: none
}

a {
    text-decoration: none;
}

body {
    min-width: 100%;
    background-color: #fff;
    background-attachment: scroll;
    margin: 0;
}

img {
    display: block;
    border: 0;
}

ol,
ul,
li {
    list-style: none
}

.clearfix::after {
    clear: both;
    display: block;
    height: 0;
    visibility: hidden
}

.clearfix {
    display: inline-block
}

html[xmlns] .clearfix {
    display: block
}

a,
a:hover,
.hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
}

/*固定在頁面最上方*/
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px;
    width: 1100px;
    margin: 0 auto;
}

.right-items {
    display: flex;
    align-items: center;
    gap: 16px;
}

.right-items a {
    color: #fff;
}

.icon_logo {
    width: 26px;
}

/* 註冊按鈕 */
.btn-register {
    display: inline-block;
    padding: 6px 16px;
    background-color: #000;
    border: 1px #fff solid;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-register:hover {
    background-color: #000;
    border: 1px #999 solid;
}


/******************/

.wrap {
    background-image: url(../images/index_top_bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    min-width: 1200px;


}

.kv {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.kv_content {
    margin: 0 auto;
    width: 1200px;
    position: relative;
    height: 628px;
}

.kv_title {
    position: absolute;
    top: 130px;
    right: 60px;
    z-index: 2;
}


.content {
    background-image: url(../images/index_bg.png);
    background-repeat: repeat-y;
    background-position: top center;
}

.content_0 {
    margin: 0 auto;
    width: 1110px;
    position: relative;
    padding: 60px 0 90px 0;
}



.content_01 {
    background: #ff892a;
    padding: 60px 0 90px 0;
}
.content_01_box{
    margin: 0 auto;
    width: 1110px;
}
.content_01 .title {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.content_01 .list {
    background: #ffd554;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 22px;
    padding: 44px 0;
}

.content_02 {
    background-image: url(../images/con02_bg.png);
    width: 1110px;
    height: 451px;
    margin: 80px auto 0 auto;
}

.content_02 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 60px;
    padding-top: 204px;
}


.content_03 {
    background: #ff892a;
    padding: 60px 0 90px 0;
}
.content_03_box{
    margin: 0 auto;
    width: 1110px;
}
.content_03 ul {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.content_04 {
    margin: 0 auto;
    width: 1110px;
    padding: 60px 0 90px 0;
}

.content_04 ul {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.notice {
    margin: 0 auto;
    width: 1110px;
    padding-top: 50px;
}

.notice .content {
    background: #fff;
    border-radius: 30px;
    padding: 50px 44px 24px 44px;
    font-size: 17px;

}

.notice .notice_group {
    line-height: 26px;
    margin-bottom: 32px;
}

.notice b {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}

.notice_box {
    margin-bottom: 32px;
    padding-left: 16px;
}

.notice_list {
    margin-bottom: 8px;
    padding-left: 34px;
}

.notice_list li {
    list-style-type: decimal;
}

/*style*/

.h50 {
    height: 50px;
}

.fw_bold {
    font-weight: 800;
}

.t_red {
    color: #e11717;
}

.content_01 li:hover,
.content_03 li:hover,
.content_04 li:hover {
    transition: 0.3s;
    -webkit-filter: brightness(110%);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, .3));
}

.click {
    animation: click 1.1s linear infinite alternate;
}

@keyframes click {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        filter: brightness(100%);
    }

    50% {
        -webkit-transform: scale(0.94);
        transform: scale(0.94);
        filter: brightness(100%);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        filter: brightness(100%);
    }

    /*手機版*/
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        body {
            height: 486px;
            background-size: cover;
        }

        .kv_content {
            height: 480px;
        }

        .kv_title {
            top: 70px;
            right: 124px;
        }

        .notice b {
            font-size: 36px;
        }
    }