*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "lexendDeca";
  src: url("./LexendDeca-VariableFont_wght.ttf");
}
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  font-family: "lexendDeca";
  display: flex;
  flex-direction: column;
}
body:has(#menu_mask.active), body:has(#search_mask.active) {
  position:fixed;
  overflow-y: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

input {
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.container .container_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .container_title h2 {
  font-weight: 900;
  font-size: 22px;
  color: #000000;
}
.container .container_title a {
  height: 38px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #E5D5FF;
  font-size: 12px;
  color: #000000;
  padding: 0 16px;
}
.container .container_title a:hover {
  color: #4F4FF4;
}
.container .container_title a img {
  margin-left: 4px;
  margin-top: 2px;
}

header {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
  z-index: 1000;
  position: sticky;
  top: 0;
}

/* 当页面向下滚动时，固定 header 在顶部 */
header.fixed {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* 确保 header 在最上层 */
  transition: transform 0.3s ease; /* 添加平滑过渡 */
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
header .container .menu_branch {
  display: flex;
  align-items: center;
}
header .container .menu_branch .menu {
  margin-right: 8px;
}
header .container .weather {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 18px;
}
header .container .weather img {
  margin-right: 2px;
}
header .container .search_trigger {
  flex: 1;
  margin-left: 12px;
  border: 2px solid #F0F0F0;
  display: flex;
  align-items: center;
  height: 40px;
  border-radius: 21px;
  padding-left: 16px;
  font-size: 14px;
  color: #BBBBBB;
}
header .container .search_trigger img {
  margin-right: 6px;
}

.search_box {
  background: linear-gradient(to bottom, #ECE9FF 0%, #FFFFFF 100%);
  background-size: 100% 200px;
  background-repeat: no-repeat;
  padding-top: 25px;
  height: 200px;
}
.search_box .container .search_tip {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 30px;
  color: #000000;
  line-height: 40px;
  margin-bottom: 16px;
}
.search_box .container .search_tip img {
  margin-left: 6px;
}
.search_box .container .form form {
  position: relative;
}
.search_box .container .form form input {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  text-indent: 1em;
}
.search_box .container .form form button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 40px;
  border-radius: 21px;
  background-color: #4F4FF4;
  border: none;
  outline: none;
  padding: 0 24px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.search_box .container .form form button:hover {
  filter: brightness(0.9);
}
@media (max-width: 767px) {
  .search_box {
    padding-top: 16px;
    height: 186px;
  }
  .search_box .container .search_tip {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .search_box .container .search_tip img {
    height: 32px;
  }
}

.state {
  margin-top: -42px;
}
.state .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.state .container li {
  width: calc((100% - 24px) / 3);
  border-radius: 12px;
  overflow: hidden;
}
.state .container li:nth-child(n+4) {
  margin-top: 12px;
}
.state .container li a {
  position: relative;
  display: block;
}
.state .container li a .thum {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
}
.state .container li a .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}
.state .container li a:hover .thum img {
  transform: scale(1.1);
}
.state .container li a span {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  padding: 8px 10px;
}
@media (max-width: 767px) {
  .state .container li {
    width: calc((100% - 10px) / 3);
  }
  .state .container li:nth-child(n+4) {
    margin-top: 5px;
  }
}

.banner_ad_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 24px;
}
.banner_ad_box::after {
  content: "Advertisement";
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .banner_ad_box {
    margin-top: 14px;
  }
}

.latest_story {
  margin-top: 24px;
  flex: 1;
}
.latest_story .stories_main {
  margin-top: 12px;
}
.latest_story .stories_main .commend {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.latest_story .stories_main .commend .thum {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
}
.latest_story .stories_main .commend .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}
.latest_story .stories_main .commend:hover .thum img {
  transform: scale(1.05);
}
.latest_story .stories_main .commend dl {
  width: 100%;
  padding: 24px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 47%, rgba(0, 0, 0, 0.8) 100%);
}
.latest_story .stories_main .commend dl dd:nth-child(1) {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 16px;
}
.latest_story .stories_main .commend dl dt {
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 32px;
  margin-top: 8px;
}
.latest_story .stories_main .commend dl dd:nth-child(3) {
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 16px;
  margin-top: 8px;
}
.latest_story .stories_main .commend dl dd:nth-child(4) {
  height: 40px;
  background: #FFFFFF;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 40px;
  padding: 0 16px;
  margin-top: 16px;
  display: inline-block;
}
.latest_story .sort dl dd {
  font-size: 16px;
  color: #999999;
  line-height: 22px;
}
.latest_story .sort dl dt {
  font-weight: 900;
  font-size: 22px;
  color: #000000;
  line-height: 32px;
  margin-top: 4px;
}
.latest_story .sort .sort_by {
  position: relative;
  user-select: none;
  margin-top: 12px;
}
.latest_story .sort .sort_by nav {
  position: absolute;
  z-index: 9999;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  top: calc(100% + 10px);
  padding: 10px 0;
}
.latest_story .sort .sort_by nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 20px;
  font-size: 14px;
  color: #666666;
  line-height: 18px;
}
.latest_story .sort .sort_by nav a.active, .latest_story .sort .sort_by nav a:hover {
  color: #4F4FF4;
}
.latest_story .sort .sort_by h3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  border-radius: 12px;
  padding: 14px 16px;
  height: 48px;
  background: #F5F5F5;
}
.latest_story .sort .sort_by h3 img {
  height: 16px;
}
.latest_story .sort .sort_by.active nav {
  display: flex;
}
.latest_story .sort .sort_by.active h3 img {
  transform: rotateZ(180deg);
}
@media (max-width: 767px) {
  .latest_story {
    margin-top: 14px;
  }
  .latest_story .stories_main .commend .thum {
    aspect-ratio: 1/1;
  }
}

