@charset "utf-8";
/* CSS Document */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    word-wrap: break-word;
    word-break: break-all;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
    display: block;
}
body {
    line-height: 1;
    max-width: 1366px;
    margin: 0px auto;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote::before,
blockquote::after {
    content: '';
    content: none;
}
q::before,
q::after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
* {
    font-family: '微軟正黑體';
    box-sizing: border-box;
    line-height: 30px;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* header */
header {
    position: fixed;
    top: 0px;
    width: 100%;
    max-width: 1366px;
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start;
    background-color: #fff;
    z-index: 999;
}
header > .logo {
    background: #fef6e0;
    width: 36%;
    padding: 10px 45px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: relative;
}
header > .logo > a {
    line-height: 0;
}

/* nav */
nav {
    width: 64%;
    background: #db3b3b;
    display: block;
}
nav > ul {
    width: 100%;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
nav > ul > li {
    padding: 23px 0px;
    width: 15.5%;
    position: relative;
    transition: 0.5s;
}
nav > ul > li > a {
    line-height: 0;
}
nav > ul > li > a > .btn_name {
    color: #fff;
    font-size: 18px;
    text-align: center;
}
nav > ul > li > a > .btn_name > div {
    line-height: 25px;
}
nav > ul > li > ul {
    display: none;
    position: absolute;
    background: #c12d2d;
    width: 100%;
    margin-top: 23px;
    padding: 10px 0px;
}
nav > ul > li > .btn_down {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    transition: 0.5s;
    display: none;
}
nav > ul > li > ul > li > a {
    text-align: center;
    color: #fff;
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 5px 0px;
}

/* 下拉 */
nav > ul > li:hover {
    background: #c12d2d;
}
nav > ul > li:hover > ul {
    display: block;
}

/* product */
.product {
    background: url('../images/website_image/product_bg.png') no-repeat right bottom;
    background-size: cover;
}
.product .title > img {
    margin-left: -2px;
}
.product .lists {
    padding-top: 50px;
}
.product .lists > ul {
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.product .lists > ul > li {
    width: 21%;
    margin: 20px 2%;
    border: 1px #db2a15 solid;
    transition: 0.5s;
    background: #fff;
}
.product .lists > ul > li > a {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: center;
}
.product .lists > ul > li > a > .img {
    line-height: 0;
    overflow: hidden;
}
.product .lists > ul > li > a > .img > img {
    width: 100%;
    transition: 0.5s;
}
.product .lists > ul > li > a > .name {
    font-size: 18px;
    color: #595757;
    padding-top: 20px;
    transition: 0.5s;
    font-weight: 600;
}

/* product lists 滑鼠移入特效 */
.product .lists > ul > li:hover {
    border: 1px #005ca2 solid;
}
.product .lists > ul > li:hover > a > .name {
    color: #005ca2;
}
.product .lists > ul > li:hover > a > .img > img {
    transform: scale(1.2);
}

/* product_list */
.product_list {
    position: relative;
    background: #fef6e0;
}
.product_list .lists {
    padding-top: 50px;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
}
.product_list .lists > aside {
    width: 180px;
    padding-top: 20px;
}
.product_list .lists > aside > .aside_title {
    background: url('../images/website_image/class_title.png') no-repeat;
    background-size: cover;
    text-align: center;
    padding: 5px 0px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}
.product_list .lists > aside > .aside_title > img {
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 11px;
    display: none;
    transition: 0.5s;
}
.product_list .lists > aside > ul {
    padding: 10px 0px;
}
.product_list .lists > aside > ul > li > a {
    text-align: center;
    display: block;
    width: 100%;
}
.product_list .lists > aside > ul > li > a > span {
    font-size: 20px;
    color: #727171;
    transition: 0.5s;
}
.product_list .lists > aside > ul > li {
    padding: 10px 0px;
}
.product_list .lists > ul {
    width: calc(100% - 180px);
    padding-left: 5%;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.product_list .lists > ul > li {
    width: 29%;
    margin: 20px 2%;
    border: 1px #db2a15 solid;
    transition: 0.5s;
}
.product_list .lists > ul > li > a {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: center;
}
.product_list .lists > ul > li > a > .img {
    line-height: 0;
    overflow: hidden;
}
.product_list .lists > ul > li > a > .img > img {
    width: 100%;
    transition: 0.5s;
}
.product_list .lists > ul > li > a > .name {
    font-size: 18px;
    color: #595757;
    padding-top: 20px;
    transition: 0.5s;
    font-weight: 600;
}
.product_list .pbg {
    position: absolute;
    z-index: -1;
    bottom: 6%;
    left: -12%;
    display: none;
}

/* product list 特效 */
.product_list .lists > ul > li:hover {
    border: 1px #005ca2 solid;
}
.product_list .lists > ul > li:hover > a > .name {
    color: #005ca2;
}
.product_list .lists > ul > li:hover > a > .img > img {
    transform: scale(1.2);
}
.product_list .lists > aside > ul > li > a:hover > span {
    color: #db2a15;
}

/* product detail */
.product_list .lists .detail {
    padding-top: 0px;
    width: calc(100% - 180px);
    padding-left: 10%;
}
.product_list .lists .detail > .img {
    width: 60%;
}
.product_list .lists .detail > .img > img {
    width: 100%;
}
.product_list .lists .detail > .name {
    padding: 30px 0px 20px;
}
.product_list .lists .detail > .name > span {
    color: #000;
}
.product_list .lists .detail .pline {
    display: block;
    width: 100%;
    height: 2px;
    background: #f18b19;
    margin-bottom: 20px;
}
.product_list .lists .detail .sub_img {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 20px;
    line-height: 0;
}
.product_list .lists .detail .sub_img > img {
    width: 14.65%;
    margin: 10px 1%;
}
.product_list .lists .detail .info {
    color: #4c4c4c;
}

/* home_editor */
.home_editor {
    background: url('../images/website_image/home_news_bg.png') no-repeat right;
    background-size: 100%;
}
.home_editor .img {
    text-align: center;
    line-height: 0;
    margin-top: 30px;
}

/* album */
.album .lists {
    padding-top: 30px;
}
.album .lists > ul {
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.album .lists > ul > li {
    width: 21%;
    margin: 20px 2%;
}
.album .lists > ul > li > a {
    display: block;
    width: 100%;
}
.album .lists > ul > li > a > .img {
    padding: 20px;
    line-height: 0;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #999999;
}
.album .lists > ul > li > a > .img > div {
    line-height: 0;
    overflow: hidden;
}
.album .lists > ul > li > a > .img > div > img {
    width: 100%;
    transition: 0.5s;
}
.album .lists > ul > li > a > .name {
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0px 0px;
}

/* album 滑鼠移入特效 */
.album .lists > ul > li > a:hover > .img > div > img {
    transform: scale(1.2);
}

/* album */
.album .detail {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.album .detail > img {
    width: 16%;
    margin: 20px 2%;
}

/* download */
.download {
    position: relative;
}
.download .content_box {
    padding: 30px 0px 20px;
}
.download .content_box > ul > li {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    border-left: 20px #db2a15 solid;
    margin: 20px 0px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #999999;
    position: relative;
}
.download .content_box > ul > li > .name {
    font-size: 18px;
    color: #595757;
    padding-left: 2%;
    width: 60%;
}
.download .content_box > ul > li > .sn {
    font-size: 18px;
    color: #595757;
    width: 30%;
}
.download .content_box > ul > li > .icon {
    line-height: 0;
    text-align: right;
    width: 10%;
    background: #eaeef1;
    padding: 15px 10px;
}
.download .content_box > ul > li > .icon > a {
    line-height: 0;
    display: inline-block;
    margin: 0px 6%;
}

/* Q&A */
.qa {
    position: relative;
}
.qa .content_box {
    padding-top: 50px;
}
.qa .content_box > ul > li {
    width: 70%;
    margin: 0px auto;
    padding: 20px 0px;
    border-bottom: 1px #f18b19 solid;
}
.qa .content_box > ul > li:nth-child(1) {
    border-top: 1px #f18b19 solid;
}
.qa .content_box > ul > li > .q_title {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.qa .content_box > ul > li > .q_title > .q_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #db2a15;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.qa .content_box > ul > li > .q_title > .q_icon > span {
    color: #fff;
    font-size: 20px;
    position: relative;
    top: -2px;
}
.qa .content_box > ul > li > .q_title > .name {
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
}
.qa .content_box > ul > li > .q_title > .plus {
    position: absolute;
    right: 0px;
    top: 15px;
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
}
.qa .content_box > ul > li > .q_title > .plus > p {
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 4px;
    background: #b8dcf2;
    transition: 0.5s;
}
.qa .content_box > ul > li > .q_title > .plus > p:nth-child(2) {
    transform: rotate(90deg);
}
.qa .content_box > ul > li > ul {
    margin-top: 20px;
    display: none;
}
.qa .content_box > ul > li > ul > li {
    background: #eaeef1;
    color: #515151;
    padding: 20px 50px;
}

/* dbg */
.dbg {
    line-height: 0;
    position: absolute;
    top: 0px;
    z-index: -1;
}
.dbg.down_bg01 {
    top: 83px;
    left: -22px;
}
.dbg.down_bg02 {
    top: -50px;
    left: 80px;
}
.dbg.down_bg03 {
    top: 30px;
    right: 100px;
}
.dbg.down_bg04 {
    top: 50px;
    right: -30px;
}

/* contact */
.trans_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin: 50px 0px;
    position: relative;
}
.trans_box .trans_map {
    width: 50%;
    margin-right: 4vw;
}
.trans_box .trans_map iframe {
    width: 100%;
}
.trans_box .trans_text {
    width: 45%;
    color: #595757;
    margin: auto 0px;
}
.trans_box .trans_text p {
    margin-bottom: 10px;
}
.trans_box .trans_text p:nth-child(3) {
    padding-left: 48px;
}
.trans_box .trans_text p span {
    display: inline-block;
}
.trans_box .trans_text .trans_bg {
    line-height: 0;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
}
.trans_box .trans_text .trans_bg > img {
    width: 100%;
    height: 100%;
}
.form_box {
    padding: 30px 0px;
    width: 95%;
    margin: auto;
    color: #595757;
}
.form_box .transtyle {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    padding: 5px 0px;
}
.form_box .transtyle .trans_word {
    width: 120px;
    margin-right: 10px;
}
.form_box .transtyle .form_item {
    width: calc(100% - 120px);
    box-shadow: unset;
    border-radius: 5px;
    transition: 0.5s;
}
.form_box .transtyle > label > input {
    box-shadow: unset;
    border-radius: 5px;
    transition: 0.5s;
}
.form_box .transtyle > label > img {
    width: 130px;
    margin-right: 10px;
}
.trans_btn {
    text-align: center;
    margin: 20px 0px;
}
.trans_btn .reset_btn {
    border: unset;
    color: #424242;
    display: inline-block;
    padding: 5px 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}
.reset_btn_box {
    margin-right: 20px;
}

/* trans 按鈕特效 */
.button {
    border: none;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    user-select: none;
    letter-spacing: 1px;
    color: white;
    padding: 5px 40px;
    text-transform: uppercase;
    transition: all 0.1s ease-out;
    border-radius: 20px;
}
.button.reset_btn {
    background-color: #c6c6c6;
}
.button.submit_btn {
    background-color: #db2a15;
}
.button:hover {
    background-color: #06466d;
    color: #fff;
}
.button:active {
    transform: scale(0.95);
}
.button--bubble {
    position: relative;
    z-index: 2;
}
.button--bubble:hover {
    background: none;
}
.button--bubble:hover + .button--bubble__effect-container .circle {
    background: #06466d;
}
.button--bubble:hover + .button--bubble__effect-container .button {
    background: #06466d;
}
.button--bubble:active + .button--bubble__effect-container {
    transform: scale(0.95);
}
.button--bubble__container {
    position: relative;
    display: inline-block;
}
.button--bubble__container .effect-button {
    position: absolute;
    width: 50%;
    height: 25%;
    top: 50%;
    left: 25%;
    z-index: 1;
    transform: translateY(-50%);
    transition: background 0.1s ease-out;
}
.button--bubble__effect-container {
    position: absolute;
    display: block;
    width: 200%;
    height: 400%;
    top: -150%;
    left: -50%;
    filter: url('#goo');
    transition: all 0.1s ease-out;
    pointer-events: none;
}
.button--bubble__effect-container .circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background: #db2a15;
    transition: background 0.1s ease-out;
}
.reset_btn_box .button--bubble__effect-container .circle {
    background: #c6c6c6;
}
.button--bubble__effect-container .circle.top-left {
    top: 40%;
    left: 27%;
}
.button--bubble__effect-container .circle.bottom-right {
    bottom: 40%;
    right: 27%;
}
.goo {
    position: absolute;
    visibility: hidden;
    width: 1px;
    height: 1px;
}
.button--bubble__container {
    top: 50%;
    margin-top: -25px;
}

/* news */
.news .lists {
    padding-top: 50px;
}
.news .lists > ul > li {
    width: 100%;
    padding: 20px 0px;
}
.news .lists > ul > li > a {
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
    height: 100%;
    position: relative;
}
.news .lists > ul > li > a > .img {
    line-height: 0;
    width: 26%;
}
.news .lists > ul > li > a > .img > img {
    width: 100%;
}
.news .lists > ul > li > a::before {
    content: '';
    background: #eaeef1;
    width: 0px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    transition: 0.5s;
}
.news .lists > ul > li > a > .content {
    width: 70%;
    padding-left: 4%;
    margin: auto 0px;
}
.news .lists > ul > li > a > .content > .content_title {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    padding-bottom: 20px;
}
.news .lists > ul > li > a > .content > .content_title > .ctitle > span {
    font-size: 20px;
    font-weight: 600;
    color: #005ca2;
}
.news .lists > ul > li > a > .content > .content_title > .new > span {
    margin-left: 20px;
    padding: 2px 10px;
    background: #db2a15;
    color: #fff;
}
.news .lists > ul > li > a > .content > .info {
    color: #4c4c4c;
}

/* news 滑鼠移入特效 */
.news .lists > ul > li > a:hover::before {
    width: 100%;
}

/* detail */
.detail {
    padding-top: 50px;
}
.detail .detail_title {
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
}
.detail .detail_title > .img {
    line-height: 0;
    width: 37%;
}
.detail .detail_title > .img > img {
    width: 100%;
}
.detail .detail_title > .name_box {
    width: 58%;
    margin-left: 5%;
}
.detail .content_box .content_title {
    padding: 50px 0px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}
.detail .content_box .content_title > span {
    display: inline-flex !important;
}
.detail .content_box .content_title > .line {
    width: calc(100% - 123px);
    height: 2px;
    background: #5b5b5b;
    display: block;
    margin-left: 20px;
}
.detail .content_box .content {
    color: #4c4c4c;
}

/* span_triangle */
.span_triangle {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin-left: 8px;
    color: #005ca2;
    font-size: 20px;
    font-weight: 600;
}
.span_triangle::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-color: #f18c19 transparent transparent transparent;
    position: relative;
    top: 7px;
    right: 8px;
}

/* footer */
footer {
    background: #db3b3b;
    text-align: center;
    padding: 50px 105px 0px;
}
footer > .ft_box {
    padding-bottom: 10px;
    border-bottom: 2px #aa2424 solid;
}
footer > .ft_box > .logo {
    color: #06466d;
    font-size: 44px;
    font-weight: 600;
    padding: 10px 0px 30px;
}
footer > .ft_box > .logo > span {
    color: #fff;
}
footer > .ft_box > .ft_media > a {
    display: inline-block;
    line-height: 0;
    margin: 0px 5px;
}
footer > .ft_content {
    padding: 20px 0px;
}
footer > .ft_content > p {
    color: #fff;
}
footer > .ft_content > p > span {
    display: inline-block;
}

/* address */
address {
    background: #f18b19;
    color: #fff;
    font-style: normal;
    text-align: center;
    padding: 0px 20px;
}
address > a {
    color: #fff;
}

/* back */
.back {
    display: block;
    width: 100%;
    text-align: right;
    padding: 40px 0px;
}
.back > a {
    display: inline-block;
    background: url('../images/website_image/back.png') no-repeat;
    background-size: cover;
    padding: 5px 40px;
    color: #fff;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.5s;
}

/* more */
.more {
    display: block;
    width: 100%;
    text-align: center;
    padding: 55px 0px;
    position: relative;
}
.more > a {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 10px 80px;
    background: #005ca2;
    z-index: 1;
}
.more > a > .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #f18c19 transparent transparent transparent;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
    transition: 0.8s;
    z-index: 1;
}
.more > a > span {
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* more 滑鼠移入特效特效 */
.more > a:hover > .triangle {
    border-width: 280px 280px 0 0;
}

/* bg */
.bg {
    padding: 80px 80px 30px;
    overflow: hidden;
}

/* line */
.fixed_line {
    position: fixed;
    bottom: 20%;
    right: 0;
    line-height: 0;
    z-index: 9999;
    width: 130px;
    max-width: 34vw;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
    transform-origin: center;
    animation: lineIconNotice 2s ease-in-out infinite;
}
.fixed_line:hover {
    animation-play-state: paused;
    transform: translateX(-8px) scale(1.06);
}
.fixed_line img {
    display: block;
    width: 100%;
    height: auto;
}
@keyframes lineIconNotice {
    0%, 100% {
        transform: translateX(0) scale(1);
        filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
    }
    45% {
        transform: translateX(-10px) scale(1.06);
        filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.28));
    }
    70% {
        transform: translateX(-3px) scale(1.02);
    }
}

/* title */
.title {
    text-align: center;
    display: block;
    width: calc(100% + 200px);
    position: relative;
    left: -100px;
    background: #ffcaca;
}
.title > img {
    position: absolute;
    width: 150px;
    z-index: 1;
    margin-left: 20px;
    display: none;
}
.title > span {
    display: inline-block;
    /* padding: 60px 5px; */
    padding: 20px 5px;
    font-size: 48px;
    font-weight: 600;
    color: #db2a15;
    position: relative;
    z-index: 2;
}
.title > span::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 11px;
    height: 4px;
    background: #db2a15;
    border-radius: 20px;
    bottom: 12px;
    right: 11px;
}
.title > span::after {
    content: '';
    position: relative;
    display: inline-block;
    width: 11px;
    height: 4px;
    background: #db2a15;
    border-radius: 20px;
    bottom: 12px;
    left: 11px;
}

/*Banner*/
#banner {
    position: relative;
    overflow: hidden;
    z-index: 98;
    transition: 0s;
    margin-top: 96px;
}
#banner .img {
    white-space: nowrap;
    position: absolute;
}
#banner .img img {
    vertical-align: top;
}
#banner_control {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 100;
}
#banner_control img {
    width: 23px;
}
#banner #banner_control span {
    cursor: pointer;
    padding: 0 12px;
}
#banner #banner_control span img:nth-child(2) {
    display: none;
}
#banner #banner_control span img:nth-child(1) {
    display: inline-block;
}
#banner #banner_control span:active img:nth-child(1),
#banner #banner_control span.now img:nth-child(1) {
    display: none;
}
#banner #banner_control span:active img:nth-child(2),
#banner #banner_control span.now img:nth-child(2) {
    display: inline-block;
}

