@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Noto+Emoji:wght@300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

#frame {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  max-width: 100vw;
  height: 100vh;
  background-color: #eef1e4;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(125%);
  transition: 0.6s cubic-bezier(1, 0.885, 0.32, 1);
  transition-delay: 0.5s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}
#frame::before, #frame::after {
  content: "";
  position: absolute;
  width: 125%;
  height: 100%;
  top: 0;
  left: -12.5%;
  background: linear-gradient(to right, rgba(237, 238, 155, 0) 25%, rgba(237, 238, 155, 0.7490196078) 50%, rgba(237, 238, 155, 0) 100%);
  transition: transform 1.2s cubic-bezier(1, 0.885, 0.32, 1);
  transition-delay: 250ms;
  z-index: 98;
  transform: translateX(0) skewX(5deg);
}
#frame::after {
  z-index: 99;
  background: linear-gradient(to right, rgba(163, 189, 47, 0) 25%, rgba(163, 189, 47, 0.5803921569) 60%, rgba(163, 189, 47, 0) 100%);
  width: 125%;
  transition: transform 1.4s cubic-bezier(1, 0.885, 0.32, 1);
}
#frame .frameClose {
  opacity: 0;
}
#frame .frameClose span {
  position: absolute;
  border-radius: 50%;
  font-size: 1.3em;
  width: 50px;
  line-height: 50px;
  background-color: #5eaa00;
  color: #fff;
  font-family: "Noto Emoji", sans-serif !important;
  text-align: center;
}
#frame .frame-wrap {
  background-color: #eef1e4;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  padding: 15px;
}
#frame .frame-wrap iframe {
  min-width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (min-width: 768px) {
  #frame .frame-wrap iframe {
    min-width: 90%;
  }
}
@media (min-width: 992px) {
  #frame .frame-wrap iframe {
    min-width: 70%;
  }
}

.frame_active {
  cursor: auto;
  overflow: hidden;
}
.frame_active #frame {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 400ms;
}
.frame_active #frame::before {
  transition-delay: 200ms;
  transform: translateX(-175%) skewX(5deg);
}
.frame_active #frame::after {
  transition-delay: 400ms;
  transform: translateX(-150%) skewX(-15deg);
}
.frame_active #frame .frame-wrap {
  opacity: 1;
  background-color: #CBCCB6;
  transition: opacity 508ms ease 883ms, cubic-bezier(1, 0.885, 0.32, 1);
}
.frame_active #frame .frameClose {
  position: relative;
  top: 15px;
  left: -48%;
  cursor: pointer;
  opacity: 1;
  transition: opacity 1.25s;
  transition-delay: 1.25s;
}
@media (min-width: 768px) {
  .frame_active #frame .frameClose {
    top: 15px;
    left: -45%;
  }
}
@media (min-width: 992px) {
  .frame_active #frame .frameClose {
    top: 15px;
    left: -36%;
  }
}
.frame_active #frame .frameClose b.actCircle {
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: rgba(185, 204, 54, 0.568627451);
  opacity: 0.5;
  width: 60px;
  height: 60px;
  opacity: 0.85;
  border-radius: 50%;
  animation: pulse 1.2s cubic-bezier(0.66, 0, 0.34, 1) infinite;
}
.frame_active #frame .frameClose b.actCircle::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(219, 231, 138, 0.568627451);
  top: 0;
  left: 0;
  animation: pulse 1.2s cubic-bezier(0.66, 0, 0.34, 1) infinite;
  z-index: -1;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 0.85;
  }
}
@keyframes pulse1 {
  from {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.45);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 0.85;
  }
}
/* section {
  background: none !important;
} */

*:hover {
  text-decoration: none !important;
}

.bg-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.bg-overlay:target {
  visibility: visible;
  opacity: 1;
}