.story_list {
  margin-top: 16px;
}
.story_list li + li {
  margin-top: 16px;
}
.story_list li a {
  display: flex;
  align-items: center;
}
.story_list li a .thum {
  border-radius: 12px;
  overflow: hidden;
  margin-right: 16px;
}
.story_list li a .thum {
  width: 180px;
  aspect-ratio: 1.5;
  overflow: hidden;
}
.story_list li a .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}
.story_list li a dl {
  flex: 1;
}
.story_list li a dl dd:nth-child(1) {
  font-weight: 500;
  font-size: 12px;
  color: #4F4FF4;
  line-height: 16px;
}
.story_list li a dl dt {
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 8px 0;
}
.story_list li a dl dd:nth-child(2) {
  font-size: 14px;
  color: #999999;
  line-height: 16px;
  margin-bottom: 8px;
}
.story_list li a dl dt:nth-child(1) {
  margin-top: 0;
}
.story_list li a dl dd:nth-child(3) {
  font-size: 12px;
  color: #666666;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.story_list li a:hover .thum img {
  transform: scale(1.1);
}
.story_list li a:hover dl dt {
  text-decoration: underline;
}
.story_list li.list_ad {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.story_list li.list_ad::after {
  content: "Advertisement";
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .story_list {
    margin-top: 14px;
  }
  .story_list li + li {
    margin-top: 12px;
  }
  .story_list li a .thum {
    width: 120px;
    aspect-ratio: 1/1;
    margin-right: 12px;
  }
  .story_list li a dl dt {
    font-size: 16px;
  }
}

.story_item_box {
  margin-bottom: 24px;
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}
.story_item_box .container .swiper_box {
  margin-top: 12px;
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide {
  background: #F5F5F5;
  border-radius: 12px;
  overflow: hidden;
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide a {
  display: block;
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide a .thum {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide a .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide a dl {
  padding: 16px;
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide a dl dt {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 22px;
  margin-bottom: 8px;
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide a dl dd {
  font-size: 12px;
  color: #666666;
  line-height: 16px;
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide a:hover .thum img {
  transform: scale(1.1);
}
.story_item_box .container .swiper_box .swiper-wrapper .swiper-slide a:hover dl dt {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .story_item_box {
    margin-bottom: 14px;
  }
}

footer {
  background-color: #000;
  margin-top: 40px;
  padding-bottom: 24px;
  padding-top: 24px;
}
footer .container .branch {
  display: block;
  margin-bottom: 24px;
}
footer .container .category {
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #222222;
}
footer .container .category .category_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
footer .container .category .category_trigger h3 {
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 20px;
}
footer .container .category .category_trigger img {
  transform: rotateZ(180deg);
}
footer .container .category nav {
  margin-top: 8px;
  display: none;
  flex-direction: column;
  padding: 0 16px 16px;
}
footer .container .category nav a {
  font-size: 14px;
  color: #999999;
  line-height: 18px;
}
footer .container .category nav a + a {
  margin-top: 20px;
}
footer .container .category.active nav {
  display: flex;
}
footer .container .category.active .category_trigger img {
  transition: all 0.3s;
  transform: rotateZ(0);
}
footer .container > nav {
  margin-top: 24px;
  display: flex;
  align-items: center;
  border-top: 1px solid #222222;
  padding-top: 24px;
  padding-bottom: 16px;
}
footer .container > nav a {
  font-size: 12px;
  color: #999999;
  line-height: 16px;
}
footer .container > nav a + a {
  margin-left: 24px;
}
footer .container > p {
  font-size: 12px;
  color: #666666;
  line-height: 16px;
}

#menu_mask {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
#menu_mask.active {
  display: block;
}
#menu_mask .menu_content {
  width: 280px;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
#menu_mask .menu_content .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
  padding: 0 16px;
}
#menu_mask .menu_content .category_box {
  flex: 1;
  overflow-y: scroll;
  padding: 12px 16px;
}
#menu_mask .menu_content .category_box .category {
  border-bottom: 1px solid #E6E7EB;
}
#menu_mask .menu_content .category_box .category .category_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
#menu_mask .menu_content .category_box .category .category_trigger h3 {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
}
#menu_mask .menu_content .category_box .category .category_trigger img {
  transform: rotateZ(180deg);
}
#menu_mask .menu_content .category_box .category nav {
  display: none;
  flex-direction: column;
  padding: 10px 0 24px;
}
#menu_mask .menu_content .category_box .category nav a {
  font-size: 14px;
  color: #666666;
  line-height: 18px;
}
#menu_mask .menu_content .category_box .category nav a + a {
  margin-top: 24px;
}
#menu_mask .menu_content .category_box .category.active .category_trigger img {
  transform: rotateZ(0);
}
#menu_mask .menu_content .category_box .category.active nav {
  display: flex;
}

