@import 'fonts.css';


*
{
  margin: 0;
  text-decoration: none;
}
html
{
  height: auto;
  margin: 0;
  padding: 0;
}
body
{
  display: flex;
  min-height: 100%;
  flex-direction: column;
  /* position: relative; */
  /* background: rgba(232, 232, 232, 0.1); */
  /* background: rgba(231, 219, 207, 0.1); */
  background: rgba(176, 192, 189, 0.1);
}
body[page_id = 'index'] > main > div,
body[page_id = 'products'] > main > div,
body[page_id = 'account'] > main > div,
body[page_id = 'PaymentSuccess'] > main > div
{
  margin-bottom: 2em;
}
body > main > div > h1
{
  font-size: 60px;
}
body[page_id='index'] > main::after
{
  content: ""; /* Required for the pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); /* Example gradient */
  pointer-events: none; /* Allow clicks to pass through */
  z-index: 999;
}
body[page_id = 'products'] > main > div:first-child,
body[page_id = 'listing'] > main > div:first-child,
body[page_id = 'account'] > main > div:first-child,
body[page_id = 'shippingAddress'] > main > div:first-child,
body[page_id = 'createAccount'] > main > div:first-child,
body[page_id = 'login'] > main > div:first-child
{
  padding-top: 30px;
}

nav
{
  background: rgba(250, 250, 250, 0);
  width: 100%;
  transition: background-color 0.3s;
  /* background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); */
  /* border-bottom: 1px solid rgba(255,255,255); */
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  /* top: -5; */
  z-index: 1000;
}

main
{
  /* width: auto; */
  /* min-height: 750px; */
  margin-bottom: 5%;
  padding-top: 185px;
  align-content: center;
}
body[page_id = 'userOrder'] > main
{
  min-height: auto;
}
body[page_id = 'index'] > main
{
  padding-top: 0;
}
ul
{
  padding: 0;
}
li
{
  list-style: none;
}
.nowrap-li > li
{
  width: auto;
  white-space: nowrap;
}

a
{
  text-decoration: none;
  color: #333;
}
a:hover
{
  color: #999;
  cursor: pointer;
}
/* Google OPSZ ICON*/
a.size-30
{
    font-size: 30px;
    display: block;
}
a.size-48
{
    font-size: 88px;
    display: block;
}


.wrap
{
  width: auto;
}


.flex-container
{
  display: flex;
  flex-wrap: wrap;
}
.container img 
{
  width: 100%;
}
.container
{
  width: 95%;
  margin: auto;
}

/* .grid-container
{
  display: grid;
  row-gap: 60px;
  column-gap: 1.5em;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  grid-template-rows: auto;
  justify-content: space-evenly;
} */


.listing
{
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 3%;
}

