* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

.page {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
}

.carousel-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.carousel-nav {
  position: absolute;
  display: flex;
  gap: 12px;
  bottom: 12px;
  right: 12px;
}

.carousel-btn {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #eee;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  user-select: none;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.notice {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 5px 0;
  height: 48px;
  overflow: hidden;
}

.notice-icon {
  flex-shrink: 0;
  margin-right: 12px;
  animation: pulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #07c160;
}

@keyframes pulse {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.notice-content {
  flex: 1;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
}

.notice-scroll {
  animation: scrollUp 12s ease-in-out infinite;
}

@keyframes scrollUp {
  0%,
  12.5% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-24px);
  }
  37.5% {
    transform: translateY(-48px);
  }
  50% {
    transform: translateY(-72px);
  }
  62.5% {
    transform: translateY(-96px);
  }
  75% {
    transform: translateY(-120px);
  }
  87.5% {
    transform: translateY(-144px);
  }
  to {
    transform: translateY(-168px);
  }
}

.notice-scroll:hover {
  animation-play-state: paused;
}

.notice-item {
  height: 24px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
}

.lottery {
  background: #fff;
  border-radius: 8px;
  margin: 5px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lottery-tabs {
  display: flex;
}

.lottery-tab {
  flex: 1;
  text-align: center;
  padding: 4px 0;
  cursor: pointer;
}

.lottery-title {
  font-size: 18px;
  font-weight: 700;
}

.lottery-date {
  font-size: 18px;
  font-weight: 700;
}

.lottery-tab:first-child {
  border-top-left-radius: 6px;
}

.lottery-tab:last-child {
  border-top-right-radius: 6px;
}

.lottery-tab.active {
  background: #07c160;
  color: #fff;
}

.lottery-body {
  padding: 0;
}

.lottery-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  margin-bottom: 0.2rem;
  width: 100%;
  padding: 0 0.3rem;
}

.countdown {
  color: #e53935;
  font-weight: 700;
}

.lottery-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        margin-bottom: .2rem;
        width: 100%;
        padding: 0 .3rem;
    }

.history-link {
  transition: 0.4s;
  padding: 3px;
  color: #43d36a;
  font-size: 16px;
  text-decoration: underline;
}

.history-link:hover {
  color: #07c160;
  background-color: rgba(0, 189, 126, 0.2);
}

.lottery-balls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0.3rem 0;
  padding: 0 5px;
}

.ball {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(12.5% - 5px);
  min-width: 40px;
  font-size: 15px;
  color: #666;
  justify-content: center;
}

.ball i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ball svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ball-num {
  font-size: 20px;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #666;
  background: #d8d8d8;
}

.ball-red {
  background: url("/static/images/red.webp") no-repeat center center;
  background-size: cover;
}

.ball-blue {
  background: url("/static/images/blue.webp") no-repeat center center;
  background-size: cover;
}

.ball-green {
  background: url("/static/images/green.webp") no-repeat center center;
  background-size: cover;
}

.ball-text {
  font-size: 16px;
  color: #888;
  min-height: 16px;
  line-height: 16px;
  display: block;
}

.ball-plus {
  align-items: center;
  justify-content: center;
}

.icon {
  height: 1em;
  width: 1em;
  line-height: 1em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  fill: currentColor;
}

.lottery-next {
  text-align: center;
  font-size: 16px;
  color: red;
  margin-top: 0.2rem;
}

.banners {
  padding: 0;
  margin: 10px 0 0 0;
  min-height: 301px;
}

@media (min-width: 768px) {
  .banners {
    min-height: 514px;
  }
}

.banner {
  width: 100%;
  display: block;
  margin: 5px 0;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .banner {
    border-radius: 10px;
  }
}

