@charset "UTF-8";
* {
  font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
  position: relative;
  vertical-align: top;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  background-color: #f0f0f0;
}

h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

h2 {
  font-size: 42px;
  font-weight: bolder;
}

h3 {
  font-size: 30px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

h5 {
  font-size: 16px;
  font-weight: 600;
}

p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-top: 24px;
}

a {
  text-decoration: none;
  color: #2c2c2c;
}

.btn {
  width: 160px;
  height: 44px;
  font-size: 14px;
  font-weight: 500;
  color: #fafafa;
  border: 2px solid transparent;
  background-color: #a02fec;
  border-radius: 4px;
  letter-spacing: 0px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn:hover {
  font-weight: 600;
  color: #e0bbf9;
  background: none;
  background-color: transparent;
  border-color: #a02fec;
}

.point {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: #fafafa;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.point:hover {
  background-color: #fafafa;
  transform: scale(1);
}
.point:hover::before {
  opacity: 1;
  visibility: visible;
}
.point:hover::after {
  animation: pointscale-02 2s ease-out infinite;
}
.point::before {
  content: "商品";
  position: absolute;
  visibility: hidden;
  opacity: 0;
  white-space: nowrap;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  top: -32px;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  background-color: rgba(250, 250, 250, 0.7);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  color: #2c2c2c;
}
.point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pointscale-01 4s ease-out infinite;
}
@keyframes pointscale-01 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes pointscale-02 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.swiper-btn {
  width: 40px !important;
  height: 60px !important;
  opacity: 0 !important;
  border-radius: 5px;
  background-color: transparent;
  color: #a02fec !important;
  transition: all 0.3s ease-in-out;
}
.swiper-btn:hover {
  color: #8713d5 !important;
  background-color: #fafafa;
  transform: scale(1.2);
  box-shadow: 0px 0px 6px 1px rgba(22, 22, 22, 0.4);
}

input[type=checkbox] {
  accent-color: #a02fec;
  /* 你想要的顏色（藍色示範） */
}

input {
  caret-color: #a02fec;
  outline: none;
  border-width: 1px;
}
input::-moz-placeholder {
  color: #2c2c2c;
  opacity: 0.7;
}
input::placeholder {
  color: #2c2c2c;
  opacity: 0.7;
}

.strike {
  text-decoration: line-through;
  color: #999;
  opacity: 0.8;
  font-size: 14px;
}

.redcharacter {
  color: #e71818;
  font-weight: bolder;
}

.content-area {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 32px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 670px) {
  .content-area {
    padding: 0px 16px;
  }
}

.margin-topbottom {
  padding: 48px 0px;
}

.card {
  width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 6px;
  cursor: pointer;
}
.card::after {
  content: "";
  position: absolute;
  border-radius: 6px;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-out;
}
.card:hover::after {
  height: 100%;
  box-shadow: 0px 0px 6px 1px rgba(22, 22, 22, 0.4);
}
.card > * {
  position: relative;
  z-index: 2;
}
.card .item-pic {
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
}
.card .item-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card .item-text {
  padding: 16px 8px 32px;
  text-align: center;
  width: 100%;
}
.card .item-text h5 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /* 文字溢出顯示省略號 */
  width: 100%;
}

ul {
  padding-left: 0px;
}

li {
  list-style: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.header-colors {
  color: #2c2c2c !important;
}
.header-colors .logo a {
  color: #a02fec !important;
}

.header-bgcolors {
  box-shadow: 0px 0px 6px 1px rgba(22, 22, 22, 0.4);
  background-color: rgba(250, 250, 250, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.header-toggle {
  height: 100vh !important;
}

header.header-detailed {
  background-color: rgba(250, 250, 250, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0px 0px 6px 1px rgba(22, 22, 22, 0.4);
  color: #2c2c2c;
}
header.header-detailed .logo a {
  color: #a02fec !important;
}
header.header-detailed .navbar ul li a {
  color: #2c2c2c !important;
}
header.header-detailed .nav-right div svg {
  color: #2c2c2c;
}

#header-inner {
  color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  padding: 0 32px;
  max-width: 1440px;
  /* 限制容器最大寬度 */
  margin: 0 auto;
  z-index: 222;
  letter-spacing: 1px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 670px) {
  #header-inner {
    padding: 0 16px;
  }
}
#header-inner a {
  color: #fafafa;
}
#header-inner .logo,
#header-inner .nav-right {
  max-width: 200px;
  width: 30%;
  height: 70px;
}
#header-inner .logo {
  font-size: 40px;
  text-align: left;
  font-weight: bolder;
  line-height: 70px;
  color: #cb8cf5;
  cursor: pointer;
}
#header-inner .logo a {
  color: #cb8cf5;
}
#header-inner .menu-toggle {
  display: none;
  position: absolute;
  top: 0px;
  left: 32px;
  height: 70px;
  align-items: center;
}
#header-inner .navbar {
  max-width: 350px;
  width: 40%;
  margin: auto auto;
  font-size: 18px;
  font-weight: 500;
}
#header-inner .navbar ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 0.3vw;
}
#header-inner .navbar li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  height: 70px;
  width: 50%;
  background-color: transparent;
  border-bottom: 4px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
#header-inner .navbar li a {
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
#header-inner .navbar li:hover {
  border-color: #a02fec;
}
#header-inner .navbar .li-color {
  border-color: #a02fec;
}
#header-inner .nav-right {
  gap: 0.2vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header-inner .nav-right a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c2c2c;
}
#header-inner .nav-right .btnitem {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 25%;
  font-size: 12px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
}
#header-inner .nav-right .btnitem:hover {
  border-color: #a02fec;
}
#header-inner .nav-right .btnitem a {
  color: #fafafa;
}
#header-inner .nav-right .btnitem:hover svg {
  color: #a02fec;
}
#header-inner .nav-right .btnitem .cart-quantity {
  height: 24px;
  width: 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
  color: #fafafa;
  background-color: #a02fec;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -24px;
  right: 0px;
}
#header-inner .nav-right .cart-show {
  color: #2c2c2c;
  position: absolute;
  top: 70px;
  right: 0px;
  max-height: 0px;
  width: 400px;
  border-radius: 0 0 4px 4px;
  background-color: #fafafa;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  transition: all 0.4s ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0px 2px 2px 0px rgba(22, 22, 22, 0.4);
}
#header-inner .nav-right .cart-show .cart-area {
  padding: 16px;
  overflow-y: auto;
}
#header-inner .nav-right .cart-show .cartproductshow {
  width: 100%;
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px;
  border-bottom: 1px solid #adadad;
}
#header-inner .nav-right .cart-show .cartproductshow img {
  max-width: 60px;
}
#header-inner .nav-right .cart-show .cartproductshow .itemname {
  max-width: 100px;
}
#header-inner .nav-right .cart-show .cartproductshow .itemprice {
  min-width: 90px;
}
#header-inner .nav-right .cart-show .cartproductshow .delete {
  cursor: pointer;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  padding: 4px;
}
#header-inner .nav-right .cart-show .cartproductshow .delete:hover {
  background-color: #a02fec;
  border: 2px solid transparent;
}
#header-inner .nav-right .cart-show .cartproductshow .delete svg {
  transform: scale(1.2) rotate(45deg);
  border-radius: 50%;
}
#header-inner .nav-right .cart-show .cartproductshow .delete:hover svg {
  color: #fafafa;
}
#header-inner .nav-right .cart-show .cartproductshow .delete::after {
  opacity: 0;
  visibility: hidden;
  content: "刪除";
  top: -28px;
  left: -6px;
  font-size: 12px;
  position: absolute;
  display: block;
  text-align: center;
  width: 36px;
  border: 1px solid #2c2c2c;
  border-radius: 4px;
  padding: 2px;
}
#header-inner .nav-right .cart-show .cartproductshow .delete:hover::after {
  opacity: 0.6;
  visibility: visible;
}
#header-inner .nav-right .cart-show:hover {
  max-height: 600px;
}
#header-inner .nav-right .cart-show .bottom-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 16px 16px;
  background-color: #fafafa;
}
#header-inner .nav-right .cart-show .bottom-area a {
  display: block;
  width: auto;
}
#header-inner .nav-right .cart-show .bottom-area h4 {
  font-weight: 900;
  letter-spacing: 0px;
}
#header-inner .nav-right .cart-show .bottom-area .btn {
  height: 30px;
}
#header-inner .nav-right .cart-show .bottom-area .btn:hover {
  color: #690fa6;
}
#header-inner .nav-right .cart-btn:hover + .cart-show {
  max-height: 600px;
}

