/* public */
body {
  font-size: 14px;
  background-color: #e9eef5;
  margin: 0;
  background-size: 100%;
  background-repeat: repeat;
}

.dropdown-item{
  font-size: 14px;
}

.logo {
  width: 48px;
}

.pointer {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #36c;
}

.f13 {
  font-size: 13px !important;
}

.f15 {
  font-size: 15px !important;
}

.dc {
  color: #36c !important;
}

/* header */
.header {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  position: sticky;
  z-index: 1000;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3px);
}

.header .nav-link {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.user-btn {
  font-size: 32px !important;
  color: #999;
  cursor: pointer;
}

/* footer */
.footer {
  font-size: 14px;
  position: relative;
}

.footer a {
  font-size: 14px;
}

/* my */
.my-item {
  display: flex;
  margin: 8px 0;
  align-items: center
}

.my-item>span:first-child {
  width: 100px;
  text-align: right;
  color: #999;
}

.my-item>span:nth-child(2) {
  flex: 1;
  color: #666;
}

.my-item>button:nth-child(3) {
  color: #36c;
}

.glowing-text {
  font-size: 2rem;
  background: linear-gradient(to right, brown, #36c, rgb(192, 192, 2));
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.an-right {
  transform: translateX(20px);
  opacity: 0;
  transition: .5s;
}

.an-bottom {
  transform: translateY(20px);
  opacity: 0;
  transition: .5s;
}

.an-left {
  transform: translateX(-20px);
  opacity: 0;
  transition: .5s;
}

.an-center {
  opacity: 0;
  transition: .5s;
  transform: scale(.8);
}

.an-nor {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.decorated-text {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  letter-spacing: 2px;
}

.decorated-text::before,
.decorated-text::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #ccc;
}

.decorated-text::before {
  margin-right: 20px;
}

.decorated-text::after {
  margin-left: 20px;
}