@charset "UTF-8";
:root {
    /*--ci1: #ffd54b;*/
    --ci1: linear-gradient(#e6e6e6, #ececec, #ffffff);
    --ci2: #44958c;
    --ci3: #dea64c;
    --title: #232925;
    --bg1: #e9c646;
    --black1: #131313;
}

html {
    font-size: 19px;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    letter-spacing: 1px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
    font-family: Arial, '微軟正黑體';
    text-decoration: none;
    text-shadow: none;
    margin: 0;
    padding: 0;
    color: var(--black1);
    transition: all .3s ease-in-out;
}

img, iframe {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6, strong {
    font-weight: 700;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 2.143rem;
}

h4 {
    font-size: 1.2rem;
}

.index section {
    width: calc(100% - 20px);
    max-width: 1298px;
    margin: 0 auto;
    padding-top: 0px;
    position: relative;
}

.index section:after {
    content: '';
    display: block;
    clear: both;
}

.swiper {
    width: 100%;
}

header {
    position: fixed;
    z-index: 900;
    width: 100%;
    padding-top: 15px;
    left: 0;
    top: 0;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

header section {
    max-width: 995px;
}

header .tools {
    position: absolute;
    right: 0;
    top: 0px;
}

header .tools a {
    font-size: 0.857rem;
    display: inline-block;
    margin-left: 13px;
}

header .tools .active {
    color: var(--ci3);
}

header .logo {
    transform: translateY(3px);
    display: inline-block;
}

nav {
    position: absolute;
    right: 0;
    bottom: 0;
}

nav .mobile {
    display: none;
}

nav ul {
    margin: 0;
}

nav > ul li {
    display: inline-block;
    position: relative;
}

nav > ul > li {
    margin-left: 22px;
}

nav > ul > li > a {
    padding-bottom: 5px;
    display: block;
    /*font-size: 0.857rem;*/
}

nav > ul > li ul {
    display: inline-block;
}

nav > ul > li > .sub {
    /* width: 700px; */
    height:600px;
    overflow-y:auto;
    background: #fff;
    position: absolute;
    top: 20px;
    left: -125px;
    display: none;
    border: 1px #dededd solid;
    padding: 20px;
}

nav .sub:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    /*border-width: 0 10px 18px 10px;*/
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    /*left: 25%;*/
    /*margin-top: -18px;*/
}

nav > ul > li > .sub a {
    margin-bottom: 10px;
    /* display: block; */
    display: -webkit-box;
}
.sub a.class_txt {
    width: 95%;
}
.sub a.sec.icon {
    right: 20px;
}

nav > ul > li > .sub > ul {
    display: grid;
    grid-template-columns: repeat(3, 180px); /* 每列固定 180px */
    /* grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 根據內容自動調整欄數 */
    gap: 10px;
    list-style-type: none;
    padding: 0;
    /* margin: 24px 26px 0 26px; */
}

nav > ul > li > .sub > ul > li {
    /* width: calc(33.33333% - 15px); */
    float: left;
    /* margin-bottom: 20px; */
}

/* nav > ul > li > .sub > ul > li:nth-child(2) {
    margin: 0 20px;
} */

nav > ul > li > .sub > ul > li > a {
    color: var(--ci2);
    font-size: 1.1rem;
    /* display: block; */
    display: -webkit-box;
}

nav > ul > li > .sub > ul > li > ul {
    margin-left: 1rem;
}

nav > ul > li > .sub > ul > li > ul > li {
    width: 90%;
}

nav > ul > li > .sub > ul > li > ul > li > a.sec {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

a.class_txt {
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    /* display: -webkit-box; */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

a.sec:after {
    content: '+';
    font-size: 130%;
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 2px;
    background: var(--black1);
    color: #fff;
    text-align: center;
    line-height: 25px;
    transform: translate(0px, -2px);
}

nav > ul > li > .sub > ul > li > ul > li > a.sec.open:after {
    content: 'X';
    font-size:1rem;
}

nav > ul > li > .sub > ul > li > ul > li > a.sec.open ~ ul {
    display: block;
}

nav > ul > li > .sub > ul > li > ul > li > ul {
    margin-left: 1rem;
    display: none;
}

/* nav > ul > li > .sub > ul > li > ul > li > ul li a {
    font-size: 0.9rem;
} */

nav > ul > li > .sub ul {
    width: calc(100% - 10px);
}

nav > ul > li:hover > .sub {
    display: inline-block;
}

a.sec.icon {
    position: absolute;
    right: 30px;
    top: 0;
    display: none;
}

.animated-arrow {
    padding: 13px 23px 16px 0px;
}

.animated-arrow span, .animated-arrow span:before, .animated-arrow span:after {
    cursor: pointer;
    height: 2px;
    width: 23px;
    background: #000;
    position: absolute;
    display: block;
    content: '';
    transition: all .25s ease-in-out;
}

.animated-arrow span:before {
    top: -7px;
}

.animated-arrow span:after {
    bottom: -7px;
}

body.menuopen .animated-arrow span {
    background-color: transparent !important;
}

body.menuopen .animated-arrow span:before, .animated-arrow.active span:after {
    top: 7px;
}

body.menuopen .animated-arrow span:before {
    transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 0px;
}

body.menuopen .animated-arrow span:after {
    transform: rotate(-45deg);
}

#navation {
    position: absolute;
    z-index: 911;
    right: 0;
    top: 10px;
    display: none;
    color: var(--ci1);
    cursor: pointer;
}

main {
    padding: 75px 0 50px 0;
}

.banner {
    background: var(--ci1);
    /*height: 390px;*/
    height: 450px;
}

.banner .swiper-slide {
    background: no-repeat center;
    background-size: contain;
    /* background-size: cover; */
}

.banner section {
    max-width: 1155px;
}

.banner .info, .banner .info * {
    color: #fff;
    font-size: 0.857rem;
}

.banner .info {
    margin: 80px 0 0 50px;
    max-width: 400px;
}

.banner .info h1 {
    font-size: 2.14rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 15px 0;
}

.banner .info .btns {
    margin-top: 1.5rem;
}

.banner .info .btns a {
    background: #fff;
    line-height: 1;
    display: inline-block;
    padding: 8px;
    border-radius: 15px;
    color: var(--black1);
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/*頁面位置*/
.pages_text {
    width: 100%;
    margin-left: 10%;
}

.search_box {
    position: relative;
    border: 1px #cecece solid;
    width: 90%;
    max-width: 448px;
    margin: 42px auto;
}

.search_box input {
    border: none;
    width: calc(100% - 60px);
    padding: 0px 10px;
    font-size: 0.857rem;
}

.search_box button {
    width: 36px;
    height: 28px;
    cursor: pointer;
    float: right;
    border: none;
}

.c3_box {
    max-width: 1156px;
    margin: 0 auto;
}

.c3_box > div {
    padding: 15px;
    /*background: #fde3ec;*/
    background: #f3f3f3;
    width: calc(33.333333% - 57px);
    float: left;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 12px 2rem 12px;
}

.c3_box .img {
    width: 45%;
    height: 100%;
    background: no-repeat center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
}

.c3_box .info {
    width: calc(55% - 30px);
    text-align: justify;
    margin: 10px;
}

.c3_box .info .btn {
    background: #ed5d29;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    line-height: 1;
    padding: 5px 15px;
    margin-top: 1rem;
}

.c3_box .info, .c3_box .info * {
    font-size: 0.857rem;
}

.c3_box .info h5 {
    color: #ee5d26;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.c3_box .info .txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.c3_box > div:nth-child(2) {
    /*background: #e0e9e8;*/
    background: #f3f3f3;
}

.c3_box > div:nth-child(2) .btn {
    background: #12b76b;
}

.products {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
}

.products_tools {
    position: absolute;
    right: 2rem;
    top: 2rem;
    text-align: right;
    width: calc(100% - 250px);
    max-width: 465px;
}

.products_tools * {
    display: inline-block;
}

.products_tools .arrow {
    opacity: 1;
    display: inline-block;
}

.products_tools .swiper-button-lock, .products .tools .swiper-button-disabled {
    opacity: 0.4;
}

.products_tools .swiper-scrollbar {
    width: calc(100% - 100px);
    margin-right: 10px;
    position: relative;
}

.products_tools .swiper-scrollbar .swiper-scrollbar-drag {
    position: absolute;
}

.products .box {
    padding: 0 15px;
}

.products .img {
    width: 100%;
    padding-bottom: 97%;
    display: block;
    background: no-repeat center;
    background-size: cover;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
}

.products .img .discount {
    background: #db6825;
    color: #fff;
    line-height: 1;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 0.714rem;
    position: absolute;
    left: 10px;
    top: 1rem;
}

.products .info {
    padding: 0 10px;
}

.products h5 {
    margin: 1rem 0;
    font-size: 0.857rem;
    line-height: 1.1;
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space:nowrap;*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.products .price {
    min-width: 40%;
    float: left;
    text-align: center;
    font-size: 0.857rem;
}

.products .price small {
    display: block;
    font-size: 0.714rem;
    color: #878787;
    text-decoration: line-through;
}

.products .btns {
    /*float: right;*/
    /*margin-top: 8px;*/
    margin-top: 75px;
}

.products .btns * {
    font-size: 0.857rem;
    color: #878787;
}

.area4 .dpnone {
    display:inline-block;
}

.area4 a {
    display: inline-block;
    float: left;
    width: 100%;
}

.area4 a img {
    width: 100%;
}

.area4 a:nth-child(1) {
    margin: 0 20px 20px 0;
    max-width: 522px;
}

.area4 a:nth-child(2) {
    margin: 0 30px 20px 0;
    max-width: 355px;
}

.area4 a:nth-child(3) {
    max-width: 355px;
}

.area4 a:nth-child(4) {
    max-width: 742px;
}

.area_title {
    font-size: 2.14rem;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.area_title:after {
    content: '';
    width: 233px;
    height: 4px;
    display: inline-block;
    background: url('../images/bg_area_title.png') no-repeat center;
    position: absolute;
    left: calc(50% - 116.5px);
    bottom: 0;
}

.tabs {
    text-align: center;
    margin-bottom: 2rem;
}

.tabs a {
    /*font-size: 1.285rem;*/
    font-size: 1rem;
    line-height: 1;
    /*margin: 0 10px 1rem 10px;*/
    margin: 0;
    padding: 10px 10px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
}

.tabs a.active {
    background: #e9c646;
}

.tabs_box .tools {
    text-align: right;
    margin-bottom: 1rem;
    display: none;
}

/*商品全部列表下拉分類選單*/
.class_select {
    width: 100%;
    margin: 0 auto 2% 0;
    display: inline-block;
}

.class_select select {
    margin: 0 0 10px 20px;
    padding: 5px 10px 5px 10px;
    background-color: #ffd54b;
    border: 0px;
}

.class_select button {
    margin: 0 0 10px 20px;
    padding: 2px 10px 2px 10px;
    background-color: #747070;
    color: #ffffff;
    border: 0px;
}


.tabs_box .tools a {
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    width: 20px;
}

.tabs_box ul {
    margin: 0;
}

.tabs_box ul li {
    display: inline-block;
    list-style: none;
    width: 20%;
    float: left;
}

.tabs_box ul li > div {
    padding: 0 10px;
}

.tabs_box .img {
    width: 100%;
    /*padding-bottom: 113%;*/
    padding-bottom: 100%;
    display: block;
    position: relative;
    background: no-repeat center;
    background-size: contain;
    /*background-size: cover;*/
    background-color: #e6e5e5;
}

.tabs_box .img .discount {
    background: #ed2967;
    color: #fff;
    line-height: 1;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 0.714rem;
    position: absolute;
    left: 10px;
    top: 1rem;
}

.tabs_box .info {
    padding: 15px;
}

.tabs_box .info * {
    font-size: 0.857rem;
}

.tabs_box .type {
    color: #878787;
}

.tabs_box .info h5 {
    margin: 5px 0;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tabs_box .info .price {
    min-width: 40%;
    float: left;
    text-align: center;
    margin: 10px 0;
}

.tabs_box .info .price small {
    display: block;
    font-size: 0.714rem;
    color: #878787;
    text-decoration: line-through;
}

.tabs_box .info .btns a:nth-child(1) {
    /*transform: translateY(-8px);*/
}

.tabs_box .info .btns a:nth-child(3) {
    transform: translateY(-8px);
}

.tabs_box .info .btns a {
    /*border: 1px #ebeaed solid;*/
    position: relative;
    display: inline-block;
    padding: 5px;
    text-align: center;
    color: #878787;
}

.tabs_box .info .btns a:nth-child(2) {
    margin: 0 8px;
}

.tabs_box .info .btns a img {
    float: left;
}

.info .btns a.icon_heart {
    width: 20px;
    height: 18px;
    background: url('../images/btn_heart.png') no-repeat center;
    display: inline-block;
    padding: 0;
}

.tabs_box .info .btns a.icon_heart {
    width: 32px;
    height: 30px;
    background: url('../images/btn_heart.png') no-repeat center;
    display: inline-block;
    padding: 0;
}

.info .btns a.icon_heart.active {
    width: 20px;
    height: 18px;
    background-image: url('../images/btn_heart_2.png');
}

.tabs_box .info .btns a.icon_heart.active {
    width: 32px;
    height: 30px;
    background-image: url('../images/btn_heart_2.png');
}

.top_menu {
    position: fixed;
    right: 10px;
    bottom: 50px;
    width: 80px;
    z-index: 10000;
}

/*分頁數按鈕*/
.pages_button {
    width: 90%;
    margin: 0 auto;
}

.pages_button ul {
    margin-top: 3%;
    text-align: center;
    line-height: 50px;
}

.pages_button ul li {
    display: inline-block;
    padding: 3px;
}

.pages_button li a {
    font-size: 0.8em;
}

.pages_button ul li .text {
    border-radius: 15%;
    border: 1px #ff9500 solid;
    color: #ff9500;
    padding: 10px;
}

.pages_button ul li .n {
    border-radius: 15%;
    border: 1px #e78802 solid;
    background-color: #e78802;
    color: #ffffff;
    padding: 10px;
}

.pages_button ul li .at {
    border-radius: 15%;
    border: 1px #FF9500 solid;
    background-color: #ff9500;
    color: #ffffff;
    padding: 10px;
}

.pages_button ul li a:hover {
    background-color: #ff9500;
    color: #ffffff;
    border: none;
    padding: 12px;
}

/****************分頁****************/
.box_text{
    width: 90%;
    margin: 0 auto;
    line-height:180%;
}
.login_box {
    width: 100%;
    margin: 5% 0 5% auto;
}

.login_box .l_box {
    float: left;
    width: 50%;
    text-align:center;
}
.login_box .l_box img{
    width:500px;
}

.login_box .r_box {
    float: right;
    width: 50%;
}

.login_box .r_box input,
.memberdata_box input{
    width: 80%;
    height: 30px;
    padding-left: 10px;
    border:1px #d4dce2 solid;
}

.login_box .r_box .register_mok_input,
.memberdata_box .register_mok_input{
    width:80%;
    display: flex;
    align-items: center;
    margin-top:8%;
}
.login_box .r_box .register_mok_input a,
.memberdata_box .register_mok_input a{
    margin-left: 10px;
    color:#0732e3;
}

.login_box .r_box .register_mok_input input{
    width:20px;
}

.login_box .r_box span{
    margin-left:10px;
    color:#0732e3;
}

.login_box .r_box  .register711{
    background-color: #daaa34;
    color:#ffffff;
    padding:1% 2% 1% 2%;
    border-color: #daaa34;
}

.login_box .r_box .register_textarea, .memberdata_box .register_textarea {
    width: 85%;
    /* height: 350px; */
    border-color:#d4dce2;
    color:#828282;
}

.login_box .r_box ul li,
.memberdata_box  ul li{
    list-style: none;
    line-height: 180%;
    margin-bottom: 10px;
}

.login_box .r_box ul li option,
.memberdata_box ul li option,
.total_text ul li option {
    border-color: #d4dce2;
    color: #c99a00;
    padding: 5px 12px;
    outline: none;
    margin-bottom: 10px;
}

.login_box .r_box ul li select,
.memberdata_box ul li select,
.car_orderbox01 ul li select, .total_text ul li select {
    border-color: #d4dce2;
    color: #c99a00;
    padding: 5px 12px;
    outline: none;
    margin-bottom: 10px;
}

.login_box .r_box .link {
    margin-top: 8%;
    float: left;
}

.login_box .r_box .register_link,
.memberdata_box .register_link,
.car_orderbox_link{
    margin:5% 0 3% 0;
}

.login_box .r_box .link ul li,
.memberdata_box .link ul li,
.car_orderbox_link ul li{
    margin-right: 3%;
    display: inline-block;
    width: 150px;
    text-align: center;
}

.login_box .r_box .link ul li a,
.memberdata_box .link ul li a,
.car_orderbox_link  .link02 a,
.car_orderbox_link  .link03 a{
    color: #ffffff;
}


.login_box .r_box .link .link01,
.login_box .r_box .register_link .link01,
.memberdata_box .register_link .link01{
    background-color: #FF9500;
}

.login_box .r_box .link .link02,
.login_box .r_box .register_link .link02,
.memberdata_box .link02{
    background-color: #aa000d;
}

.login_box .r_box .link .link03,
.login_box .r_box .register_link .link03{
    background-color: #5e5e5e;
}

.login_box .r_box .link .link04,
.login_box .r_box .register_link .link04{
    background-color: #0732e3;
}

.login_box .r_box .link .link05,
.login_box .r_box .register_link .link05,
.memberdata_box  .link05{
    background-color: #268e33;
}

.login_box .r_box .register_link ul li,
.memberdata_box ul li{
    display:inline-block;
}

.login_box .r_box .register_link ul li a,
.memberdata_box .register_link ul li a, .product_box ul li a {
    color: #ffffff;
}
.register_link ul li{
    margin-right: 3%;
    display: inline-block;
    width: 40%;
    text-align: center;
}

/*我的購物車/訂單資訊*/

.memberdata_box input {
    width: 80%;
    height: 30px;
    padding-left: 10px;
    border: 1px #d4dce2 solid;
}

.car_orderbox01 {
    width: 100%;
}

.car_orderbox01 .total_text {
    width: 100%;
}

.car_orderbox01 .total_text ul {

}


.car_orderbox01 .total_text ul li {
    float: left;
    display: inline;
}

.car_orderbox01 .thead li {
    text-align: center;
    font-weight: bold;
    background: #dedede;
}

.car_orderbox01 ol:nth-child(even) {
    background: #f8fff1;
}

.car_orderbox01 ul {
    width: 95%;
    display: block;
    margin: 1em auto;
    border-collapse: collapse;
}

.car_orderbox01 .thead {
    display: table-header-group;
}

.car_orderbox01 .tr {
    display: table-row;
}

.car_orderbox01 .tr .w-200 {
    width: 5%;
}

.car_orderbox01 .tr .w-100 {
    width: 10%;
}

.car_orderbox01 .tr .w-200 {
    width: 20%;
}

.car_orderbox01 .tbody {
    display: table-row-group;
}

.car_orderbox01 .thead li,
.car_orderbox01 .tbody li,
.car_orderbox01 .tr li {
    color: #737373;
    display: table-cell;
    padding: 5px;
    border: 1px solid #e5e5e5;
    text-align: center;
    vertical-align: middle;
}

.car_orderbox01 .thead li a,
.car_orderbox01 .tbody li a,
.car_orderbox01 .tr li a {
    text-decoration: underline;
    color: #737373;
}

.total_text {
    width: 100%;
    float: right;

}

.total_text ul li {
    display: inline-block;
    line-height: 180%;
}

.total_text ul .td_l {
    width: 80%;
    text-align: right;
}

.total_text ul .td_r {
    margin-left: 2%;
}

.total_text ul .td_r span {
    color: #ff4a27;
}

.car_orderbox_link .link03{
    background-color: #5e5e5e;
    color: #ffffff;
    padding: 5px 15px 5px 15px;
}


.car_orderbox_link .link02{
    background-color: #aa000d;
    color: #ffffff;
    padding: 5px 15px 5px 15px;
}



/*會員資料頁*/
.memberdata_box{
    width: 80%;
    margin: 0 auto;
}
.memberdata_box p,
.memberdata_box ul {
    margin-bottom:2%
}

.memberdata_box ul li{
    list-style-type:none;
    display: inline-block;
}
.memberdata_box ul li span{
    color: #0732e3;
}
.memberdata_box p a{
    color: #ffffff;
    padding: 5px 15px 5px 15px;
}
.memberdata_box ul li a{
    color:#daaa34;
}

.memberdata_box  .register711 {
    background-color: #daaa34;
    color: #ffffff;
    padding: 5px 15px 5px 15px;
    border-color: #daaa34;
}


.memberdata_box .link03 {
    background-color: #5e5e5e;
    color: #ffffff;
    padding: 5px 15px 5px 15px;
}

.memberdata_box .link04 {
    background-color: #0732e3;
    color: #ffffff;
    padding: 5px 15px 5px 15px;
}

.memberdata_box  input{
    width:500px;
}

.memberdata_box  .input300{
    width:300px;
}

/*商品單一頁*/
.product_box{

}
.product_box .title{
    font-size: 2rem;
}
.product_box hr{
    background-color: #daaa34;
    height: 1px;
    border: none;
    margin:2% 0 2% 0;
}
.product_box .price{
    color: #aa000d;
    font-size: 1.5rem;
    text-align: right;
}

.product_box ul li{
    display: inline-block;
}

.product_box .link02,.product_box .link03,.product_box .link04{
    width: 28%;
    color: #ffffff;
    padding: 5px 15px 5px 15px;
    text-align: center;
}
.product_box .link02 {
    background-color: #aa000d;
}

.product_box .link03 {
    background-color: #5e5e5e;
}

.product_box .link04 {
    background-color: #0732e3;
}

.product_box ul li select{
    width: 300px;
}

.link01>a, .link02>a, .link03>a, .link04>a, .link05>a{
    padding: 5px;
    display: block;
    width: 100%;
}

/*商品輪播圖*/
.product_box .banner {
    width: 500px;
    height: 450px;
}
.product_box .banner .swiper-slide {
    background: no-repeat center;
    background-size: contain;
    /*background-size: cover;*/
}
.product_box .banner .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
}
.product_box .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 25px)) !important;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 25px)) !important;
}
.product_box .swiper-pagination-bullet-active {
    background: #ffc54a !important;
}


.index_footer {
    background: var(--bg1);
    padding: 20px 0;
}

.index_footer section {
    max-width: 1163px;
}

.index_footer .nav {
    margin-top: 15px;
    float: left;
}

.index_footer .nav a {
    margin-right: 39px;
    display: inline-block;
    margin-bottom: 10px;
}

.index_footer .info {
    float: right;
    text-align: center;
}

.hideit {
    display: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.clearUp:after {
    content: '';
    display: block;
    clear: both;
}

@media screen and (max-width: 936px) {

    .tabs_box ul.list li {
        width: 50%;
        display: block;
        margin-bottom: 1rem;
    }

    .tabs_box ul.list li .img {
        display: inline-block;
        max-width: 240px;
        padding-bottom: 27%;
        float: left;
        margin-right: 1rem;
    }

    .tabs_box ul.list li .price, .tabs_box ul.row2 li .price, .tabs_box ul.row3 li .price {
        width: 100%;
        float: none;
        text-align: left;
    }

    .tabs_box ul.list li .price small, .tabs_box ul.row2 li .price small, .tabs_box ul.row3 li .price small {
        display: inline-block;
    }

    .tabs_box ul.list li .info {
        width: calc(100% - 290px);
        float: right;
    }

    .tabs_box ul.row2 li {
        width: 50%;
        margin-bottom: 1rem;
    }

    .tabs_box ul.row3 li {
        width: 33.33333%;
        margin-bottom: 1rem;
    }


    header {
        /*padding-top: 10px;*/
    }

    header .tools {
        display: none;
    }

    nav {
        display: none;
    }

    nav .mobile {
        display: block;
        text-align: center;
    }

    nav .mobile .search_box {
        margin: 10px auto;
        width: 90%;
    }

    nav .sub:before {
        display: none;
    }

    nav > ul li {
        display: block;
    }

    nav > ul > li:hover > .sub {
        display: none;
    }

    nav > ul > li > a {
        font-size: 1.2rem;
    }

    nav > ul > li a.open:after, body.menuopen nav > ul > li:nth-child(1) a.open::after {
        content: 'X';
        font-size:1rem;
    }

    .sub a.class_txt {
        width: 85%;
    }
    .sub a.sec.icon {
        right: 15px;
    }

    nav > ul > li > .sub {
        border: none;
        display: none;
        width: 100%;
        position: static;
        padding: 0;
        height: auto;
        overflow-x: hidden;
    }

    nav > ul > li > .sub:after {
        display: none;
    }

    nav > ul > li > .sub > ul {
        grid-template-columns: calc(100% - 10px); /* 單欄排列 */
        margin: 10px;
        /* width: calc(100% - 10px); */
    }

    nav > ul > li > .sub > ul > li {
        float: none;
        width: 100%;
    }

    nav > ul > li > .sub > ul > li > ul {
        display: none;
    }

    nav > ul > li > .sub > ul > li > a.open ~ ul {
        display: block;
    }

    body.menuopen nav > ul > li > a.open ~ .sub, a.sec.open ~ .sub {
        display: block;
    }

    body.menuopen {
        overflow: hidden;
    }

    body.menuopen .animated-arrow span {
        background: transparent;
    }

    body.menuopen #navation {
        right: auto;
        left: 300px;
        top: 1px;
    }

    body.menuopen #nav ul li:hover .sub {
        display: block;
        position: static;
        right: auto;
        bottom: auto;
        background: transparent;
        border-bottom: none;
        padding: 0px;
        width: calc(100% - 1rem);
    }

    body.menuopen #nav ul li .sub a {
        text-align: right;
        border: none;
    }

    body.menuopen header:after {
        content: '';
        position: fixed;
        z-index: 902;
        right: 0;
        top: 0;
        width: 0;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        display: block;
    }

    body.menuopen #nav {
        width: 300px;
    }

    body.menuopen header:after {
        width: 100%;
        transition: all 0.25s ease-in-out;
    }

    #navation {
        display: inline-block;
    }

    body.menuopen nav {
        width: 350px;
        background: #fff;
        position: fixed;
        z-index: 911;
        left: 0;
        top: 0;
        height: 100vh;
        display: inline-block;
    }

    body.menuopen nav > ul {
        height: calc(100vh - 170px);
        margin-top: 1rem;
        overflow-y: auto;
    }

    body.menuopen a.sec.icon {
        display: inline-block;
    }

    /*main {*/
    /*padding-top: 90px;*/
    /*}*/
    /*平板banner尺寸*/
    .banner {
        height: 230px;
    }

    .banner .info {
        margin-left: 20px;
    }

    .c3_box > div {
        width: calc(50% - 57px);
    }

    .products .info * {
        font-size: 1.2rem;
    }

    .area4 .dpnone {
        display:none;
    }

    .area4 a:nth-child(1), .area4 a:nth-child(2), .area4 a:nth-child(3), .area4 a:nth-child(4) {
        max-width: none;
        margin: 0 0 20px 0;
    }

    .tabs_box ul li {
        width: 33.3333%;
    }

    .tabs_box ul li .info {
        padding: 15px 0;
    }

    .tabs_box ul li .info * {
        font-size: 1.2rem;
    }

    .tabs_box ul.list li {
        width: 100%;
    }

    .tabs_box ul.list li .img {
        max-width: 150px;
        padding-bottom: 40%;
    }

    .tabs_box ul.list li .info {
        width: calc(100% - 180px);
    }

    .index_footer .info {
        float: none;
        padding-top: 1rem;
    }
    /*會員登入頁*/
    .login_box .l_box{
        width: 100%;
    }
    .login_box .r_box {
        width: 80%;
    }
    .login_box .r_box input{
        width:75%;
        height:40px;
    }
    .login_box .r_box  .register_textarea {
        width: 75%;
    }
    .login_box .r_box .link ul li{
        width:450px;
        padding:3%;
    }
    .memberdata_box ul li, .memberdata_box p{
        font-size: 1.2rem;
    }
    .memberdata_box  input{
        width:400px;
    }
    .product_box .price{
        text-align: left;
    }
    .product_box .r_box{
        width: 90%;
        margin-top:5%;
    }

    /*我的購物車/訂單資訊*/
    .car_orderbox01 .thead {
        display: none;
    }

    .car_orderbox01 .tr {
        display: block;
        border: #ddd 1px solid;
        margin-bottom: 5px;
    }

    .car_orderbox01 .tr .w-200,.car_orderbox01 .tr .w-250 {
        width: 100%;
    }

    .car_orderbox01 .thead li,
    .car_orderbox01 .tbody li,
    .car_orderbox01 .tr li {
        display: inline-block;
        border: none;
        text-align: left;
    }

    .car_orderbox01 .tr li {
        /*display: inline-block;*/
        width: 700px;
        border: none;
        display: flex;
        align-items: center;
    }

    .car_orderbox01 .tr li:before {
        content: attr(data-title);
        display: inline-block;
        width: auto;
        min-width: 20%;
        font-weight: 900;
        padding-right: 1rem;
        text-align: right;
        margin-right: 5%;
        /*background-color:#7e7e7e;*/
        color: #7e7e7e;
    }

    .car_orderbox01 .tr li img {
        width: 60%;
    }

    .total_text ul .td_l {
        width: 28%;
    }
    .car_orderbox_link .link02, .car_orderbox_link .link03 {
        width: 90%;
    }

}

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

    /*手機banner尺寸*/
    .banner {
        height: 135px;
    }

    .index_footer .nav {
        text-align: center;
        width: 100%;
    }

    .index_footer .nav a {
        float: none;
        margin: 0 10px 1rem 10px;
    }

    .c3_box > div {
        width: calc(100% - 50px);
    }

    /*分類下拉選單*/
    .class_select {
        margin-bottom: 10%;
    }

    .class_select select, .class_select button {
        width: 90%;
        margin: 0 auto 3% 0;
        padding: 2%;
    }

    .class_select button {
        margin: 0 auto;
        display: block;
    }

    .tabs_box ul li {
        width: 50%;
    }

    .tabs_box .tools {
        display: inline-block;
    }

    /* nav > ul > li > .sub > ul > li:nth-child(2) {
        margin: 0 0 20px 0;
    } */

    .tabs_box .info .btns {
        display: inline-block;
    }


    .tabs_box ul li .btns a span {
        /*display: none;*/
    }

    .tabs_box .info .btns a:nth-child(1) {
        transform: translateY(0px);
    }

    .tabs_box ul.row3 li .btns a {
        padding: 3px;
    }

    .tabs_box ul.row3 li .btns a img {
        width: 20px;
    }

    .tabs_box ul.cube li {
        width: 100%;
        margin-bottom: 2rem;
    }

    .tabs_box ul.cube li .price {
        width: 100%;
        text-align: left;
    }

    .tabs_box ul.cube li .price small {
        display: inline-block;
    }

    .login_box {
        /*width: 85%;*/
        /*margin: 0 auto;*/
    }

    .login_box .r_box {
        /*width: 100%;*/
        width: 90%;
        margin-right:5%;
    }
    .login_box .r_box input{
        width:80%;
    }
    .login_box .r_box  .register_textarea {
        width: 80%;
    }
    .login_box .r_box .link ul li{
        width:100%;
        padding:3%;
    }
    .register_link ul li{
        width: 100%;
        padding:2%;
    }
    .memberdata_box{
        width:90%
    }
    .memberdata_box  input,
    .memberdata_box select{
        width:300px;
    }
    .product_box .link02,.product_box .link03,.product_box .link04 {
        width: 90%;
    }
    /*商品輪播圖*/
    .product_box .banner {
        width: 350px;
        height: 350px;
    }

    .car_orderbox01 .tr li {
        width: 350px;
    }
    a.sec:after {
        transform: translate(-10px, -2px);
    }

}