@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
}

html {
    scroll-behavior: smooth;
}

:root {
    scroll-padding-top: 70px;
}

/*不讓Navbar的高度遮住下錨點的區塊*/

a {
    text-decoration: none;
}

body {
    min-width: 100%;
    background-color: #66c7f9;
    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_bg.jpg);
    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: 699px;

}

.kv_logo {
    position: absolute;
    top: 104px;
    right: 60px;
}

.kv_title {
    position: absolute;
    top: 210px;
    right: 234px;
    z-index: 2;
}


.content {}


.content_01 {
    margin: 210px auto 90px auto;
    width: 1100px;

}

.content_01 .title {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.content_01 .list {
    margin-bottom: 40px;
}


.content_02 {
    width: 1100px;
    margin: 102px auto 0 auto;
}

.content_02 .title {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.content_02 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
}

.content_02 a:hover {
    -webkit-filter: brightness(110%);
    /* Safari */
    filter: brightness(110%);
}


.content_03 {
    width: 1100px;
    margin: 150px auto 0 auto;
}

.content_03 .title {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.content_03 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 8px;
}


.notice {
    margin: 0 auto;
    width: 1100px;
    padding-top: 120px;
}

.notice .title {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 56px;
    font-weight: 900;
}

.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: 20px;
}

.notice_list {
    margin-bottom: 8px;
    padding-left: 34px;
}

.notice_list li {
    list-style-type: decimal;
    margin-bottom: 10px;
}

/*style*/

.h50 {
    height: 50px;
}

.fw_bold {
    font-weight: 800;
}

.t_red {
    color: #e11717;
}

.t_decoration-underline {
    text-decoration: underline;
}

.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) {


    .kv_content {
        height: 616px;
    }

    .kv_title {
        top: 135px;
        right: 228px;
    }

    .content_02 {
        margin: 184px auto 0 auto;
    }

    .notice b {
        font-size: 36px;
    }
}