.header-content {
  background-color: #f0f0f0;
  width: 100%;
  z-index: 111;
  position: fixed;
  top: 70px;
}
.header-content .hcontent-area {
  max-width: 1440px;
  padding: 48px 16px 16px;
  margin: auto auto;
}
.header-content .hcol {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 36px;
  transition: all 0.6s ease;
}
.header-content .hcol .card {
  width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 6px;
  color: #2c2c2c;
  cursor: pointer;
}
.header-content .hcol .card::after {
  content: "";
  position: absolute;
  border-radius: 6px;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #fafafa;
  transition: all 0.3s ease;
}
.header-content .hcol .card:hover::after {
  height: 100%;
  box-shadow: 0px 0px 6px 1px rgba(22, 22, 22, 0.4);
}
.header-content .hcol .card > * {
  position: relative;
  z-index: 2;
}
.header-content .hcol .card .item-pic {
  height: auto;
  width: 100%;
  padding: 8px;
  aspect-ratio: 1/1;
  background: #fafafa;
  border-radius: 6px;
  overflow: hidden;
}
.header-content .hcol .card .item-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.header-content .hcol .card .item-text {
  padding: 8px 8px 16px;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
  color: #2c2c2c;
}
.header-content .hcol .card .item-text h3 {
  font-size: 20px;
}

.dropdown-close {
  position: absolute;
  right: 32px;
  top: 8px;
  z-index: 222;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.dropdown-close svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: rotate(45deg) scale(0.8);
  transition: all 0.1s ease;
}
.dropdown-close svg:hover {
  transform: rotate(45deg) scale(1);
  box-shadow: 0px 0px 6px 1px rgba(22, 22, 22, 0.4);
}
.dropdown-close path {
  stroke: #a02fec;
  stroke-width: 1px;
}

