@charset "utf-8";
/* CSS Document */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 防止整頁被橫向捲動 */
  font-family: Arial, sans-serif;
}

    .carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 70vh;
	    margin-top: 40px;
    }
    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }
    .slide {
      width: 100%;
      flex-shrink: 0;
      height: 100%;
      background-size: cover;
      background-position: center;
    }
    
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .carousel button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
    }
    .prev { left: 10px; }
    .next { right: 10px; }


    .menu{display: flex; justify-content: center; gap: 20px; margin: 10px 0;}
    .choose{float: left; height: auto; margin: 10px; padding: 15px 20px; font-weight:500; font-size: 1.4rem;list-style-type:none;color: #ffffff;border-radius:30px;cursor: pointer;}
    .choose:hover{transform: scale(1.1); opacity: 0.9;}

    .pink{background-color: rgba(255, 0, 149, 0.978);}
    .orange{background-color: rgb(255, 42, 42);}
    .green{background-color: rgb(0, 186, 22);}
    .blue{background-color: rgb(255, 111, 0);}

    .star , .list{width: 84%; max-width: 980px;}

    .section-title {
      text-align: center;
      font-size: 24px;
	  font-weight: bold;
      margin: 10px 0 20px;
    }
	  .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 10px;
      padding: 0 20px 40px;
    }
    .card {
      border: 1px solid #ccc;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .card a{
      text-decoration: none;
      color: #3d3d3d;
    }

    .card a:hover{
      box-sizing: border-box;
      color: #3d3d3d;
      border: 3px solid orangered;
    }

    .card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }
    .card-content {
      padding: 10px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
	    line-height: 20px;
    }

    .card-content h3{
      font-weight: bold;
      font-size: 20px;
      text-align: center;
    }

    .highlight{
      background-color: #cc0000;
      color: #ffffff;
      font-size: 18px;
      font-weight: 500;
      line-height: 28px;
      width: 100%;
      text-align: center;
    }

      .highlight-s{
      background-color: #cc0000;
      color: #ffffff;
      font-size: 16px;
      font-weight: 500;
      line-height: 28px;
      width: 100%;
      text-align: center;
    }

    .card-content .cons{
      padding-top: 5px;
      font-size: 16px;
      line-height: 22px;
    }

    .price {
      color: red;
      font-weight: 600;
      margin: 5px 0;
      font-size: 22px;
      text-align: center;
      line-height: 28px;
      letter-spacing: -1px;
    }

    .image-container {
      position: relative;
      display: inline-block;
      width: 100%; /* 可依需求調整寬度 */
      max-width: 600px;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
    }

    .text-overlay {
      position: absolute;
      bottom: 5px;  /* 調整文字位置 */
      left: 5px;
      background-color: rgba(0, 0, 0, 0.6); /* 黑色透明色塊 */
      color: white;
      padding: 3px 10px;
      font-size: 1.2rem;
      border-radius: 5px;
    }

	.smtx{font-size: 14px; font-weight:500;color: black;}
  .order-btn {background-color: orangered; color: #ffffff; border-radius: 30px; font-size: 16px; font-weight:700; border: none; padding: 6px; width: 10rem; text-align: center;cursor: pointer;}
	.order-btn-list{background-color: orangered; color: #ffffff; border-radius: 10px; font-size: 12px; font-weight:400; border: none;text-align: center; cursor: pointer;}
  .order-btn:hover ,.order-btn-list:hover{background-color: #ae0000;}

  .flight{display: flex; width: 100%;  border-top:1px solid #c2c2c2; padding-top: 8px;}
  .flight a{flex-grow: 1;width: 23%; border:1px solid #3d3d3d;text-align: center;line-height: 16px;margin: 2px; padding: 2px;text-decoration:none;}
  .flight a:hover{background-color: rgb(255, 248, 227); border:1px solid #ff6600;}
  .price_s{display: block; color: #cc0000; padding: 2px;}

  .godate{display: flex; width: 100%;  border-top:1px solid #c2c2c2; padding: 8px;}
  .godate a{flex-grow: 1; width: 30%; border:1px solid #2499ff; border-radius:5px; text-align: center;line-height: 1.1rem;margin: 3px; padding:8px;text-decoration:none; font-size: 0.9rem; }
  .godate a:hover{box-sizing: border-box; border:2px solid #f99109;}
  .day{text-align: left;font-weight: 800;font-size: 12px;}

  .pro_more{font-size: 0.9rem; font-weight: 500; margin-left: 20px; padding: 5px; color: #2499ff; border: 1px solid #2499ff;}

  .list-content th{font-size: 16px; color: #ffffff; font-weight: 500;padding-left: 15px;}
	.list-content td{font-size: 15px;}
	.list-content tr{border-bottom:1px dashed #009FCC;}

  .adb{width: 82%;}
  .adb img{width: 100%;}

.footer {clear: both;}

/* 回頁首 */
a#jump {display: none \9;}
a#jump div {width: 50px; height: 50px; background-color: #cc0000; color: #ffffff; font-size: 16px; line-height: 16px; font-weight: bold; font-family: Arial, Helvetica, sans-serif; text-align: center; text-decoration: none; opacity: 0.7; filter: alpha(opacity=70); cursor: pointer; position: fixed; right: 15px; bottom: 15px; border-radius: 50%; z-index: 6; _display: none; transition: background-color 0.2s linear, opacity 0.2s linear, filter 0.2s linear, transform 0.1s linear;}
a#jump:hover div {background-color: #ff00ff; opacity: 1; filter: alpha(opacity=100); transform: scale(1.25,1.25); box-shadow: 0 2px 6px rgba(0,0,0,0.7);}
a#jump b {display: block; font-size: 24px; line-height: 24px; font-family: Verdana, Geneva, sans-serif; position: relative; top: 5px;}


@media screen and (max-width: 980px) {
	  .carousel {width: 100%; height: auto;}
		.star , .list{width: 94%;}
}
	
@media screen and (max-width: 768px) {

  .menu{gap: 10px; margin: 5px 0;}
	.choose{margin: 10px; padding: 10px 8px; font-weight:500; font-size: 1rem;}
	.choose:hover{transform: scale(1.1); opacity: 0.9;}
  
  .adb{width: 98%;}

	.star , .list{width: 98%;}
	.list-content th{font-size: 14px; color: #ffffff; font-weight: 500; padding-left: 10px;}
	.list-content td{font-size: 13px;}
	.order-btn-list{border-radius: 5px; White-space: nowrap; padding: 3px; cursor: pointer;}
}


@media screen and (max-width: 520px) {

  .carousel {
    width: 100%;
    height: auto;
  }
	.menu{margin: 5px 10px;}
	.choose{margin:5px; padding: 5px 8px; font-weight:400; font-size: 0.8rem;}

  .star , .list{width: 100%;}
	.products-wrapper {overflow-x: auto; padding: 0 20px 40px;}
  .products {display: flex; min-width: unset; overflow-x: auto; flex-wrap: nowrap; gap: 10px;}
  .card {width: 250px;flex-shrink: 0;}

  .godate a{font-size: 0.8rem; }

  .highlight-s{font-size: 14px;}

  #pro_more{display: none;}

  
}

@media screen and (max-width: 424px) {

	.menu{margin: 5px 5px;}
	.choose{margin:5px; padding: 5px 5px; font-weight:400; font-size: 0.7rem;}

}