@charset "UTF-8";


/* reset */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

ul,
li {
    list-style: none;
}

a {
    color: #ee8b0b;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: underline;
    outline: none;
}

img {
    border: none;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

[role=button] {
    cursor: pointer;
    outline: none;
}

/* reset end */

body {
    font-family: 'arial', \5FAE\8EDF\6B63\9ED1\9AD4, \65B0\7D30\660E\9AD4;
    font-weight: bold;
}

.warning-text {
    color: #FF1515;
}

.page_top-bar {
    width: 100%;
    height: 55px;
    background-color: #f7b000;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.website-logo_section {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0px 15px;
}

.website-logo_section .hr-line {
    width: 2px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    top: 1px;
}

.page_content_area {
    min-height: 100vh;
    background: linear-gradient(#2a2a2a, #0f0f0f);
    padding: 30px 0px 80px 0px;
}

.page_content_title {
    font-size: 22px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
}

.page_content_container {
    width: 1080px;
    min-height: calc(100vh - 200px);
    background-color: #ffffff;
    color: #3c3c3c;
    border-radius: 20px;
    margin: 0 auto;
    padding: 30px;
}

.page_content_container .title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 10px;
}

.page_content_container .img-container img {
    max-width: 100%;
    border-radius: 15px;
}

.page_content_container .hr-line {
    margin: 20px 0px 50px 0px;
    border-bottom: 2px dashed #e0e0e0;
}

.page_content_container .text {
    font-size: 18px;
    margin-bottom: 10px;
}

.page_content_container .text ul {
    padding-left: 25px;
}

.page_content_container .text li {
    margin-bottom: 5px;
    list-style: disc;
}

.page_content_btn {
    width: 320px;
    height: 50px;
    background-color: #f7b000;
    font-size: 20px;
    border-radius: 15px;
    margin: 30px auto 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.img-container{
    margin-bottom:10px;
}

@media (max-width: 1280px) {
    .page_content_container {
        width: 90%;
    }

    .page_content_title {
        font-size: 20px;
    }

    .page_content_container .title {
        font-size: 18px;
    }
}

@media (max-width: 540px) {
    .page_content_area {
        padding: 20px 0px 50px 0px;
    }

    .page_content_container {
        width: 95%;
    }

    .page_content_container {
        border-radius: 15px;
        padding: 20px;
    }

    .page_content_container .img-container img {
        border-radius: 10px;
    }

    .page_content_container .title {
        font-size: 16px;
    }

    .page_content_container .text {
        font-size: 14px;
    }

    .page_content_container .hr-line {
        margin: 20px 0px 30px 0px;
    }

    .page_content_btn {
        font-size: 18px;
    }
}
