@charset "UTF-8";
/*手機版*/
/*非手機版*/
/*中間混合*/
/*某值(包含)以上*/
/*某值(不包含)以下*/
/*計算比例值*/
.realtime-news {
  border-radius: 50px;
  margin-top: 20px;
  padding-right: 20px;
  background-color: #ffffff;
  width: 100%;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  position: relative;
}
.realtime-news .realtime-label {
  background-color: #35495E;
  height: 100%;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
}
@media screen and (min-width: 768px) {
  .realtime-news .realtime-label {
    width: 140px;
    min-width: 140px;
    white-space: nowrap;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
.realtime-news .realtime-label .icon {
  width: 14px;
  min-width: 14px;
  height: 14px;
}
@media screen and (min-width: 768px) {
  .realtime-news .realtime-label .icon {
    margin-right: 2px;
  }
}
.realtime-news .realtime-label .text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  display: none;
}
@media screen and (min-width: 768px) {
  .realtime-news .realtime-label .text {
    display: block;
  }
}
.realtime-news .list-icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-left: 10px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .realtime-news .list-icon {
    margin: 0px 20px;
  }
}
.realtime-news .list-frame {
  width: 100%;
  display: none;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0px;
  z-index: 3;
  top: -15px;
  border-radius: var(--border-radius);
  padding: 15px;
}
@media screen and (min-width: 992px) {
  .realtime-news .list-frame {
    width: calc(100% - 140px);
    left: 140px;
  }
}
.realtime-news .list-frame .wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.realtime-news .list-frame .close-icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-right: 20px;
  cursor: pointer;
}
.realtime-news .list-frame .list {
  width: 100%;
  max-height: 265px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  /*Firefox*/
  scrollbar-color: #dedede transparent;
  scrollbar-width: thin;
}
.realtime-news .list-frame .list .news-list {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.realtime-news .list-frame .list .news-list:first-child {
  padding-top: 0px;
}
.realtime-news .list-frame .list .news-list:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
.realtime-news .list-frame .list .news-list .title {
  line-height: 1.4;
  overflow: visible;
  white-space: normal;
}
.realtime-news .list-frame .list .news-list .date {
  height: 26px;
}
.realtime-news .list-frame .list::-webkit-scrollbar {
  height: 2px;
  width: 8px;
}
.realtime-news .list-frame .list::-webkit-scrollbar-track {
  border-radius: 10px;
}
.realtime-news .list-frame .list::-webkit-scrollbar-thumb {
  background: #dedede;
  border-radius: 10px;
}
.realtime-news .list-frame .list::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}
.realtime-news .news-list {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.realtime-news .news-list:hover .title {
  color: #ea9500;
}
.realtime-news .news-list .title {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  margin-right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.realtime-news .news-list .label {
  margin-right: 15px;
  border-radius: 30px;
  height: 20px;
  line-height: 20px;
  display: none;
}
@media screen and (min-width: 768px) {
  .realtime-news .news-list .label {
    display: inline-block;
  }
}
.realtime-news .news-list .date {
  font-size: 13px;
  display: none;
}
@media screen and (min-width: 768px) {
  .realtime-news .news-list .date {
    display: flex;
  }
}
.realtime-news .swiper-container {
  width: 100%;
  height: 100%;
}
.realtime-news .swiper-container .swiper-slide {
  display: flex;
  align-items: center;
}