:root{
  --lemonlee-bg:#B92D50;
  --lemonlee-card:#A597A4;
  --lemonlee-line:#E1E510;
  --lemonlee-btn:#73734E;
  --lemonlee-nav:#2ED822;
  --lemonlee-text:#ffffff;
  --lemonlee-dark:#392d34;
  --lemonlee-shadow:0 18px 40px rgba(42,18,25,.22);
  --lemonlee-shadow-hover:0 28px 56px rgba(42,18,25,.3);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--lemonlee-text);
  background-color:var(--lemonlee-bg);
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.06) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.06) 87.5%, rgba(255,255,255,.06)),
    linear-gradient(150deg, rgba(255,255,255,.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.05) 87.5%, rgba(255,255,255,.05)),
    linear-gradient(90deg, rgba(255,255,255,.035) 2%, transparent 2.5%, transparent 97%, rgba(255,255,255,.035) 97.5%, rgba(255,255,255,.035)),
    radial-gradient(circle at 20% 20%, rgba(225,229,16,.08), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(46,216,34,.09), transparent 20%);
  background-size:80px 140px, 80px 140px, 80px 140px, auto, auto;
  background-position:0 0, 0 0, 0 0, 0 0, 0 0;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.lemonlee_container{
  width:min(1280px, calc(100% - 32px));
  margin:0 auto;
  position:relative;
}

.lemonlee_main{
  position:relative;
  z-index:2;
}

.lemonlee_section,
.lemonlee_hero{
  padding:28px 0;
}

.lemonlee_section_head{
  text-align:center;
  margin-bottom:22px;
}
.lemonlee_section_head h2{
  margin:0 0 10px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.15;
  color:#fff;
}
.lemonlee_section_head p{
  margin:0 auto;
  max-width:860px;
  line-height:1.9;
  color:#f6f6f6;
}

.lemonlee_card,
.lemonlee_header_inner,
.lemonlee_footer_inner{
  position:relative;
  background:
    linear-gradient(135deg, rgba(165,151,164,.96), rgba(145,130,144,.92)),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent);
  border:2px solid var(--lemonlee-line);
  box-shadow:var(--lemonlee-shadow);
  overflow:hidden;
  backdrop-filter:blur(6px);
}

.lemonlee_card{
  border-radius:26px;
  transition:transform .35s ease, box-shadow .35s ease;
  animation:lemonlee_float 5.5s ease-in-out infinite;
}
.lemonlee_card:hover{
  transform:translateY(-8px);
  box-shadow:var(--lemonlee-shadow-hover);
}

@keyframes lemonlee_float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

.lemonlee_card::before,
.lemonlee_header_inner::before,
.lemonlee_footer_inner::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.15), transparent 26%),
    linear-gradient(135deg, rgba(225,229,16,.08), transparent 30%);
}

.lemonlee_badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:900;
  margin-bottom:14px;
}

.lemonlee_action_group{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.lemonlee_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:900;
  box-shadow:0 12px 24px rgba(0,0,0,.18);
  transition:.25s ease;
}
.lemonlee_btn:hover{
  transform:translateY(-4px) scale(1.01);
}
.lemonlee_btn_alt{
  background:#2ED822;
  color:#1b2819;
}

/* header */
.lemonlee_header{
  position:sticky;
  top:0;
  z-index:120;
  padding:14px 0 0;
}
.lemonlee_header_inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:16px;
  align-items:center;
  padding:16px 18px;
  border-radius:24px;
}
.lemonlee_header_brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.lemonlee_header_logo a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:138px;
  min-height:58px;
  padding:8px 12px;
  border-radius:18px;
  border:2px solid #E1E510;
  background:linear-gradient(135deg, rgba(46,216,34,.95), rgba(29,173,22,.9));
}
.lemonlee_header_title{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.lemonlee_header_center{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
}
.lemonlee_header_nav_pc{
  display:flex;
  justify-content:center;
}
.lemonlee_header_menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.lemonlee_header_menu li a{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:46px;
  padding:0 14px;
  border-radius:999px;
  background:#2ED822;
  border:2px solid #E1E510;
  color:#163119;
  font-weight:900;
  box-shadow:0 10px 18px rgba(46,216,34,.22);
    font-size:14px;
}
.lemonlee_header_menu li a i{
  font-size:14px;
}

.lemonlee_header_search{
  display:flex;
  justify-content:flex-end;
}
.lemonlee_header_search_form{
  display:flex;
  align-items:center;
  gap:8px;
}
.lemonlee_header_search_box input{
  width:8em;
  height:42px;
  padding:0 12px;
  border-radius:999px;
  border:2px solid #E1E510;
  background:rgba(115,115,78,.88);
  color:#fff;
  outline:none;
}
.lemonlee_header_search_box input::placeholder{
  color:#f0f0f0;
}
.lemonlee_header_search_box label{
  position:absolute;
  left:-9999px;
}
.lemonlee_header_search_form button{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  cursor:pointer;
}
.lemonlee_header_toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  border:2px solid #E1E510;
  background:#2ED822;
  color:#173218;
  cursor:pointer;
  font-size:18px;
  font-weight:900;
}
.lemonlee_header_drawer{
  display:none;
  margin-top:12px;
}
.lemonlee_header_drawer.is_open{
  display:block;
}
.lemonlee_header_mobile_menu{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.lemonlee_header_mobile_menu a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  border-radius:16px;
  border:2px solid #E1E510;
  background:#2ED822;
  color:#183318;
  font-weight:900;
}