.header-content {
  visibility: hidden;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

.dropdrop-open {
  max-height: 800px;
  opacity: 1;
  visibility: visible;
  box-shadow: 0px 50vh 0px 50vh rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 920px) {
  h2,
  h3,
  h4,
  p {
    line-height: 1.4;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 16px;
  }
  #header-inner {
    height: 74px;
    background-color: #fafafa;
    color: #2c2c2c;
    padding-bottom: 0px;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  #header-inner * {
    transition: all 0.3s ease;
  }
  #header-inner .logo {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    text-align: center;
  }
  #header-inner .logo a {
    color: #a02fec;
  }
  #header-inner .menu-toggle {
    display: flex;
    cursor: pointer;
  }
  #header-inner .navbar {
    opacity: 0;
    visibility: hidden;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 32px 0;
    color: #2c2c2c !important;
    transition: all 0.3s ease;
    order: 3;
  }
  #header-inner .navbar ul {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 8px;
  }
  #header-inner .navbar ul li {
    justify-content: flex-start;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid;
  }
  #header-inner .navbar ul a {
    color: #2c2c2c;
    font-size: 24px;
  }
  #header-inner .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  #header-inner .nav-right .btnitem {
    width: 36px;
  }
  #header-inner .nav-right .btnitem a {
    color: #2c2c2c;
  }
  #header-inner .nav-right .cart-show {
    display: none;
  }
  #header-inner .header-content {
    top: 0;
    position: relative;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: visible;
  }
  #header-inner .header-content .hcontent-area {
    padding: 32px;
  }
  #header-inner .header-content .hcontent-area .dropdown-close {
    top: -50px;
  }
  #header-inner .header-content .hcontent-area .dropdown-close:hover svg {
    box-shadow: none;
  }
  #header-inner .header-content .hcol {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  #header-inner .header-content .hcol .card {
    width: 120px;
  }
  #header-inner .header-content .hcol .card::after {
    height: 100%;
  }
  #header-inner .header-content .hcol .item-text {
    height: auto;
    padding: 8px;
  }
  #header-inner .header-content .hcol .item-text h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 670px) {
  h2,
  h3,
  h4,
  p {
    line-height: 1.4;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 16px;
  }
  #header-inner {
    height: 70px;
  }
  #header-inner .logo {
    font-size: 28px;
    width: 100%;
  }
  #header-inner .menu-toggle {
    transform: scale(0.8);
    left: 16px;
  }
  #header-inner .navbar {
    padding: 16px 0;
  }
  #header-inner .navbar ul a {
    font-size: 20px;
  }
  #header-inner .header-content .hcol .card {
    width: 130px;
  }
  #header-inner .header-content .hcol .item-text h3 {
    font-size: 16px;
  }
}
main {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.row-first .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.row-first .swiper-slide img {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.row-first .swiper-btn {
  margin: 0 32px;
}
.row-first:hover .swiper-btn {
  opacity: 1 !important;
}
.row-first .swiper-pagination {
  position: absolute;
  text-align: left;
  margin-left: 5%;
  bottom: 80px !important;
}
.row-first .swiper-pagination-bullet {
  border-radius: 1px;
  background-color: #fafafa;
  width: 120px;
  height: 6px;
  margin: 0 4px !important;
}
.row-first .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #b55ef0;
  transition: none;
  transform-origin: left;
}
.row-first .swiper-pagination-bullet.progress::after {
  transition: width 6s linear;
  width: 100%;
}
.row-first .swiper-pagination-bullet-active {
  opacity: 1;
}

.first-row .frow-col {
  position: absolute;
  flex-grow: 0.6;
  color: #fafafa;
  padding: 0px 32px;
  bottom: 40%;
  left: 10vw;
}
.first-row .frow-col .first-btn-style {
  margin-top: 32px;
}

.row-second {
  color: #fafafa;
  background-color: #0a0a0a;
}

.secnod-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.secnod-row-01 {
  text-align: center;
  max-width: 580px;
  margin-top: 64px;
}
.secnod-row-01 h3 {
  margin: 0;
}

.secnod-row-02 {
  margin-top: 48px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #adadad;
}
.secnod-row-02 .item {
  width: 100%;
  text-align: center;
  padding: 16px 16px;
  white-space: nowrap;
  font-size: 20px;
  border-bottom: 4px solid #2c2c2c;
  transition: all 0.3s ease;
  cursor: pointer;
}
.secnod-row-02 .item:hover {
  border-color: #e0bbf9;
}
.secnod-row-02 .item-color {
  color: #f5eafd;
  border-color: #cb8cf5;
}

.secnod-row-03 {
  margin: 32px 0px;
  overflow: hidden;
}
.secnod-row-03 .sec-row-area {
  display: flex;
  justify-content: flex-start;
  width: 400%;
  left: 0%;
  transition: all 0.3s ease;
}
.secnod-row-03 .r3-col {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3%;
}
.secnod-row-03 .r3-col div:first-of-type {
  width: 60%;
}
.secnod-row-03 .r3-col div:last-of-type {
  width: 40%;
}
.secnod-row-03 .r3-col h3 {
  font-weight: 500;
}
.secnod-row-03 .r3-col img {
  width: 100%;
}
.secnod-row-03 .r3-col-01 .point-01 {
  left: 32%;
  top: 32%;
}
.secnod-row-03 .r3-col-01 .point-01::before {
  content: "G522 LIGHT";
}
.secnod-row-03 .r3-col-02 .point-01 {
  left: 16%;
  top: 80%;
}
.secnod-row-03 .r3-col-02 .point-01::before {
  content: "G522 LIGHT";
}
.secnod-row-03 .r3-col-02 .point-02 {
  left: 48%;
  top: 64%;
}
.secnod-row-03 .r3-col-02 .point-02::before {
  content: "PRO X TKL RAPID";
}
.secnod-row-03 .r3-col-02 .point-03 {
  left: 80%;
  top: 72%;
}
.secnod-row-03 .r3-col-02 .point-03::before {
  content: "GM08 滑鼠";
}
.secnod-row-03 .r3-col-03 .point-01 {
  left: 44%;
  top: 76%;
}
.secnod-row-03 .r3-col-03 .point-01::before {
  content: "G915 X LIGHTSPEED";
}
.secnod-row-03 .r3-col-03 .point-02 {
  left: 80%;
  top: 16%;
}
.secnod-row-03 .r3-col-03 .point-02::before {
  content: "G522 LIGHT 藍芽耳機";
}
.secnod-row-03 .r3-col-04 .point-01 {
  left: 60%;
  top: 26%;
}
.secnod-row-03 .r3-col-04 .point-01::before {
  content: "Cetra True 藍牙耳機";
}

.row-thirdth {
  width: 100%;
  background-color: #f0f0f0;
}

.thirdth-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.thirdth-row-01 {
  margin-top: 64px;
  text-align: center;
  color: #2c2c2c;
}

.thirdth-row-02 {
  display: flex;
  align-items: center;
  color: #fafafa;
  margin-top: 32px;
  border-radius: 4px;
  background-color: #2c2c2c;
  overflow: hidden;
}
.thirdth-row-02 .r2-col-01 {
  width: 50%;
}
.thirdth-row-02 .r2-col-01 img {
  height: 400px;
  width: 200%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.thirdth-row-02 .r2-col-02 {
  width: 50%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thirdth-row-02 p {
  margin: 0;
}
.thirdth-row-02 h3,
.thirdth-row-02 h4,
.thirdth-row-02 a {
  cursor: pointer;
  transition: all 0.3s ease;
}
.thirdth-row-02 h3:hover,
.thirdth-row-02 h4:hover,
.thirdth-row-02 a:hover {
  text-decoration: underline;
}

.thirdth-row-03 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  color: #2c2c2c;
}
.thirdth-row-03 .r3-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thirdth-row-03 .r3-col h3,
.thirdth-row-03 .r3-col h4,
.thirdth-row-03 .r3-col a,
.thirdth-row-03 .r3-col img {
  cursor: pointer;
  transition: all 0.3s ease;
}
.thirdth-row-03 .r3-col h3:hover,
.thirdth-row-03 .r3-col h4:hover,
.thirdth-row-03 .r3-col a:hover,
.thirdth-row-03 .r3-col img:hover {
  text-decoration: underline;
}
.thirdth-row-03 .r3-col h3 {
  font-size: 24px;
}
.thirdth-row-03 .r3-col h4 {
  color: #a02fec;
  font-weight: 600;
  font-size: 18px;
}
.thirdth-row-03 .r3-col a {
  color: #a02fec;
  font-weight: 600;
  font-size: 20px;
}
.thirdth-row-03 .r3-col p {
  margin-top: 8px;
  font-weight: 500;
}
.thirdth-row-03 .r3-col img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thirdth-row-03 .r3-col .r3-col-pic {
  overflow: hidden;
  border-radius: 4px;
}
.thirdth-row-03 .r3-col .r3-col-pic:hover img {
  transform: scale(1.1);
}

.row-fourth {
  background-color: #fafafa;
  color: #2c2c2c;
}

.fourth-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.fourth-row:hover .swiper-btn {
  opacity: 1 !important;
}
.fourth-row .fourth-row-01 {
  margin-top: 64px;
}
.fourth-row .fourth-row-02 {
  width: 100%;
  margin-top: 72px;
}
.fourth-row .fourth-row-02 .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: auto;
  aspect-ratio: 1/1;
  /* 1:1 比例 */
  border: 2px solid #797979;
  border-radius: 8px;
  transition: color 4s ease 0.1s;
  overflow: hidden;
  cursor: pointer;
}
.fourth-row .fourth-row-02 .swiper-slide a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.fourth-row .fourth-row-02 .swiper-slide h4,
.fourth-row .fourth-row-02 .swiper-slide img {
  transition: all 0.3s ease;
}
.fourth-row .fourth-row-02 .swiper-slide h4 {
  position: absolute;
  bottom: 0px;
  font-weight: 500;
  transform: translateY(40px);
  transition: all 0.1s ease 0.2s;
}
.fourth-row .fourth-row-02 .swiper-slide h4:hover {
  color: #a02fec;
}
.fourth-row .fourth-row-02 .swiper-slide:hover {
  background-color: #fafafa;
  border-color: #a02fec;
  border-style: solid;
}
.fourth-row .fourth-row-02 .swiper-slide:hover img {
  transform: translateY(-24px) scale(1.1);
}
.fourth-row .fourth-row-02 .swiper-slide:hover h4 {
  transform: translateY(-12px);
  color: #690fa6;
}
.fourth-row .fourth-row-02 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
.fourth-row .fourth-row-03 {
  position: relative;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
}
.fourth-row .swiper-pagination-bullet {
  display: block;
  border: none;
  border-radius: 0%;
  background-color: #2c2c2c;
  width: 120px;
  height: 6px;
  margin: 0px !important;
  transition: all 0.4s ease;
}
.fourth-row .swiper-pagination-bullet:hover {
  background-color: #690fa6;
}
.fourth-row .swiper-pagination-bullet-active {
  background-color: #a02fec;
}

.fiveth-row {
  background: radial-gradient(#2c2c2c, #0a0a0a);
}
.fiveth-row .fiveth-row-01,
.fiveth-row .fiveth-row-02 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.fiveth-row .fiveth-row-02 {
  flex-direction: row-reverse;
}
.fiveth-row .r5-col-01,
.fiveth-row .r5-col-02 {
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
}
.fiveth-row .r5-pic-01,
.fiveth-row .r5-pic-02 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.fiveth-row .r5-pic-01 {
  background-image: url(../images/pictrue/row-5-pic-01.jpg);
}
.fiveth-row .r5-pic-02 {
  background-image: url(../images/pictrue/row-5-pic-02.webp);
}
.fiveth-row .r5-col-02 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  width: 50%;
  padding: 32px;
  color: #fafafa;
}
.fiveth-row .r5-col-02 .btn {
  margin-top: 32px;
}
.fiveth-row .text-area-01 {
  padding-left: 60px;
}
@media (max-width: 1250px) {
  .fiveth-row .text-area-01 {
    padding-left: 24px;
  }
}
@media (max-width: 670px) {
  .fiveth-row .text-area-01 {
    padding-left: 0px;
  }
}
.fiveth-row .text-area-02 {
  padding-right: 60px;
}
@media (max-width: 1250px) {
  .fiveth-row .text-area-02 {
    padding-right: 24px;
  }
}
@media (max-width: 670px) {
  .fiveth-row .text-area-02 {
    padding-right: 0px;
  }
}

.row-seventh {
  background-image: url(../images/bg/index-seventh-bg-01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  max-height: 400px;
  padding-top: 28%;
  transition: transform 0.5s ease;
  /* 重點：加過渡效果 */
}

.seventh-row {
  width: 100%;
}

@media screen and (max-width: 920px) {
  .margin-topbottom {
    padding: 32px 0;
  }
  .row-first .first-row .frow-col {
    color: #fafafa;
    padding: 0px 32px;
    bottom: 60%;
    left: 10%;
  }
  .row-first .first-row .frow-col .first-btn-style {
    margin-top: 32px;
  }
  .row-first .swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .row-first .swiper-pagination-bullet {
    width: 100px;
  }
  .row-second p {
    font-size: 16px;
    font-weight: 400;
  }
  .row-second .secnod-row-03 {
    margin: 12px 0 0;
  }
  .row-second .secnod-row-03 h3 {
    font-size: 24px;
  }
  .row-thirdth .thirdth-row-02 {
    flex-direction: column;
  }
  .row-thirdth .thirdth-row-02 .r2-col-01,
  .row-thirdth .thirdth-row-02 .r2-col-02 {
    width: 100%;
  }
  .row-thirdth .thirdth-row-02 .r2-col-01 img {
    height: 450px;
    -o-object-position: center 20%;
       object-position: center 20%;
  }
  .row-thirdth .thirdth-row-02 .r2-col-02 {
    padding: 24px;
    background-color: #2c2c2c;
  }
  .row-thirdth .thirdth-row-03 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
  }
  .row-thirdth .thirdth-row-03 .r3-col {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .row-thirdth .thirdth-row-03 .r3-col h3 {
    font-size: 24px;
  }
  .row-thirdth .thirdth-row-03 .r3-col h4 {
    font-size: 18px;
  }
  .row-thirdth .thirdth-row-03 .r3-col a {
    font-weight: 600;
    font-size: 20px;
  }
  .row-fiveth .fiveth-row .text-area-01 {
    padding-left: 0px;
  }
  .row-fiveth .fiveth-row .text-area-02 {
    padding-right: 0px;
  }
  .row-seventh {
    min-height: 250px;
    max-height: 400px;
    /* 重點：加過渡效果 */
  }
}
@media screen and (max-width: 670px) {
  .swiper-btn {
    transform: scale(0.8);
  }
  .swiper-btn:hover {
    transform: scale(0.9);
  }
  .row-first .first-row .frow-col {
    width: 260px;
    color: #fafafa;
    padding: 0px 0px;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .row-first .first-row .frow-col .first-btn-style {
    margin-top: 32px;
  }
  .row-first .swiper-btn {
    display: none;
  }
  .row-first .swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 80% 100%;
       object-position: 80% 100%;
  }
  .row-first .swiper-pagination {
    bottom: 20px !important;
  }
  .row-first .swiper-pagination-bullet {
    width: 80px;
  }
  .row-second .secnod-row-02 {
    margin-top: 32px;
    width: 100%;
    flex-wrap: wrap;
  }
  .row-second .secnod-row-02 .item {
    width: 100%;
    padding: 8px 16px;
    border-width: 1px;
  }
  .row-second .secnod-row-03 {
    margin: 16px 0px;
    width: 100vw;
  }
  .row-second .secnod-row-03 .sec-row-area {
    display: flex;
    justify-content: flex-start;
    width: 400%;
    left: 0%;
  }
  .row-second .secnod-row-03 .r3-col {
    flex-direction: column;
  }
  .row-second .secnod-row-03 .r3-col div:first-of-type {
    width: 100%;
  }
  .row-second .secnod-row-03 .r3-col div:last-of-type {
    width: 100%;
    padding: 32px;
  }
  .row-second .secnod-row-03 .r3-col h3 {
    font-weight: 600;
    margin-top: 16px;
  }
  .row-thirdth * {
    border-radius: 0px;
  }
  .row-thirdth .thirdth-row-02 {
    flex-direction: column;
  }
  .row-thirdth .thirdth-row-02 .r2-col-01,
  .row-thirdth .thirdth-row-02 .r2-col-02 {
    width: 100%;
  }
  .row-thirdth .thirdth-row-02 .r2-col-01 {
    width: 100vw;
  }
  .row-thirdth .thirdth-row-02 .r2-col-01 img {
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 20%;
       object-position: center 20%;
  }
  .row-thirdth .thirdth-row-02 .r2-col-02 {
    padding: 16px 32px;
    background-color: #e0e0e0;
    color: #2c2c2c;
  }
  .row-thirdth .thirdth-row-02 .r2-col-02 h4 {
    font-weight: 600;
    font-size: 18px;
    text-align: right;
    color: #a02fec;
  }
  .row-thirdth .thirdth-row-03 {
    width: 100vw;
    margin-top: 16px;
  }
  .row-thirdth .thirdth-row-03 .r3-col {
    width: 100%;
  }
  .row-thirdth .thirdth-row-03 .r3-col h3 {
    font-size: 24px;
    padding: 0 32px;
  }
  .row-thirdth .thirdth-row-03 .r3-col h4 {
    font-size: 18px;
    padding: 0 32px;
  }
  .row-thirdth .thirdth-row-03 .r3-col div:last-of-type {
    padding: 0 32px;
    text-align: right;
  }
  .row-thirdth .thirdth-row-03 .r3-col div:last-of-type a {
    font-weight: 600;
    font-size: 18px;
  }
  .row-thirdth .thirdth-row-03 .r3-col p {
    padding: 0 32px;
  }
  .row-thirdth .thirdth-row-03 .r3-col .r3-col-pic {
    width: 100vw;
    height: 300px;
    border-radius: 0px;
    margin: 32px 0 16px;
  }
  .row-thirdth .thirdth-row-03 .r3-col .r3-col-pic img {
    height: 100%;
  }
  .row-fiveth .fiveth-row .fiveth-row-01,
  .row-fiveth .fiveth-row .fiveth-row-02 {
    flex-direction: column;
  }
  .row-fiveth .fiveth-row .r5-col-01,
  .row-fiveth .fiveth-row .r5-col-02 {
    width: 100%;
  }
  .row-fiveth .fiveth-row .r5-col-02 {
    text-align: right;
    aspect-ratio: auto;
    padding: 16px 32px 32px;
  }
  .row-fiveth .fiveth-row .r5-col-02 h3,
  .row-fiveth .fiveth-row .r5-col-02 p {
    text-align: left;
  }
  .row-fiveth .fiveth-row .r5-col-02 p,
  .row-fiveth .fiveth-row .r5-col-02 .btn {
    margin-top: 16px;
  }
  .row-fiveth .fiveth-row .r5-col-02 .btn {
    width: 100%;
    height: 32px;
  }
  .row-seventh {
    min-height: 150px;
  }
  .seventh-row {
    width: 100%;
  }
}
footer {
  color: #fafafa;
}

.footer-top {
  background: #2c2c2c;
  padding: 24px 0px;
}
.footer-top .toprow-01 {
  max-width: 700px;
  display: flex;
  flex-direction: column;
}
.footer-top .toprow-01 h4 {
  text-align: center;
}
.footer-top .toprow-01 div {
  display: flex;
  width: 100%;
  margin-top: 16px;
}
.footer-top .toprow-01 input {
  width: 100%;
  height: 40px;
  border-radius: 4px 0px 0px 4px;
  border-style: none;
  background-color: #fafafa;
  caret-color: #a02fec;
  padding: 0px 8px;
  outline: none;
  transition: border-color 0.3s ease;
}
.footer-top .toprow-01 input::-moz-placeholder {
  color: #2c2c2c;
  opacity: 0.7;
}
.footer-top .toprow-01 input::placeholder {
  color: #2c2c2c;
  opacity: 0.7;
}
.footer-top .toprow-01 input:hover {
  background-color: #ffffff;
}
.footer-top .toprow-01 input:focus {
  background-color: #ffffff;
}
.footer-top .toprow-01 .btn-go {
  width: 60px;
  height: 40px;
  border-radius: 0px 4px 4px 0px;
  background-color: #a02fec;
  color: #fafafa;
  transition: all 0.3s ease;
}
.footer-top .toprow-01 .btn-go:hover {
  width: 80px;
}
.footer-top .toprow-01 p {
  margin-top: 8px;
}
.footer-top .toprow-01 span {
  color: #cb8cf5;
}

.footer-bottom {
  background: #0a0a0a;
}

.bottom-frow-01 {
  min-height: 300px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.bottom-frow-01 ul,
.bottom-frow-01 li {
  padding: 0;
  margin: 0;
}
.bottom-frow-01 li {
  list-style: none;
  line-height: 24px;
  font-size: 16px;
  margin-top: 12px;
}
.bottom-frow-01 ul li:first-child {
  margin: 24px 0;
  font-size: 20px;
  font-weight: 600;
}
.bottom-frow-01 .fcol-left {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.bottom-frow-01 .fcol-left .left-col {
  width: 32%;
}
.bottom-frow-01 .fcol-right {
  width: 300px;
}
.bottom-frow-01 .fcol-right h4 {
  line-height: 24px;
  margin-top: 24px;
  font-weight: 600;
}

.bottom-frow-02 {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 920px) {
  .bottom-frow-01 {
    flex-wrap: wrap;
    gap: 48px;
  }
  .bottom-frow-01 .fcol-left {
    justify-content: space-between;
  }
  .bottom-frow-01 .fcol-left .left-col {
    width: 120px;
  }
  .bottom-frow-01 .fcol-right {
    text-align: center;
    width: 100%;
  }
  .bottom-frow-02 {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 670px) {
  .bottom-frow-01 {
    margin-bottom: 24px;
    gap: 8px;
  }
  .bottom-frow-01 .fcol-left {
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
  }
  .bottom-frow-01 .fcol-left .left-col {
    width: 100%;
  }
  .bottom-frow-01 .fcol-right {
    text-align: center;
    width: 100%;
  }
  .bottom-frow-01 li {
    font-size: 14px;
    margin-top: 4px;
  }
  .bottom-frow-01 ul li:first-child {
    margin: 32px 0 16px;
    font-size: 20px;
  }
  .bottom-frow-02 p {
    font-size: 12px;
  }
}
.product-cursoul {
  min-height: 320px;
  max-height: 400px;
  transition: all 0.3s ease;
  color: #2c2c2c;
  background-image: url(../images/bg/index-seventh-bg-01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 32%;
}
.product-cursoul .search {
  margin: auto auto;
}

.product-content {
  background-color: #f0f0f0;
  padding: 0px 0 32px;
  color: #2c2c2c;
}
.product-content .openlist {
  background-color: #e0e0e0;
  padding: 16px 0px;
}
.product-content .openlist button {
  font-size: 18px;
  padding: 6px 16px;
  border-radius: 8px;
  margin-left: 16px;
  letter-spacing: 2px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.product-content .openlist button:hover {
  background-color: #fff;
}
.product-content .openlist button:hover svg {
  color: #a02fec;
}
.product-content .openlist button svg {
  transition: transform 0.3s ease;
}
.product-content .openlist button svg.rotate {
  transform: rotateX(180deg);
}
.product-content .product-content-area {
  display: flex;
  gap: 32px;
}
.product-content .product-content-area .col-sidebar {
  flex: 2;
  padding: 16px 8px;
  min-width: 186px;
}
.product-content .product-content-area .togglemini {
  display: none;
}
.product-content .product-content-area .toggletitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-content .product-content-area .toggleminibtn {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 0px 48px;
  font-size: 16px;
  background-color: #f0f0f0;
}
.product-content .product-content-area .toggleminibtn .reset {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}
.product-content .product-content-area .toggleminibtn .reset h4 {
  font-size: 16px;
  color: #2c2c2c;
}
.product-content .product-content-area .toggleminibtn .reset svg {
  transform: rotate(45deg);
}
.product-content .product-content-area .toggleminibtn .reset:hover {
  border-color: #5f5f5f;
  background-color: #fafafa;
}
.product-content .product-content-area .toggleminibtn .reset:hover svg, .product-content .product-content-area .toggleminibtn .reset:hover h4 {
  color: #a02fec;
}
.product-content .product-content-area .toggleminibtn .btn {
  font-size: 16px;
  width: 90%;
}
.product-content .product-content-area .toggleminibtn .btn:hover {
  color: #2c2c2c;
}
.product-content .product-content-area .col-product-list {
  flex: 8;
  padding: 16px;
}
.product-content .product-content-area ul {
  padding: 0px;
  margin: 0px 0px 8px;
}
.product-content .product-content-area ul li {
  padding: 4px 0px;
  margin-bottom: 4px;
  vertical-align: top;
  line-height: 100%;
}
.product-content .product-content-area ul li div {
  padding: 8px 0;
  margin-bottom: 8px;
  cursor: pointer;
}
.product-content .product-content-area ul li div h4 {
  font-weight: 800;
}
.product-content .product-content-area ul li div:hover + ul {
  border-bottom: 1px solid #5f5f5f;
}
.product-content .product-content-area ul li ul {
  border-bottom: 1px dashed #5f5f5f;
}
.product-content .product-content-area ul li ul:hover {
  border-bottom: 1px solid #5f5f5f;
}
.product-content .product-content-area ul li ul li {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.product-content .product-content-area ul li ul li:hover {
  background-color: #fff;
}
.product-content .product-content-area ul li ul li:hover label {
  color: #a02fec;
}
.product-content .product-content-area ul li ul li label,
.product-content .product-content-area ul li ul li input {
  cursor: pointer;
}
.product-content .product-content-area ul li .side-title {
  padding: 0 6px;
  display: flex;
  justify-content: space-between;
}
.product-content .product-content-area ul li .side-title h4,
.product-content .product-content-area ul li .side-title span {
  vertical-align: top;
}
.product-content .product-content-area ul li .side-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0.5px solid transparent;
}
.product-content .product-content-area ul li .side-title:hover span {
  color: #a02fec;
  background-color: #fff;
}
.product-content .product-content-area ul li .side-content {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.product-content .product-content-area ul li .side-content.side-content-open {
  max-height: 400px;
}
.product-content .product-content-area label {
  width: 100%;
}
.product-content .product-content-area .listrow {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, max-content));
  grid-template-rows: auto-fit;
  /* 自動高度 */
  margin: 0 auto;
  gap: 32px 24px;
  justify-items: flex-start;
  justify-content: center;
}
.product-content .product-content-area .card {
  height: 100%;
  min-width: 200px;
  max-width: 300px;
  width: 100%;
  padding-bottom: 0px;
  justify-content: space-between;
  color: #2c2c2c;
}
.product-content .product-content-area .card::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 40%;
  background: #fafafa;
}
.product-content .product-content-area .card:hover::after {
  height: 100%;
  box-shadow: 0px 0px 6px 1px rgba(22, 22, 22, 0.4);
}
.product-content .product-content-area .card .item-pic {
  background: #fafafa;
}
.product-content .product-content-area .card .item-pic a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-content .product-content-area .card .item-pic .pic {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-content .product-content-area .card .item-pic .pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: auto auto;
}
.product-content .product-content-area .card .item-pic .card-title {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 14px;
  font-weight: 900;
  color: #a02fec;
}
.product-content .product-content-area .card .item-text {
  flex: 1;
  word-wrap: break-word;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 8px 8px;
  gap: 4px;
}
.product-content .product-content-area .card .item-text h4,
.product-content .product-content-area .card .item-text h5,
.product-content .product-content-area .card .item-text p {
  margin: 0;
  text-align: left;
}
.product-content .product-content-area .card .item-text h4 {
  font-weight: 900;
}
.product-content .product-content-area .card .item-text h5 {
  font-size: 16px;
  font-weight: 400;
}
.product-content .product-content-area .card .item-text p {
  font-size: 16px;
  padding: 2px;
  font-weight: 600;
}
.product-content .product-content-area .card .item-text .productprice {
  margin-top: 8px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-content .product-content-area .card .item-text .btn {
  height: 36px;
  width: 100%;
  padding: 0;
  transition: all 0.3s ease;
  margin-top: 4px;
}
.product-content .product-content-area .card .item-text .btn:hover {
  color: #690fa6;
}
.product-content .product-content-area .btn-openlist {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.product-content .product-content-area .btn-openlist button {
  color: #2c2c2c;
  font-size: 16px;
  padding: 6px 12px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 100%;
  border: 2px solid #5f5f5f;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 400;
  cursor: pointer;
}
.product-content .product-content-area .btn-openlist button svg {
  transform: rotate(45deg);
}
.product-content .product-content-area .btn-openlist button:hover {
  background-color: #fff;
  border-color: #a02fec;
}
.product-content .product-content-area .btn-openlist button:hover svg {
  color: #a02fec;
}
.product-content .pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.product-content .pagination button {
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.product-content .pagination button:hover:not(.active) {
  color: #a02fec;
  border-color: #5f5f5f;
}
.product-content .pagination button.active {
  background-color: #a02fec;
  color: white;
  font-weight: bold;
}
.product-content .pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media screen and (max-width: 1200px) {
  .product-cursoul {
    min-height: 340px;
    padding-top: 40%;
  }
}
@media screen and (max-width: 920px) {
  .product-cursoul {
    margin-top: 50px;
    min-height: 320px;
    max-height: 400px;
  }
  .content-area.product-content-area {
    flex-direction: column;
  }
  .content-area.product-content-area .col-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 11111;
    background-color: #f0f0f0;
    overflow-x: hidden;
    padding: 32px 48px 240px;
  }
  .content-area.product-content-area .togglemini {
    display: block;
  }
  .content-area.product-content-area .toggleminibtn {
    display: flex;
  }
  .content-area.product-content-area .col-product-list {
    padding: 16px 0px;
  }
  .content-area.product-content-area .col-product-list .listrow .card {
    max-width: 500px;
  }
  .content-area.product-content-area .col-product-list .listrow {
    gap: 32px 16px;
  }
}
@media screen and (max-width: 670px) {
  .product-cursoul {
    margin-top: 60px;
    min-height: 200px;
    max-height: 400px;
    background-position: right 20% top;
  }
  .product-content .openlist {
    padding: 8px 0;
  }
  .product-content .openlist .content-area {
    padding: 0;
  }
}
@media screen and (max-width: 430px) {
  .product-cursoul {
    margin-top: 60px;
    min-height: 200px;
    max-height: 400px;
    background-position: right 20% top;
  }
  .product-content .openlist {
    padding: 4px 0;
  }
  .product-content .openlist .content-area {
    padding: 0;
  }
}
.product-detailed {
  top: 70px;
}
.product-detailed .add-cart-area {
  position: fixed;
  bottom: 0px;
  background-color: rgba(250, 250, 250, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: #2c2c2c;
  width: 100%;
  z-index: 111;
  box-shadow: 0px 0px 6px 1px rgba(22, 22, 22, 0.4);
}
.product-detailed .add-cart-area .content-area {
  max-width: 1440px;
  padding: 0 32px;
}
.product-detailed .add-cart-area .add-content {
  /* 限制容器最大寬度 */
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.product-detailed .add-cart-area .add-content .nav-left {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.product-detailed .add-cart-area .add-content .nav-left .price {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row-reverse;
  gap: 8px;
}
.product-detailed .add-cart-area .add-content .nav-left .strike {
  text-decoration: line-through;
  color: #999;
  opacity: 0.8;
  font-size: 20px;
}
.product-detailed .add-cart-area .add-content .nav-right .btn-cart {
  width: 200px;
  font-size: 20px;
  font-weight: 600;
}
.product-detailed .add-cart-area .add-content .nav-right .btn-cart::after {
  content: "加入購物車";
  color: #eeeeee;
}
.product-detailed .add-cart-area .add-content .nav-right .btn-cart:hover::after {
  color: #690fa6;
}
.product-detailed .detailed {
  width: 100%;
  background-color: #f0f0f0;
}
.product-detailed .detailed-row1 {
  padding-top: 32px;
  padding-bottom: 64px;
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  align-items: center;
  gap: 32px;
  height: calc(100vh - 70px);
}
.product-detailed .detailed-row1 .information {
  height: 100%;
  width: 40%;
  min-width: 300px;
  padding: 32px 0px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  overflow-x: hidden;
  scrollbar-width: none;
  color: #2c2c2c;
}
.product-detailed .detailed-row1 .information h4 {
  font-weight: 900;
}
.product-detailed .detailed-row1 .information p {
  margin: 0;
}
.product-detailed .detailed-row1 .information div {
  width: 100%;
}
.product-detailed .detailed-row1 .information ul {
  margin: 0;
}
.product-detailed .detailed-row1 .information .detail-section {
  background-color: #e0e0e0;
  color: #2c2c2c;
  border-radius: 4px;
  padding: 4px 4px;
  margin: 8px 0;
}
.product-detailed .detailed-row1 .information .detail-section .detailed-title {
  display: flex;
  align-items: center;
  padding: 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-detailed .detailed-row1 .information .detail-section .detailed-title:hover {
  color: #a02fec;
}
.product-detailed .detailed-row1 .information .detail-section .detailed-title svg {
  position: absolute;
  right: 0;
}
.product-detailed .detailed-row1 .information .detail-section .detailed-content {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 8px;
}
.product-detailed .detailed-row1 .information .detail-section .detailed-content .block .block-title {
  font-weight: bolder;
  padding: 4px 4px;
  cursor: default;
}
.product-detailed .detailed-row1 .information .detail-section .detailed-content .block .block-list {
  padding: 0px 4px 8px;
  font-weight: normal;
  margin-top: 1px;
}
.product-detailed .detailed-row1 .information .detail-section .detailed-content .block .block-list li:hover {
  color: #a02fec;
  cursor: default;
}
.product-detailed .detailed-row1 .information .detail-section .detailed-content.content-open {
  max-height: 1400px;
}
.product-detailed .detailed-row1 .product-area {
  width: 70%;
  padding: 32px 16px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.product-detailed .detailed-row1 .product-area .product-main-img {
  padding: 8px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detailed .detailed-row1 .product-area .product-main-img img {
  max-height: 480px;
  max-width: 100%;
  min-width: 300px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detailed .detailed-row1 .product-area .thumbnails {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.product-detailed .detailed-row1 .product-area .thumbnails button {
  max-height: 100px;
  padding: 4px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 2px solid #5f5f5f;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.product-detailed .detailed-row1 .product-area .thumbnails button:focus {
  border-color: #a02fec;
}
.product-detailed .detailed-row1 .product-area .thumbnails img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 120px;
}
.product-detailed .detailed-row2 {
  background-color: #000;
  padding: 32px;
}
.product-detailed .detailed-row2 .detailed-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 90vw;
  height: 80vh;
  margin: 0 auto;
  padding: 32px;
}
.product-detailed .detailed-row2 .detailed-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.product-detailed .detailed-row3 {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-detailed .detailed-row3 .r3-1,
.product-detailed .detailed-row3 .r3-2,
.product-detailed .detailed-row3 .r3-3 {
  padding: 32px;
  width: 80%;
  text-align: center;
}
.product-detailed .detailed-row3 .r3-2 p {
  margin: 0;
  font-size: 20px;
}
.product-detailed .detailed-row3 .r3-3 {
  display: flex;
  justify-content: space-around;
  gap: 24px;
}
.product-detailed .detailed-row3 .r3-3 .r3-col {
  display: flex;
  flex-direction: column;
  width: 200px;
  gap: 16px;
}
.product-detailed .detailed-row3 .r3-3 .r3-col div {
  min-height: 200px;
  display: flex;
  align-items: center;
}
.product-detailed .detailed-row3 .r3-3 .r3-col img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detailed .detailed-row3 .r3-3 .r3-col p {
  margin: 0;
}

@media screen and (max-width: 920px) {
  .product-detailed .add-cart-area .add-content .nav-left h3 {
    font-size: 24px;
  }
  .product-detailed .add-cart-area .add-content .nav-left .price {
    font-size: 20px;
    gap: 4px;
  }
  .product-detailed .add-cart-area .add-content .nav-right .strike {
    font-size: 16px;
  }
  .product-detailed .add-cart-area .add-content .nav-right .btn-cart {
    width: 160px;
    font-size: 16px;
  }
  .product-detailed .detailed-row1 .information {
    min-width: 240px;
  }
  .product-detailed .detailed-row1 .information h3 {
    font-size: 24px;
  }
  .product-detailed .detailed-row1 .product-area {
    padding: 32px 16px 32px;
    gap: 16px;
  }
  .product-detailed .detailed-row1 .product-area .thumbnails button {
    max-height: 80px;
  }
  .product-detailed .detailed-row3 .r3-3 {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 670px) {
  .product-detailed .add-cart-area .add-content {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    gap: 16px;
    padding: 16px 16px 48px;
  }
  .product-detailed .add-cart-area .add-content .nav-left h3 {
    font-size: 20px;
  }
  .product-detailed .add-cart-area .add-content .nav-left .price {
    font-size: 20px;
  }
  .product-detailed .add-cart-area .add-content .nav-left .strike {
    font-size: 16px;
  }
  .product-detailed .add-cart-area .add-content .nav-right {
    width: 100%;
  }
  .product-detailed .add-cart-area .add-content .nav-right .btn-cart {
    width: 100%;
    font-size: 16px;
  }
  .product-detailed .detailed-row1 {
    flex-direction: column-reverse;
    height: 100%;
  }
  .product-detailed .detailed-row1 .information {
    width: 100%;
    padding: 0;
    min-width: 240px;
  }
  .product-detailed .detailed-row1 .information h3 {
    font-size: 24px;
  }
  .product-detailed .detailed-row1 .product-area {
    width: 100%;
    padding: 32px 0px 32px;
  }
  .product-detailed .detailed-row1 .product-area .thumbnails button {
    max-height: 80px;
    max-width: 100px;
  }
}
.product-cart .cart-row1 {
  padding: 64px 0px 64px;
  background-color: #f0f0f0;
}
.product-cart .row1-area {
  display: flex;
  gap: 32px;
  padding-top: 64px;
}
.product-cart .cart-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.product-cart .cart-area #cart-title {
  height: 80px;
  min-height: auto;
}
.product-cart .cart-area #cart-title::after {
  height: 2px;
  background-color: #7a7a7a;
  border-radius: 1px;
}
.product-cart .cart-area #cart-title.cart-item:hover {
  background-color: transparent;
  color: #2c2c2c;
}
.product-cart .cart-area .cart-items {
  color: #2c2c2c;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 540px;
  overflow-y: auto;
  scrollbar-width: none;
}
.product-cart .cart-area .cart-item {
  padding: 16px 8px;
  min-height: 140px;
  display: flex;
  justify-content: space-evenly;
  gap: 4px;
  transition: all 0.2s ease;
}
.product-cart .cart-area .cart-item:hover {
  border-radius: 12px;
  background-color: #fafafa;
  color: #a02fec;
}
.product-cart .cart-area .cart-item:hover .item-quantity {
  border-color: #2c2c2c !important;
}
.product-cart .cart-area .cart-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-color: #949494;
}
.product-cart .cart-area .cart-item .cart-col-01,
.product-cart .cart-area .cart-item .cart-col-02,
.product-cart .cart-area .cart-item .cart-col-03 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-cart .cart-area .cart-item .cart-col-01 {
  width: 36%;
  min-width: 200px;
  justify-content: flex-start;
}
.product-cart .cart-area .cart-item .cart-col-01 h2 {
  white-space: nowrap;
}
.product-cart .cart-area .cart-item .cart-col-02 {
  width: 60%;
  display: flex;
  justify-content: space-evenly;
  gap: 4px;
  padding: 8px 0;
}
.product-cart .cart-area .cart-item .cart-col-02 .c2-01,
.product-cart .cart-area .cart-item .cart-col-02 .c2-02,
.product-cart .cart-area .cart-item .cart-col-02 .c2-03 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 30%;
  max-width: 100px;
  min-width: 100px;
  height: 100%;
  white-space: nowrap;
}
.product-cart .cart-area .cart-item .cart-col-03 {
  width: 4%;
}
.product-cart .cart-area .cart-item .item-image {
  min-width: 200px;
  gap: 12px;
}
.product-cart .cart-area .cart-item .item-image img {
  width: 30%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-cart .cart-area .cart-item .item-image .item-title {
  width: 70%;
  text-align: center;
}
.product-cart .cart-area .cart-item .item-image .item-title h4 {
  font-weight: 600;
}
.product-cart .cart-area .cart-item .item-image .item-title h5 {
  margin-top: 8px;
}
.product-cart .cart-area .cart-item .item-details .item-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.product-cart .cart-area .cart-item .item-details .item-quantity {
  display: flex;
  max-height: 36px;
  border: 1px solid #797979;
  border-radius: 4px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.product-cart .cart-area .cart-item .item-details .item-quantity .quantity-input {
  height: 100%;
  width: 50%;
  text-align: center;
  border-color: #acacac;
  border-style: solid;
  border-width: 0px 1px;
  background-color: transparent;
  outline: none;
  transition: all 0.3s ease;
}
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-increase,
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-decrease {
  height: 100%;
  width: 25%;
  outline: none;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-increase svg,
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-decrease svg {
  color: #0a0a0a;
  height: 100%;
  width: 100%;
  transform: scale(1.4);
}
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-increase:hover,
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-decrease:hover {
  background-color: #a02fec;
}
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-increase:hover svg,
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-decrease:hover svg {
  color: #fafafa;
}
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-increase:disabled,
.product-cart .cart-area .cart-item .item-details .item-quantity .btn-decrease:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-cart .cart-area .cart-item .item-details .item-quantity input[type=number]::-webkit-outer-spin-button,
.product-cart .cart-area .cart-item .item-details .item-quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-cart .cart-area .cart-item .item-details .item-total {
  align-items: center;
}
.product-cart .cart-area .cart-item .btn-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
}
.product-cart .cart-area .cart-item .btn-remove svg {
  color: #2c2c2c;
  transform: scale(1.2) rotate(45deg);
}
.product-cart .cart-area .cart-item .btn-remove:hover {
  background-color: #a02fec;
}
.product-cart .cart-area .cart-item .btn-remove:hover svg {
  color: #fafafa;
}
.product-cart .cart-summary {
  padding: 16px;
  border-radius: 12px;
  background-color: #fff;
  height: 100%;
  min-width: 200px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.product-cart .cart-summary h4 {
  font-weight: 600;
}
.product-cart .cart-summary div {
  width: 100%;
}
.product-cart .cart-summary .Remark {
  text-align: left;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-cart .cart-summary .Remark:hover svg {
  color: #a02fec;
}
.product-cart .cart-summary .Remark svg {
  transition: all 0.3s ease;
  vertical-align: bottom;
}
.product-cart .cart-summary .Remark svg.rotate {
  transform: rotateX(180deg);
}
.product-cart .cart-summary .Remark label {
  cursor: pointer;
}
.product-cart .cart-summary .Remark textarea {
  min-width: 268px;
  height: 100px;
  resize: vertical;
  margin-top: 8px;
}
.product-cart .cart-summary .arrangement {
  outline: none;
  display: flex;
  align-items: center;
}
.product-cart .cart-summary .arrangement h4 {
  width: 40%;
  text-align: left;
}
.product-cart .cart-summary .arrangement span {
  width: 60%;
  text-align: right;
}
.product-cart .cart-summary .arrangement select {
  width: 60%;
}
.product-cart .cart-summary .bill_area h4 {
  font-weight: 500;
}
.product-cart .cart-summary .bill_area p {
  margin: 0;
  text-align: left;
}
.product-cart .cart-summary .bill_area label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 16px;
}
.product-cart .cart-summary .bill_area label input {
  padding: 4px 4px;
  width: 60%;
}
.product-cart .cart-summary .agreeCheckbox label,
.product-cart .cart-summary .agreeCheckbox span {
  vertical-align: top;
}
.product-cart .cart-summary .agreeCheckbox label {
  cursor: pointer;
}
.product-cart .cart-summary .agreeCheckbox label span {
  font-size: 14px;
}
.product-cart .cart-summary .btn-area .btn {
  width: 100%;
}
.product-cart .cart-summary .btn-area .btn:hover {
  color: #690fa6;
}
.product-cart .cart-summary .btn-area .btn-keep {
  margin-top: 8px;
}
.product-cart .cart-summary p {
  font-size: 14px;
  color: #505050;
}

@media screen and (max-width: 920px) {
  .row1-area {
    flex-direction: column;
  }
  .row1-area .cart-area .cart-item .item-details .item-quantity {
    max-height: 40px;
  }
  .row1-area .cart-summary {
    max-width: 920px;
  }
  .row1-area .cart-summary select {
    min-height: 36px;
  }
  .row1-area .cart-summary .bill_area {
    margin-top: 16px;
  }
  .row1-area .cart-summary .bill_area input {
    min-height: 36px;
  }
}
@media screen and (max-width: 670px) {
  .product-cart .cart-row1 {
    padding: 32px 0px;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area #cart-title.cart-item {
    min-height: auto;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area #cart-title.cart-item .cart-col-02 {
    flex-direction: row;
    gap: 2px;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area #cart-title.cart-item .cart-col-02 .c2-01,
  .product-cart .cart-row1 .row1-area.mobile .cart-area #cart-title.cart-item .cart-col-02 .c2-02,
  .product-cart .cart-row1 .row1-area.mobile .cart-area #cart-title.cart-item .cart-col-02 .c2-03 {
    min-width: 20px;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area .cart-items {
    border-radius: 12px;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area .cart-item {
    min-height: 160px;
    max-height: 400px;
    gap: 8px;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area .cart-item .cart-col-01 {
    width: 16%;
    gap: 6px;
    min-width: 180px;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area .cart-item .cart-col-01 .item-title {
    text-align: left;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area .cart-item .cart-col-02 {
    width: 30%;
    flex-direction: column;
    gap: 8px;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area .cart-item .item-details .item-quantity {
    min-height: 40px;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area .cart-item .cart-col-03 {
    width: 10%;
    align-items: flex-start;
  }
  .product-cart .cart-row1 .row1-area.mobile .cart-area .cart-item .cart-col-03 .btn-remove {
    min-height: 36px;
    min-width: 36px;
  }
}
.login {
  background-color: #f0f0f0;
  color: #2c2c2c;
}
.login .content-area {
  max-width: 600px;
}
.login .login-area {
  width: 100%;
  padding: 160px 32px 108px;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.login .login-area div {
  width: 100%;
}
.login .login-area .title {
  text-align: center;
}
.login .login-area .title h4 {
  margin-top: 8px;
  font-size: 16px;
}
.login .login-area .enter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.login .login-area .enter input {
  margin-top: 32px;
  width: 100%;
  padding: 6px;
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #929292;
}
.login .login-area .enter input:focus {
  border-color: #2c2c2c;
}
.login .login-area .enter input::-moz-placeholder {
  color: #464646;
  font-size: 16px;
}
.login .login-area .enter input::placeholder {
  color: #464646;
  font-size: 16px;
}
.login .login-area .enter .forgot {
  text-align: right;
  font-size: 14px;
  font-weight: bolder;
  margin-top: 8px;
  color: #464646;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.login .login-area .enter .btn {
  width: 100%;
}
.login .login-area .enter .btn:hover {
  color: #690fa6;
}
.login .othermethods {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 32px;
  margin-top: 16px;
}
.login .othermethods .or h4 {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  color: #797979;
  background-color: #f0f0f0;
  padding: 0 6px;
  z-index: 2;
}
.login .othermethods .or hr {
  width: 100%;
}
.login .othermethods .logonicon {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 8px;
}
.login .othermethods .logonicon div {
  max-width: 60px;
  padding: 4px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  display: flex;
  justify-content: center;
}
.login .othermethods .logonicon div:hover {
  background-color: #fff;
}
.login .othermethods .logonicon div img {
  cursor: pointer;
  transition: all 0.4s ease;
  filter: grayscale(20%) saturate(90%);
}
.login .othermethods .logonicon div img:hover {
  filter: grayscale(0%) saturate(120%);
}
.login .othermethods .register {
  color: #464646;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.login .othermethods .register a:hover {
  color: #690fa6;
}

@media screen and (max-width: 670px) {
  .login .othermethods .logonicon {
    width: 280px;
  }
}
.addmember {
  background-color: #f0f0f0;
  color: #2c2c2c;
}
.addmember .content-area {
  max-width: 600px;
}
.addmember .login-area {
  width: 100%;
  padding: 120px 32px 108px;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
.addmember .login-area div {
  width: 100%;
}
.addmember .login-area .title {
  text-align: center;
}
.addmember .login-area .title h4 {
  margin-top: 8px;
  font-size: 16px;
}
.addmember .login-area .enter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.addmember .login-area .enter input {
  margin-top: 32px;
  width: 100%;
  padding: 6px;
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #929292;
}
.addmember .login-area .enter input:focus {
  border-color: #2c2c2c;
}
.addmember .login-area .enter input::-moz-placeholder {
  color: #464646;
  font-size: 16px;
}
.addmember .login-area .enter input::placeholder {
  color: #464646;
  font-size: 16px;
}
.addmember .login-area .enter a {
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.addmember .login-area .enter .fontsize {
  font-size: 14px;
}
.addmember .login-area .enter label {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  cursor: pointer;
}
.addmember .login-area .enter label input {
  width: 20px;
  height: auto;
  margin: 0;
  vertical-align: top;
}
.addmember .login-area .enter .btn {
  margin-top: 16px;
  width: 100%;
}
.addmember .login-area .enter .btn:hover {
  color: #690fa6;
}
.addmember .othermethods {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 32px;
  margin-top: 16px;
}
.addmember .othermethods .or h4 {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  color: #797979;
  background-color: #f0f0f0;
  padding: 0 6px;
  z-index: 2;
}
.addmember .othermethods .or hr {
  width: 100%;
}
.addmember .othermethods .logonicon {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 8px;
}
.addmember .othermethods .logonicon div {
  max-width: 60px;
  padding: 4px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  display: flex;
  justify-content: center;
}
.addmember .othermethods .logonicon div:hover {
  background-color: #fff;
}
.addmember .othermethods .logonicon div img {
  cursor: pointer;
  transition: all 0.4s ease;
  filter: grayscale(20%) saturate(90%);
}
.addmember .othermethods .logonicon div img:hover {
  filter: grayscale(0%) saturate(120%);
}
.addmember .othermethods .register {
  color: #464646;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

@media screen and (max-width: 670px) {
  .addmember .othermethods .logonicon {
    width: 280px;
  }
}
.aboutwe {
  background-color: #fafafa;
}
.aboutwe .aboutwe-title {
  margin: 60px 0 8px;
  color: #2c2c2c;
  text-align: center;
}
.aboutwe .about-us {
  padding-top: 32px;
  width: 100%;
  background-color: #fafafa;
  color: #2c2c2c;
  display: flex;
  flex-direction: column;
}
.aboutwe .about-us .about-area {
  width: 100%;
  padding: 32px 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  gap: 16px;
}
.aboutwe .about-us .about-area div {
  width: 100%;
  height: 100%;
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
}
.aboutwe .about-us .row-1 {
  background-color: #fafafa;
  position: fixed;
}
.aboutwe .about-us .row-1 img {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  transition: all 0.3s ease;
}
.aboutwe .about-us .row-2 {
  margin-top: 700px;
  padding-top: 120px;
  padding-bottom: 120px;
  height: 110vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url("../images/pic-about/10002.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fafafa;
}
.aboutwe .about-us .row-2 .full-pic {
  width: 100vw;
}
.aboutwe .about-us .row-3 {
  padding: 60px 0 60px;
  background-color: #f0f0f0;
  font-weight: 600;
}
.aboutwe .about-us .row-4 {
  padding: 60px 0 60px;
  height: 90vh;
  background-color: #2c2c2c;
  color: #fafafa;
  font-weight: 500;
}
.aboutwe .about-us .row-5 {
  padding: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  min-height: 280px;
  background-color: #fafafa;
  overflow: hidden;
}
.aboutwe .about-us .row-5 h2,
.aboutwe .about-us .row-5 h3 {
  position: absolute;
  z-index: 2;
  color: #0a0a0a;
}
.aboutwe .about-us .row-5 h2 {
  top: 60px;
}
.aboutwe .about-us .row-5 h3 {
  top: 160px;
}
.aboutwe .about-us .row-5 .full-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 40% 24%;
     object-position: 40% 24%;
  z-index: 1;
  animation: fadeIn 20s ease-out infinite;
}
@keyframes fadeIn {
  0% {
    -o-object-position: 40% 24%;
       object-position: 40% 24%;
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    -o-object-position: 40% 24%;
       object-position: 40% 24%;
    transform: scale(1);
  }
}
.aboutwe .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.aboutwe .fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 920px) {
  .aboutwe .about-us .row-1 img {
    width: 60%;
  }
}
@media screen and (max-width: 670px) {
  .aboutwe .about-us .row-1 img {
    width: 80%;
  }
}
.activity {
  background-color: #f0f0f0;
}
.activity .row-1 {
  margin: 160px 0 8px;
  color: #2c2c2c;
  text-align: center;
}
.activity .activity-list {
  width: 100%;
  background-color: #f0f0f0;
  padding-top: 32px;
  padding-bottom: 64px;
}
.activity .activity-list .event-list {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
.activity .activity-list .event-list .event-item {
  width: 50%;
  padding: 16px;
}
.activity .activity-list .event-list .event-item div {
  margin: auto;
  text-align: center;
  transition: all 0.4s ease;
  padding: 8px;
  border-radius: 40px;
  overflow: hidden;
  color: #2c2c2c;
  cursor: pointer;
}
.activity .activity-list .event-list .event-item div img {
  width: 100%;
  transition: all 0.2s ease-in;
  border-radius: 20px;
  margin-bottom: 8px;
}
.activity .activity-list .event-list .event-item div .title {
  color: #690fa6;
}
.activity .activity-list .event-list .event-item div h5 {
  margin-top: 8px;
}
.activity .activity-list .event-list .event-item div h5:hover {
  color: #690fa6;
}
.activity .activity-list .event-list .event-item div h4 {
  margin-top: 8px;
  font-weight: 600;
}
.activity .activity-list .event-list .event-item div h4:hover {
  color: #690fa6;
}
.activity .activity-list .event-list .event-item div:hover {
  transform: scale(1.06);
  box-shadow: 0px 2px 6px 2px rgba(22, 22, 22, 0.4);
  border-radius: 4px;
}
.activity .activity-list .event-list .event-item div:hover img {
  border-radius: 0px;
}
.activity .activity-list .event-list .event-item:first-child {
  width: 100%;
  padding: 16px;
}

@media screen and (max-width: 920px) {
  .activity .activity-list .event-list .event-item {
    padding: 16px;
  }
  .activity .activity-list .event-list .event-item div h5 {
    font-weight: 500;
  }
  .activity .activity-list .event-list .event-item div h4 {
    font-size: 16px;
    font-weight: 600;
  }
  .activity .activity-list .event-list .event-item div:hover {
    transform: scale(1.06);
  }
  .activity .activity-list .event-list .event-item:first-child {
    width: 100%;
    padding: 16px;
  }
}
@media screen and (max-width: 670px) {
  .activity .activity-list .event-list {
    gap: 32px;
  }
  .activity .activity-list .event-list .event-item {
    width: 100%;
    padding: 16px 0;
  }
  .activity .activity-list .event-list .event-item div {
    padding: 0 0 8px;
    border-radius: 20px;
  }
  .activity .activity-list .event-list .event-item div h5 {
    font-weight: 500;
  }
  .activity .activity-list .event-list .event-item div h4 {
    font-size: 16px;
    font-weight: 600;
  }
  .activity .activity-list .event-list .event-item div:hover {
    transform: scale(1);
  }
  .activity .activity-list .event-list .event-item:first-child {
    width: 100%;
    padding: 16px 0;
  }
}/*# sourceMappingURL=webindex.css.map */