* {
  margin: 0;
  padding: 0;
  font-size: border-box;
}
body {
  background-color: #d5ffd9;
}
body .mainHome {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  width: 60vw;
  min-height: 100vh;
  left: 20vw;
  top: 0;
  padding: 20px 0;
  animation: offMainHomeAni 1.5s ease-out 1 both;
  z-index: -10;
}
body .mainHome .mainHomeHero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 20px;
  background: linear-gradient(135deg, #acfcbe 0%, #7df58e 50%, #5ff864 100%);
  box-shadow: 0px 10px 30px rgba(95, 248, 100, 0.4);
  overflow: hidden;
}
body .mainHome .mainHomeHero .heroAvatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #d5ffd9;
  box-shadow: 0px 5px 20px rgba(37, 208, 41, 0.3);
}
body .mainHome .mainHomeHero .heroAvatar ion-icon {
  font-size: 4em;
  color: #25d029;
}
body .mainHome .mainHomeHero .heroInfo {
  text-align: center;
  margin-top: 15px;
}
body .mainHome .mainHomeHero .heroTitle {
  font-size: 2.2em;
  font-weight: 700;
  color: #1a8c1d;
  letter-spacing: 2px;
}
body .mainHome .mainHomeHero .heroSubtitle {
  font-size: 1em;
  color: #2ea832;
  margin-top: 8px;
  opacity: 0.9;
}
body .mainHome .mainHomeHero .heroDecor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
body .mainHome .mainHomeHero .heroDecor span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: floatBubble 3s ease-in-out infinite;
}
@keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-10px) scale(1.1);
    opacity: 0.5;
  }
}
body .mainHome .mainHomeHero .heroDecor span:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
body .mainHome .mainHomeHero .heroDecor span:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}
body .mainHome .mainHomeHero .heroDecor span:nth-child(3) {
  width: 25px;
  height: 25px;
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}
body .mainHome .mainHomeNav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
}
body .mainHome .mainHomeNav .navItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
  border-radius: 15px;
  background: #acfcbe;
  box-shadow: 0px 5px 15px rgba(172, 252, 190, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}