/* footer */
.lemonlee_footer{
  padding:30px 0 40px;
}
.lemonlee_footer_inner{
  padding:24px;
  border-radius:28px;
}
.lemonlee_footer_grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
}
.lemonlee_footer_brand_name{
  margin:10px 0 12px;
  font-size:24px;
  font-weight:900;
}
.lemonlee_footer_desc{
  margin:0;
  line-height:1.9;
  color:#f7f7f7;
}
.lemonlee_footer_menu{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.lemonlee_footer_menu a,
.lemonlee_footer_contact span{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:0 14px;
  border-radius:16px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:800;
}
.lemonlee_footer_contact{
  display:grid;
  gap:10px;
}
.lemonlee_footer_contact a{
  color:#fff;
}
.lemonlee_footer_contact em{
  font-style:normal;
}
.lemonlee_footer_copyright{
  margin-top:20px;
  padding-top:16px;
  border-top:2px dashed rgba(225,229,16,.7);
  text-align:center;
  color:#fff;
  font-weight:700;
}
.lemonlee_footer_copyright a{
  color:#fff;
}

.lemonlee_backtop{
  position:fixed;
  right:20px;
  bottom:20px;
  width:58px;
  height:58px;
  border:none;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  cursor:pointer;
  box-shadow:0 16px 26px rgba(0,0,0,.2);
  z-index:110;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s ease;
}
.lemonlee_backtop.is_show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* hero */
.lemonlee_hero_orbit{
  position:relative;
  min-height:720px;
}
.lemonlee_hero_center{
  width:min(640px, 100%);
  margin:0 auto;
  padding:28px;
  text-align:center;
  position:relative;
  z-index:2;
}
.lemonlee_hero_center h1{
  margin:0 0 14px;
  font-size:clamp(34px,5vw,62px);
  line-height:1.08;
}
.lemonlee_hero_center p{
  margin:0 0 16px;
  line-height:1.92;
  color:#f7f7f7;
}
.lemonlee_hero_sat{
  position:absolute;
  width:260px;
  padding:20px;
}
.lemonlee_hero_sat h3{
  margin:0 0 10px;
}
.lemonlee_hero_sat p{
  margin:0;
  line-height:1.82;
}
.lemonlee_sat_a{top:0; left:0;}
.lemonlee_sat_b{top:48px; right:0;}
.lemonlee_sat_c{bottom:60px; left:60px;}
.lemonlee_sat_d{bottom:0; right:80px;}
.lemonlee_sat_a img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:20px;
  border:2px solid #E1E510;
}

/* content */
.lemonlee_intro_grid,
.lemonlee_contact_grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:18px;
}
.lemonlee_intro_media,
.lemonlee_intro_text,
.lemonlee_contact_info,
.lemonlee_contact_form_wrap,
.lemonlee_service_item,
.lemonlee_news_card,
.lemonlee_stat_item,
.lemonlee_security_item,
.lemonlee_power_item,
.lemonlee_ask_slider,
.lemonlee_faq_grid details{
  padding:24px;
}
.lemonlee_intro_media img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  border-radius:20px;
  border:2px solid #E1E510;
}
.lemonlee_intro_text h2,
.lemonlee_contact_info h2{
  margin:0 0 14px;
  font-size:clamp(28px,4vw,42px);
}
.lemonlee_intro_text p,
.lemonlee_contact_info p{
  margin:0 0 14px;
  line-height:1.9;
}

