@charset "utf-8";

/* CSS Document */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
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,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

a,
p {
    word-break: break-all;
}

a,
a:hover {
    text-decoration: none !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.8;
    margin: auto;
    color: #333333;
    font-size: 20px;
    background: #fff;
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    body {
        font-size: 14px;
    }
}

.half_content {
    width: 1366px;
    margin: 0 auto;
}

.half_detail {
    width: 95%;
    max-width: 1300px !important;
    margin: 0 auto;
}

.row {
    margin: 0;
}

@media screen and (max-width: 1366px) {
    .half_content {
        width: 96%;
    }
}

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;
}

a {
    text-decoration: none;
}

h3 {
    font-size: 2em;
    font-weight: 600;
    line-height: 1.8;
}

h2 {
    font-size: 1.4em;
    line-height: 1.8;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

#container {
    width: 100%;
    margin: 0 auto;
}

:root {
    --Omain_color: #f27021;
    --Bsub_color: #2b4666;
    --Gtxt_color: #444344;
    --Gbg_color: #f1f1f1;
    --Obg_color: #f5f1ec;
}

/*header*/

header {
    z-index: 1000;
    width: 100%;
    min-height: 70px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* box-shadow: 0px 0px 10px rgb(170 170 170 / 25%); */
    transition: 0.5s;
}

header.fixed {
    box-shadow: 0px 0px 10px rgb(170 170 170 / 25%);
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.head {
    text-align: center;
    margin-bottom: 20px;
}

header .wrapper {
    padding: 0;
}

.header_logo {
    position: absolute;
    top: 10px;
    left: 0;
}

header.fixed .header_logo {
}

.logo {
    text-align: center;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

nav.hnav {
    padding: 2.5px 0;
}

.half_content > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
}

.header_hemberger_btn {
    display: none;
}

.fixed-member-btn {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translate(0%, -50%);
}

.fixed-member-btn > a {
    position: relative;
    display: inline-block;
    margin: 0 0.3em;
}

.fixed-member-btn > a > img {
    width: 3em;
}

p.member_name {
    font-size: 1em;
    margin-right: 0.5em;
}

p.member_name > span {
    font-size: 1.5em;
    color: #20509a;
    font-weight: 600;
    margin-right: 0.3em;
}

@media screen and (max-width: 1050px) {
    header {
    }

    header.fixed {
        min-height: 50px;
    }

    .logo {
        text-align: left;
        width: 100%;
    }

    .header_logo {
        background: unset;
        box-shadow: unset;
        left: 50%;
        width: 200px;
        transform: translateX(-50%);
    }

    .header_logo,
    .logo img {
    }

    header.fixed .header_logo,
    header.fixed .logo img {
        height: 40px;
        top: 5px;
    }

    header .wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    /* .fixed-member-btn > a:nth-child(2) > img {
        display: none;
    } */

    .half_content > ul {
        display: block;
    }

    nav {
        /* display: none; */
    }

    .header_hemberger_btn {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        height: 30px;
        left: 5%;
        top: 20px;
        cursor: pointer;
        transition: 0.5s;
        z-index: 999999;
    }

    header.fixed .header_hemberger_btn {
        top: 10px;
    }

    .header_hemberger_btn > span {
        position: relative;
        width: 30px;
        height: 3px;
        background: var(--Gtxt_color);
    }

    .header_hemberger_btn > span::after,
    .header_hemberger_btn > span::before {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        background: var(--Gtxt_color);
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .header_hemberger_btn > span::before {
        bottom: -7px;
    }

    .header_hemberger_btn > span::after {
        top: -7px;
    }

    .header_hemberger_btn > img {
        width: 1.8rem;
    }

    /* newnewnewnewnewnew */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        overflow: auto;
        width: 70%;
        max-width: 400px;
        padding: 5vh 0px;
        background: #fff;
        box-shadow: 0px 0px 10px rgb(170 170 170 / 25%);
        transition: 0.5s;
        z-index: 99999;
    }

    /* 捲軸寬度 */
    nav::-webkit-scrollbar {
        width: 0px;
    }

    /* 捲軸背景色 */
    nav::-webkit-scrollbar-track {
        background: none;
    }

    /* 捲軸把手 */
    nav::-webkit-scrollbar-thumb {
        background: transparent;
    }

    .btn_tw {
        justify-content: flex-start;
        padding: 5px 3.5em;
    }

    .header_hemberger_btn.fixed {
        z-index: 999999;
        left: 85%;
    }

    .header_hemberger_btn.fixed > span {
        background: transparent;
    }

    .header_hemberger_btn.fixed > span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .header_hemberger_btn.fixed > span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    .hnav.fixed {
        left: 0;
    }

    .fixedMask.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.8);
        z-index: 9999;
    }
}

/*Banner*/

#banner {
    position: relative;
    z-index: 99;
    margin-top: 70px;
    width: calc(100% - 70px);
    margin-left: 70px;
}
.banner::after {
    content: '';
    background-color: #fff;
    width: 70px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -70px;
    z-index: ;
}
#banner .img {
    white-space: nowrap;
    position: absolute;
    display: flex;
}

#banner .img img {
    vertical-align: top;
    max-width: unset;
    object-fit: cover;
    height: 100%;
}

#banner_control {
    position: absolute;
    bottom: 120px;
    left: -23px;
    text-align: center;
    z-index: 100;
    transform: rotate(90deg);
    transform-origin: left top;
}

#banner_control img {
    width: 25px;
}

#banner #banner_control span {
    cursor: pointer;
    padding: 0px 4px;
}

#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;
}

#banner #banner_control span.now img:nth-child(2) {
    width: 25px;
}

@media screen and (max-width: 1050px) {
    #banner {
        margin-top: 70px;
    }
}

@media screen and (max-width: 768px) {
    #banner {
        width: calc(100% - 20px);
        margin-left: 20px;
    }
    .banner::after {
        width: 20px;
        left: -20px;
    }
    #banner_control {
        bottom: 40px;
        left: 2px;
    }
    #banner_control img {
        width: 10px;
    }

    #banner #banner_control span.now img:nth-child(2) {
        width: 10px;
    }
}

/*Banner End*/

/*menu*/

.btn_pic > img {
    margin: -3px 0;
}

.mul > li {
    position: relative;
    cursor: pointer;
    padding: 1em 0;
}

.mul > li.has_sub_btn > ul {
    display: none;
}

.mul > li.has_sub_btn:hover > ul {
    display: block;
    margin: 10px 0 0;
}

.sul {
    position: absolute;
    z-index: 100;
    width: 100%;
    background-color: #ffffff;
}

.sli {
    text-align: center;
    padding: 0.5rem 0.5rem;
    line-height: 20px;
}

.sli > a {
    color: #000000 !important;
    font-size: 16px;
    font-weight: 100;
}

.sli:hover > a {
    color: #327288 !important;
    transition: 0.5s;
}

a {
    text-decoration: none;
}

.btn_tw {
    color: #333333;
    font-size: 18px;
    padding: 0.25em 1em;
    text-align: center;
    border-right: 1px #c9caca solid;
    line-height: 24px;
}

.mli:last-child .btn_tw {
    border-right: unset;
}

.mli:hover .btn_tw,
.mli:hover .btn_tw .subname {
    color: #d0bad9;
    transition: 0.5s;
}

.toggleBtn {
    display: none;
}

.subname {
    color: #838281;
    display: block;
    font-size: 15px;
}