/*page*/
.page {
    margin: 0 auto;
    padding: 60px 0px;
    width: 100%;
}
.page ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
}
.page ul li {
    margin: 0px 13px;
    position: relative;
}
.page ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 12.6px;
    letter-spacing: 0px;
    font-weight: 600;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid transparent;
    color: #db2a15;
    position: relative;
}
.page ul li a.select,
.page ul li .pg-number:hover {
    color: #db2a15;
    border: 1px #db2a15 solid;
}
.page ul li a i.fa-angle-left::before {
    content: '';
    display: inline-block;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    background: url('../images/website_image/page_prev.png') no-repeat;
    background-size: cover;
    width: 15px;
    height: 25px;
    transition: 0.5s;
    position: relative;
    top: -3px;
}
.page ul li a i.fa-angle-right::before {
    content: '';
    display: inline-block;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    background: url('../images/website_image/page_next.png') no-repeat;
    background-size: cover;
    width: 15px;
    height: 25px;
    transition: 0.5s;
    position: relative;
    top: -3px;
}

/*漢堡樣式*/
.header_hamburger_out {
    width: 44px;
    height: 44px;
    padding: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    cursor: pointer;
    z-index: 1000;
}
.header-hamburger {
    background: #db2a15;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: relative;
    top: 0px;
    pointer-events: none;
    transition: 0.3s;
}
.header-hamburger::before {
    content: '';
    background: #db2a15;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: -12px;
    left: 0px;
    transition: 0.3s;
}
.header-hamburger::after {
    content: '';
    background: #db2a15;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 0px;
    transition: 0.3s;
}
.header_hamburger_out.is-open .header-hamburger {
    width: 24px;
    height: 3px;
    border-radius: 0;
    background: transparent;
    top: 0px;
}
.header_hamburger_out.is-open .header-hamburger::before,
.header_hamburger_out.is-open .header-hamburger::after {
    width: 24px;
    height: 3px;
    border-radius: 0;
    top: 0px;
    left: -8px;
}
.header_hamburger_out.is-open .header-hamburger::before {
    transform: rotate(45deg);
}
.header_hamburger_out.is-open .header-hamburger::after {
    transform: rotate(-45deg);
}