.banner:nth-child(1) {
  animation: slideInRight 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.banner:nth-child(2) {
  animation: slideInLeft 0.8s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.banner:nth-child(3) {
  animation: slideInRight 0.8s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

.banner:nth-child(4) {
  animation: slideInLeft 0.8s ease-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;
}

.banner:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1) saturate(1.1);
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.picks-title {
  font-size: 17px;
  font-weight: 700;
  color: #07c160;
  margin: 5px 0;
  text-align: center;
  background: linear-gradient(135deg, #fff, #f0fdf4);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(7, 193, 96, 0.15);
  border-left: 4px solid #07c160;
  letter-spacing: 0.5px;
}

.picks-box {
  background: #fff;
  box-shadow: 0 2px 8px rgba(7, 193, 96, 0.1);
  border: 1px solid rgba(7, 193, 96, 0.15);
  padding: 12px;
  margin-bottom: 10px;
}

.picks-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  padding: 2px 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.picks-item:hover {
  background: #f0fdf4;
  border-color: #07c160;
  transform: translate(4px);
}

.picks-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  color: #333;
  min-width: 0;
}

.picks-text:first-child {
  flex: 1 1 auto;
}

.picks-text:last-child {
  flex: 0 0 auto;
  text-align: right;
  color: #666;
  font-size: 13px;
  white-space: nowrap;
}

.picks-text .name {
  display: inline-block;
  color: #666;
  font-size: 13px;
  margin-left: 4px;
}

.green-tag {
  display: inline-block;
  background: linear-gradient(135deg, #07c160, #05a04e);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 6px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(7, 193, 96, 0.3);
  animation: blink 0.8s ease-in-out infinite;
  opacity: 0.887838;
}

@keyframes blink {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.text-bold {
  font-weight: 600;
}
.tip-box {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
}
.tip-title {
  position: relative;
  width: 100%;
  height: 4.2rem;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.tip-title img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.tip-list {
  width: 95%;
  margin: auto;
  margin-top: 0.2rem;
}
.tip-title-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  padding: 0 3.5rem;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.1rem;
}
.tip-title-container .left {
  font-size: 0.8rem;
  text-align: left;
  background: linear-gradient(45deg, #ffeb3b, #ffc107);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.8));
}
.tip-title-container .right {
  font-size: 0.8rem;
  text-align: right;
  background: #ffffff40;
  padding: 0.3rem 0.8rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px #0003;
  color: #fff;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .9);
    letter-spacing: .1rem;
}
.tip-notice {
  padding: 0.5rem 0.15rem;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.8rem;
}
.tip-notice .text-1 {
  font-weight: 700;
  color: #333;
  margin-right: 0.15rem;
}
.tip-notice .text-2 {
  color: #666;
}
.tip {
  position: relative;
  width: 100%;
  border-radius: 0 0 0.1rem 0.1rem;
  border-top: 1px solid #eee;
  background: #fff;
  padding: 0;
  margin-bottom: 10px;
}
.tip img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 0;
}

#tip-1-t {
  position: absolute;
  top: 8%;
  left: 30%;
  font-size: clamp(20px, 4vmin, 32px);
  font-weight: 900;
  color: #ffeb3b;
  z-index: 1;
}

#tip-1-1 {
  position: absolute;
  top: 2%;
  left: 25%;
  font-size: clamp(10px, 2vmin, 18px);
  font-weight: 900;
  color: #fff;
  z-index: 1;
}
#tip-1-2 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #ffeb3b;
  font-size: clamp(9px, 2vmin, 17px);
  font-weight: 900;
  top: 28.5%;
  left: 39%;
  z-index: 1;
}

#tip-1-3 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #ffeb3b;
  font-size: clamp(9px, 2vmin, 17px);
  font-weight: 900;
  z-index: 1;
  top: 28.5%;
  left: 46.5%;
}
#tip-1-4 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #ffeb3b;
  font-size: clamp(9px, 2vmin, 17px);
  font-weight: 900;
  z-index: 1;
  top: 28.5%;
  left: 56%;
}
#tip-1-5 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #ffeb3b;
  font-size: clamp(9px, 2vmin, 17px);
  font-weight: 900;
  z-index: 1;
  top: 28.5%;
  left: 61.7%;
}
#tip-1-6 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #ffeb3b;
  font-size: clamp(9px, 1.8vmin, 16px);
  font-weight: 900;
  z-index: 1;
  top: 33.4%;
  left: 35%;
}
#tip-1-7 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #ffeb3b;
  font-size: clamp(9px, 1.8vmin, 16px);
  font-weight: 900;
  z-index: 1;
  top: 33.4%;
  left: 52%;
}
#tip-1-8 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #ffeb3b;
  font-size: clamp(9px, 1.8vmin, 16px);
  font-weight: 900;
  z-index: 1;
  top: 38%;
  left: 24%;
}
#tip-1-9 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #ffeb3b;
  font-size: clamp(9px, 1.8vmin, 16px);
  font-weight: 900;
  z-index: 1;
  top: 38%;
  left: 51%;
}
#tip-1-10 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 3vmin, 28px);
  font-weight: 900;
  z-index: 1;
  top: 61%;
  left: 16%;
}
#tip-1-11 {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 3vmin, 28px);
  font-weight: 900;
  z-index: 1;
  top: 61%;
  left: 33%;
}
#tip-1-12 {
  position: absolute;
  top: 61%;
  left: 49%;
  background: linear-gradient(45deg, #ffa502, #ff9500);
  color: #fff;
  border-radius: .25rem;
  font-weight: 700;
  font-size: clamp(12px, 2.5vmin, 24px);
  padding: 0 .3vw;
  box-shadow: 0 .05rem .2rem #ffa5024d;
  z-index: 1;
}
#tip-1-13 {
  position: absolute;
  top: 78.5%;
  left: 20%;
  background: none;
  border: none;
  padding: 0;
  font-weight: 900;
  color: #ffeb3b;
  font-size: clamp(9px, 1.8vmin, 16px);
  z-index: 1;
}
#tip-1-14 {
  position: absolute;
  top: 84.7%;
  left: 20%;
  background: none;
  border: none;
  padding: 0;
  font-weight: 900;
  color: #ffeb3b;
  font-size: clamp(9px, 1.8vmin, 16px);
  z-index: 1;
}
#tip-2-1 {
  position: absolute;
  top: 2%;
  left: 25%;
  font-size: clamp(10px, 2vmin, 18px);
  font-weight: 900;
  color: #fff;
  z-index: 1;
}