@media screen and (max-width: 1050px) {
    .half_content > ul {
        padding: 0;
    }

    .mli {
        padding: 3px 0;
    }

    .mli:hover .btn_tw {
        border-bottom: unset;
        transition: 0.5s;
    }

    .btn_tw {
        text-align: left;
        border: unset;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn_tw > div {
        width: 200px;
    }

    .btn_pic > img {
        margin: -3px 10px;
    }

    .sul {
        position: relative;
    }

    .sli > a {
        font-size: 18px;
        color: #ffffff !important;
    }

    .sli:hover > a {
        color: #ffffff !important;
    }

    .mul > li.has_sub_btn > ul {
        display: none;
        background: #d0bad9;
    }

    .mul > li.has_sub_btn:hover > ul {
        display: none;
    }

    .toggleBtn {
        display: block;
        width: 12px;
        height: 12px;
        background: url(../images/website_image/header_btn_down.png) no-repeat center center;
        background-size: 100%;
        position: absolute;
        top: 24px;
        right: 12vw;
    }
}

@media screen and (max-width: 500px) {
    .btn_tw,
    .sli > a {
        font-size: 16px;
    }

    .subname {
        font-size: 14px;
    }
}

/* news_list */
.newsList.bg,
.newsDetial.bg {
    position: relative;
    padding: 5% 0;
}

.news_list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.news_list_box {
    width: 100%;
}

.news_list_box > div {
    margin: 1rem auto;
    background-color: #ffffff;
    box-shadow: 2px 2px 1px 1px #0000000d;
    border: 1px solid #0000000d;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
}

.news_list_name {
    color: #333;
    font-weight: 600;
    font-size: 1.2em;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}

.news_list_text {
    color: #898989;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.8;
}

.news_list_pic {
    position: relative;
    padding-top: 300px;
    width: 300px;
}

.news_list_pic > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news_list_data {
    width: calc(100% - 300px);
    padding: 2.5em 1.5em;
}

.news_mark {
    position: absolute;
    top: 10px;
    left: 0px;
    background: #d0bad9;
    clip-path: polygon(0 0, 85% 0%, 100% 100%, 0% 100%);
    padding-right: 1em;
    padding-left: calc(0.5em + 2px);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 2px;
    line-height: 2rem;
    text-transform: uppercase;
}

.news_more {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding-right: 1em;
    color: #d0bad9;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 2rem;
    border-bottom: 1px solid #d0bad9;
    transform: translateX(-2rem);
    transition: 0.5s;
}

.news_more::after {
    content: '';
    width: 0.8rem;
    height: 1px;
    background: #d0bad9;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(45deg) translate(1px, 0px);
    transform-origin: right;
}

.news_list_date {
    font-size: 14px;
    margin-bottom: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    padding-left: 0;
    font-weight: 600;
    color: #d0bad9;
}

.news_list_box:hover .news_more {
    transform: translateX(0);
}

@media screen and (max-width: 1200px) {
    .news_list_box {
    }
}

@media screen and (max-width: 768px) {
    .news_list_box > div {
        margin: 1rem auto;
    }

    .fixed-member-btn > a > img {
        width: 2em;
    }
    .news_list_pic,
    .news_list_data {
        width: 100%;
    }
    .news_list_data {
        padding: 1em 1em 2.5em 1em;
    }
    .news_list_text {
        margin-bottom: 15px;
    }
    .news_list_pic > img {
        object-fit: cover;
    }
}

@media screen and (max-width: 500px) {
    .news_list {
        justify-content: center;
    }

    .news_list_box {
        width: 90%;
    }

    .news_more {
        bottom: 10px;
        transform: translateX(0rem);
    }
}

/* news_detail */

.news_detail_outer {
    width: 100%;
    background: #fff;
    margin: 0vh auto 5vh auto;
    padding: 3vh;
    border-radius: 1rem;
    box-shadow: 2px 2px 1px 1px #0000000d;
    border: 1px solid #0000000d;
    position: relative;
}

.news_detailBox {
    border-left: 5px solid #d0bad9;
    padding-left: 1em;
}

.news_detail_title {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.news_detail_date {
    font-size: 14px;
    color: #d0bad9;
    margin: 0;
}

.news_detail {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem auto;
}

.news_detail .news_list_pic {
    padding-top: 30%;
    width: 400px;
}

.news_detail_box {
    width: calc(100% - 400px);
    padding: 0 3%;
    line-height: 1.8em;
}

.news_detail_line {
    border-bottom: 1px solid #333;
}
.news_goback a {
    position: absolute;
    bottom: 0;
    right: 5%;
    transition: 0.3s;
}
.news_goback a:hover {
    filter: brightness(1.1);
    transition: 0.3s;
}
.news_goback a img {
    width: 50px;
}
@media screen and (max-width: 1200px) {
    .news_detail .news_list_pic,
    .news_detail .news_list_pic > img {
        width: 400px;
        text-align: center;
    }
}

@media screen and (max-width: 900px) {
    .news_detail_box {
        width: 100%;
        padding: 25px 3%;
    }

    .news_detail_title {
        font-size: 22px;
    }

    .news_detail_date {
        font-size: 18px;
    }

    .news_detail .news_list_pic,
    .news_detail .news_list_pic > img {
        width: 430px;
        height: 370px;
    }
}

@media screen and (max-width: 768px) {
    .news_detail_outer {
        padding: 10px 40px;
    }

    .news_detail {
        margin: 0 auto;
    }

    .news_detail_box {
        padding: 25px 0;
    }

    .news_detail_date span {
        font-size: 16px;
    }

    .news_detail_title {
        font-size: 20px;
    }

    .news_detail .news_list_pic {
        margin: 2rem auto 0.5rem auto;
    }
    .news_goback a {
        position: absolute;
        bottom: 0%;
        right: 2%;
    }
}

@media screen and (max-width: 500px) {
    .news_detail_outer {
        padding: 15px;
        margin: 4% 0;
    }

    .news_detail .news_list_pic {
        margin: 0.5rem auto;
    }
}

/* footer */

.float_btn {
    position: fixed;
    right: 1%;
    bottom: 28vh;
    display: flex;
    flex-direction: column;
    z-index: 300;
}

.float_btn a:nth-child(1) {
    display: none;
}

.float_btn a {
    max-height: calc(80vh / 6);
    margin: 0.5vh 0;
    position: relative;
}

.cart_count {
    position: absolute;
    display: inline;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    padding: 0 5px;
    line-height: 20px;
    bottom: 7%;
    right: -10%;
}

.member_count {
    position: absolute;
    display: inline;
    background-color: #c1c1c1;
    color: #fff;
    border-radius: 50%;
    padding: 0 5px;
    width: 10px;
    line-height: 10px;
    border: 2px #a8a8a8 solid;
    bottom: 14%;
    right: -10%;
}

.member_count_login {
    position: absolute;
    display: inline;
    background-color: #b4e419;
    color: #fff;
    border-radius: 50%;
    padding: 0 5px;
    width: 10px;
    line-height: 10px;
    border: 2px #93d141 solid;
    bottom: 14%;
    right: -10%;
}

.float_btn a img {
    width: 45px;
}

/*top*/
#gotop {
    display: none;
    position: fixed;
    right: 1%;
    bottom: 11%;
    cursor: pointer;
    z-index: 999;
}

#gotop img {
    width: 45px;
    height: auto;
}