.lemonlee_service_grid,
.lemonlee_news_grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.lemonlee_stat_grid,
.lemonlee_security_grid,
.lemonlee_power_grid,
.lemonlee_faq_grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.lemonlee_service_item img,
.lemonlee_news_thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  border:2px solid #E1E510;
  margin-bottom:14px;
}
.lemonlee_service_item h3,
.lemonlee_news_content h3,
.lemonlee_stat_item h3,
.lemonlee_security_item h3,
.lemonlee_power_item h3{
  margin:0 0 10px;
}
.lemonlee_service_item p,
.lemonlee_news_content p,
.lemonlee_stat_item p,
.lemonlee_security_item p,
.lemonlee_power_item p{
  margin:0;
  line-height:1.85;
}
.lemonlee_news_content time{
  display:inline-block;
  margin-top:12px;
  color:#E1E510;
  font-weight:900;
}

.lemonlee_stat_item i,
.lemonlee_security_item i,
.lemonlee_power_item i{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
  margin-bottom:14px;
}
.lemonlee_stat_item strong{
  display:block;
  font-size:40px;
  line-height:1;
  margin-bottom:8px;
  color:#E1E510;
}

.lemonlee_ask_slider{
  text-align:center;
}
.lemonlee_ask_item{
  display:none;
}
.lemonlee_ask_item.is_active{
  display:block;
}
.lemonlee_ask_item i{
  width:82px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
  margin:0 auto 14px;
  font-size:30px;
}
.lemonlee_ask_item h3{
  margin:0 0 10px;
}
.lemonlee_ask_item p{
  margin:0;
  line-height:1.9;
}
.lemonlee_ask_dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:18px;
}
.lemonlee_ask_dots button{
  width:12px;
  height:12px;
  border:none;
  border-radius:50%;
  background:#fff;
  opacity:.35;
  cursor:pointer;
}
.lemonlee_ask_dots button.is_active{
  opacity:1;
  background:#E1E510;
}

.lemonlee_faq_grid details summary{
  list-style:none;
  cursor:pointer;
  font-weight:900;
}
.lemonlee_faq_grid details summary::-webkit-details-marker{
  display:none;
}
.lemonlee_faq_grid details p{
  margin:12px 0 0;
  line-height:1.85;
}

.lemonlee_contact_meta{
  display:grid;
  gap:10px;
}
.lemonlee_contact_meta span{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 16px;
  border-radius:16px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:800;
}
.lemonlee_form_row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.lemonlee_form_group{
  margin-bottom:14px;
}
.lemonlee_form_group label{
  display:block;
  margin-bottom:8px;
  font-weight:900;
}
.lemonlee_form_group input,
.lemonlee_form_group textarea{
  width:100%;
  padding:14px;
  border:none;
  border-radius:16px;
  border:2px solid #E1E510;
  background:rgba(115,115,78,.82);
  color:#fff;
  outline:none;
}
.lemonlee_form_group input::placeholder,
.lemonlee_form_group textarea::placeholder{
  color:#f2f2f2;
}

@media (max-width:1100px){
  .lemonlee_footer_grid,
  .lemonlee_intro_grid,
  .lemonlee_contact_grid,
  .lemonlee_service_grid,
  .lemonlee_news_grid,
  .lemonlee_stat_grid,
  .lemonlee_security_grid,
  .lemonlee_power_grid,
  .lemonlee_faq_grid{
    grid-template-columns:1fr;
  }

  .lemonlee_hero_orbit{
    min-height:auto;
    display:grid;
    gap:18px;
  }
  .lemonlee_hero_sat{
    position:relative;
    width:auto;
    top:auto;
    right:auto;
    bottom:auto;
    left:auto;
  }
}

