#ns_Wrapper {
  width: 100%;
}
.container {
  display: flex;
  max-width: 100%;
  height:83.5vh;
}
.left {
  width: 60%;
  text-align: center;
  overflow: scroll;
  height: 87.5vh;
}

.left .prdnum {
  display: flex;
  justify-content: flex-start;
  padding: 10px 0 20px 20px;
}
.left .prdnum p {
  font-weight: 800;
}
.right {
  width: 50%;
}
.map {
  height: 87.5vh;
}
.right .map .defaultImg {
  width: 100%;
  object-fit: cover;
}

/*列表欄位*/
.listBlock {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
.prd_blocks {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 350px;
  margin-top: 15px;
}
.prd_blocks::before {
  position: absolute;
  content: "超讚行程";
  top: 15px;
  left: 15px;
  background: #fff;
  padding: 0 3px;
  font-weight: 900;
  font-size: 14px;
  display:none;
}
.prd_blocks::after {
  position: absolute;
  content: " ";
  top: 10px;
  right: 10px;
  background: url(https://lightx.noonspace.com/w168/w168/MsgInfo/1670714769_20231124_16160582.png);
  background-size: cover;
  width: 20px;
  height: 20px;
}

.prd_pic {
  max-width: 100%;
  padding: 2px 0px;
}
.prd_pic .prdimg {
  position: relative;
  max-width: 230px;
  width: 100%;
  max-height: 300px;
  border-radius: 10px;
  aspect-ratio: 1/0.9;
  object-fit: cover;
  z-index: 1;
}
.prd_Title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}
.prd_Title .prd_Name {
  width: 80%;
  text-align: left;
}
.prd_Title .prd_Review {
  position: relative;
  font-weight: 800;
  font-size: 12px;
  opacity: 0.7;
}
.prd_Title .prd_Review::before {
  position: absolute;
  content: " ";
  background: url(https://lightx.noonspace.com/w168/w168/PageInfo/601149693_20231101_15042951.png);
  width: 12px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  left: -20%;
  top: 50%;
  transform: translate(0, -50%);
}

.prd_Title a.directLink p {
  color: #000;
  font-weight: bolder;
  font-size: 18px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 215px;
}
.prd_price {
  text-align: left;
  color: #000;
  font-weight: bold;
  font-size: 15px;
}

.prd_desc {
    min-height: 22px;
}

.prd_shopName p,
.prd_desc p {
  text-align: left;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 180px;
}

/*地圖setmarker樣式*/
 .leaflet-popup-content-wrapper {
  width: 301px;
  border-radius:7px;
  /* height: 180px; */
}
.leaflet-popup-content {
  /* width: 100% !important; */
  margin: 0 auto;
} 
/* .block_container {
  max-width: 100%;
}
.block_container .pic {
  height: 100px;
}
.block_container .pic img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.block_container .prdName {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 15px 10px 0 10px;
}
.block_container .info {
  text-align: center;
} */
/*hide coupon*/
.prd_price span .coupon {
  display: none;
}
/*rwd*/
@media (max-width: 1100px) {
  .prd_blocks {
    width: 45%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .prd_blocks {
    width: 80%;
  }
  .right {
    width: 70%;
  }
  .prd_pic .prdimg {
    max-width: 100%;
  }
  .left .prdnum {
    justify-content: center;
  }
}
@media (max-width: 700px) {
  #ns_Main {
    padding: 0px;
  }
  .container {
    flex-direction: column-reverse;
  }
  .right {
    width: 100%;
    position: static;
  }
  .left {
    width: 100%;
  }
  .map {
    max-width: 100%;
    height: auto;
  }
  #map {
    height: 350px !important;
  }
  .listBlock {
    justify-content: center;
    align-items: center;
  }
  .prd_blocks {
    width: 70%;
    margin: 0 auto 50px;
  }
  .prd_Title {
    justify-content: space-between;
    margin: 10px 0;
  }
}
/*愛心點擊事件換色*/

.prd_blocks.clicked::after {
  background: url(https://lightx.noonspace.com/w168/w168/MsgInfo/1064569674_20231124_16301733.png);
  width: 20px;
  height: 20px;
}
/*隱藏下方mmx商品資訊*/
.mmx .txt_MMXTitle:before,
.mmx .ns.PrdList {
  display: none; 
}

/* Jacob 區塊範本 */
.divFlex {
	display:flex;
}

.justifyCenter {
	justify-content:center;
}

.flexColumn {
	flex-direction: column;
}

.flexRow {
	flex-direction: row;
}

.justifySpaceBetween {
	justify-content: space-between;
}

.justifySpaceEvenly {
	justify-content: space-evenly;
}

.justifyFlexEnd {
	justify-content: flex-end;
}

/* END */

/* Jacob文字範本 */
.defaultTitle {
	 font-size: 12px;
    font-weight: bold;
    color: #000000c7;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 140px;
}

.defaultBigTitle {
	 font-size: 16px;
    font-weight: bold;
    color: #000000c7;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 140px;
}
/* END */

/* Jacob新版popup區塊 */

.divLeft {
   width: 45%;
	padding: 4px;
}

.divRight {
	width:55%;
	padding: 4px;
}

p.defaulttext.rating {
	padding-left: 5px;
	opacity: 0.7;
}

.prdInfo .defaulttext {
    overflow: hidden;
    max-height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.popupSiteName .defaulttext {
    margin-top: 4px;
    color: #294187;
    font-weight: bold;
}

/* .titleDiv .rating::before {
    position: absolute;
    content: "";
    background: url(https://lightx.noonspace.com/w168/w168/PageInfo/601149693_20231101_15042951.png);
    width: 12px !important;
    height: 12px !important;
    background-size: cover;
    background-repeat: no-repeat;
    left: 45%;
    top: 30%;
    transform: translate(0, -50%);
} */

.prdPrice .defaulttext {
	font-weight:bold;
}

.popupDiv {
    padding: 5px;
}

.popupTitle {
    height: 35%;
}

.popupContent {
    height: 50%;
}

.popupFooter {
    height: 15%;
}

/* END */

/* Leaflet 覆寫 */
.leaflet-popup-content p {
	margin:0;
}

.leaflet-container a.leaflet-popup-close-button {
	right:6px !important;
}
/* END */

/* icon */
.staricon {
    width: 12px;
    height: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(0, 23%);
}
/* END */

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.meLogoBlock img {
	position:relative;
	z-index:99999 !important;
}

img.couponBodyImg {
    height: 24px;
    width: 35px;
}

img.couponHeadImg {
    height: 24px;
    width: 7px;
}

.prd_coupon {
	margin-top: 4px;
	min-height: 16px;
}

.minitext {
    position: absolute;
    color: white;
    font-size: 14px;
    left: 10px;
    font-weight: bold;
}

.popupHeader, .popupContent {
	margin:0 !important;
}

.defaultPopupHtml {
    padding: 10px;
}

.linedecoration {
    text-decoration: line-through;
	 text-decoration-color: rgb(255, 90, 255);
}

.defaulttextred {
    font-size: 18px;
    margin-left: 3px;
    color: #c35252;
    font-weight: bold;
}

.defaultminitext {
    opacity: 0.5;
    font-size: 10px;
}

.opacitytext {
	opacity:0.7;
}

/* 分類css */
.prdTypeClass {
    width: 80%;
}

.classtypeContent {
    width: fit-content;
}

.prdTypeObj {
    width: 20%;
}

.defaultClassImg {
	width:23px;
}

.advancedSearch {
    border: 1px solid #6a6464;
    padding: 4px 7px;
    border-radius: 15px;
    cursor: pointer;
}

.advancedSearchImg {
    width: 19px;
    height: 19px;
    margin-top: 4px;
}

.prdTypeClassDiv {
	height:78px;
	-webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 8%), 0 4px 10px rgb(0 0 0 / 8%);
}

.typeclasstext {
    font-size: 16px;
    font-weight: bold;
}

.classtype {
	cursor:pointer;
	width:15%;
}

/* loading特效 */

.loadingDiv {
    position: absolute;
    top: 22vh;
    z-index: 99;
    height: 87.3vh;
    width: 54vw;
    background: white;
    opacity: 1;
}

.loadingtext {
    font-size: 18px;
    font-weight: bold;
    opacity: 0.6;
    text-align: center;
}