#tip-2-2 {
  position: absolute;
  top: 45%;
  left: 66.5%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 56%;
  z-index: 1;
}

#tip-2-2 .item {
    position: relative;
    border-bottom: none;
    font-size: clamp(9px, 2vmin, 17px);
    color: #000;
    line-height: 1.4;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff;
  }

#tip-2-2 .red-tag {
    position: absolute;
    right: 0;
    color: #dc3545;
    font-weight: 700;
  }


#tip-2-3{
    top: 74.5%;
    left: 48%;
    transform: translate(-50%, -50%);
    position: absolute;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    color: #fff;
    font-weight: 900;
    font-size: clamp(9px, 1.8vmin, 16px);
    z-index: 1;
    white-space: nowrap;
  }

#tip-2-3 .red-tag {
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff;
  right: 0;
  color: #dc3545;
  font-weight: 700;
}

#tip-2-4 {
  top: 83%;
  left: 48%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(9px, 1.8vmin, 16px);
  z-index: 1;
  white-space: nowrap;
}

#tip-2-4 .red-tag {
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff;
  right: 0;
  color: #dc3545;
  font-weight: 700;
}

#tip-2-5 {
  top: 93%;
  left: 48%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(9px, 1.8vmin, 16px);
  z-index: 1;
  white-space: nowrap;
}

#tip-2-5 .red-tag {
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff;
  right: 0;
  color: #dc3545;
  font-weight: 700;
}

#tip-2-6 {
  top: 84%;
  left: 61%;
  position: absolute;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  color: red;
  font-weight: 900;
  font-size: clamp(9px, 1.8vmin, 16px);
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff;
  z-index: 1;
  white-space: nowrap;
}

#tip-2-7 {
  top: 89%;
  left: 61%;
  position: absolute;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  color: red;
  font-weight: 900;
  font-size: clamp(9px, 1.8vmin, 16px);
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, 0 2px 0 #fff;
  z-index: 1;
  white-space: nowrap;
}

#tip-3-1{
  top: 6%;
  left: 8%;
  position: absolute;
  color: #fff;
  font-weight: 900;
  font-size: clamp(10px, 2vmin, 18px);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  z-index: 1;
}

#tip-3-2{
    top: 26.5%;
    left: 7.5%;
    font-size: clamp(18px, 3vmin, 32px);
    position: absolute;
      color: #fff;
      font-weight: 900;
      text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
      z-index: 1;
    }