@media (max-width:860px){
  .lemonlee_header_nav_pc{
    display:none;
  }
  .lemonlee_header_toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .lemonlee_header_center{
    grid-template-columns:auto;
    justify-content:end;
  }
  .lemonlee_form_row,
  .lemonlee_footer_menu,
  .lemonlee_header_mobile_menu{
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .lemonlee_container{
    width:min(100% - 20px, 1280px);
  }
  .lemonlee_header_search_form{
    display:none;
  }
  .lemonlee_hero_center,
  .lemonlee_intro_media,
  .lemonlee_intro_text,
  .lemonlee_contact_info,
  .lemonlee_contact_form_wrap,
  .lemonlee_service_item,
  .lemonlee_news_card,
  .lemonlee_stat_item,
  .lemonlee_security_item,
  .lemonlee_power_item,
  .lemonlee_ask_slider,
  .lemonlee_faq_grid details,
  .lemonlee_footer_inner{
    padding:18px;
  }
}
/* contact */
.lemonlee_contact_hero_wrap{
  position:relative;
  min-height:620px;
}
.lemonlee_contact_hero_main,
.lemonlee_contact_hero_panel,
.lemonlee_contact_quick_item,
.lemonlee_contact_channel_item,
.lemonlee_contact_submit_form,
.lemonlee_contact_submit_info,
.lemonlee_app_hero_visual,
.lemonlee_app_hero_intro,
.lemonlee_app_download,
.lemonlee_app_adv_item,
.lemonlee_app_exp_item,
.lemonlee_app_compare,
.lemonlee_app_timeline_item,
.lemonlee_app_install,
.lemonlee_app_trust_item,
.lemonlee_app_invite,
.lemonlee_app_cta{
  padding:24px;
}

.lemonlee_contact_hero_main{
  width:min(700px, 100%);
  margin:0 auto;
  text-align:center;
}
.lemonlee_contact_hero_main h1,
.lemonlee_app_hero_intro h1{
  margin:0 0 14px;
  font-size:clamp(34px,5vw,58px);
  line-height:1.08;
  color:#fff;
}
.lemonlee_contact_hero_main p,
.lemonlee_contact_hero_panel p,
.lemonlee_contact_quick_item p,
.lemonlee_contact_channel_body p,
.lemonlee_contact_submit_form p,
.lemonlee_contact_submit_info p,
.lemonlee_app_hero_intro p,
.lemonlee_app_download p,
.lemonlee_app_adv_item p,
.lemonlee_app_exp_item p,
.lemonlee_app_compare_head p,
.lemonlee_app_invite p,
.lemonlee_app_cta p,
.lemonlee_app_trust_item p{
  margin:0;
  line-height:1.88;
  color:#f7f7f7;
}

.lemonlee_contact_hero_panel{
  position:absolute;
  width:250px;
  text-align:center;
}
.lemonlee_contact_hero_panel i{
  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-size:24px;
}
.lemonlee_contact_hero_panel h3{
  margin:0 0 10px;
}
.lemonlee_contact_panel_a{top:20px; left:0;}
.lemonlee_contact_panel_b{top:110px; right:0;}
.lemonlee_contact_panel_c{bottom:30px; left:80px;}

.lemonlee_contact_quick_grid,
.lemonlee_app_adv_grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.lemonlee_contact_quick_item i,
.lemonlee_app_exp_item span,
.lemonlee_app_trust_item span{
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
  margin-bottom:14px;
  font-size:22px;
}
.lemonlee_contact_quick_item small{
  display:block;
  margin-bottom:8px;
  font-weight:900;
  color:#fff;
}
.lemonlee_contact_quick_item a,
.lemonlee_contact_quick_item span{
  display:block;
  margin-bottom:10px;
  font-size:20px;
  font-weight:900;
  color:#fff;
  word-break:break-all;
}

.lemonlee_contact_channel_grid{
  display:grid;
  gap:16px;
}
.lemonlee_contact_channel_item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:12px;
  padding:20px 22px;
  font-weight:900;
  color:#fff;
}
.lemonlee_contact_channel_item summary::-webkit-details-marker{
  display:none;
}
.lemonlee_contact_channel_item summary i{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
}
.lemonlee_contact_channel_body{
  padding:0 22px 22px;
}
.lemonlee_contact_channel_body ul{
  list-style:none;
  margin:14px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.lemonlee_contact_channel_body li{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:48px;
  padding:0 14px;
  border-radius:14px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:800;
}

.lemonlee_contact_submit_grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
}
.lemonlee_contact_submit_form h2,
.lemonlee_app_download h2,
.lemonlee_app_invite h2,
.lemonlee_app_cta h2{
  margin:0 0 14px;
  font-size:clamp(28px,4vw,42px);
  color:#fff;
}
.lemonlee_contact_submit_info h3,
.lemonlee_app_adv_item h3,
.lemonlee_app_exp_item h3,
.lemonlee_app_timeline_item h3,
.lemonlee_app_install_col h3,
.lemonlee_app_trust_item h5{
  margin:0 0 10px;
  color:#fff;
}
.lemonlee_contact_submit_list{
  display:grid;
  gap:10px;
  margin:16px 0;
}
.lemonlee_contact_submit_list span{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px 16px;
  border-radius:16px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:800;
}

