﻿
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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,
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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 微軟正黑體;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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;
}

* {
  box-sizing: border-box;
  font-family:  "微軟正黑體";
}

html,
body {
  font-family: "微軟正黑體";
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: unset;
}

.header {
  height: 120px;
  width: 100vw;
  display: flex;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 180px;
  padding-right: 180px;
}
@media screen and (max-width: 992px) {
  .header {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 20px;
  }
  .header--active .header__menu {
    opacity: 1;
    transform: translateX(0);
  }
  .header--active .header__menu-backdrop {
    transform: translateX(0);
  }
}
.header__logo-image {
  display: flex;
  color: #192049;
}
.header__logo-image img {
  width: 23px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 6px;
}
.header__logo-title {
  margin-top: 16px;
  font-size: 22px;
  color: #192049;
  margin-bottom: 10px;
 
}
.header__menu {
  font-size: 16px;
  z-index: 20;
}
@media screen and (max-width: 992px) {
  .header__menu {
    top: 0;
    right: 0;
    width: 81vw;
    height: 100vh;
    display: flex;
    position: fixed;
    align-items: center;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease-out;
  }
}
.header__menu ul {
  display: flex;
}
.header__menu ul li {
  cursor: pointer;
  padding: 10px 16px;
}
.header__menu ul li a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
}
.header__menu ul li:hover {
  background: var(--main-brown-bright-sub, #fff7df);
}
.header__menu ul li:active {
  background: var(--main-brown-bright-main, #ffefbe);
}
.header__menu ul li.active {
  border-bottom: 3px solid var(--Main-brown, #88743d);
}
@media screen and (max-width: 992px) {
  .header__menu ul {
    flex-direction: column;
  }
  .header__menu ul li {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 24px;
    border-bottom: 3px solid transparent;
  }
  .header__menu ul li:hover {
    border-bottom: 3px solid #88743d;
  }
}
.header__menu-backdrop {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
}
@media screen and (max-width: 992px) {
  .header__menu-backdrop {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .header__menu_lang {
    left: 50%;
    bottom: 50px;
    font-size: 20px;
    position: absolute;
    transform: translateX(-50%);
  }
}
.header__menu-pipe {
  border-left: 1px solid #000;
}
@media screen and (max-width: 992px) {
  .header__menu-pipe {
    border-top: 1px solid #000;
    border-left: none;
  }
}
.header__menu-close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 4px;
  border: 1px solid var(--Gray-4, #bdbdbd);
  background: #fff;
  padding: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .header__menu-close {
    display: none;
  }
}
.header__menu-button {
  display: none;
  background-color: #fff;
  border: solid 1px #bdbdbd;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .header__menu-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.advance-search {
  background: var(--Gray-5, #e0e0e0);
  border-radius: 4px;
}
.advance-search__header {
  height: 48px;
  display: flex;
  display: flex;
  cursor: pointer;
  border-radius: 4px;
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--Gray-4, #bdbdbd);
}
.advance-search__header--text {
  font-size: 16px;
  letter-spacing: -0.15px;
}
.advance-search__header--button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
  padding: 0;
}
.advance-search__header--active .advance-search__header--button {
  transform: rotate(180deg);
}
.advance-search__content {
  height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--Gray-5, #e0e0e0);
  transition: opacity 0.5s;
  opacity: 0;
}
.advance-search__content--active {
  opacity: 1;
  height: auto;
  padding: 12px 16px;
}
@media screen and (max-width: 992px) {
  .advance-search__content--active {
    padding: 12px 8px 16px;
  }
}
.advance-search__item {
  display: flex;
  margin-bottom: 24px;
}
.advance-search__item--label {
  width: 32px;
  font-size: 16px;
  margin-right: 60px;
}
@media screen and (max-width: 992px) {
  .advance-search__item--label {
    margin-right: 24px;
  }
}
.advance-search__item--time-range {
  align-items: center;
}
.advance-search__item--time-range .advance-search__item--content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .advance-search__item--time-range .advance-search__item--content {
    flex-direction: column;
  }
}
.advance-search__item--time-range .advance-search__item--content year-month-picker {
  margin-right: 0;
}
.advance-search__item--time-range .advance-search__item--content year-month-picker:first-child {
  margin-right: 68px;
}
@media screen and (max-width: 992px) {
  .advance-search__item--time-range .advance-search__item--content year-month-picker {
    margin-right: 0;
  }
  .advance-search__item--time-range .advance-search__item--content year-month-picker:first-child {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.advance-search__item--check-list .advance-search__item--content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.advance-search__item--check-list .advance-search__item--content .checkbox {
  height: 24px;
}

.select {
  position: relative;
}
.select select {
  height: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  padding: 8px 16px;
  padding-right: 40px;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #bdbdbd;
  background: #fff;
  text-align: left;
}
.select:after {
  content: "";
  justify-self: end;
  width: 10px;
  height: 5px;
  background-color: #000;
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
          clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  grid-area: select;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.year-month-picker {
  display: flex;
  align-items: center;
}
.year-month-picker span {
  margin-right: 8px;
  margin-left: 4px;
}
.year-month-picker__label {
  margin-right: 8px;
  font-weight: 300;
}
.year-month-picker span {
  font-weight: 300;
}

.button {
  cursor: pointer;
  display: flex;
  height: 40px;
  min-width: 98px;
  padding: 8px 26px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--Gray-4, #bdbdbd);
  background: #fff;
  font-weight: 200;
  font-size: 16px;
}
.button:hover {
  border: 1px solid var(--Gray-2, #4f4f4f);
}
.button:active {
  border: 1px solid var(--Gray-2, #4f4f4f);
  background: var(--Gray-4, #bdbdbd);
}
.button--brown {
  color: #fff;
  background: var(--Main-brown, #88743d);
}
.button--brown:hover {
  background: var(--Main-brown-_-light, #ac9e78);
}
.button--brown:active {
  background: var(--Main-brown-_-dark, #68531a);
}

.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #000;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  background-color: #000;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

file-download-button {
  width: 152px;
  height: 48px;
  position: relative;
}
file-download-button .file-download-button__label {
  cursor: pointer;
  width: 100%;
  display: flex;
  height: 48px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid var(--Gray-4, #bdbdbd);
  background: #fff;
}
file-download-button .file-download-button__label span {
  font-size: 16px;
  letter-spacing: -0.15px;
  white-space: nowrap;
}
file-download-button .file-download-button__label--active {
  opacity: 0.4;
}
file-download-button .file-download-button__files {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 48px;
  left: 0;
  margin-top: 2px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
}
file-download-button .file-download-button__files--active {
  opacity: 1;
  z-index: 1;
}
file-download-button .file-download-button__file {
  padding: 10px 16px;
  cursor: pointer;
}
file-download-button .file-download-button__file:hover {
  background: var(--main-brown-bright-sub, #fff7df);
}

.data-card {
  width: 100%;
  overflow: hidden;
  display: flex;
  background: #fff;
  border-radius: 4px;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 16px 16px 22px;
  border-left: 6px solid var(--Main-brown, #88743d);
  cursor: pointer;
}
.data-card:hover {
  background: var(--main-brown-bright-sub, #fff7df);
}
.data-card:active {
  background: var(--main-brown-bright-main, #ffefbe);
}
.data-card__title {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
   
  overflow: hidden;
}
.data-card__title p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  
}
.data-card__title img {
  margin-left: 2px;
}
.data-card__desc {
  color: #666666;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.multi-checkbox-select__container {
  height: 50px;
  position: relative;
}
.multi-checkbox-select__field {
  height: 48px;
  display: flex;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 4px;
  white-space: nowrap;
  align-items: center;
  background-color: #fff;
  border: 1px solid #bdbdbd;
}
.multi-checkbox-select__field img {
  margin-left: 8px;
}
.multi-checkbox-select__menu {
  left: 0;
  top: 50px;
  opacity: 0;
  z-index: -1;
  width: 100%;
  background: #fff;
  position: absolute;
  border-radius: 4px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.multi-checkbox-select__menu--active {
  opacity: 1;
  z-index: 1;
}
.multi-checkbox-select__item {
  display: flex;
  cursor: pointer;
  padding: 10px 16px;
  align-items: center;
}
.multi-checkbox-select__item span {
  pointer-events: none;
}
.multi-checkbox-select__item:hover {
  background-color: #fff7df;
}
.multi-checkbox-select__checkbox {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #ffefbe;
  margin-right: 10px;
  color: #68531a;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.multi-checkbox-select__checkbox svg {
  fill: #68531a;
  width: 18px;
  height: 18px;
}
.multi-checkbox-select__checkbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  display: block;
  border: solid 2px #68531a;
  border-radius: 4px;
}

autocomplete-input {
  position: relative;
  width: 100%;
}
autocomplete-input input {
  width: 100%;
}
autocomplete-input .autocomplete-input__list {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: none;
}
autocomplete-input .autocomplete-input__list--active {
  display: block;
}
autocomplete-input .autocomplete-input__item {
  gap: 10px;
  display: flex;
  cursor: pointer;
  padding: 10px 16px;
  align-items: center;
  align-self: stretch;
}
autocomplete-input .autocomplete-input__item:hover {
  background: var(--main-brown-bright-sub, #fff7df);
}
autocomplete-input .autocomplete-input__item:active {
  background: var(--main-brown-bright-main, #ffefbe);
}

.input-field {
  display: flex;
  height: 48px;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 4px;
  border: 1px solid var(--Gray-4, #bdbdbd);
  background: #fff;
}
.input-field:hover {
  border: 1px solid var(--Gray-2, #4f4f4f);
}
.input-field:active, .input-field:focus, .input-field:visited {
  border: 2px solid var(--Blue-1, #2f80ed);
}

.table-wrapper {
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
}
.custom-table th,
.custom-table td {
  padding: 16px 32px;
  text-align: left;
}
.custom-table td p {
  margin-bottom: 12px;
}
.custom-table thead tr {
  background-color: #ffefc1;
}
.custom-table tbody tr {
  background-color: #fff;
}
.custom-table tbody tr:nth-child(even) {
  background-color: #fef8eb;
}

@media (max-width: 992px) {
  .custom-table {
    min-width: 390px;
  }
  .custom-table th,
  .custom-table td {
    padding: 16px 8px;
  }
  .custom-table th {
    white-space: nowrap;
  }
  .custom-table th:nth-child(3),
  .custom-table td:nth-child(3) {
    min-width: 180px;
  }
}
modal-component {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
}
modal-component.active {
  display: block;
}
modal-component .modal-component__container {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 1;
  width: 80%;
  padding: 32px;
  border-radius: 16px;
}
modal-component .modal-component__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
modal-component .modal-component__content {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-all;
  white-space: pre-wrap;
  opacity: 0.7;
  max-height: 400px;
  overflow-y: scroll;
  padding-right: 10px;
}
modal-component .modal-component__content p {
  line-height: 1.5;
}
modal-component .modal-component__button {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
modal-component .modal-component__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.section-title {
  color: #88743d;
  display: flex;
  font-size: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
  margin-bottom: 8px;
  border-bottom: 2px solid #88743d;
  padding-bottom: 2px;
}
.section-title img {
  width: 24px;
  justify-self: 24px;
  margin-right: 8px;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 18px;
  }
}

.footer {
  color: #fff;
  font-size: 14px;
  position: relative;
  text-align: center;
  padding: 00px 182px;
  background: #88743d;
}
@media screen and (max-width: 576px) {
  .footer {
    padding: 0px 16px;
  }
}
.footer__policy-links {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .footer__policy-links {
    flex-wrap: wrap;
  }
}
.footer__policy-links li {
  padding: 0 32px;
  cursor: pointer;
  border-left: solid 1px #fff;
}
@media screen and (max-width: 576px) {
  .footer__policy-links li {
    width: 50%;
    margin-bottom: 8px;
  }
  .footer__policy-links li:nth-child(even) {
    border-right: solid 1px #fff;
  }
}
.footer__policy-links li:last-child {
  border-right: solid 1px #fff;
}
.footer__policy-links li a {
  line-height: 1.5;
  text-decoration: underline;
}
.footer__copyright {
    margin-bottom: 15px;
    text-align: center;
    background-color: #88743d;
    color:white;
}
@media screen and (max-width: 576px) {
  .footer__copyright {
    text-align: left;
  }
}
.footer__contact-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer__contact-info img {
  width: 25px;
  height: 25px;
  margin: 0 8px;
}
.footer__contact-info ul {
  display: grid;
  justify-content: center;
  grid-template-columns: 550px 175px 125px;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 576px) {
  .footer__contact-info ul {
    justify-content: flex-start;
    grid-template-columns: none;
    grid-template-rows: auto;
    gap: 4px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.footer__contact-info ul li {
  line-height: 1.5;
}
.footer__web-badge {
  bottom: 60px;
  right: 182px;
  position: absolute;
}
.footer__web-badge img {
  width: 120px;
}
@media screen and (max-width: 576px) {
  .footer__web-badge {
    position: relative;
    text-align: left;
    bottom: 0;
    right: 0;
  }
}

.section-layout {
  padding-left: 180px;
  padding-right: 180px;
}
@media screen and (max-width: 992px) {
  .section-layout {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.container {
  padding-top: 0px;
}
@media screen and (max-width: 992px) {
  .container {
    padding-top: 0px;
  }
}

.linkable {
  text-decoration: underline;
}

.m-block {
  display: none;
}
@media (max-width: 767px) {
  .m-block {
    display: inline;
  }
}

* {
    font-family: 微軟正黑體;
}

main.container {
  
  padding-bottom: 0px;
}

@media screen and (max-width: 992px) {
  .analysis-data .section-title {
    margin-top: 0;
  }
}
.analysis-data__search {
  display: flex;
  margin-top: 16px;
}
.analysis-data__search multi-checkbox-select {
  margin-right: 16px;
}
.analysis-data__search--select {
  margin-right: 16px;
}
.analysis-data__advance-search {
  margin-top: 16px;
}
.analysis-data__file-download {
  display: flex;
  margin-top: 16px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .analysis-data__file-download {
    flex-direction: column;
  }
  .analysis-data__file-download file-download-button {
    align-self: end;
  }
}
.analysis-data__file-download--filename {
  display: flex;
}
.analysis-data__file-download--filename p {
  margin-right: 24px;
}
.analysis-data__file-download--filename a {
  color: var(--Sub-Blue, #0b55a6);
}
@media screen and (max-width: 992px) {
  .analysis-data__file-download--filename {
    margin-bottom: 8px;
  }
  .analysis-data__file-download--filename p {
    white-space: nowrap;
  }
}
.analysis-data__chart {
  width: 100%;
  padding: 16px;
  background: #fff;
  margin-top: 16px;
}
@media screen and (max-width: 992px) {
  .analysis-data__chart {
    padding: 8px;
  }
}
.analysis-data__chart__operating {
  display: flex;
  align-items: center;
}
.analysis-data__chart__operating p {
  margin-right: 16px;
}
.analysis-data__chart__view {
  margin-top: 16px;
  background-color: #f2f2f2;
  width: 100%;
  min-height: 314px;
  color: #919191;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-date {
  margin-bottom: 48px;
}
.more-date__section {
  margin-bottom: 16px;
  margin-top: 16px;
}
.more-date__section--title {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.more-date__section--open-api-content {
  width: 100%;
  display: grid;
  gap: 12px 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 992px) {
  .more-date__section--open-api-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }
}
.more-date__section--open-platform .slideshow .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.more-date__section--open-platform .slideshow__operating {
  margin-top: 16px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.more-date__section--open-platform .slideshow__operating .slideshow__prevButton {
  order: 1;
  margin-right: 6px;
}
.more-date__section--open-platform .slideshow__operating .slideshow__nextButton {
  order: 3;
  margin-left: 6px;
}
.more-date__section--open-platform .slideshow__operating .slick-dots {
  position: relative;
  width: auto;
  order: 2;
  bottom: 0;
  display: flex;
  gap: 8px;
}
.more-date__section--open-platform .slideshow__operating .slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0;
}
.more-date__section--open-platform .slideshow__operating .slick-dots li button {
  width: 6px;
  height: 6px;
}
.more-date__section--open-platform .slideshow__operating .slick-dots li button::before {
  width: 6px;
  height: 6px;
  line-height: 6px;
}
.more-date__section--open-platform .data-card {
  margin-right: 16px;
}
@media screen and (max-width: 992px) {
  .more-date__section--open-platform .data-card {
    margin-right: 8px;
  }
}