/*! @web-little */
.login-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #0000004d;
  z-index: 100;
}
.login-modal .content {
  width: 320px;
  height: auto;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px 50px;
  border-radius: 6px;
}
.login-modal .content .title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-bottom: 20px;
}
.login-modal .content .text {
  scrollbar-width: none;
  width: 100%;
  min-width: 0;
  text-decoration-color: #333639;
  color: #333639;
  caret-color: #18a058;
  background-color: #fff;
  font-size: inherit;
  line-height: 34px;
  font-family: inherit;
  border: none;
  outline: none;
  text-align: inherit;
  margin-bottom: 15px;
  border-bottom: 1px solid #eaecf0;
  border-radius: 2px;
  box-sizing: content-box;
  padding: 0 5px;
  box-sizing: border-box;
}
.login-modal .content .text:focus,
.login-modal .content .text:hover,
.login-modal .content .text:active {
  background-color: #fff;
  outline: none;
}
.login-modal .content .text:-webkit-autofill {
  -webkit-text-fill-color: #333 !important;
}
.login-modal .content .text:-internal-autofill-selected {
  background-color: #fff !important;
}
.login-modal .content .btn-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.login-modal .content .btn-list .cancel,
.login-modal .content .btn-list .logout,
.login-modal .content .btn-list .login {
  width: 120px;
  height: 38px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid #cdcdcd;
}