@media screen and (max-width: 1050px) {
    .float_btn a:nth-child(1) {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .member_count {
        padding: 0 2.5px;
        width: 5px;
        line-height: 5px;
        bottom: 5%;
        right: -5%;
    }

    #gotop img,
    .float_btn a img {
        width: 30px;
    }
}

/* 內頁標題 */

.title_box {
    padding: 7rem 0 4rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    position: relative;
    line-height: 40px;
}

.title {
    color: #d0bad9;
    font-weight: 600;
    font-size: 36px;
    width: 100%;
    text-align: center;
}

.subtitle {
    color: #838281;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    font-style: italic;
    font-size: 30px;
}

.breadcrumb_area {
    position: absolute;
    right: 1%;
    display: flex;
    align-items: flex-start;
}

.breadcrumb_area a {
    color: #333;
}

.breadcrumb_area span {
    display: inline-block;
    max-width: 120px;
    text-align: center;
}

.breadcrumb_area a:hover {
    text-shadow: 0.2em 0.2em 0.2em #8e8e8e;
    transition: 0.5s;
}

.title_box {
    flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
    .breadcrumb_area {
        right: 5%;
    }

    p.member_name {
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        align-items: flex-end;
        align-content: center;
    }

    p.member_name > span {
        margin-right: 0em;
    }
}

@media screen and (max-width: 1050px) {
    .title_box {
        padding: 5rem 0 3rem;
    }

    p.member_name {
        display: inline;
    }

    p.member_name > span {
        margin-right: 0.3em;
    }
}

@media screen and (max-width: 1024px) {
    .breadcrumb_area {
        position: relative;
        display: block;
        width: 100%;
        text-align: right;
    }

    .breadcrumb_area span {
        vertical-align: top;
    }
}

@media screen and (max-width: 768px) {
    .title_box {
        padding: 3rem 0 2rem;
    }

    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 26px;
    }

    .breadcrumb_area {
        bottom: -15%;
    }
}

@media screen and (max-width: 500px) {
    .title_box {
        padding: 2rem 0 1rem;
        flex-wrap: wrap;
        line-height: 30px;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 18px;
    }

    .breadcrumb_area {
        position: relative;
        display: block;
        width: 100%;
        text-align: right;
    }
}

/* 標題樣式 */

.titleBox {
    position: relative;
    text-align: center;
    margin: 5vh auto;
}

.titleBox::before,
.titleBox::after {
    content: '';
    position: absolute;
    width: calc(50% - 8em);
    height: 2px;
    background: #000;
    top: 50%;
    transform: translateY(-50%);
}

.titleBox::before {
    left: 0;
}

.titleBox::after {
    right: 0;
}

.titleBox > h2 > br {
    display: none;
}

@media screen and (max-width: 500px) {
    .titleBox {
        margin: 2vh auto;
    }

    .titleBox > h2 > br {
        display: block;
    }

    .titleBox::before,
    .titleBox::after {
        content: unset;
    }
}

/*返回*/

.back {
    text-align: right;
    width: 100%;
    padding: 4rem 0;
}

.back a {
    color: #d0bad9;
    font-size: 30px;
    padding: 8px 0 8px 100px;
    font-weight: 600;
    position: relative;
}

.back a::before {
    content: '';
    background-image: url(../images/website_image/back_arrow.png);
    background-size: 45px 45px;
    width: 45px;
    height: 45px;
    position: absolute;
    left: 40px;
    top: 6px;
}

.back a:hover {
    padding: 8px 0 8px 120px;
    text-shadow: 0.2em 0.2em 0.2em #8e8e8e;
    transition: 0.5s;
}