body .mainHome .mainHomeNav .navItem .navIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #5ff864;
  box-shadow: 0px 3px 10px rgba(95, 248, 100, 0.5);
}
body .mainHome .mainHomeNav .navItem .navIcon ion-icon {
  font-size: 1.5em;
  color: #1a8c1d;
}
body .mainHome .mainHomeNav .navItem .navLabel {
  margin-top: 12px;
  font-size: 0.95em;
  font-weight: 600;
  color: #1a8c1d;
}
body .mainHome .mainHomeNav .navItem .navCount {
  margin-top: 5px;
  font-size: 0.8em;
  color: #49d03f;
  opacity: 0.8;
}
body .mainHome .mainHomeNav .navItem:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(95, 248, 100, 0.5);
}
body .mainHome .mainHomeRecent {
  width: 100%;
  padding: 25px;
  border-radius: 15px;
  background: #acfcbe;
  box-shadow: 0px 5px 15px rgba(172, 252, 190, 0.6);
}
body .mainHome .mainHomeRecent .recentTitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2em;
  font-weight: 600;
  color: #1a8c1d;
  margin-bottom: 20px;
}
body .mainHome .mainHomeRecent .recentTitle ion-icon {
  font-size: 1.2em;
}
body .mainHome .mainHomeRecent .recentList {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body .mainHome .mainHomeRecent .recentItem {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 10px;
  background: #d5ffd9;
  transition: all 0.3s ease;
}
body .mainHome .mainHomeRecent .recentItem .recentDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ff864;
  box-shadow: 0 0 8px rgba(95, 248, 100, 0.8);
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}
body .mainHome .mainHomeRecent .recentItem .recentText {
  flex: 1;
  margin-left: 15px;
  font-size: 0.95em;
  color: #2ea832;
}
body .mainHome .mainHomeRecent .recentItem .recentDate {
  font-size: 0.8em;
  color: #49d03f;
  opacity: 0.7;
}
body .mainHome .mainHomeRecent .recentItem:hover {
  background: #c5f5c9;
  transform: translateX(5px);
}
@keyframes offMainHomeAni {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}
body .mainHome.onMainHome {
  animation: onMainHomeAni 0.5s ease-out 1 both;
  z-index: 10;
}
@keyframes onMainHomeAni {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
body .mainPaper {
  display: flex;
  position: relative;
  width: 60vw;
  height: 100vh;
  left: 20vw;
  top: 0;
  animation: offMainPaperAni 1.5s ease-out 1 both;
  overflow: hidden;
  z-index: -10;
}
body .mainPaper .mainPaperList {
  display: grid;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  row-gap: 10px;
}
body .mainPaper .mainPaperList .mainPaperItem {
  display: flex;
  align-items: center;
  width: 100%;
  height: 250px;
  border-radius: 15px;
  background: #acfcbe;
  box-shadow: 0px 0px 15px rgba(172, 252, 190, 0.9);
}
body .mainPaper .mainPaperList .mainPaperItem .mainPaperItemBody {
  display: flex;
  width: calc(100% - 64px - 10px);
  height: 100%;
  left: 0;
}
body .mainPaper .mainPaperList .mainPaperItem .mainPaperItemFooter {
  display: flex;
  width: 64px;
  height: 80%;
  border-radius: 10px;
  background: #5ff864;
  box-shadow: 0px 0px 10px rgba(95, 248, 100, 0.9);
}
body .mainPaper .mainPaperList .mainPaperItem .mainPaperItemFooter a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
body .mainPaper .mainPaperList .mainPaperItem .mainPaperItemFooter a ion-icon {
  display: flex;
  font-size: 1.5em;
  color: #49d03f;
  animation: mainPaperItemFooterAni 1.5s ease-out infinite;
  animation-direction: alternate;
}
@keyframes mainPaperItemFooterAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes offMainPaperAni {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}
body .mainPaper.onMainPaper {
  animation: onMainPaperAni 0.35s ease-in 1 both;
  z-index: 10;
}
@keyframes onMainPaperAni {
  0% {
    width: 15px;
    height: 15px;
    left: calc(92vw - 26.25px);
    top: calc(84vh - 26.25px);
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 60vw;
    height: auto;
    left: 20vw;
    top: 0;
    overflow: visible;
    opacity: 1;
  }
}
body .float {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 15px;
  height: 15px;
  bottom: 16vh;
  right: 8vw;
  border-radius: 7.5px;
  overflow: hidden;
  background: #d5ffd9;
  transition: border-radius 0.75s ease-out, width 0.75s ease-out, height 0.75s ease-out, bottom 0.75s ease-out, right 0.75s ease-out, box-shadow 0.75s ease-out 0.5s;
  z-index: 1000;
}
body .float .menu {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #d5ffd9;
}
body .float .menu li {
  list-style: none;
}
body .float .menu li a {
  display: block;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 1.2em;
  text-decoration: none;
  color: #25d029;
}
body .float .menu li a ion-icon {
  padding-left: 16.75px;
}
body .float .floatCover {
  display: block;
  position: absolute;
  width: 52.5px;
  height: 52.5px;
  bottom: 0;
  border-radius: 50%;
  background-color: #f0f9f0;
  transition: all 0.3s ease-in 0.2s;
}
body .float .floatCover ion-icon {
  display: none;
  position: absolute;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16.75px;
  font-size: 1.2em;
  color: #25d029;
}
body .float .floatCover.menuHome .floatLinkHome {
  display: block;
}
body .float .floatCover.menuPaper .floatLinkPaper {
  display: block;
}
body .float .floatCover.menuPricetags .floatLinkPricetags {
  display: block;
}
body .float .floatCover.menuFloder .floatLinkFolder {
  display: block;
}
body .float .floatCover.menuBookmarks .floatLinkBookmarks {
  display: block;
}
body .float .floatCover.menuAbout .floatLinkInformation {
  display: block;
}
body .float:hover,
body .float.onMenu {
  width: 52.5px;
  height: 52.5px;
  bottom: calc(16vh - (52.5px - 15px) / 2);
  right: calc(8vw - (52.5px - 15px) / 2);
  border-radius: 26.25px;
  background-color: #d5ffd9;
  box-shadow: 0px 0px 15px rgba(82, 244, 104, 0.9);
  transition: all 0.3s ease-in;
}
body .float:hover .menu,
body .float.onMenu .menu {
  display: block;
}
body .float.active {
  width: 52.5px;
  height: 422.5px;
  bottom: calc(16vh - (52.5px - 15px) / 2);
  right: calc(8vw - (52.5px - 15px) / 2);
  border-radius: 26.25px;
  background-color: #d5ffd9;
  box-shadow: 0px 0px 15px rgba(82, 244, 104, 0.9);
  transition: all 0.3s ease-in;
}
body .float.active .menu {
  display: block;
}
body .float.active .floatCover {
  background-color: #d5ffd9;
  transition: all 0.3s ease-in 0.2s;
}