/* app */
.lemonlee_app_hero_grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:18px;
}
.lemonlee_app_hero_visual{
  text-align:center;
}
.lemonlee_app_icon_box{
  width:82px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  border-radius:22px;
  border:2px solid #E1E510;
  background:#2ED822;
  color:#173218;
  font-size:34px;
}
.lemonlee_app_phone_mockup{
  width:min(320px,100%);
  margin:0 auto;
  padding:16px;
  border-radius:34px;
  border:2px solid #E1E510;
  background:rgba(115,115,78,.32);
}
.lemonlee_app_phone_top{
  width:96px;
  height:8px;
  margin:0 auto 18px;
  border-radius:999px;
  background:#E1E510;
}
.lemonlee_app_phone_screen{
  min-height:520px;
  border-radius:26px;
  border:2px solid #E1E510;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(180deg, rgba(46,216,34,.85), rgba(185,45,80,.92) 56%, rgba(115,115,78,.92));
}
.lemonlee_app_phone_inner{
  text-align:center;
  padding:20px;
}
.lemonlee_app_play_logo{
  width:90px;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-size:34px;
}
.lemonlee_app_phone_screen strong{
  display:block;
  margin-bottom:8px;
  font-size:30px;
  color:#fff;
}
.lemonlee_app_phone_screen p{
  color:#fff;
}

.lemonlee_app_stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:20px;
}
.lemonlee_app_stat{
  padding:16px;
  border-radius:18px;
  border:2px solid #E1E510;
  background:#73734E;
  text-align:center;
}
.lemonlee_app_stat h3{
  margin:0 0 6px;
  font-size:28px;
  color:#E1E510;
}
.lemonlee_app_stat small{
  color:#fff;
  font-weight:700;
}

.lemonlee_app_download{
  text-align:center;
}
.lemonlee_app_tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:18px 0 20px;
}
.lemonlee_app_tags span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:800;
}

.lemonlee_app_exp_grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.lemonlee_app_compare_head{
  margin-bottom:16px;
}
.lemonlee_app_compare_head h2,
.lemonlee_app_install_head h2{
  margin:0 0 10px;
  color:#fff;
}
.lemonlee_app_compare_table{
  display:grid;
  gap:10px;
}
.lemonlee_app_compare_row{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:10px;
}
.lemonlee_app_compare_row span{
  min-height:48px;
  display:flex;
  align-items:center;
  padding:0 14px;
  border-radius:14px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:800;
}
.lemonlee_app_compare_row_head span{
  background:#2ED822;
  color:#183318;
}

.lemonlee_app_timeline{
  display:grid;
  gap:16px;
}
.lemonlee_app_timeline_year{
  display:inline-flex;
  width:max-content;
  min-height:42px;
  align-items:center;
  padding:0 16px;
  border-radius:999px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:900;
}
.lemonlee_app_timeline_item p{
  margin:0 0 12px;
  color:#E1E510;
  font-weight:800;
}
.lemonlee_app_timeline_item ul{
  margin:0;
  padding-left:18px;
  line-height:1.9;
}