.subscribe-optin {
  padding: 36px 66px;
  text-align: center;
  background-color: #efefef;
  color: #7c6c64;
  font-size: 16px;
  border-radius: 20px;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  background-image: url(/Modules/Web/Tpl/Desktop/Public/images/PIC__BG.png);
  background-size: contain;
  background-position-y: center;
  background-repeat: no-repeat;
}
/* GRID 布局 */
.citrus-text {
  display: grid;
  grid-template-columns: 200px 210px auto;
  /* grid-template-columns: repeat(3, 1fr); */
  /* grid-template-rows: repeat(7, 140px); */
  grid-column-gap: 7px;
  grid-row-gap: 25px;
  text-align: left;
  letter-spacing: 2px;
  margin-top: 30px;
  line-height: 1.8em;
  font-size: 1.06rem;
  @media (min-width:768px) {
    font-size: 1.12rem;
  }
}

.citrus-1 {
  grid-area: 1/1/2/3;
}

.citrus-2 {
  grid-area: 2/1/3/3;
}

.citrus-2 span {
  color: #bf8c00;
  font-weight: 500;
}

.citrus-3 {
  grid-area: 1/3/3/4;
  text-align: center;
}

.citrus-3 img {
  width: 18vw;
  max-width: 230px;
}

.citrus-4 {
  grid-area: 3/1/4/4;
  color: #6da61b;
  font-size: 17.5px;
  font-weight: 500;
}

.citrus-5 {
  grid-area: 4/1/5/3;
  text-align: center;
}

.citrus-5 img {
  width: 29vw;
  max-width: 385px;
}

.citrus-6 {
  grid-area: 4/3/5/4;
  text-align: center;
}

.citrus-6 img {
  max-width: 255px;
  width: 19vw;
}

.citrus-7 {
  grid-area: 5/1/6/4;
}

.citrus-8 {
  grid-area: 6/1/7/4;
}

.citrus-8 span {
  color: #6da61b;
  font-weight: 500;
}

.citrus-9 {
  grid-area: 7/1/8/4;
  background-color: #7fbe25;
  color: #fff;
  border-radius: 15px;
  padding: 15px;
}

.closepage {
  position: relative;
  max-width: 905px;
  width: 70vw;
  height: 85vh;
}

.closepage .optin-close {
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #7fbe26;
  border-radius: 50%;
  color: #fff;
  font-size: 33px;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0;
}

.subscribe-optin .optin-close:hover {
  color: #c7c7c7;
  transition: color 500ms ease;
}

.citrus-imgs {
  width: 65vw;
  margin: 0 auto;
  max-width: 815px;
  margin-top: 5vh;
}
.citrus-imgs img {
  width: 100%;
}

@media (max-width: 768px) {
.imglem{
    width: 21vw; 
    top: -33px;  
    position: absolute;
    left: 20px;
  }
.active .imglem{
  display: none;
  }
  .bg-overlay:target {z-index: 9999;}
  .citrus-imgs {
    width: 93vw;
    margin: 30px 0;
  }
  .closepage{
    width: 90vw;
    height: 85vh;
  }
  .closepage .optin-close{
    top: -20px;
    right: -10px;
    width: 50px;
    height: 50px;
  }
  .subscribe-optin{
    padding:15px;
    background-size: 200%;
    background-position: 50% 30%;
  }
  .citrus-text{
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    margin-top: 20px;
  }
    .citrus-1 { grid-area: 1 / 1 / 2 / 2; }
    .citrus-2 { grid-area: 2 / 1 / 3 / 2; }
    .citrus-3 { grid-area: 3 / 1 / 4 / 2; }
    .citrus-3 img{ width: 50vw; margin: 15px 0;}
    .citrus-4 { grid-area: 4 / 1 / 5 / 2; }
    .citrus-5 { grid-area: 5 / 1 / 6 / 2; }
    .citrus-5 img{ width: 78vw;}
    .citrus-6 { grid-area: 6 / 1 / 7 / 2; }
    .citrus-6 img{ width: 50vw; margin: 15px 0;}
    .citrus-7 { grid-area: 7 / 1 / 8 / 2; }
    .citrus-8 { grid-area: 8 / 1 / 9 / 2; }
    .citrus-9 { grid-area: 9 / 1 / 10 / 2; }
  
}