/** @format */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  padding: 0 15px;
  display: flex;
  z-index: 100;
  font-size: 14px;
  font-weight: 400;
  align-items: center;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.7);
  justify-content: space-between;
  border-bottom: 1px solid #eaecf0;
}
.header .title {
  text-align: center;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.header .title .logo-icon {
  background-image: url(//p1.meituan.net/scarlett/b5e2990198fc9379a24d4f837eba41d7668.png);
  background-size: 100%;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: #000;
}
.header .fill-area {
  flex: 1;
}
.header .user-area {
  z-index: 3;
  height: 100%;
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  /* 关键！允许压缩 */
  margin: 0 5px;
}
.header .user-area:hover::after {
  left: 0;
  content: '';
  z-index: 1;
  width: 100%;
  height: 30px;
  bottom: -30px;
  position: absolute;
}
.header .user-area .name {
  overflow: hidden;
  white-space: nowrap;
  /* 不换行 */
  text-overflow: ellipsis;
  /* 超出显示... */
}
.header .user-area .logout {
  left: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: 30px;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: #e7e6e6;
}
.header .user-area:hover .logout {
  opacity: 1;
  z-index: 2;
  bottom: -30px;
}
.header .login-icon {
  background-image: url(//img.meituan.net/dpmobile/c7f0f8348e7515d5efcba8edda5470901548.png.webp);
  background-size: 100%;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.header .spacing-line {
  width: 1px;
  height: 10px;
  margin-left: 10px;
  margin-right: 10px;
  background-color: #e1e1e1;
  flex-shrink: 0;
}
.header .time {
  flex-shrink: 0;
  white-space: nowrap;
}
.headerbox {
  height: 48px;
}

/** @format */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  width: 100%;
  background-color: #fff;
  height: 24px;
}
.footer .link {
  color: #a3a3a3;
}
.footer .link:hover,
.footer .link:link,
.footer .link:visited,
.footer .link:active {
  color: #a3a3a3;
}

.shake,
.shake-little {
  display: inherit;
  transform-origin: center center;
}
.shake:hover,
.shake-little:hover {
  animation-play-state: running;
}
@keyframes shake {
  2% {
    transform: translate(1.5px, 1.5px) rotate(1.5deg);
  }
  4% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg);
  }
  6% {
    transform: translate(1.5px, 2.5px) rotate(1.5deg);
  }
  8% {
    transform: translate(0.5px, 2.5px) rotate(0.5deg);
  }
  10% {
    transform: translate(2.5px, 1.5px) rotate(0.5deg);
  }
  12% {
    transform: translate(-0.5px, -1.5px) rotate(-0.5deg);
  }
  14% {
    transform: translate(1.5px, 2.5px) rotate(-0.5deg);
  }
  16% {
    transform: translate(2.5px, -1.5px) rotate(1.5deg);
  }
  18% {
    transform: translate(2.5px, 2.5px) rotate(-0.5deg);
  }
  20% {
    transform: translate(-0.5px, -1.5px) rotate(1.5deg);
  }
  22% {
    transform: translate(-1.5px, -0.5px) rotate(0.5deg);
  }
  24% {
    transform: translate(2.5px, -1.5px) rotate(1.5deg);
  }
  26% {
    transform: translate(0.5px, 2.5px) rotate(1.5deg);
  }
  28% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg);
  }
  30% {
    transform: translate(0.5px, 2.5px) rotate(1.5deg);
  }
  32% {
    transform: translate(-1.5px, -0.5px) rotate(-0.5deg);
  }
  34% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg);
  }
  36% {
    transform: translate(-1.5px, 0.5px) rotate(1.5deg);
  }
  38% {
    transform: translate(-1.5px, 1.5px) rotate(1.5deg);
  }
  40% {
    transform: translate(2.5px, 0.5px) rotate(0.5deg);
  }
  42% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg);
  }
  44% {
    transform: translate(-0.5px, 0.5px) rotate(0.5deg);
  }
  46% {
    transform: translate(2.5px, 1.5px) rotate(1.5deg);
  }
  48% {
    transform: translate(2.5px, 1.5px) rotate(-0.5deg);
  }
  50% {
    transform: translate(-1.5px, 2.5px) rotate(-0.5deg);
  }
  52% {
    transform: translate(0.5px, -1.5px) rotate(1.5deg);
  }
  54% {
    transform: translate(0.5px, -1.5px) rotate(0.5deg);
  }
  56% {
    transform: translate(1.5px, -1.5px) rotate(-0.5deg);
  }
  58% {
    transform: translate(1.5px, 0.5px) rotate(0.5deg);
  }
  60% {
    transform: translate(-0.5px, 0.5px) rotate(0.5deg);
  }
  62% {
    transform: translate(0.5px, 0.5px) rotate(-0.5deg);
  }
  64% {
    transform: translate(-1.5px, -0.5px) rotate(1.5deg);
  }
  66% {
    transform: translate(-1.5px, 2.5px) rotate(-0.5deg);
  }
  68% {
    transform: translate(-1.5px, 1.5px) rotate(0.5deg);
  }
  70% {
    transform: translate(0.5px, 1.5px) rotate(0.5deg);
  }
  72% {
    transform: translate(-1.5px, 2.5px) rotate(0.5deg);
  }
  74% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg);
  }
  76% {
    transform: translate(0.5px, -1.5px) rotate(1.5deg);
  }
  78% {
    transform: translate(0.5px, 1.5px) rotate(0.5deg);
  }
  80% {
    transform: translate(-0.5px, -0.5px) rotate(0.5deg);
  }
  82% {
    transform: translate(1.5px, 1.5px) rotate(1.5deg);
  }
  84% {
    transform: translate(0.5px, 0.5px) rotate(0.5deg);
  }
  86% {
    transform: translate(-0.5px, 0.5px) rotate(1.5deg);
  }
  88% {
    transform: translate(1.5px, 0.5px) rotate(1.5deg);
  }
  90% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg);
  }
  92% {
    transform: translate(-1.5px, -1.5px) rotate(1.5deg);
  }
  94% {
    transform: translate(-1.5px, 2.5px) rotate(1.5deg);
  }
  96% {
    transform: translate(-1.5px, -1.5px) rotate(1.5deg);
  }
  98% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg);
  }
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake:hover {
  animation-name: shake;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shake-little {
  2% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  4% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  6% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  8% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  10% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  12% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  14% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  16% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  18% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  20% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  22% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  24% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  26% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  28% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  30% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  32% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  34% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  36% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  38% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  40% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  42% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  44% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  46% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  48% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  50% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  52% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  54% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  56% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  58% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  60% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  62% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  64% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  66% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  68% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  70% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  72% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  74% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  76% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  78% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  80% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  82% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  84% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  86% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  88% {
    transform: translate(0px, 0px) rotate(0.5deg);
  }
  90% {
    transform: translate(0px, 1px) rotate(0.5deg);
  }
  92% {
    transform: translate(1px, 1px) rotate(0.5deg);
  }
  94% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  96% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  98% {
    transform: translate(1px, 0px) rotate(0.5deg);
  }
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shake-little:hover {
  animation-name: shake-little;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/** @format */
/** @format */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-overflow-scrolling: touch;
}
input,
button,
textarea {
  border: none;
  outline: none;
  background-color: transparent;
  -webkit-appearance: none;
}
a {
  text-decoration: none;
  outline: none;
}
a:active {
  outline: none;
}
a:focus {
  outline: 0;
}
@font-face {
  font-family: 'MyCustomFont';
  src: url(/fonts/GEETYPEQingKongHeiGB.cdcb9d.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  background: #fff;
  font-family: 'MyCustomFont', Helvetica Neue, PingFang SC, Myriad Pro, Hiragino Sans GB, microsoft yahei;
}
@media screen and (max-width: 801px) {
  .index-page {
    flex-direction: column;
    margin: 0 !important;
  }
  .index-page .bookmark-area {
    padding: 20px 0 !important;
  }
  .index-page .bookmark-area .category-box {
    flex-direction: column;
  }
  .index-page .bookmark-area .category-name {
    padding-left: 10px;
    padding-top: 20px;
  }
  .index-page .user-area {
    width: 100% !important;
    background-color: #fff !important;
    border-top: 1px solid #eaecf0;
    padding: 0 !important;
  }
  .index-page .user-area .user-img {
    display: none;
  }
}
.index-page {
  font-size: 12px;
  margin: 50px 100px 15px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  box-shadow: 4px 5px 6px 4px #0000001a;
}
.index-page .bookmark-area {
  flex: 1;
  padding: 7px 15px 15px 30px;
}
.index-page .bookmark-area .category-box {
  padding-bottom: 0px;
  display: flex;
  justify-content: space-between;
}
.index-page .bookmark-area .category-name {
  font-weight: 600;
  color: #1d1d1f;
  width: 100px;
  display: flex;
  align-items: center;
}
.index-page .bookmark-area .category-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 10px 0;
}
.index-page .bookmark-area .bookmark-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
}
.index-page .bookmark-area .bookmark-icon img {
  width: 100%;
  height: 100%;
}
.index-page .bookmark-area .bookmark-link {
  color: #777;
  padding: 8px 5px 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-page .bookmark-area .bookmark-name {
  width: 100%;
  margin-top: 5px;
  display: block;
  line-height: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}
.index-page .user-area {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f1f1f180;
  padding: 30px;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.index-page .user-area .user-img {
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.index-page .user-area .user-img img {
  width: 100%;
  border-radius: 50%;
  display: 100%;
}
.index-page .user-area .user-intro {
  margin-top: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  font-weight: 400;
  padding-top: 20px;
}
.index-page .user-area .user-intro .use-book {
  margin-bottom: 25px;
  cursor: pointer;
  width: 80px;
}
.index-page .user-area .user-intro .use-book:hover,
.index-page .user-area .user-intro .use-book:link,
.index-page .user-area .user-intro .use-book:visited,
.index-page .user-area .user-intro .use-book:active {
  color: #000;
}
.index-page .user-area .user-intro .use-book img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}


/*# sourceMappingURL=index.270b47772f3ea6df541a.css.map*/