.lemonlee_app_faq{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.lemonlee_app_faq details{
  padding:20px;
}
.lemonlee_app_faq summary{
  list-style:none;
  cursor:pointer;
  color:#fff;
  font-weight:900;
}
.lemonlee_app_faq summary::-webkit-details-marker{
  display:none;
}
.lemonlee_app_faq p{
  margin:12px 0 0;
  line-height:1.85;
  color:#f7f7f7;
}

.lemonlee_app_install_head{
  text-align:center;
  margin-bottom:18px;
}
.lemonlee_app_install_head p{
  margin:0;
}
.lemonlee_app_install_grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.lemonlee_app_install_col article{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:8px 14px;
  align-items:start;
  padding:14px;
  border-radius:18px;
  border:2px solid #E1E510;
  background:#73734E;
  margin-bottom:12px;
}
.lemonlee_app_install_col article span{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#2ED822;
  color:#183318;
  font-weight:900;
}
.lemonlee_app_install_col article h4{
  margin:0 0 6px;
  color:#fff;
}
.lemonlee_app_install_col article p{
  margin:0;
  line-height:1.8;
  color:#f7f7f7;
}

.lemonlee_app_trust_grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.lemonlee_app_trust_footer{
  text-align:center;
  margin:16px 0 0;
  font-weight:800;
  color:#fff;
}
.lemonlee_app_invite,
.lemonlee_app_cta{
  text-align:center;
}
.lemonlee_app_invite_code{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  min-height:56px;
  margin:14px 0 16px;
  padding:0 18px;
  border-radius:999px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#E1E510;
  font-size:24px;
  font-weight:900;
  letter-spacing:.08em;
}
.lemonlee_action_center{
  justify-content:center;
}

@media (max-width:1100px){
  .lemonlee_contact_quick_grid,
  .lemonlee_contact_channel_body ul,
  .lemonlee_contact_submit_grid,
  .lemonlee_app_hero_grid,
  .lemonlee_app_adv_grid,
  .lemonlee_app_exp_grid,
  .lemonlee_app_faq,
  .lemonlee_app_install_grid,
  .lemonlee_app_trust_grid{
    grid-template-columns:1fr;
  }

  .lemonlee_contact_hero_wrap{
    min-height:auto;
    display:grid;
    gap:18px;
  }

  .lemonlee_contact_hero_panel{
    position:relative;
    width:auto;
    top:auto;
    right:auto;
    left:auto;
    bottom:auto;
  }
}

@media (max-width:860px){
  .lemonlee_app_stats,
  .lemonlee_app_compare_row{
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .lemonlee_contact_hero_main,
  .lemonlee_contact_hero_panel,
  .lemonlee_contact_quick_item,
  .lemonlee_contact_channel_item,
  .lemonlee_contact_submit_form,
  .lemonlee_contact_submit_info,
  .lemonlee_app_hero_visual,
  .lemonlee_app_hero_intro,
  .lemonlee_app_download,
  .lemonlee_app_adv_item,
  .lemonlee_app_exp_item,
  .lemonlee_app_compare,
  .lemonlee_app_timeline_item,
  .lemonlee_app_install,
  .lemonlee_app_trust_item,
  .lemonlee_app_invite,
  .lemonlee_app_cta{
    padding:18px;
  }

  .lemonlee_app_phone_screen{
    min-height:400px;
  }
}
/* breadcrumb */
.lemonlee_breadcrumb_section{
  padding-top:0;
}
.lemonlee_breadcrumb{
  padding:16px 20px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  border-radius:22px;
}
.lemonlee_breadcrumb span,
.lemonlee_breadcrumb a,
.lemonlee_breadcrumb small{
  color:#fff;
}
.lemonlee_breadcrumb a{
  font-weight:900;
}

/* list + show common */
.lemonlee_list_hero_main,
.lemonlee_list_hero_orbit,
.lemonlee_show_hero_main,
.lemonlee_show_hero_chip,
.lemonlee_list_article,
.lemonlee_side_search,
.lemonlee_side_nav,
.lemonlee_side_hot,
.lemonlee_show_article,
.lemonlee_related{
  padding:24px;
}

.lemonlee_list_hero_main h1,
.lemonlee_show_hero_main h1{
  margin:0 0 14px;
  font-size:clamp(34px,5vw,58px);
  line-height:1.08;
  color:#fff;
}
.lemonlee_list_hero_main p,
.lemonlee_show_hero_main p,
.lemonlee_list_hero_orbit p,
.lemonlee_show_hero_chip p{
  margin:0;
  line-height:1.9;
  color:#f8f8f8;
}

/* list hero */
.lemonlee_list_hero_wrap,
.lemonlee_show_hero_wrap{
  position:relative;
  min-height:620px;
}
.lemonlee_list_hero_main,
.lemonlee_show_hero_main{
  width:min(700px,100%);
  margin:0 auto;
  text-align:center;
}
.lemonlee_list_hero_orbit,
.lemonlee_show_hero_chip{
  position:absolute;
  width:240px;
  text-align:center;
}
.lemonlee_list_hero_orbit i,
.lemonlee_show_hero_chip i{
  width:70px;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-size:24px;
}
.lemonlee_list_hero_orbit h3,
.lemonlee_show_hero_chip h3{
  margin:0 0 10px;
  color:#fff;
}
.lemonlee_list_orbit_a{top:12px; left:0;}
.lemonlee_list_orbit_b{top:110px; right:0;}
.lemonlee_list_orbit_c{bottom:30px; left:90px;}

.lemonlee_show_chip_a{top:10px; left:0;}
.lemonlee_show_chip_b{top:110px; right:0;}
.lemonlee_show_chip_c{bottom:30px; left:100px;}

/* layout */
.lemonlee_list_layout_grid,
.lemonlee_show_layout_grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:18px;
  align-items:start;
}
.lemonlee_list_side_col,
.lemonlee_show_side_col{
  display:grid;
  gap:18px;
  position:sticky;
  top:96px;
}

/* list */
.lemonlee_list_heading{
  margin-bottom:18px;
}
.lemonlee_list_heading h2{
  margin:0 0 10px;
  font-size:34px;
  color:#fff;
}
.lemonlee_list_heading p{
  margin:0;
  line-height:1.88;
  color:#f7f7f7;
}
.lemonlee_list_grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.lemonlee_list_grid_item:nth-child(2),
.lemonlee_list_grid_item:nth-child(5){
  transform:translateY(20px);
}
.lemonlee_list_article{
  height:100%;
}
.lemonlee_list_article_thumb{
  display:block;
  overflow:hidden;
  border-radius:18px;
}
.lemonlee_list_article_thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  border:2px solid #E1E510;
  transition:transform .35s ease;
}
.lemonlee_list_article:hover .lemonlee_list_article_thumb img{
  transform:scale(1.06);
}
.lemonlee_list_article_body{
  padding-top:16px;
}
.lemonlee_list_article_text h5{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.5;
}
.lemonlee_list_article_text h5 a{
  color:#fff;
}
.lemonlee_list_article_text p{
  margin:0;
  line-height:1.82;
  color:#f8f8f8;
}
.lemonlee_list_article_meta{
  margin-top:14px;
}
.lemonlee_list_article_meta time{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#E1E510;
  font-weight:900;
}