@media screen and (max-width: 1024px) {
    .back {
        padding: 2rem 0;
    }

    .back a {
        font-size: 26px;
        padding: 8px 55px 8px 100px;
    }

    .back a:hover {
        padding: 8px 55px 8px 120px;
    }

    .back a::before {
        background-size: 30px 30px;
        width: 30px;
        height: 30px;
        top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .back a {
        font-size: 20px;
        padding: 8px 10px 8px 60px;
    }

    .back a:hover {
        font-size: 20px;
        padding: 8px 10px 8px 80px;
    }

    .back a::before {
        background-size: 25px 25px;
        width: 25px;
        height: 25px;
        left: 30px;
    }
}

/* trans */
.map-box {
    width: 50%;
    margin-right: 1%;
}

.trans_content {
    width: 50%;
    padding: 1em;
    background: #fff;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 35%);
}

@media screen and (min-width: 1101px) {
    .trans.flex {
        position: relative;
        padding: 2em;
        background: url(../images/trans_bg.png) bottom right no-repeat #224d91;
        background-size: contain;
        align-items: stretch;
        font-size: 24px;
    }

    .trans_content {
        box-shadow: unset;
        color: #fff;
        background: transparent;
    }

    .trans_content h3 {
        font-size: 1.75em;
        font-weight: 400;
        line-height: 1.8;
    }
}

/* trans_form */

.trans_choose > label {
    width: 150px;
}

.transtyle > label > img {
    width: 137px;
    margin-right: 5px;
}

.trans_box {
    padding: 2rem 2rem 0;
}

.transtyle {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    padding: 10px 0px;
}

.transtyle .trans_word {
    width: 120px;
    text-align: left;
}

.transtyle input,
.transtyle textarea,
.transtyle select {
    width: calc(100% - 120px);
    color: #666;
    border: 1px #9fa0a0 solid;
    border-radius: 0.4rem;
    padding: 0.5rem 1rem;
    background: #fff;
}

.transtyle input,
.transtyle select {
    height: 2.5em;
}

.trans_choose {
    display: flex;
    width: 100%;
    padding: 0.5em 1.6em;
}

.trans_choose > label {
    width: 150px;
}

.transtyle > label > img {
    width: 137px;
    margin-right: 5px;
    height: 40px;
    vertical-align: bottom;
}

.trans_btn {
    text-align: center;
    margin: 2rem 0px;
}

.trans_btn .reset_btn,
.trans_btn .submit_btn {
    border: unset;
    display: inline-block;
    color: #fff !important;
    border: 2px #d0bad9 solid;
    background: #d0bad9;
    letter-spacing: 0.1em;
    padding: 0.5rem 3rem;
    font-weight: 600;
    line-height: unset;
    margin: 0 1rem;
    cursor: pointer;
}

.trans_btn .reset_btn:hover,
.trans_btn .submit_btn:hover {
    background: #fff;
    color: #d0bad9 !important;
    border: 2px #d0bad9 solid;
    text-decoration: none;
    transition: 0.5s;
}

@media screen and (max-width: 1366px) {
    .trans_btn .reset_btn,
    .trans_btn .submit_btn {
        font-size: 1.2em;
        padding: 0.5rem 3rem;
    }
}

@media screen and (max-width: 1100px) {
    .trans.flex {
        flex-direction: column;
    }

    .trans_content {
        width: auto;
        margin-top: -4em;
        margin-left: auto;
    }

    .map-box {
        width: 80%;
        margin-right: 20%;
    }
}

@media screen and (max-width: 1024px) {
    .trans_info {
        margin-left: 0;
    }

    .trans_info > p {
        padding: 0;
    }
}

@media screen and (max-width: 768px) {
    .map-box {
        width: 100%;
        margin-right: 0;
    }

    .trans_btn .reset_btn {
        padding: 5px 25px;
        margin-right: 10px;
    }

    .trans_btn .submit_btn {
        padding: 5px 25px;
    }
}

@media screen and (max-width: 600px) {
    .transtyle {
        flex-wrap: wrap;
    }

    .trans_box {
        padding: 0rem 2rem 0;
    }

    .transtyle .trans_word,
    .transtyle .form_item {
        width: 100% !important;
    }

    .trans_word {
        text-align: left;
    }
}

@media screen and (max-width: 580px) {
    .trans_top {
        padding: 2rem 1rem;
    }

    .trans_info > h2 {
        font-size: 20px;
    }

    .trans_info > p {
        font-size: 14px;
    }
}

@media screen and (max-width: 550px) {
    .trans_btn .reset_btn,
    .trans_btn .submit_btn {
        margin: 0.5rem 5px;
    }

    p.member_name {
        font-size: 0.7em;
        margin-right: 0.5em;
    }

    .fixed-member-btn {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        width: 100px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 500px) {
    .trans_btn {
        margin: 0.5rem 0px;
    }

    .trans_btn .reset_btn,
    .trans_btn .submit_btn {
        font-size: 16px;
    }

    .trans_box {
        padding: 1rem 1rem;
    }

    .trans_content {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        border-bottom: 5px solid #d0bad9;
        box-shadow: unset;
    }
}

@media screen and (max-width: 430px) {
    .trans_choose {
        flex-wrap: wrap;
    }

    .trans_content {
        padding: 1em 0.5em;
    }
}

@media screen and (max-width: 380px) {
    .transtyle {
        padding: 0;
    }

    .trans_btn .reset_btn {
        margin-right: 0;
    }

    .trans_btn .reset_btn,
    .trans_btn .submit_btn {
        margin: 0.5rem 1rem;
        width: 60%;
    }
}

/* trans_form_top */

.trans_content_box {
    text-align: center;
}

.trans_content_box img {
    width: 80px;
}

.trans_content_box_title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}

.trans_content_box_title > span {
    color: #5a5a5a;
    font-weight: 600;
    margin: 0 0 0 18px;
    font-size: 22px;
}

@media screen and (max-width: 768px) {
    .trans_content_box img {
        width: 60px;
    }

    .trans_content_box_title {
        margin: 0 0 12px;
    }

    .trans_content_box_title > span {
        margin: 0 0 0 6px;
        font-size: 18px;
    }
}

@media screen and (max-width: 575px) {
    .trans_content_box {
        margin: 1rem 0;
    }

    .trans_content_box_title > span {
        font-size: 16px;
    }
}

/*product_list*/
div.bg {
    position: relative;
    padding: 5% 0;
    min-height: 85vh;
}
.product_box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.product_left {
    width: 20%;
    position: relative;
}
.product_left .index_search {
    margin: 0;
    position: absolute;
    top: 6px;
    right: -27vw;
}
.product_right {
    width: 100%;
    margin-top: 3%;
    background-color: #fff;
    box-shadow: 2px 2px 1px 1px #0000000d;
    border: 1px solid #0000000d;
    padding: 2% 3%;
    border-radius: 2em;
}

.product_right .product_classification_list > .row > div {
    padding: 0 1rem;
}

.product_right .product_classification_list > .row > div > a > div {
    box-shadow: 2px 0px 2px rgb(0 0 0 / 35%);
}

.product_right .product-list-pic {
    height: 170px;
}

.product_right .product-list-title {
    padding: 15px 0;
    border-bottom: 1px solid #d0bad9;
    text-align: left;
}
.product_right .product-list-title a {
    color: #333;
}
.product_classification_title {
    background: #d0bad9;
    color: #fff;
    font-size: 20px;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.product_classification_title span {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.asul {
    padding: 10px 0;
    display: none;
    border: 2px solid #d0bad9;
}
.product_classification_title span i {
    font-size: 12px;
    margin-left: 5px;
}

.product_classification {
    width: 18%;
    text-align: center;
    border-radius: 15px;
    padding: 0 20px 12px;
}

.product_classification_list > .row {
    margin: 0;
}

.product_classification_list > .row > div {
    padding: 0 18px;
}

.product_classification_list > .row > .noProduct {
    display: block;
    text-align: center;
    margin: 0 auto;
}
@media screen and (max-width: 990px) {
    .product_right .product_classification_list > .row > div {
        max-width: 50%;
        flex: auto;
    }
}
@media screen and (max-width: 768px) {
    .product_right .product_classification_list > .row > div {
        max-width: 100%;
    }
}
@media screen and (max-width: 560px) {
    .product_right .product-list-title {
    }
    .product_right .product-list-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-content: center;
        justify-content: center;
    }
}
@media screen and (max-width: 560px) {
    .product_right .product-list-title {
    }
}
.pli {
    list-style: none;
    padding: 8px 0;
    text-align: center;
}

.pli a {
    color: #595757;
    font-size: 16px;
}
.pli a:hover {
    color: #d0bad9;
}
.psul {
    display: none;
    margin: 10px 0 0;
}

.psul li {
    padding: 8px 0;
}

.psul li a {
    font-size: 18px;
    color: #9fa0a0;
}

.psul li:hover a {
    color: #d0bad9;
    padding: 3px 5px;
    transition: 0.5s;
}

.p_arrow_up {
    transform: rotate(180deg);
    transition: 0.5s;
}

.product-list-box {
}

.product-list-pic {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.product-list-pic > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product-list-name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}
.product-list-title {
}

.product-list-name > span:first-child {
    border-radius: 1em;
    padding: 0 0.2em;
    /* border: 1px solid #000; */
}
.product_list_intro {
    margin: 5px 0 10px 0;
}
.product_list_intro p {
    margin: 0;
    font-size: 16px;
}
.product_list_intro p img {
    background-color: #ffc736;
    padding: 2px;
    border-radius: 50%;
    width: 20px;
    line-height: 3em;
    margin-right: 5px;
}
.product-list-size {
    color: #d0bad9;
    font-weight: 600;
}
.product_more a:hover span {
    color: #d0bad9;
}
.product-list-info {
    font-size: 16px;
}
.product_sort span {
    background-color: #d0bad9;
    font-size: 14px;
    color: #fff;
    padding: 5px 24px 5px 8px;
    clip-path: polygon(0 0, 85% 0%, 100% 100%, 0% 100%);
}
/* .product-list-box:hover {
    opacity: 0.8;
    transition: .5s;
} */

.product-list-box:hover .product-list-pic > img {
    transform: translate(-50%, -50%) scale(1.1);
    filter: brightness(0.9);
    transition: 0.5s;
}

.co_box > .flex > div {
    width: 95%;
    margin-bottom: 1em;
    max-width: 1024px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.co_box > .flex > div > div {
    width: 25%;
    padding: 1em;
}

.ai_product_row {
    justify-content: center;
}

.col-md-4.col-xl-4.mb-md-4.ai_product {
    max-width: 16%;
}

.phone_button {
    justify-content: center;
    align-items: center;
    align-content: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.phone_btn_inner {
    width: 20%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 60px;
}

.phone_btn_inner:nth-child(1) {
    background-color: #66de37;
}

.phone_btn_inner:nth-child(2) {
    background-color: #3a559f;
}

.phone_btn_inner:nth-child(3),
.phone_btn_inner:nth-child(4),
.phone_btn_inner:nth-child(5) {
    background-color: #30b5a8;
}

.phone_btn_inner > a > img {
    width: 35px;
    padding: 2% 0;
}

.phone_btn_inner > a > span {
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.phone_btn_inner > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

@media screen and (max-width: 1200px) {
    .product_box {
        width: 95%;
        margin: auto;
    }
}

@media screen and (max-width: 1024px) {
    .product_box {
        flex-wrap: wrap;
    }

    .product_classification {
        width: 100%;
        text-align: center;
        margin: 1rem 0 3rem 0;
    }

    .product_classification_list > .row > div {
        padding: 0 10px;
    }

    /* .product-list-box {
			padding: 8% 8% 0;
	} */
    .product_classification_title {
        position: relative;
        border-bottom: unset;
    }
}

@media screen and (max-width: 768px) {
    .product_box {
    }

    .product-list-box {
        /* padding: 7% 7% 0; */
        width: 100%;
        margin: auto;
    }

    .product-list-pic {
        height: 300px;
        width: 100%;
    }

    .col-md-4.col-xl-4.mb-md-4.ai_product {
        max-width: 48%;
        flex: 48%;
    }

    .product_classification_list > .row > div {
        max-width: 50%;
        flex: 0 0 50%;
        padding: 0;
    }

    .co_box > .flex > div > div {
        width: 33%;
    }
}

@media screen and (max-width: 1000px) {
    .product_left,
    .product_right {
        width: 100%;
    }

    .asul {
        padding: 10px 0;
        display: none;
        border: 2px solid #d0bad9;
    }

    .product_right {
        margin: 30px 0 0;
    }

    .product_classification_title {
        font-size: 20px;
        margin: 0;
    }
    .product_left .index_search {
        margin: 10px 0;
        width: 100%;
        position: unset;
    }
    .pli,
    .psul li a {
        font-size: 16px;
    }

    .float_btn {
        display: none;
    }

    .phone_button {
        display: flex;
    }
}

@media screen and (max-width: 500px) {
    .product_classification {
        margin: 1rem 0 28px 0;
    }

    .product_classification_title {
        padding: 8px 20px;
    }

    .product-list-box {
        /* padding: 10% 12% 0; */
    }

    .product_classification_list > .row > div {
        max-width: 48%;
        flex: 0 0 100%;
        padding: 0 20px;
    }

    .product_right .product_classification_list > .row > div {
        padding: 0;
    }

    .product_classification_list > .row {
        justify-content: space-between;
    }

    .product-list-title {
        font-size: 16px;
    }

    .product-list-pic {
        height: 190px;
    }

    .co_box > .flex > div > div {
        width: 50%;
    }
}

@media screen and (max-width: 400px) {
    .product-list-title {
        padding: 5px 0;
    }

    .pli,
    .psul li {
        padding: 5px 0;
    }
}

/* product_detail */

.product_detail_outer {
    width: 100%;
}

.product_detail {
    width: 58%;
}
.product_txt_box {
    width: 100%;
    border-bottom: 1px solid #d0bad9;
    border-top: 4px solid #d0bad9;
}
.product_word_a a img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    margin-right: 5px;
    border-radius: 10px;
}
.product_map {
    width: 100%;
    height: 30vh;
}
.product_map iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.product_detail_pic {
    width: 450px;
}
.product_intro_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
}
.product_intro_title {
    width: 58%;
}
.product_detailbox {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
    flex-wrap: wrap;
    width: 40%;
}
.product_detail_box > p {
    padding-bottom: 5px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 1px solid #d0bad9;
}
.product_description > p {
    margin-bottom: 2rem;
    margin-top: 10px;
    font-size: 16px;
}
.product_word {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    border-bottom: 1px dashed #d0bad9;
    margin: 5px 0;
    padding: 5px 0;
}
.product_txt_box > .product_word:last-child {
    border-bottom: none;
}
.product_word span {
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}
.product_word p {
    margin: 0;
    font-size: 16px;
    color: #666;
}
.product_detail .product_title {
    color: #333;
    font-weight: 600;
    font-size: 26px;
}

.product_detail_line {
    margin: 10px 0 40px;
    border-bottom: 1px solid #d0bad9;
}

.product_big_pic {
    width: inherit;
    object-fit: contain;
}

.product_small_pic {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.product_small_pic img {
    height: 120px;
    width: calc(33.3333% - 10px);
    margin: 15px 5px;
}

.product_tag {
}

.product_tag span {
    font-size: 18px;
    color: #d0bad9;
    font-weight: 600;
    padding: 3px 0;
    border-left: 5px solid #d0bad9;
    padding-left: 0.8em;
}

.product_description {
    font-size: 16px;
    margin-bottom: 3%;
}
.product_description img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product_cart_form_row span {
    color: #d0bad9;
}

.style_text {
    color: #333 !important;
    font-size: 14px;
}

.product_cart_form > .product_cart_form_row:nth-child(2) > span:nth-child(2) {
    color: red;
    font-size: 1.8em;
}

.product_detail_box > .product_cart_form_row:nth-child(6) > span:nth-child(2) {
    color: red;
    font-size: 1.8em;
}

.product_cart_form_row_title {
    margin: 0 15px 0 0;
}

.product_cart_form_row select,
.product_cart_form_row input {
    width: 200px;
    height: 30px;
    border: 1px solid #d0bad9;
    border-radius: 0.4rem;
    padding: 0 0.5em;
    color: var(--Gtxt_color);
}

.product_cart_form_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_cart_form_btn button {
    margin: 30px 0;
    width: calc(46%);
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
}

.product_cart_form_btn button:hover {
    opacity: 0.8;
    transition: 0.5s;
}

.product_cart_form_btn .pro_btn_buy {
    background: #d0bad9;
}

.product_cart_form_btn .pro_btn_cart {
    background: #333;
}

@media screen and (max-width: 1200px) {
    .product_detail_pic {
        width: 380px;
    }
}
@media screen and (max-width: 1024px) {
    .product_intro_title,
    .product_detailbox {
        width: 100%;
    }
    .product_right {
        border-radius: 1em;
    }
}
@media screen and (max-width: 991px) {
    .product_detail_outer {
        width: 100%;
        margin: 2em auto;
    }

    .product_cart_form_btn button {
        width: calc(48%);
    }
}

@media screen and (max-width: 850px) {
    .product_detail {
        flex-wrap: wrap;
    }

    .product_list_pic {
        margin: 0 auto;
        text-align: center;
        width: 450px;
    }

    .product_detail_pic {
        margin: auto;
    }

    .product_detail_box {
        width: 100%;
        padding: 1rem 0 0 0;
    }

    .product_tag {
        padding: 20px 0 10px 0;
    }
}

@media screen and (max-width: 768px) {
    .product_detail_left {
        width: 100%;
    }

    .product_detail_outer {
        width: 100%;
        margin: 0 0 2em 0;
    }

    .product_detail_left .asul {
        display: none;
    }

    .product_detail_left .product_classification_title span {
        display: inline-block;
    }

    .product_detail .product_title {
        font-size: 22px;
    }

    .product_tag span {
        font-size: 20px;
    }

    .product_description {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .product_list_pic {
        width: 380px;
    }
}

@media screen and (max-width: 500px) {
    .product_list_pic {
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .product_small_pic img {
        height: 90px;
        margin: 8px 5px;
    }
}

@media screen and (max-width: 400px) {
    .product_list_pic {
        width: 100%;
    }

    .product_tag span {
        font-size: 16px;
    }

    .product_description {
        font-size: 14px;
    }
}

/*more*/

.more {
    text-align: center;
    padding: 40px 0 130px;
}

.more span {
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    padding: 2.5rem 6rem;
    background: url(../images/website_image/more.png) center center no-repeat;
    background-size: contain;
}

.more span:hover {
    opacity: 0.8;
    padding: 2.3rem 5rem;
    transition: 0.5s;
}

@media screen and (max-width: 768px) {
    .more {
        padding: 40px 0 90px;
    }

    .more span {
        font-size: 20px;
        padding: 2.3rem 4rem;
    }

    .more span:hover {
        padding: 2rem 5rem;
    }
}

@media screen and (max-width: 500px) {
    .more {
        padding: 40px 0 70px;
    }

    .more span {
        font-size: 18px;
        padding: 2rem 4rem;
    }

    .more span:hover {
        padding: 1.8rem 5rem;
    }
}

/*頁碼*/

.page {
    text-align: center;
    padding: 30px 10px 70px;
    font-size: 23px;
}

.page ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    padding-bottom: 15px;
}

.page ul li {
    display: inline-block;
    min-width: 2em;
}

.page ul li .general {
    margin: 0px 5px;
    text-decoration: none;
    color: #595757;
    word-break: keep-all;
    background-color: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.page ul li .select {
    color: #d0bad9;
}

.page-arrow {
    padding: 1px 8px;
    display: block;
    text-decoration: none;
    color: #fff !important;
    background: #d0bad9 !important;
    border-radius: 50%;
    margin: 0px 18px;
}

@media screen and (max-width: 768px) {
    .page {
        padding: 15px 10px 40px;
    }

    .page ul {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 500px) {
    .page {
        font-size: 16px;
    }

    .page ul li .general,
    .page-arrow {
        margin: 0px 5px;
    }

    .page-arrow {
        padding: 1px 6px;
    }
}

/* NewAdd */
:root {
    --main-color: #38b4fe;
    --sub-footer-color: #20509a;
    --sub-copyright-color: #121740;
    --sub-green-color: #9fca56;
    --sub-gray-color: #e4e4e4;
}

/* 通用設定 */
main {
    width: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.wrapper {
    width: 95%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 3em 0;
    position: relative;
    z-index: 2;
}

.wrapper > .container {
    max-width: 100%;
}

.wrapper > .container p {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .wrapper {
        padding: 2em 0;
    }
}

/* 首頁設定 */
/* 輪播區塊 */
.logo-blk {
    position: relative;
    height: 100%;
    color: #000;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.logo-blk .logo-swiper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.logo-blk .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.logo-blk .swiper-slide .pic-box {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.logo-blk .swiper-slide .pic-box .swiper_hover {
    position: absolute;
    top: 200%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #00000080;
    width: 100%;
    height: 100%;
    color: #fff;
}
.logo-blk .swiper-slide .pic-box:hover .swiper_hover {
    animation-name: swiper_top;
    animation-duration: 0.3s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
@keyframes swiper_top {
    0% {
        top: 200%;
    }
    100% {
        top: 50%;
    }
}
.logo-blk .swiper-slide .pic-box > img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.logo-blk .swiper-slide .pic-box .swiper_hover_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.logo-blk .swiper-slide .pic-box .swiper_hover_txt > p {
    font-size: 1.2em;
}
.logo-blk .swiper-slide .pic-box .swiper_hover_txt > img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-top: 10px;
}
.logo-blk .swiper-pagination {
    bottom: -1em;
}

.logo-blk .swiper-button-next,
.logo-blk .swiper-button-prev {
    width: 2em;
    height: 2em;
    background: #e4e4e485;
    border-radius: 50%;
    transition: 0.3s;
}
.logo-blk .swiper-button-next:hover,
.logo-blk .swiper-button-prev:hover {
    background: #e4e4e4;
    transition: 0.3s;
}
.logo-blk .swiper-button-next:after,
.logo-blk .swiper-button-prev:after {
    font-size: 1em;
    font-weight: 900;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .logo-blk .swiper-slide img {
    }

    .logo-blk .swiper-button-next,
    .logo-blk .swiper-button-prev {
        width: 1.5em;
        height: 1.5em;
        border-radius: 50%;
    }

    .logo-blk .swiper-button-next:after,
    .logo-blk .swiper-button-prev:after {
        font-size: 1em;
    }
}

@media screen and (max-width: 768px) {
    .logo-blk .swiper-button-next,
    .logo-blk .swiper-button-prev {
        background: rgba(228, 228, 228, 0.5);
    }

    .logo-blk .swiper-button-next:after,
    .logo-blk .swiper-button-prev:after {
        color: #999;
    }
}

@media screen and (max-width: 500px) {
    .logo-blk .swiper-slide img {
    }
}

/* 第一部分編輯器 */
.gift {
    position: relative;
}

.gift::after {
    content: '';
    width: 100%;
    height: 150%;
    background: url(../images/bg01.png) center bottom no-repeat;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.gift .gift-tit {
    position: relative;
    text-align: center;
    font-size: 2em;
}

.gift .gift-tit::before,
.gift .gift-tit::after {
    content: '';
    width: calc((100% - 10em) / 2);
    height: 2px;
    background: var(--sub-gray-color);
    position: absolute;
    top: 50%;
}

.gift .gift-tit::before {
    left: 0;
}

.gift .gift-tit::after {
    right: 0;
}

.gift .gift-tit > p {
    display: inline;
    font-size: inherit;
}

.gift .notice {
    position: relative;
    font-size: 1.2em;
    margin: 1em auto;
    padding: 0.5em 1em 0.5em 4em;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--sub-gray-color);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.35);
}

.gift .notice::before {
    content: '';
    width: 2em;
    height: 2em;
    background: url(../images/icon_Loudspeaker.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
}

.gift .flex {
    margin: 1em auto;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--sub-gray-color);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.35);
}

.gift .flex > .item {
    width: 33.33%;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.gift .flex > .item + .item {
    border-left: 1px solid var(--sub-gray-color);
}

.gift .flex > .item > .pic-box {
    width: 35%;
    height: 100%;
    margin-right: 1em;
    background: url(../images/icon_prize.png) no-repeat;
    background-size: 300% auto;
    pointer-events: none;
}

.gift .flex > .item:nth-child(1) > .pic-box {
    background-position: 0% 0;
}

.gift .flex > .item:nth-child(2) > .pic-box {
    background-position: 50% 0;
}

.gift .flex > .item:nth-child(3) > .pic-box {
    background-position: 100% 0;
}

.gift .flex > .item > .txt-box {
    width: 65%;
}

.gift .flex > .item > .txt-box > .b-txt {
    margin-bottom: 1em;
}

.gift .flex > .item > .txt-box > .b-txt > p {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.5;
}

.gift .flex > .item > .txt-box > .s-txt > span {
    display: inline-block;
    padding: 0 0.5em;
    margin-bottom: 0.25em;
    line-height: 1.5;
    color: #fff;
    background: var(--sub-green-color);
}

.gift .flex > .item > .txt-box > .s-txt > p {
    font-weight: 600;
}

.gift .flex > .item > .txt-box > .s-txt > p > span {
    color: #999;
    font-size: 0.8em;
}

@media screen and (min-width: 651px) and (max-width: 1024px) {
    .gift .flex > .item > .pic-box {
        width: 3em;
        position: absolute;
        top: -1em;
        left: 0;
        transform: translateX(-50%);
    }

    .gift .flex > .item > .txt-box {
        width: 100%;
        padding-left: 0.5em;
    }
}

@media screen and (max-width: 1024px) {
    .gift .flex > .item {
        position: relative;
    }
}

@media screen and (max-width: 650px) {
    .gift .flex {
        flex-direction: column;
    }

    .gift .flex > .item {
        width: 100%;
    }

    .gift .flex > .item > .pic-box {
        width: 5em;
        height: auto;
        min-height: 8em;
    }

    .gift .flex > .item > .txt-box {
        width: 75%;
    }

    .gift .flex > .item + .item {
        border-top: 1px solid var(--sub-gray-color);
        border-left: unset;
    }
}

@media screen and (max-width: 360px) {
    .gift .flex > .item > .pic-box {
        width: 3em;
        position: absolute;
        top: -1em;
        left: 0;
        transform: translateX(-25%);
    }

    .gift .flex > .item > .txt-box {
        width: 100%;
        padding-left: 1em;
    }

    .gift .flex > .item > .txt-box > .b-txt > p > br {
        display: none;
    }
}

/* 第二部分編輯器 */
.open {
    position: relative;
    background-image: radial-gradient(circle at 10% -50%, #1ae8ff 0%, #70deed 70%, #70deed 120%);
    overflow: hidden;
}

.open::after {
    content: '';
    width: 55%;
    height: 120%;
    background: url(../images/bg02.png) no-repeat;
    background-size: 100%;
    mix-blend-mode: screen;
    position: absolute;
    bottom: -30%;
    right: 0;
    z-index: 1;
}

.open .container {
    color: #fff;
}

.open .open-tit {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.open .open-tit::before {
    content: '';
    background-color: #d0bad9;
    width: 320px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: -1;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.open .open-tit::after {
    content: '';
    background-color: #80b2e7;
    width: 320px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(5deg) scale(1.5);
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    z-index: -2;
}

.open .item-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    background-color: #ffffff87;
    margin-top: 2em;
}

.open .item-box .flex {
    width: 33%;
    padding: 1em;
    flex-direction: column;
    text-align: center;
}

.open .open-tit > p {
    margin-bottom: 0.1em;
    display: inline-block;
    font-size: 3em;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.5;
    position: relative;
    -webkit-animation-name: scaleDraw;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 5s;
}

@keyframes scaleDraw {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }
}

.open .open-tit > p::after {
    content: '';
    width: calc(100% - 6em);
    height: 2px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -3;
}

.open .open-tit > span {
    display: block;
    text-align: right;
    margin-top: -0.25em;
}

.open .item-box > .flex > .pic-box {
    width: 180px;
    padding: 0.5em;
}

.open .item-box > .flex > .txt-box {
    flex: 1;
    color: #333333;
}

.open .item-box > .flex > .txt-box > span {
    letter-spacing: 2px;
    font-size: 1.2em;
}

.open .item-box > .flex > .txt-box > p {
    font-size: 1.5em;
    padding: 0 1em;
    line-height: 1.8;
    margin-top: 0.25em;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
    background-color: #d0bad9;
    color: #fff;
    font-weight: 600;
}

@media screen and (max-width: 1200px) {
    .open .item-box {
        flex-direction: column;
        align-items: center;
    }

    .open .item-box .flex {
        width: 100%;
    }

    .open .item-box > .flex > .txt-box {
        padding-left: 0%;
    }
}

@media screen and (max-width: 1024px) {
    .open::after {
        width: 70%;
        height: 110%;
    }
}

@media screen and (max-width: 950px) {
    .open::after {
        width: 60%;
        right: -10%;
        background-position-y: bottom;
    }

    .open .container {
        width: 75%;
        margin-left: auto;
    }
}

@media screen and (max-width: 768px) {
    .open .open-tit::before {
        transform: translate(-50%, -50%) scale(1);
        height: 90px;
    }

    .open .open-tit::after {
        transform: translate(-50%, -50%) rotate(5deg) scale(1);
        height: 90px;
    }
}

@media screen and (max-width: 600px) {
    .open .container {
        width: 95%;
    }

    .open::after {
        width: 100%;
        height: 100%;
        bottom: -15%;
        filter: blur(5px);
    }

    .open .item-box > .flex > .pic-box {
        width: 6em;
    }
}

@media screen and (max-width: 500px) {
    .open .open-tit > span {
        font-size: 13px;
        margin-top: -1em;
    }
}

@media screen and (max-width: 360px) {
    .open .open-tit > p {
        text-align: center;
    }

    .open .open-tit > p::after {
        height: 5px;
        right: 50%;
        top: 100%;
        transform: translate(50%, 50%);
    }

    .open .open-tit > span {
        text-align: center;
    }

    .open .item-box {
        margin-top: 1.5em;
    }
}

/* 頁面標題 */
.tit {
    font-size: 1.5em;
    position: relative;
    margin: 0 0 1em 0;
    padding-top: 1em;
    font-weight: 600;
    letter-spacing: 2px;
}

.tit::after {
    content: '';
    width: 4em;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 5em;
    background: #d0bad9;
}

.tit > img {
    max-height: 2em;
    animation: 2s logo-rotate linear;
    animation-iteration-count: infinite;
}

@keyframes logo-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 內頁 */
.about .tit {
    margin-top: 0;
}

.about .flex {
    align-items: flex-start;
}

.about .flex > .item {
    flex: 1;
    width: 90%;
    margin: 0 auto;
    padding: 0.5em;
    position: relative;
}

.about .pic-box {
    width: 100%;
    padding-top: 80%;
    position: relative;
}

.about .pic-box > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about .txt-box {
    width: 80%;
    margin: 0 auto;
    margin-top: -2em;
    padding: 0.5em 1em;
    position: relative;
    background: #fff;
    border-bottom: 5px solid #d0bad9;
    box-shadow: 2px 0px 2px rgb(0 0 0 / 35%);
}

@media screen and (max-width: 1050px) {
    .about .flex {
        flex-direction: column;
    }
}

@media screen and (min-width: 601px) and (max-width: 1050px) {
    .about .flex > .item {
        display: flex;
        justify-content: center;
        align-items: stretch;
        margin-left: 2em;
    }

    .about .pic-box {
        position: relative;
        padding-top: 40%;
    }

    .about .txt-box {
        margin-top: 2em;
        margin-left: -2em;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* 版權區 */
footer {
    color: #fff;
    background: #333;
    line-height: 1.8;
}

footer .wrapper {
    padding: 2em 0;
}

footer .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
}

footer .nav {
    width: 65%;
    display: block;
}

footer .nav > .flex {
    align-items: flex-start;
    justify-content: space-evenly;
}

footer .nav > .flex > .item {
    flex: 1;
    max-width: 10em;
    padding-right: 0.5em;
}

footer .nav > .flex > .item > p {
    font-size: 1.2em;
    line-height: 1.5;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
}

.wrapper > .container p > svg {
    max-width: 1em;
    margin: 0.25em;
}

footer .nav > .flex > .item > ul > li > a {
    color: #fff;
    text-decoration: unset;
}

footer .edit {
    width: 35%;
    margin-top: -0.8em;
}

footer .edit p:nth-child(1) {
    display: inline-block;
    font-size: 2em;
    line-height: 1.5;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
}

footer .edit p:nth-child(2) {
    font-size: 1.5em;
}

footer .social {
    position: absolute;
    right: 0;
    bottom: 0;
}

footer .social > a {
    max-width: 60px;
    display: inline-block;
    margin: 0 0.25em;
}

footer .copyright {
    font-size: 12px;
    background: #333;
    text-align: center;
}

footer .copyright a {
    color: #fff;
}

footer div#counter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}

footer div#total_number,
footer div#online_number {
    padding: 0 1em;
}

footer div#total_number img,
footer div#online_number img {
    filter: invert(1);
}

@media screen and (max-width: 1050px) {
    footer .social > a {
        max-width: 50px;
    }
}

div#counter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
}

.nobuy {
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.nobuy_word {
    display: inline-block;
    background-color: #00cf2e;
    padding: 0.5em 1.5em;
    margin-bottom: 1em;
    margin-top: 1em;
    clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
}

.nobuy_word > span > font > b {
    color: #fff;
}

.nobuy_pic {
    width: 150px;
}

.nobuy_pic a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.up_pic {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.product_rec_img {
    height: auto;
    width: 49.5%;
    margin-bottom: 2em;
}

.product_rec_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1000px) {
    footer {
    }
    .product_rec_img {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    footer .wrapper > .container {
    }

    footer .edit {
        width: 100%;
        margin-bottom: 2em;
        order: 1;
    }

    footer .nav {
        width: 100%;
        order: 2;
    }

    footer .social {
        position: absolute;
        right: 0;
        bottom: unset;
        top: 0;
    }

    footer div#counter {
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 90%;
        max-width: 480px;
        margin: 0 auto;
    }

    footer div#total_number {
        padding: 0 1em 0 0;
        font-size: 0.5em;
    }

    footer div#online_number {
        padding: 0;
        font-size: 0.5em;
    }

    footer div#total_number img,
    footer div#online_number img {
        width: 8px;
    }
}

@media screen and (max-width: 500px) {
    footer .nav > .flex > .item > ul {
        font-size: 12px;
    }

    footer .social > a {
        max-width: 40px;
    }
}

@media screen and (max-width: 360px) {
    footer .nav > .flex > .item {
        padding-right: 0.25em;
    }
}

@media screen and (max-width: 345px) {
    footer {
    }

    .phone_btn_inner {
        height: 70px;
    }
}

@media screen and (max-width: 768px) {
    .member_name {
        font-size: 15px;
    }
}
main.bg {
    background-image: url(../images/website_image/body_bg.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}
.top_bg {
    width: 100%;
    position: absolute;
}
.changhua_title {
    margin-bottom: 0.5em;
    font-size: 2em;
    font-weight: 600;
    color: #d0bad9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.changhua_title span {
    position: relative;
}
.changhua_title span::before {
    content: '';
    position: absolute;
    top: 0;
    right: 5px;
    width: 30px;
    height: 1px;
    background-color: #d0bad9;
}
.changhua_title span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    width: 30px;
    height: 1px;
    background-color: #d0bad9;
}
.index_search {
    width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-bottom: 3em;
}
.search_class .form-control {
    border: 1px solid #d4c0dc;
    border-radius: 5px 0 0 5px;
}
.search_class {
    width: calc(100% - 35px);
}
.search_ico {
    background-color: #d4c0dc;
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 0 5px 5px 0;
}
.search_btn:hover {
    cursor: pointer;
}
.margin_container {
    margin-top: 10%;
}
.index_news {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
    margin-top: 5%;
    position: relative;
}
.index_news::after {
    content: url(../images/website_image/middle_bg.webp);
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: -1;
}
.index_news .index_news_left {
    width: 49%;
}
.index_news .index_news_left .index_news_pic {
    width: 100%;
}
.index_news .index_news_left .index_news_box {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.index_news .index_news_left .index_news_date {
    width: 55px;
    font-size: 20px;
    text-align: center;
}
.index_news .index_news_left .index_news_txt {
    padding-left: 20px;
    width: calc(100% - 75px);
    margin-left: 20px;
    border-left: 1px solid #d0bad9;
}
.index_news_right {
    width: 49%;
}
.index_news_list {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    align-content: center;
    flex-wrap: wrap;
    box-shadow: 2px 2px 1px 1px #0000000d;
}
.index_news_pic {
    width: 27%;
}
.index_news_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_news_box {
    width: 73%;
    padding: 20px;
}
.index_news_date {
    font-size: 14px;
    color: #d0bad9;
}
.index_news_txt {
    margin-top: 10px;
}
.index_news_txt span {
    font-size: 20px;
    color: #000;
}
.index_news_txt .p {
    margin-top: 5px;
    font-size: 16px;
    color: #898989;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.best_year {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    margin-top: 5%;
}
select.best_year_select {
    max-width: 500px;
    width: 90%;
    border: 1px solid #0000000d;
    box-shadow: 2px 2px 1px 1px #0000000d;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    appearance: none;
    background: url('../images/website_image/arrow.png') no-repeat 62% center transparent;
}
select.best_year_select option {
    text-align: center !important;
    color: #333;
}
.best_year_download {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 2em;
    border: 3px dashed #d0bad9;
    background-color: #ffffff75;
    margin-top: 3%;
    margin-bottom: 10%;
    align-items: flex-end;
}
.best_year_pic {
    max-width: 150px;
}
.best_year_download > a {
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
}
.best_year_download > a > p {
    text-align: center;
    color: #333;
    font-size: 16px;
}
.new_footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
}
.nfooter_left,
.nfooter_right {
    width: 48%;
}
.nfooter_left > p {
    font-size: 12px;
    margin-top: 15px;
    color: #666;
}
.left_top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.left_top > span {
    font-size: 30px;
}
.left_top > p {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #fff;
}
.left_bottom {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #fff;
}
.left_bottom > a {
    color: #fff;
}
.left_bottom > a:hover {
    color: #d0bad9;
}
.left_bottom > a:nth-child(2):hover {
    color: #d0bad9;
}
.left_bottom > a:nth-child(2) {
    color: #fff;
    padding: 0 15px;
    margin: 0 15px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.nfooter_right > span {
    border-left: 4px solid #fff;
    padding-left: 15px;
    font-size: 20px;
}
.nfooter_right .right_txt {
    border-left: 1px solid #fff;
    padding-left: 16.5px;
    margin-left: 1.5px;
    margin-top: 5px;
    font-size: 16px;
}
.nfooter_right .right_txt p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.nfooter_right .right_txt img {
    margin-right: 10px;
}
.copyright_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.copyright_title img {
    width: 80px;
}
.copyright_title span {
    padding: 10px 20px;
    background-color: #d0bad9;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    margin-left: -15px;
    z-index: -1;
}
.copyright_txt {
    line-height: 1.8em;
    margin-top: 50px;
}
.copyright_txt span {
    font-size: 20px;
    font-weight: 600;
}
.copyright_txt > p {
    padding: 10px 0 30px 0;
    font-size: 16px;
}
main {
    position: relative;
}
.page_bg_top {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.page_bg_bottom {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
}
.copyright_box {
    padding: 2% 3%;
    background-color: #fff;
    box-shadow: 2px 2px 1px 1px #0000000d;
    border: 1px solid #0000000d;
    position: relative;
    z-index: 1;
    border-radius: 2em;
}
.download_left .asul {
    display: block;
}
.download_left .asul li {
    list-style: none;
    padding: 8px 0;
    text-align: center;
}
.download_left .asul li a {
    color: #333;
}
.download_left .asul li:hover a {
    color: #d0bad9;
}
.download_left {
    width: 300px;
}
.download_right {
    overflow: auto;
    width: calc(100% - 350px);
}
.download_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
    margin: 3% 0 5% 0;
}
.download_right table {
    width: 100%;
    white-space: nowrap;
    text-align: center;
    border: 1px solid #0000000d;
    box-shadow: 2px 2px 1px 1px #0000000d;
    font-size: 16px;
}
.download_right td {
    padding: 10px 5px;
    border: 1px solid #fff;
}
.download_right table > tbody > tr:nth-child(even) {
    background-color: #fff;
}
.download_right table > tbody > tr:nth-child(odd) {
    background-color: #f5f5f5;
}
.download_right table > tbody > tr:first-child {
    font-size: 20px;
    background-color: #333;
    color: #fff;
}
.download_right td i {
    margin-right: 5px;
}
@media screen and (max-width: 1240px) {
    .new_footer {
        flex-direction: column-reverse;
    }
    .nfooter_left,
    .nfooter_right {
        width: 100%;
    }
    .nfooter_right {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 1024px) {
    .download_left .asul {
        display: none;
    }
    .download_flex {
        justify-content: center;
    }
    .download_right {
        margin-top: 3%;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .index_news .index_news_left,
    .index_news_right {
        width: 100%;
    }
    .index_news_pic,
    .index_news_box {
        width: 100%;
    }
    .index_news .index_news_left .index_news_date {
        width: 100%;
        font-size: 14px;
        text-align: left;
    }
    .index_news .index_news_left .index_news_txt {
        padding-left: 0px;
        width: 100%;
        border-left: none;
        margin-left: 0;
    }
    .left_top {
        align-items: flex-start;
        flex-direction: column;
    }
    .left_top > p {
        margin-left: 0px;
    }
    .logo-blk .swiper-slide .pic-box {
        margin: 20px 0;
    }
}
@media screen and (max-width: 500px) {
    .index_search {
        margin-bottom: 0em;
    }
    select.best_year_select {
        background: url(../images/website_image/arrow.png) no-repeat 70% center transparent;
    }
    .best_year_download > a {
        width: 50%;
        margin: 0;
        padding: 10px;
    }
    .best_year_download > a > p {
        font-size: 14px;
    }
}
@media screen and (max-width: 350px) {
    select.best_year_select {
        background: url(../images/website_image/arrow.png) no-repeat 75% center transparent;
    }
}