.brand
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
}
.brand > div
{
  background-color: rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 1em;
}
.brand-logo
{
  height: 100%;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo > a > img
{
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.bg-img
{
  background-color: rgba(58, 58, 58, 0.7);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.bg-img::before
{
  border-radius: 8px;
  content: "IMG";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../image/design.jpg');
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}



.nav-plus
{
  display: grid;
  grid-template-columns: 5fr 1fr 5fr;
  height: 175px;
  /* margin: 0 auto; */
}
.nav-plus > div:nth-child(1)
{
  align-content: baseline;
}

.nav-mini
{
  display: none;
}



.nav-app
{
  display: flex;
  align-items: center;
}

.nav-app > span 
{
  display: flex;
  align-items: center;
  margin-right: 1em;
}
.nav-app > span  > a
{
  font-size: 48px;
  color: rgb(126, 197, 149, 0.9);
}
.nav-app > span > a:hover
{
  color: rgba(255, 94, 0, 0.9);
}


.nav-account
{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  /* padding: 0 0.5em; */
  /* border-left: 1px solid rgb(221, 221, 221, 0.8); */
  /* border-right: 1px solid rgb(221, 221, 221, 0.8); */
}
body[page_id='index'] > nav > .nav-plus > .nav-account > span#account > a#account_icon,
body[page_id='index'] > nav > .nav-plus > .nav-account > span#bag > a#bag_icon
{
  transition: color 0.3s;
  color: #fff;
}
.nav-account > span#account > a#account_icon > svg
{
  width: 82px;
  height: 82px;
}
.nav-account > span#bag > a#bag_icon > svg
{
  width: 70px;
  height: 70px;
}
.nav-account > span#account,
.nav-account > span#bag
{
  display: inline-block;
  align-items: center;
  text-align: center;
  /* width: 35px; */
  height: 100%;
  margin-right: 1em;
}
.nav-account > span#account > a,
.nav-account > span#bag > a
{
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 100%;
}
.nav-account > span#bag
{
  display: block;
  position: relative;
}
.nav-account > span#bag > .goods-count
{
  position: absolute;
  bottom: 20px;
  right: 10px;
  display: inline-block;
  width: 12px;
  height: 12px;
  line-height: 12px;
  text-align: center;
  border-radius: 12px;
  background-color: rgb(255, 85, 0);
  color: rgb(255, 255, 255);
  font-size: 10px;
}
.nav-account > span#country_ip,
.nav-account > span#country_ip > a
{
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0.5em 1em;
  background-color: #161616;
  /* border: 1px solid #161616; */
  border-radius: 16px;
  color: #fafafa;
}
.nav-account > .nav-account-login,
.nav-account > .nav-account-online
{
  width: 500px;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;

  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  text-align: center;
  background-color: rgba(255,255,255,1);
  display: none;
  transition: top 0.3s;
}
.nav-account > .nav-account-login
{
  padding: 1em;
}

.nav-account-login > a
{
  margin-right: 0.5em;
}
.nav-account-online > div
{
  background-color: #fff;
  margin: 0.5em;
  /* padding: 0.5em; */
}
.nav-account-online > div > a
{
  display: block;
  text-align: left;
  padding-left: 0.5em;
}
.nav-account-online > div > a:hover
{
  background-color: #d6ebcc;
  color: #000;
  text-decoration-line: underline;
}
.nav-account-online > span,
.nav-account-online > div > a
{
  height: 30px;
  line-height: 30px;
}
.nav-account-online > div > a
{
  font-size: 14px;
}
/* .character
{
  background: url('/static/image/ico/shpping-character.png') no-repeat 5px 15px;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 10px;
  padding-top: 10px;
} */
/* .bag
{
  background: url('/static/image/ico/shpping-bag.png') no-repeat 5px 15px;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 10px;
} */
/* .cart
{
  background: url('/static/image/ico/shpping-cart.png') no-repeat 5px 15px;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 10px;
}  */



/*
.character,
.bag,
.cart
{
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 10px;
}
.character > svg,
.bag > svg,
.cart > svg
{
  width: 26px;
  height: 26px;
  margin-top: 15px;
  color: #888;
}
*/





.-focus-
{
  color: rgb(51, 95, 66);
  font-size: large;
}
.display-block
{
  display: block;
}



.video-y
{
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr;
}
.video-y > iframe
{
  border-radius: 8px;
}
.promote-sku
{
  /* margin: 3% auto; */
  padding: 5% 0;
  border-radius: 8px;
  background-color: #fff;
  /* background-color: #d9e4d4; */
}
.promote-sku > div
{
  width: 47%;
  height: 500px;
}
.promote-sku > div > img
{
  width: 400px;
  border-radius: 6px;
}
.promote-sku > div:first-child
{
  text-align: center;
}
.promote-sku > div:last-child
{
  height: 400px;
  display: grid;
  /* padding-right: 5%; */
  grid-template-rows: 20% 55% 10% 15%;
}



.product-info
{
  background-color: #fafafa;
  border-radius: 6px;
  margin: 0 0 0 15px;
  padding: 3%;
  min-height: 688px;
}
.product-info > *
{
  margin-bottom: 1em;
}
.product-info > div:last-child
{
  margin-bottom: 0;
}
.product-info > h1
{
  font-size: 18px;
  line-height: 20px;
  /* font-family: 'Lexend'; */
  /* font-weight: 300; */
}
.price *
{
  color: rgb(255, 80, 0);
  font-family: 'Lexend';
  font-weight: 400;
}
.price > span
{
  margin-right: 0.5em;
  
}
.price > span > span
{
  margin-right: 0.2em;
}
.price > span.price-old
{
  text-decoration: line-through;
  color: #ccc;
}
.price,
.price-amount
{
  display: flex;
  align-items: start;
  
}
.price-integer
{
  font-size: 56px;
  line-height: 56px;
  margin-right: 0.1em;
  
}


.product-info > div.buy
{
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.5em;
}
.product-info > div.buy > div > form > button,
.product-info > div.buy > div > a
{
  display: flex;
  align-items: center;
  
}
.product-info > div.buy > div > form > button > svg,
.product-info > div.buy > div > a > svg
{
  margin-right: 0.5em;
  width: 22px;
  height: 22px;
}

.shipping-info > div *
{
  font-size: 14px;
}
.shipping-info > div > div > span:first-child
{
  display: inline-block;
  width: 160px;
  margin-right: 0.6em;
}

.bullet-point-container
{
  border-radius: 6px;
  background-color: rgb(255,255,255, 0.7);
  padding: 0.6em;
}
.bullet-point *,
.description > p
{
  margin-bottom: 2%;
}
.display-row-3
{
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2; 
}
.bullet-point {
  max-height: 220px;
  overflow: hidden;
  position: relative;
  /* background-color: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(250, 250, 250, 1) 99%); */
  transition: max-height 0.6s ease;
  cursor: pointer;

  -webkit-line-clamp: 9;
  display: -webkit-box;
  -webkit-box-orient: vertical
}
.bullet-point.expanded {
  max-height: 1000px;
  -webkit-line-clamp: 1000;
}
.more {
  display: block;
  text-align: center;
  color: rgb(123, 123, 123);
  font-size: 24px;
}
.more:before {
  content: '...';
}
.bullet-point.expanded.more:after {
  content: 'Show less';
}

.AAA > img
{
  margin: 0 ;
  border-radius: 6px;
}

.coupon > span
{
  height: 22px;
}
.coupon > span:nth-child(1) > svg
{
  width: 22px;
  height: 22px;
  margin-right: 0.5em;
}
.coupon-tip
{
  padding: 0.1em 0.5em;
  color: rgb(255, 255, 255);
  background-color: rgb(126, 197, 149, 0.7);
  border-radius: 6px;
}
.-btn-,
.-btn-invalid-
{
  display: inline-block;
  min-height: 150px;
  line-height: 150px;
  padding: 0.2em 2em;
  border-radius: 150px;
  border: none;
  background-color: rgba(156, 196, 169, 0.8);
  /* background-color: rgba(48, 100, 65, 0.7); */
  /* background-color: rgba(126, 197, 149, 0.7); */
  /* background-color: rgba(80, 40, 136, 0.7); */
  color: #fff;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.-btn-:hover
{
  background-color: rgba(56, 24, 101, 0.8);
  /* background-color: rgb(126, 197, 149, 0.9); */
  color: #fff;
  /* x 偏移量 | y 偏移量 | 阴影模糊半径 | 阴影扩散半径 | 阴影颜色 */
  box-shadow: 1px 1px 3px 3px rgba(232, 232, 232, 0.6);
}
.-btn-33
{
  border: 1px solid rgba(33,33,33,1);
  border-radius: 150px;
  display: inline-block;
  width: 100%;
  min-height: 150px;
  line-height: 150px;
}
.-btn-33:hover
{
  border: 1px solid rgba(129, 129, 129, 1);
}
/* button.-btn-,
a.-btn-,
a.-btn-invalid-
{
  height: 45px;
  line-height: 45px;
} */
.-btn-invalid-
{
  background-color: rgba(239, 239, 239, 0.7);
}
.-btn-invalid-:hover
{
  /* background-color: rgb(126, 197, 149, 0.9); */
  background-color: rgba(239, 239, 239, 0.7);
  color: #fff;
  /* x 偏移量 | y 偏移量 | 阴影模糊半径 | 阴影扩散半径 | 阴影颜色 */
  /* box-shadow: 1px 1px 3px 3px rgba(232, 232, 232, 0.6); */
}

.description
{
  padding: 2% 0;
}

.account-login,
.account-signup
{
  margin: 0 6.5em;
}
.account-login > ul,
.account-signup > ul
{
  /* margin: 5% 0; */
  /* background: rgb(252, 252, 252); */
  border-radius: 6px;
}
.account-login > ul > li,
.account-signup > ul > li
{
  min-height: 65px;
  /* width: 65%; */
  /* margin-bottom: 1em; */
  /* border: 1px solid #ff0000; */
}
.account-login > ul > li > input[type="text"],
.account-signup > ul > li > input[type="text"]
{
  width: 96%;
  height: 150px; 
  background-color: #fff;
  border: 1px solid #ccc; 
  color: #aaa; 
  margin: auto;
  padding-left: 3%;
}
.account-login > ul > li > input[type="text"]:focus,
.account-signup > ul > li > input[type="text"]:focus
{
  /* width:95%;  */
  height: 150px;
  background-color: #fff;
  /* border: 1px solid  rgb(254, 252, 252); */
  border: 1px solid  rgb(33, 33, 33);
  /* border-bottom: 1px solid #ccc; */
  outline: none;
  color: #333;
  padding-left: 3%;
}

button[id="login"],
button[id="createAccount"]
{
  width: 100%;
}
/* .login-btn,
.createaccount-btn
{
  width: 90%;
  margin: 2% auto;
} */
.account-user-bag
{
  min-height: 300px;
  background-color: #fafafa;
  padding: 2em 0;
  align-content: center;
}
#cart_list > div
{
  margin-top: 2em;
}
/* .account-coupon, */
.cart-list
{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9em;
}
.account-coupon > div
{
  min-height: 260px;
}
.account-coupon > div > div
{
  margin-top: 3%;
}
.account-coupon > div > div:nth-child(3) > div
{
  width: 50%;
  /* margin-right: 5%; */
}
.account-coupon > div > div:nth-child(3) > div > .-btn-
{
  width: 50%;
  margin: 1% auto;
}

.account-coupon-card
{
  margin-right: 2%;
  width: 18%;
  border-radius: 8px;
  background:rgb(57, 157, 244, 0.2); 
  
  text-align: center;
  position: relative;
}
.account-coupon-card > div:first-child
{
  height: 50px;
  line-height: 50px;
  font-size: 50px;
  /* margin-top: 5%; */
}
.account-coupon-card > div:last-child
{
  margin: 3% 0;
  /* margin-top: 5%; */
}
.account-coupon-card > span
{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 22px;
}


.account-shipping,
.id-information
{
  display: grid;
  grid-template-columns: 25% 25% 25%;
  margin: 3% 0;
}
/* .account-shipping > div:nth-child(2) > div,
.id-information > div:nth-child(2) > div
{
  margin-bottom: 1em;
} */
.account-shipping > div,
.id-information > div,
#edit-shipping > div > div,
#edit-ID > div > div
{
  /* width: 25%; */
  padding-bottom: 2%;
}
.account-shipping > div > div > span,
.id-information > div > div > span
{
  display: block;
  margin-top: 2%;
}
#edit-shipping > div > div:first-child,
#edit-ID > div > div:first-child
{
  height: 100px;
}
#edit-shipping > div > div:first-child *,
#edit-ID > div > div:first-child *
{
  display: block;
  width: 80%;
  height: 55px;
}
#edit-shipping > div > div[onclick="widget('close')"],
#edit-ID > div > div[onclick="widget('close')"]
{
  text-align: end;
  font-size:35px;
  cursor: pointer;
}


.products-window
{
  display: grid;
  gap: 0.5em;
  /* row-gap: 1.5em; */
  /* column-gap: 1.5em; */
  /* grid-template-columns: repeat(auto-fit, minmax(200px, auto)); */
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  /* justify-content: space-evenly; */
}
.products-window > div
{
  background-color: rgb(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 0.5em;
}
.products-window > div:nth-child(4),
.products-window > div:nth-child(5)
{
  display: none;
}
.style-window-box
{
  border-bottom: 1px dashed rgba(33,33,33,0.3);
  padding-bottom: 3em;
}
.model-window,
.style-window
{
  /* min-height: 600px; */
  border-radius: 8px;
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(3, 1fr);
}
.model-window > div,
.style-window > div

{
  background-color: #fafafa;
}
.model-window > div > a > img,
.style-window > div > a > img
{
  border-radius: 8px;
  width: 100%;
  /* height: 100%; */
}
.sku-product
{
  display: block;
}
.sku-model
{
  display: none;
}
.style-window div:hover img.sku-product {
  display: none;
}

.style-window div:hover img.sku-model {
  display: block;
}


.product-card > div
{
  margin-bottom: 2%;
}
.product-card > div:nth-child(1) > a
{
  display: inline-block;
}


.product-type
{
  height: 100px;
  display: grid;

  grid-template-columns: repeat(3, 33%);
  justify-content: space-between;
}
.product-type > div
{
  background-color: rgb(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 3%;
}
.focus-detail
{
  min-height: 800px;
  border-radius: 8px;
  /* background-color: #fafafa; */
  display: grid;
  gap: 0.5em;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.focus-detail > div
{
  background-color: #fafafa;
}
/* .focus-detail > div, */
.focus-detail > div > a > img
{
  border-radius: 8px;
  width: 100%;
  height: 100%;
}
.focus-detail > div:nth-child(1)
{
  grid-column-start: 1;
  grid-column-end: 3;
  padding: 5%;
}
.focus-detail > div:nth-child(1) > h2
{
  font-size: 18px;
}
.model-window
{
  min-height: 600px;
  border-radius: 16px;
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(3, 1fr);
}
.model-window > div
{
  background-color: #fafafa;
}
.model-window > div > a > img
{
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

footer
{
  width: 100%;
  border-top: 1px solid #161616;
  margin-top: auto;
  padding: 2em 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    rgba(255, 0, 0, 0.03), 
    rgba(33, 155, 15, 0.03), 
    rgba(0, 155, 255, 0.03), 
    rgba(255, 255, 255, 0.1)
  );
  
}
footer *
{
  line-height: 36px;
  color: #161616;
}
.site-footer
{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  margin-bottom: 2em;
}
.site-brand
{
  margin: 0 auto;
  width: 300px;
  height: 300px;
  margin-bottom: 1em;
}
.site-brand > img
{
  border-radius: 50%;
}
.site-info
{
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, auto));
  /* grid-template-rows: auto; */
  /* min-height: 200px; */
}
.site-info > * > ul > li > a
{
  color: #616161;
}
.site-info > * > ul > li > a:hover
{
  color: #ccc;
}
ul.media > li
{
  margin-right: 2%;
}
ul.media > li > a,
ul.media > li > a > svg
{
  display: inline-block;
  width: 72px;
  height: 72px;
}


/* del ing... */
/* .float-right
{
  float: right;
}
.text-overflow{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.three-line{
  line-clamp: 3;
  -webkit-line-clamp: 3;
} */



/* React JS============================================================================================================================================== */

#order_create
{
  margin-top: 1.5em;
}
#order_create > div
{
  margin-bottom: 2em;
}
.shipping-address-item,
.active-shipping
{
  background-color: rgb(239, 239, 239, 0.6);
  border-radius: 8px;
  margin-bottom: 1em;
  padding: 1em;
}
.active-shipping > div:nth-child(2)
{
  width: 100px;
  line-height: 44px;
  /* border: 1px solid #ff0000; */
  text-align: center;
}
.active-shipping > div:nth-child(2) > a
{
  color: rgb(66, 126, 255);
  display: flex;
  align-items: center;
}
.active-shipping > div:nth-child(2) > a:hover
{
  color: rgb(8, 57, 165);
}
.active-shipping > div:nth-child(2) > a > span
{
  margin-left: 0.2em;
}
.order-create
{
  display: grid;
  min-height: 600px;
  gap: 1em;
  grid-template-columns: 70% 30%;
  
}
.order-create > div
{
  border-radius: 8px;
  background-color: #cacaca;
}
/* Create Order */
.order-wrap
{
  display: grid;
  grid-template-columns: 2fr 1fr;

  border-bottom: 2px solid #fafafa, 
}
.order-bag,
.goods-item
{
  margin-bottom: 1em;
}
.user-bag
{
  border-right: 1px solid rgba(33, 33, 33, 0.9);
}
.user-bag > h3,
.goods-item > h3,
.order-summary > h3,
.order-summary > div
{
  margin-bottom: 1em;
}
.goods-item
{
  display: grid;
  grid-template-columns: 1fr 5fr;
  position: relative;
  /* justify-content: space-between; */
  /* flex-wrap: nowrap; */
}
/* .goods-item > div
{
  margin-right: 1em;
} */
.goods-item-img > img
{
  border-radius: 8px;
  border: 1px solid #fafafa;
}
.goods-item-info > div
{
  /* padding: 1%; */
  margin-bottom: 0.5em;
}
.goods-item-info > div > div > span
{
  padding-right: 1%;
}
.user-bag
{
  padding-right: 1em;
}
.order-summary
{
  min-height: 600px;
  padding-left: 1em;
}
.order-summary > div > div > span
{
  display: inline-block;
  width: 50%;
  /* margin-right: 0.5em; */
}
.order-summary > div > div > span:last-child
{
  text-align: end;
}


#order_list
{
  margin: 1em auto;
  min-height: 600px;
}
#order_list > div
{
  display: grid;
  grid-template-columns: 2.5fr 1fr;
}
.order-info > div > span
{
  margin-right: 0.5em;
  /* text-align: right; */
}
.order-info > div > span:nth-child(1)
{
  display: inline-block;
  width: 130px;
  /* text-align: right; */
}

/* .order-payment
{
  display: grid;
  min-height: 600px;
  gap: 1em;
  grid-template-columns: 2fr 1fr;
} */
.order-payment > div:nth-child(1)
{
  /* border-radius: 8px; */
  /* background-color: rgb(250, 250, 250, 0.8); */
  padding-right: 1em;
}
.order-payment > div:nth-child(2)
{
  padding-left: 1em;
  border-left: 1px solid rgba(39,39,39,1);
}
.order-payment > div > h3
{
  margin-bottom: 1em;
}
.order-payment > div:nth-child(1) > div
{
  margin-bottom: 1em;
}
.payment_success > h1
{
  text-align: center;
  padding: 3% 0;
  color: rgb(126, 197, 149, 0.9);
}
.payment_success > div
{
  min-height: 300px;
  border-radius: 8px;
  background-color: rgb(255,255,255);
  padding: 2%;
}


/* guest_bag ================================================================================================================ */
#guest_bag
{
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 750px;
}
#guest_bag > .guest-order-info
{
  border-right: 1px solid rgb(33, 33, 33, 0.9);
  /* width: 640px; */
  overflow: hidden;
  position: relative;
}

#guest_bag > .guest-order-info > div
{
  display: grid;
  grid-template-columns: 640px 640px;
  width: 1280px;
  min-height: 750px;
  /* padding: 1em 0; */
  position: absolute;
  transition: left 0.3s;
  top: 0;
  left: 0;
}
.guest
{
  display: grid;
  grid-template-columns: 1fr;
  /* min-height: 750px; */
}
.guest > div:nth-child(1)
{
  display: none;
}
.guest > div:nth-child(2)
{
  /* border-left: 1px solid rgba(39,39,39,1); */
  /* border-radius: 8px; */
  margin-left: 1em;
  align-content: center;
  /* text-align: center; */
}
.guest > div:nth-child(2) > h1
{
  margin-bottom: 1em;
  text-align: center;
}
.guest-promote
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  /* height: 200px; */
}



.guest-shipping-address
{
  background-color: rgba(39,39,39,1);
}

.hr
{
  text-align: center;
  margin: 1em 0;
}
.hr-solid-content,
.hr-content-left
{
  color: rgba(188, 188, 188, 0.7);
  border: 0;
  font-size: 36px;
  padding: 1em 0;
  position: relative;
  width: 100%;
}
.hr-solid-content::before
{
  content: attr(data-content);
  position: absolute;
  padding: 0 1em;
  line-height: 1px;
  border: solid #d0d0d5;
  border-width: 0 99vw;
  width: fit-content;
  /* for 不支持fit-content浏览器 */
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}

.hr-content-left::before
{
  content: attr(data-content);
  position: absolute;
  padding: 0 1em;
  line-height: 1px;
  border: solid #d0d0d5;
  border-width: 0 99vw;
  width: fit-content;
  /* for 不支持fit-content浏览器 */
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}



/* ================================================================= */

.manager-handleshipping
{
  display: grid;
  gap: 0.5em;
  grid-template-columns: 7fr 3fr;
  margin-top: 1%;
}
.manager-handleshipping > div
{
  height: 60px;
  border-radius: 8px;
  background-color: rgb(255,255,255, 0.9);
  padding: 0.5em 1em;
}
.manager-handleshipping > div > div > span
{
  margin-right: 1em;
}