/* side */
.lemonlee_side_search h6,
.lemonlee_side_nav h6,
.lemonlee_side_hot h6{
  margin:0 0 14px;
  font-size:18px;
  color:#fff;
}
.lemonlee_side_search_form{
  display:flex;
  gap:10px;
}
.lemonlee_side_search_box{
  flex:1;
}
.lemonlee_side_search_box input{
  width:100%;
  height:44px;
  padding:0 12px;
  border:none;
  border-radius:999px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  outline:none;
}
.lemonlee_side_search_box input::placeholder{
  color:#eee;
}
.lemonlee_side_search_box label{
  position:absolute;
  left:-9999px;
}
.lemonlee_side_search_form button{
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#2ED822;
  color:#173218;
  cursor:pointer;
}
.lemonlee_side_nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.lemonlee_side_nav li a{
  display:flex;
  align-items:center;
  min-height:46px;
  padding:12px 14px;
  border-radius:16px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:900;
}
.lemonlee_side_hot_article{
  display:grid;
  gap:14px;
}
.lemonlee_side_hot_thumb{
  display:block;
  overflow:hidden;
  border-radius:18px;
}
.lemonlee_side_hot_thumb img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:18px;
  border:2px solid #E1E510;
}
.lemonlee_side_hot_body h5{
  margin:0 0 10px;
  line-height:1.5;
}
.lemonlee_side_hot_body h5 a{
  color:#fff;
}
.lemonlee_side_hot_body p{
  margin:0 0 10px;
  line-height:1.82;
  color:#f8f8f8;
}
.lemonlee_side_hot_body time{
  color:#E1E510;
  font-weight:900;
}