#search_mask {
  background-color: #fff;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
}
#search_mask.active {
  display: block;
}
#search_mask .header {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08);
}
#search_mask .header .container {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#search_mask .header .container .form {
  flex: 1;
  margin-right: 12px;
}
#search_mask .header .container .form form {
  position: relative;
}
#search_mask .header .container .form form input {
  width: 100%;
  height: 40px;
  border-radius: 21px;
  text-indent: 2em;
  border: 2px solid #F0F0F0;
}
#search_mask .header .container .form form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
#search_mask .header .container .cancel {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
}
#search_mask .search_recommend {
  height: calc(100% - 56px);
  overflow-y: scroll;
  padding: 16px 0;
}
#search_mask .search_recommend h3 {
  font-size: 16px;
  color: #999999;
  line-height: 20px;
  margin-bottom: 16px;
  font-weight: 400;
}
#search_mask .search_recommend .recommend_main li + li {
  margin-top: 12px;
}
#search_mask .search_recommend .recommend_main li a {
  display: flex;
  align-items: center;
}
#search_mask .search_recommend .recommend_main li a .thum {
  border-radius: 8px;
  overflow: hidden;
  margin-right: 8px;
}
#search_mask .search_recommend .recommend_main li a .thum {
  width: 60px;
  aspect-ratio: 1;
  overflow: hidden;
}
#search_mask .search_recommend .recommend_main li a .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}
#search_mask .search_recommend .recommend_main li a dl {
  flex: 1;
}
#search_mask .search_recommend .recommend_main li a dl dt {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
}
#search_mask .search_recommend .recommend_main li a dl dd {
  font-size: 14px;
  color: #999999;
  line-height: 16px;
  margin-top: 8px;
}
#search_mask .search_recommend .recommend_main li a:hover .thum img {
  transform: scale(1.1);
}
#search_mask .search_recommend .recommend_main li a:hover dl dt {
  text-decoration: underline;
}
#search_mask .search_recommend .recommend_list {
  margin-top: 18px;
}
#search_mask .search_recommend .recommend_list li + li {
  margin-top: 16px;
}
#search_mask .search_recommend .recommend_list li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
}
#search_mask .search_recommend .recommend_list li a:hover {
  text-decoration: underline;
}
#search_mask .search_recommend .recommend_list li a::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 3px;
  background: url("../img/adress.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.story_list_2 {
  margin-top: 16px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}
