
/* -- +-- header --+ -- */
header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 60px;
  background-color: var(--header-background-color);
  font-size: 12px;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  width: calc(100% - 20px);
  height: 60px;
  margin: 0 auto;
}

/* ---- */
.navbarLeftLogoBox {
  height: 30px;
}

.navbarLeftLogoBox a {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbarLeftLogoBox a svg {
  height: 30px;
}

.navbarLeftLogoBox a svg rect {
  fill: var(--header-logo-color);
}

.navbarLeftLogoBox a svg path {
  fill: var(--header-logo-fonts-color);
}

/* ---- */
nav .navbarRight {
  display: flex;
  align-items: center;
}

/* ---- */
.navbarRight .menu {
  position: relative;
  height: 30px;
  cursor: pointer;
}

.menu .menuIco svg {
  height: 30px;
  width: 30px;
  fill: none;
  stroke: var(--header-tool-svg-color);
}

.menu .menuContent {
  display: none;
  position: absolute;
  top: 45px;
  right: 5px;
  width: 200px;
  padding: 0 10px 30px 10px;
  border-radius: 15px;
  background-color: var(--header-tool-svg-color);
}

.menu .menuContent a {
  display: block;
  margin-top: 30px;
  font-size: 15px;
  color: var(--a-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -- +-- main --+ -- */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

/* ---- */
main .mainTop {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  max-width: 1000px;
  width: calc(100% - 20px);
  margin-top: 50px;
}

.mainTop .mainTopDate {
  cursor: default;
}

.mainTopDate span {
  font-size: 22px;
  color: var(--font-color);
}

.mainTop .mainTopTime {
  margin-top: 1px;
  cursor: default;
}

.mainTopTime span {
  font-size: 62px;
  font-weight: 700;
  color: var(--font-color);
}

.mainTopTime span i {
  font-style: normal;
}

/* ---- */
main .searchBox {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 680px;
  width: calc(100% - 20px);
  height: 45px;
  border-radius: 45px;
  margin-top: 40px;
  background-color: var(--search-background-color);
}

.searchBox select {
  position: absolute;
  left: 2px;
  width: 70px;
  height: calc(100% - 4px);
  border: none;
  border-radius: 45px 0 0 45px;
  padding: 0 0 0 10px;
  outline: none;
  /* appearance: none; */
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--search-font-color);
  cursor: pointer;
}

.searchBox select option {
  font-size: 16px;
  font-weight: 500;
  background-color: var(--select-option-background-color);
}

.searchBox select option:checked {
  background-color: var(--select-checked-background-color);
}

.searchBox select option:hover {
  background-color: var(--select-checked-background-color);
}

.searchBox input[type="text"] {
  width: 100%;
  height: 100%;
  padding-left: 90px;
  border-radius: 45px;
  border: none;
  outline: none;
  background-color: var(--search-background-color);
  color: var(--search-font-color);
  font-size: 16px;
  font-weight: 500;
}

.searchBox input[type="text"]::placeholder {
  color: var(--search-font-color);
  font-size: 16px;
  font-weight: 500;
}

.searchBox input[type="text"]:focus {
  border: 1px solid var(--search-border-color);
}

.searchBox div {
  position: absolute;
  right: 60px;
  height: calc(100% - 28px);
  border-left: 1px solid var(--search-font-color);
}

.searchBox button {
  position: absolute;
  right: 2px;
  width: 60px;
  height: calc(100% - 4px);
  border-radius: 0 45px 45px 0;
  border: none;
  padding-right: 5px;
  cursor: pointer;
  background-color: transparent;
  color: var(--search-font-color);
  font-size: 16px;
  font-weight: 500;
}

/* ---- */
main .hot {
  max-width: 1000px;
  width: calc(100% - 20px);
  border-radius: 15px;
  margin-top: 45px;
  padding: 15px;
  background-color: var(--box-background-color);
}

.hot h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--a-color);
  cursor: default;
}

.hot .hotContent ul {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
  grid-gap: 15px;
}

.hotContent ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hotContent ul li a img {
  width: 55px;
  border-radius: 15px;
  padding: 8px;
  background-color: var(--box-color);
}

.hotContent ul li a span {
  margin-top: 5px;
  font-size: 10px;
  color: var(--a-color);
}

/* **** ---- **** */
.action {
  border-bottom: 2px solid var(--a-color-hover)!important;
  color: var(--a-color-hover)!important;
}
/* **** ---- **** */

/* ---- */
main .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: calc(100% - 20px);
  border-radius: 15px;
  margin-top: 15px;
  padding: 15px;
  background-color: var(--box-background-color);
}

.box .boxTitle {
  width: 100%;
}

.boxTitle ul {
  display: flex;
  flex-wrap: wrap;
}

.boxTitle ul li {
  margin-right: 15px;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  color: var(--a-color);
  cursor: pointer;
}

.box .boxContent {
  width: 100%;
}

.box .boxContent div {
  display: none;
}

.boxContent div:first-child {
  display: block;
}

.boxContent ul {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
  grid-gap: 15px;
}

.boxContent ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.boxContent ul li a img {
  width: 55px;
  padding: 8px;
  border-radius: 15px;
  background-color: var(--box-color);
}

.boxContent ul li a span {
  margin-top: 5px;
  font-size: 10px;
  color: var(--a-color);
}

/* ---- */
main .essentialSoftware {
  max-width: 1000px;
  width: calc(100% - 20px);
  border-radius: 15px;
  margin-top: 45px;
  padding: 15px;
  background-color: var(--box-background-color);
}

.essentialSoftware h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--a-color);
  cursor: default;
}

.essentialSoftware .essentialSoftwareContent ul {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
  grid-gap: 15px;
}

.essentialSoftwareContent ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.essentialSoftwareContent ul li a img {
  width: 55px;
  border-radius: 15px;
  padding: 8px;
  background-color: var(--box-color);
}

.essentialSoftwareContent ul li a span {
  margin-top: 5px;
  font-size: 10px;
  color: var(--a-color);
}

/* ---- */
main .myArticle {
  max-width: 1000px;
  width: calc(100% - 20px);
  border-radius: 15px;
  margin-top: 45px;
  padding: 15px 0 0 15px;
  background-color: var(--box-background-color);
}

.myArticle h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--a-color);
  cursor: default;
}

.myArticle h3 i {
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  color: var(--font-i-color);
  cursor: default;
}

.myArticle .myArticleContent ul {
  display: flex;
  flex-wrap: wrap;
}

.myArticleContent ul li {
  margin-bottom: 15px;
  margin-right: 15px;
}

.myArticleContent ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.myArticleContent ul li a img {
  width: 55px;
  border-radius: 15px;
  padding: 8px;
  background-color: var(--box-color);
}

.myArticleContent ul li a span {
  margin-top: 5px;
  font-size: 10px;
  color: var(--a-color);
}

/* -- +-- footer --+ -- */
footer {
  width: 100%;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--footer-border-top-color);
}

footer div[class="bottomInformation"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  width: calc(100% - 20px);
  margin-bottom: 10px;
  margin: 0 auto;
  cursor: default;
}

footer div[class="bottomInformation"] div:nth-child(2) {
  margin-bottom: 30px;
}

footer div[class="bottomInformation"] div a {
  margin-right: 10px;
  font-size: 14px;
  color: var(--a-color);
}

footer div[class="bottomInformation"] div:nth-child(3) {
  margin-bottom: 20px;
}

div[class="bottomInformation"] div:nth-child(3) p {
  font-size: 14px;
  color: var(--a-color);
}