#tip-3-3 {
          top: 26.5%;
            left: 21.5%;
      font-size: clamp(18px, 3vmin, 32px);
      position: absolute;
      color: #fff;
      font-weight: 900;
      text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
      z-index: 1;
    }
#tip-3-4 {
      top: 40.5%;
        left: 15%;
  font-size: clamp(18px, 3vmin, 32px);
  position: absolute;
  color: #fff;
  font-weight: 900;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  z-index: 1;
}
#tip-3-5 {
  top: 62.5%;
    left: 15%;
  font-size: clamp(18px, 3vmin, 32px);
  position: absolute;
  color: #fff;
  font-weight: 900;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  z-index: 1;
}
#tip-3-6 {
      top: 76.5%;
        left: 7.5%;
  font-size: clamp(18px, 3vmin, 32px);
  position: absolute;
  color: #fff;
  font-weight: 900;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  z-index: 1;
}
#tip-3-7 {
      top: 76.5%;
        left: 21.5%;
  font-size: clamp(18px, 3vmin, 32px);
  position: absolute;
  color: #fff;
  font-weight: 900;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  z-index: 1;
}

#tip-3-8 {
    top: 26.5%;
    left: 40%;
    font-size: clamp(20px, 4vmin, 32px);
        position: absolute;
          color: #fff;
          font-weight: 900;
          text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
          z-index: 1;
  }

#tip-4-1{
    top: 16%;
    left: 45%;
    position: absolute;
      color: #fff;
      font-weight: 900;
      font-size: clamp(10px, 2vmin, 18px);
      text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
      z-index: 1;
  }

#tip-4-2{
    top: 50%;
      left: 37%;
          font-size: clamp(26px, 9vmin, 80px);
    position: absolute;
    font-weight: 900;
    z-index: 1;}
#tip-4-3 {
      top: 50%;
        left: 67.5%;
      font-size: clamp(26px, 9vmin, 80px);
  position: absolute;
  font-weight: 900;
  z-index: 1;
}

#tip-4-4 {
  top: 71.5%;
    left: 65%;
    font-size: clamp(26px, 6vmin, 46px);
    color: #000;
    text-shadow: none;
  position: absolute;
  font-weight: 900;
  z-index: 1;
}

.tip-m-1{
    width: 100%;
    border-radius: 0 0 .1rem .1rem;
    padding: .3rem;
    background: #fff;
  }

.tip-m-1-title{
    margin: .2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .1rem;
    font-size: 1rem;
    font-weight: 600;
  }
.tip-m-1-title2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: .2rem 0;
  padding: .1rem;
  font-size: 1rem;
  font-weight: 600;
  gap: 6px;
}

.tip-m-1-item {
      line-height: 1rem;
        font-size: .9rem;
        font-weight: 700;
        padding: .3rem 0;
        text-align: center;
        margin: .3rem 0;
        border: 2px solid #000 !important;
          border-radius: .5rem !important;
          box-sizing: border-box;
          overflow: hidden;
}

.tip-m-1 .color-1{
  color: #1e90ff;
}
.tip-m-1 .color-2{
  background: #ffeb3b;
}
.tip-m-1 .color-3{
  color: red;
  background: #ffeb3b;
}
.tip-m-1 .color-4 {
  color: red;
}
.tip-m-1 .color-5 {
  color: #000;
  background: #ffeb3b;
}
.tip-m-1 .color-6 {
  color: #080;
}

.tip-m-1 .color-7 {
  color: #00f;
}

.tip-m-1 .color-8 {
  background:#fcfa0c;
}
.tip-m-1 .color-9 {
  color: #07c160;
}

.tip-list-box {
   width: 100%;
   border-radius: 0 0 .1rem .1rem;
    border-top: 1px solid #eee;
    padding: .3rem;
    background: #fff;
 }

