:root {
  --main-color: rgb(252, 139, 1);
  --sub-color: rgb(211, 0, 7);
  --sub-color1: rgba(0, 255, 30, 1);
  --sub-color2: rgba(153, 153, 153, 1);
  --color-white: #fff;
  --color-black: #000;
  --text-color-1: rgba(36, 38, 43, 1);
  --bg-color: #d30208;
  --scrollbar-color: rgba(102, 102, 102, 1);
}

*,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 1.5rem;
  background-color: #232323;
  min-height: 100%;
  overflow-y: auto;
}

body.fixed-posi {
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-color);
  border-radius: 5px;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  color: #ccc;
}

img {
  border: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

ol,
ul,
li {
  list-style: none;
}

.ok {
  width: 100%;
  /* background-image: url(/images/background.png); */
}

.ok .sidepanel {
  width: 0;
  height: 100%;
  position: fixed;
  z-index: 5555;
  top: 60px;
  right: 0;
  background-color: #232323;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 20px;
}

.ok .sidepanel .sub-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  /* margin-top: -40px; */
}

.ok .sidepanel a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.ok .sidepanel a:hover {
  color: #f1f1f1;
}

.ok .sidepanel .home-side-nav {
  background-color: var(--main-color);
}

.ok .sidepanel .side-nav {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 16px;
}

.ok .sidepanel .side-nav .side-text {
  margin-left: 16px;
  color: var(--color-white);
}

.ok .ok-container .navs .navs-container {
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.ok .ok-container .navs .navs-container .navs-items {
  padding: 8px;
  height: 66px;
  background-color: #232323;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ok .ok-container .navs .navs-container .navs-items .navs-items-logo img {
  height: 65px;
}

.ok
  .ok-container
  .navs
  .navs-container
  .navs-items
  .navs-items-right
  .change-lang-content {
  display: none;
  position: absolute;
  background-color: #232323;
  color: #fff;
  min-width: 110px;
  font-size: 18px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 8px 8px;
  z-index: 100;
}

.ok .ok-container .banner {
  padding-top: 66px;
}

.ok .ok-container .banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ok .ok-container .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.swiper-pagination-bullet-active {
  background-color: #fff !important;
}

.ok .ok-container .notice {
  height: 30px;
  margin: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  border: 2px solid var(--main-color);
}

.ok .ok-container .notice .notice-bell {
  margin-left: 8px;
  margin: auto auto;
}

.ok .ok-container .notice .notice-info {
  width: 90%;
  height: 2em; 
  margin-right: 10px;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  color: white;
  font-size: 1rem;
  line-height: 2em;
  position: relative;
}

/* .ok .ok-container .notice .notice-info span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 35s linear infinite;
} */

.ok .ok-container .notice .notice-info .marquee {
  color: #fff;
  position: absolute;
  white-space: nowrap;
  will-change: left;
  animation: marquee-move 35s linear infinite;
}

/* @keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
} */

@keyframes marquee-move {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
.ok .ok-container .link {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* border: 1px solid #000; */
  border-radius: 24px;
  margin: 8px;
  background: linear-gradient(to left, #323232 0%, #0000 100%);
}

.ok .ok-container .link .link-second {
  color: #20e133;
  font-size: 18px;
}
.ok .ok-container .link .link-url {
  color: var(--main-color);
  font-size: 18px;
}

.ok .ok-container .link .link-btn img {
  width: 105px;
  height: 46px;
}

.ok .ok-container .download {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 16px 0px; */
}

.ok .ok-container .download .download-container {
  display: inline-grid;
  grid-template-columns: auto auto;
}

.ok .ok-container .download .download-container img {
  margin: 16px 8px;
  width: 94%;
}

.ok .ok-container .cskh {
  display: flex;
  justify-content: center;
}

.ok .ok-container .cskh .cskh-container {
  display: inline-grid;
  grid-template-columns: auto auto;
}

.ok .ok-container .cskh .cskh-container div {
  margin: 4px 8px;
}

.ok .ok-container .cskh .cskh-container img {
  width: 100%;
}

.ok .ok-container .news .news-container {
  margin: 8px 16px;
}

.ok .ok-container .news .news-container .card {
  width: 100%;
  border-radius: 16px;
  margin: 16px 0;
  border-bottom: 2px solid var(--main-color);
}

.ok .ok-container .news .news-container .card .thumb img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: 4px solid var(--main-color);
}

.ok .ok-container .news .news-container .card .title {
  color: var(--main-color);
  font-size: 30px;
  line-height: 40px;
  text-align: center;
}

.ok .ok-container .news .news-container .card .description {
  color: #fff;
  font-size: 20px;
  max-height: 94px;
  overflow-y: hidden;
}

.ok .ok-container .news .news-container .card .more-btn {
  display: flex;
  justify-content: end;
  padding-right: 16px;
  margin-bottom: 8px;
  margin-top: 12px;
}

.ok .ok-container .news .news-container .card .collapse-btn img {
  width: 70px;
  height: 19px;
  border-radius: 6px;
}

.ok .ok-container .news .news-container .card .more-btn img {
  border-radius: 6px;
  width: 70px;
  height: 19px;
}

.more-content.show {
  max-height: 100%;
}

.expand-content,
.collapse-content {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.visible {
  max-height: 2500px;
  opacity: 1;
  pointer-events: all;
}

.ok .ok-container .news .news-container .card .text-color {
  color: var(--color-white);
  font-size: 20px;
  line-height: 30px;
}

.ok .ok-container .news .news-container .card .collapse-btn {
  display: flex;
  justify-content: end;
  padding-right: 16px;
  margin-bottom: 8px;
  margin-top: 12px;
}

.ok .ok-container .footer {
  text-align: center;
  color: var(--color-white);
}

.ok .ok-container .footer .footer-container {
  display: flex;
  justify-content: center;
}

.ok .ok-container .footer .footer-container img {
  width: 300px;
  height: 100%;
}
.link-icon {
  width: 42px;
  height: 42px;
}
.link-icon img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 700px) {
  body {
    margin: 0;
    background-color: black;
    display: flex;
    justify-content: center;
  }
  .ok {
    width: 420px;
    display: block;
    position: relative;
  }
  .ok .ok-container {
    position: relative;
    width: 400px;
  }
  .ok .ok-container .navs .navs-container {
    display: block;
    position: relative;
    width: 100%;
  }

  .ok .sidepanel {
    width: 0;
    height: 100%;
    position: absolute;
    z-index: 5555;
    top: 60px;
    right: 0;
    overflow-x: hidden;
    background-color: #232323;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }

  .ok .ok-container .banner img {
    height: 200px;
    width: 100%;
    object-fit: contain;
  }

  .ok .ok-container .banner {
    height: 200px;
    padding-top: 0;
  }

  .ok .ok-container .news .news-container .card .description {
    color: #fff;
    font-size: 20px;
    max-height: 90px;
    overflow-y: hidden;
  }

  .ok .ok-container .download .download-container img {
    margin: 16px 2px;
  }

  .ok .ok-container .cskh .cskh-container div {
    margin: 4px 2px;
  }

  .ok .ok-container .download .download-container img {
    width: 100%;
  }
}