/* show */
.lemonlee_show_main_col{
  display:grid;
  gap:18px;
}
.lemonlee_show_article_header{
  margin-bottom:18px;
}
.lemonlee_show_article_header h1{
  margin:0 0 14px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.24;
  color:#fff;
}
.lemonlee_show_article_meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.lemonlee_show_article_meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:800;
}
.lemonlee_show_article_content{
  line-height:2;
  font-size:17px;
  color:#f8f8f8;
}
.lemonlee_show_article_content img{
  max-width:100%;
  height:auto;
  display:block;
  margin:18px auto;
  border-radius:18px;
  border:2px solid #E1E510;
}
.lemonlee_show_article_content h2,
.lemonlee_show_article_content h3,
.lemonlee_show_article_content h4{
  margin:1.2em 0 .6em;
  color:#fff;
}
.lemonlee_show_article_content p{
  margin:0 0 1em;
}
.lemonlee_show_article_content a{
  color:#E1E510;
  text-decoration:underline;
  font-weight:800;
}
.lemonlee_show_article_content blockquote{
  margin:1.2em 0;
  padding:16px 18px;
  border-left:4px solid #E1E510;
  background:rgba(115,115,78,.45);
  border-radius:14px;
}
.lemonlee_show_article_content ul,
.lemonlee_show_article_content ol{
  padding-left:1.4em;
}
.lemonlee_show_article_content table{
  width:100%;
  border-collapse:collapse;
  margin:18px 0;
}
.lemonlee_show_article_content td,
.lemonlee_show_article_content th{
  border:2px solid rgba(225,229,16,.5);
  padding:10px 12px;
}

.lemonlee_show_article_pager{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:22px;
}
.lemonlee_show_prev,
.lemonlee_show_next{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-height:58px;
  padding:14px 16px;
  border-radius:18px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  font-weight:900;
}

.lemonlee_show_share{
  margin-top:20px;
}
.lemonlee_show_share h6{
  margin:0 0 10px;
  font-size:18px;
  color:#fff;
}
.lemonlee_show_share p{
  margin:0 0 16px;
  line-height:1.85;
  color:#f8f8f8;
}
.lemonlee_show_share_actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.lemonlee_show_share_actions a,
.lemonlee_show_share_actions button{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  padding:0 16px;
  border:none;
  border-radius:999px;
  border:2px solid #E1E510;
  background:#73734E;
  color:#fff;
  cursor:pointer;
  font-weight:900;
}

.lemonlee_related h3{
  margin:0 0 14px;
  font-size:24px;
  color:#fff;
}
.lemonlee_related_list{
  display:grid;
  gap:14px;
}
.lemonlee_related_item{
  display:grid;
  grid-template-columns:46px 110px 1fr;
  gap:12px;
  align-items:center;
  padding:12px;
  border-radius:18px;
  border:2px solid #E1E510;
  background:rgba(115,115,78,.38);
}
.lemonlee_related_index{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:2px solid #E1E510;
  background:#2ED822;
  color:#173218;
  font-weight:900;
}
.lemonlee_related_thumb{
  display:block;
  overflow:hidden;
  border-radius:14px;
}
.lemonlee_related_thumb img{
  width:100%;
  height:76px;
  object-fit:cover;
  border-radius:14px;
  border:2px solid #E1E510;
}
.lemonlee_related_body h6{
  margin:0 0 8px;
  line-height:1.5;
  font-size:16px;
}
.lemonlee_related_body h6 a{
  color:#fff;
}
.lemonlee_related_body small{
  color:#E1E510;
  font-weight:800;
}

@media (max-width:1100px){
  .lemonlee_list_layout_grid,
  .lemonlee_show_layout_grid,
  .lemonlee_list_grid{
    grid-template-columns:1fr;
  }

  .lemonlee_list_side_col,
  .lemonlee_show_side_col{
    position:static;
    top:auto;
  }

  .lemonlee_list_hero_wrap,
  .lemonlee_show_hero_wrap{
    min-height:auto;
    display:grid;
    gap:18px;
  }

  .lemonlee_list_hero_orbit,
  .lemonlee_show_hero_chip{
    position:relative;
    width:auto;
    top:auto;
    right:auto;
    bottom:auto;
    left:auto;
  }

  .lemonlee_list_grid_item:nth-child(2),
  .lemonlee_list_grid_item:nth-child(5){
    transform:none;
  }
}

@media (max-width:860px){
  .lemonlee_show_article_pager,
  .lemonlee_related_item{
    grid-template-columns:1fr;
  }

  .lemonlee_related_index{
    width:40px;
    height:40px;
  }
}

@media (max-width:560px){
  .lemonlee_list_hero_main,
  .lemonlee_list_hero_orbit,
  .lemonlee_show_hero_main,
  .lemonlee_show_hero_chip,
  .lemonlee_list_article,
  .lemonlee_side_search,
  .lemonlee_side_nav,
  .lemonlee_side_hot,
  .lemonlee_show_article,
  .lemonlee_related{
    padding:18px;
  }

  .lemonlee_list_article_thumb img{
    height:200px;
  }
}