.tip-list-box .title{
  margin: .2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tip-list-box .title .left {
  text-align: left;
  padding: .1rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}
.tip-list-box .title .right {
  text-align: right;
  padding: .1rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.tip-m-2 {
  width: 100%;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: .3rem;
  overflow: hidden;
}
.tip-m-2 .head{
  background: #ff9800;
        font-weight: 700;
        color: #fff;
            display: flex;
              border-bottom: 1px solid #ddd;
}

.tip-m-2 .text{
      flex: 1;
        padding: .4rem .2rem;
        text-align: center;
        border-right: 1px solid #ddd;
        font-size: 1rem;
            line-height: 1rem;
            font-weight: 700;
}
.tip-m-2 .text2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  padding: .4rem .2rem;
  text-align: center;
  border-right: 1px solid #ddd;
  font-size: 1rem;
  font-weight: 600;
}

.tip-m-2 .text:last-child{
  border-right: none;
}
.tip-m-2 .text2:last-child {
  border-right: none;
}

.tip-m-2 .item{
  display: flex;
  border-bottom: 1px solid #ddd;
}

.tip-m-2 .color-1 {
  color: #b300d2;
}

.tip-m-2 .color-2 {
  color: red;
}

.tip-m-2 .color-3 {
  color: #b30000;
}

.tip-m-2 .color-4 {
  color: red;
  background: #ffeb3b;
  line-height: 1.2;
}

.tip-m-2 .color-5 {
  color: red;
  background: #ffeb3b;
  line-height: 1.2;
}

.tip-m-2 .color-5 {
  color: #000;
  background: #ffeb3b;
  line-height: 1.2;
}

.tip-m-2 p {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
.tip-m-3{
        margin-bottom: .5rem;
        padding: .3rem .5rem;
        background: #fff;
}
.tip-m-3 .item {
      border-bottom: 2px solid #000;
        margin-bottom: .5rem;
        padding: .3rem .5rem;
        background: #fff;
}

.tip-m-3 .row{
      display: flex;
        align-items: center;
        padding: .25rem 0;
        font-size: 1rem;
        line-height: 1.5;
        border-bottom: 1px solid #e5e5e5;
}
.tip-m-3 .row:last-child {
  border-bottom: none;
}
.tip-m-3 .text-1 {
    color: #000;
      font-weight: 600;
      min-width: 90px;
      flex-shrink: 0;
}
.tip-m-3 .text-2 {
  color: red;
  font-weight: 600;
  min-width: 90px;
  flex: 1;
}
.tip-m-3 .text-3 {
  color: #07c160;
  font-weight: 600;
  min-width: 90px;
  flex: 1;
}
.tip-m-3 .color-1 {
  color: red;
  background: #ffeb3b;
}

.tip-m-4 {
  width: 100%;
  border-radius: 0 0 .1rem .1rem;
  padding: .3rem;
  background: #fff;
}
.tip-m-4 .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: bold;
}
.tip-m-4 .title2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  padding: 0 30px;
}

@media (min-width: 768px) {
  .tip-m-4 .title2 {
    padding: 0 100px;
  }
}

.tip-m-4 .item{
      line-height: 1rem;
        font-size: .9rem;
        font-weight: 700;
        border-bottom: 2px solid black;
          padding: .3rem 0;
          text-align: center;
            margin: .3rem 0;
}
.tip-m-4 .color-1{
  color: #07c160;
}

.tip-m-4 .color-2 {
  background: #ffeb3b;
}

.tip-m-4 .color-3 {
  color: red;
  background: #ffeb3b;
}

.tip-m-4 .color-4 {
  color: #000;
  background: #ffeb3b;
}
.tip-m-4 .color-5 {
  color: #00f;
}
.tip-m-4 .color-6 {
    color: purple;
  }
.tip-m-4 .color-7 {
  background-color: #fcfa0c;
}
footer {
  font-size: 14px;
  text-align: center;
  padding: 20px;
  color: #666;
}

footer img{
  width: 100%;
    height: auto;
    display: block;
}

.illustration {
  padding: 0;
  margin: 10px 0 0 0;
  min-height: 301px;
}

@media (min-width: 768px) {
  .illustration {
    min-height: 514px;
  }
}

.illustration-item {
  width: 100%;
  display: block;
  margin: 5px 0;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .illustration-item {
    border-radius: 10px;
  }
}

.illustration-item:nth-child(1) {
  animation: slideInRight 0.8s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.illustration-item:nth-child(2) {
  animation: slideInLeft 0.8s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.illustration-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1) saturate(1.1);
}