.story_list_2 li {
  width: calc(50% - 6px);
  margin-bottom: 16px;
}
.story_list_2 li a {
  background-color: #F5F5F5;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.story_list_2 li a .thum {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
}
.story_list_2 li a .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}
.story_list_2 li a dl {
  padding: 16px;
}
.story_list_2 li a dl dt {
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .story_list_2 li a dl dt {
    font-size: 16px;
    line-height: 1.4em;
  }
}
.story_list_2 li a dl dd {
  font-size: 12px;
  color: #666666;
  line-height: 16px;
  margin-top: 8px;
}
.story_list_2 li a:hover .thum img {
  transform: scale(1.1);
}
.story_list_2 li a:hover dl dt {
  text-decoration: underline;
}
.story_list_2 li.list_ad {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.story_list_2 li.list_ad::after {
  content: "Advertisement";
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .story_list_2 {
    margin-top: 14px;
  }
  .story_list_2 li {
    width: 100%;
  }
}

.state_list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-auto-flow: row dense;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}
.state_list li a {
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
}
.state_list li a .thum {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.state_list li a .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}
.state_list li a p {
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 20px;
  padding: 12px;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  font-size: 16px;
}
.state_list li a:hover .thum img {
  transform: scale(1.1);
}
.state_list li:nth-child(1) a::before, .state_list li:nth-child(2) a::before, .state_list li:nth-child(3) a::before {
  content: "";
  display: block;
  width: 35px;
  height: 40px;
  position: absolute;
  left: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 999;
}
.state_list li:nth-child(1) a:before {
  background-image: url("../img/top1.png");
}
.state_list li:nth-child(2) a:before {
  background-image: url("../img/top2.png");
}
.state_list li:nth-child(3) a:before {
  background-image: url("../img/top3.png");
}
@media (max-width: 767px) {
  .state_list {
    grid-template-columns: 1fr 1fr;
  }
  .state_list.three {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
  }
}
.state_list.no_rank li a::before {
  display: none;
}

.load_more {
  width: 134px;
  height: 48px;
  background: #4F4FF4;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  transition: all 0.3s;
}
.load_more:hover {
  filter: brightness(0.9);
  color: #fff;
}

.intro {
  padding-top: 14px;
}
.intro .tip {
  font-size: 16px;
  color: #999999;
  line-height: 22px;
  margin-bottom: 4px;
}
.intro h1 {
  font-weight: 900;
  font-size: 24px;
  color: #000000;
  line-height: 32px;
  display: flex;
  align-items: center;
}
.intro h1 a {
  display: flex;
  align-items: center;
  margin-left: 8px;
  height: 32px;
  background: #F5F5F5;
  border-radius: 12px;
  padding: 0 8px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
  color: #000000;
}
.intro h1 a img {
  height: 24px;
  margin-right: 4px;
}
.intro .read_more {
  display: flex;
  align-items: center;
  margin-top: 8px;
  color: #333;
}
.intro .read_more::before {
  content: "Read More";
}
.intro .read_more img {
  margin-left: 4px;
}
.intro .intro_main {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  overflow: hidden;
  max-height: 105px;
  position: relative;
  margin-top: 8px;
}
.intro .intro_main::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 22px;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.intro .intro_main.active {
  max-height: initial;
}
.intro .intro_main.active::after {
  display: none;
}
.intro .intro_main.active + .read_more::before {
  content: "Read Less";
}
.intro .intro_main.active + .read_more img {
  transform: rotateZ(180deg);
}

.country {
  padding-top: 160px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  background-attachment: fixed;
}
.country .intro {
  background-color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.country_list {
  margin-top: 16px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}
.country_list li {
  width: calc(50% - 6px);
  margin-bottom: 16px;
}
.country_list li a {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.country_list li a .thum {
  width: 100%;
  height: 100px;
}
.country_list li a .thum img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.country_list li a p {
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 20px;
  padding: 12px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  font-size: 16px;
}
.country_list li a:hover .thum img {
  transform: scale(1.1);
}
.country_list li a:hover dl dt {
  text-decoration: underline;
}
.country_list li.list_ad {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.country_list li.list_ad::after {
  content: "Advertisement";
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .country_list {
    margin-top: 14px;
  }
  .country_list li {
    width: 100%;
  }
}

.article {
  margin-top: 16px;
}
.article .container {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 768px) {
  .article .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.article .container img {
  width: 100% !important;
}
.article .container p {
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #666666 !important;
  line-height: 1.6em !important;
  margin-bottom: 14px !important;
  font-family: "lexendDeca" !important;
}
.article .container h2, .article .container h3, .article .container h4, .article .container h5, .article .container h6, .article .container h1 {
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #000000 !important;
  line-height: 1.4em !important;
  margin-bottom: 14px !important;
  font-family: "lexendDeca" !important;
}

.detail_banner {
  height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.detail_banner .content {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.detail_banner .content .container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  padding-bottom: 24px;
}
.detail_banner .content .container dl dd:nth-child(1) {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 16px;
}
.detail_banner .content .container dl dt {
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 32px;
  margin: 8px 0;
}
.detail_banner .content .container dl dd:nth-child(3) {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 16px;
}

.primary_box {
  min-height: calc(100vh - 190px);
}
.primary_box .container {
  padding-top: 40px;
}
.primary_box .container h2 {
  color: #000;
  font-size: 1.2em;
  margin-bottom: 40px;
}
.primary_box .container .mainBox h3 {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 15px;
}
.primary_box .container .mainBox p {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 15px;
  line-height: 1.6em;
}

.seearch_ {
  margin-top: 16px;
}
.seearch_ .container .form .tip {
  font-size: 16px;
  color: #999999;
  line-height: 20px;
}
.seearch_ .container .form form {
  margin-top: 16px;
  position: relative;
}
.seearch_ .container .form form input {
  width: 100%;
  height: 40px;
  border-radius: 21px;
  text-indent: 1em;
  border: 2px solid #F0F0F0;
}
.seearch_ .container .form form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.search_res {
  margin-top: 16px;
  flex: 1;
}
.search_res .container nav {
  display: flex;
  align-items: center;
}
.search_res .container nav a {
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 20px;
  position: relative;
  padding-bottom: 8px;
}
.search_res .container nav a::after {
  position: absolute;
  left: 50%;
  width: 0;
  content: "";
  height: 4px;
  background-color: #4F4FF4;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.search_res .container nav a.active::after, .search_res .container nav a:hover::after {
  width: 100%;
}
.search_res .container nav a + a {
  margin-left: 20px;
}
.search_res .container .res_main .item {
  display: none;
}
.search_res .container .res_main .item.active {
  display: block;
}
.search_res .container .res_main .item .nores {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px 0;
}
.search_res .container .res_main .item .nores p {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  text-align: center;
  padding: 16px;
}
.search_res .container .res_main .item .nores p span {
  color: #4F4FF4;
}

.not_found {
  padding: 60px 0;
  min-height: calc(100vh - 407px);
}
.not_found .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.not_found .container p {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  text-align: center;
  margin: 16px 16px 40px;
}
.not_found .container a {
  width: 200px;
  height: 48px;
  background: #4F4FF4;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  transition: all 0.3s;
}
.not_found .container a:hover {
  opacity: 0.9;
}

.weater_box {
  padding: 16px 0;
}
.weater_box.sun {
  background: linear-gradient(180deg, #378BFF 0%, #65B2FF 100%);
}
.weater_box .container .local {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 18px;
}
.weater_box .container .local img {
  margin-right: 2px;
}
.weater_box .container .banner_ad_box::after {
  color: #fff;
}
.weater_box .container .overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.weater_box .container .overview .temperature_local .temperature {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 64px;
  color: #FFFFFF;
  line-height: 64px;
}
.weater_box .container .overview .temperature_local .temperature img {
  margin-right: 6px;
}
.weater_box .container .overview .temperature_local .locals {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 20px;
  margin-top: 8px;
}
.weater_box .container .overview .aside_info p {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 20px;
  text-align: right;
}
.weater_box .container .overview .aside_info p + p {
  margin-top: 4px;
}
.weater_box .container .overview_swiper {
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0 16px;
}
.weater_box .container .overview_swiper h2 {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 18px;
  padding: 16px 0 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.weater_box .container .overview_swiper .swiper_box {
  width: 100%;
  overflow: hidden;
  padding: 12px 0 16px;
}
.weater_box .container .overview_swiper .swiper_box .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 60px;
}
.weater_box .container .overview_swiper .swiper_box .swiper-wrapper .swiper-slide time {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 20px;
}
.weater_box .container .overview_swiper .swiper_box .swiper-wrapper .swiper-slide img {
  margin: 12px 0;
}
.weater_box .container .overview_swiper .swiper_box .swiper-wrapper .swiper-slide p {
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 20px;
}
.weater_box .container .seven_data {
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0 16px;
}
.weater_box .container .seven_data h2 {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 18px;
  padding: 16px 0 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.weater_box .container .seven_data ul {
  padding: 12px 0 16px;
}
.weater_box .container .seven_data ul li {
  height: 40px;
}
.weater_box .container .seven_data ul li + li {
  margin-top: 12px;
}
.weater_box .container .seven_data ul li dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.weater_box .container .seven_data ul li dl dd:nth-child(3) {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 22px;
  width: 100px;
  text-align: right;
}
.weater_box .container .seven_data ul li dl dt {
  width: 100px;
  text-align: left;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 22px;
}
.weater_box .container .seven_data ul li dl dd:nth-child(2) {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 22px;
}
.weater_box .container .seven_data ul li dl dd:nth-child(2) img {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .weater_box .container .overview .temperature_local .temperature {
    font-size: 48px;
    line-height: 48px;
  }
  .weater_box .container .overview .temperature_local .temperature img {
    margin-right: 5px;
    height: 56px;
  }
  .weater_box .container .overview .temperature_local .locals {
    font-size: 12px;
    line-height: 16px;
    margin-top: 6px;
  }
  .weater_box .container .overview .aside_info p {
    font-size: 12px;
    line-height: 16px;
  }
  .weater_box .container .overview .aside_info p + p {
    margin-top: 2px;
  }
  .weater_box .container .overview_swiper .swiper_box .swiper-wrapper .swiper-slide {
    width: 40px;
  }
  .weater_box .container .overview_swiper .swiper_box .swiper-wrapper .swiper-slide time {
    font-size: 12px;
    line-height: 16px;
  }
  .weater_box .container .overview_swiper .swiper_box .swiper-wrapper .swiper-slide img {
    height: 24px;
  }
  .weater_box .container .overview_swiper .swiper_box .swiper-wrapper .swiper-slide p {
    font-size: 12px;
    line-height: 16px;
  }
  .weater_box .container .seven_data ul li {
    height: 24px;
  }
  .weater_box .container .seven_data ul li dl dd:nth-child(3) {
    line-height: 18px;
    font-size: 14px;
    width: 60px;
  }
  .weater_box .container .seven_data ul li dl dt {
    font-size: 14px;
    line-height: 18px;
    width: 60px;
  }
  .weater_box .container .seven_data ul li dl dd:nth-child(2) {
    font-size: 14px;
    line-height: 18px;
  }
  .weater_box .container .seven_data ul li dl dd:nth-child(2) img {
    height: 24px;
    margin-right: 8px;
  }
}

/*# sourceMappingURL=main.css.map */
