:root {
  --theme: #014099;
  --duration: 0.45s;
  --header-height: 88px;
  /* --- font40以下 */
  --font12: 12px;
  --font14: 14px;
  --font15: clamp(14px, 0.15rem, 15px);
  --font16: 16px;
  --font17: clamp(16px, 0.17rem, 17px);
  --font18: clamp(16px, 0.18rem, 18px);
  --font20: clamp(16px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font62: clamp(31px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  --font68: clamp(31px, 0.68rem, 68px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font88: clamp(32px, 0.88rem, 88px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font230: 2.3rem;
  --font400: 4rem;
  --space-min: 30px;
  --space: 45px;
  --global-radius: max(1rem, 30px);
  --bg-color: #eff9e7;
  --phone-title: 24px;
}
@font-face {
  font-family: "OPPOSans";
  src: url("https://font.fonwi.com/xinweb/commonFonts/OPPOSans-L.ttf");
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: "OPPOSans";
  src: url("https://font.fonwi.com/xinweb/commonFonts/OPPOSans-R.ttf");
  font-display: swap;
}
html {
  font-size: calc(100vw / 19.2);
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}
body {
  font-family: "OPPOSans", sans-serif;
  line-height: normal;
  font-size: 16px;
}
body.lock {
  overflow: hidden;
}
input,
textarea,
select,
button {
  font-family: inherit;
}
.wrap {
  width: 86%;
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .wrap {
    width: 92% !important;
  }
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: calc(99 * 2);
  transition: 0.6s linear;
}

header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500%;
  background-image: linear-gradient(to bottom, rgba(0, 26, 62, 0.9), transparent);
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}
.header-wrap {
  height: inherit;
  display: flex;
  align-items: center;
}
.header-wrap .logo {
  width: max(1.5rem, 100px);
  flex-shrink: 0;
}
.header-wrap .logo img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: var(--duration);
}
.header-wrap .pc-nav {
  height: inherit;
  display: flex;
  column-gap: max(0.7rem, 20px);
  margin-left: 2rem;
}
.header-wrap .pc-nav .nav-item {
  height: inherit;
  position: relative;
  z-index: calc(99 * 7);
}
.header-wrap .pc-nav .nav-item.active .item-top .link,
.header-wrap .pc-nav .nav-item.hover .item-top .link {
  color: var(--theme) !important;
}
.header-wrap .pc-nav .nav-item .item-top {
  height: inherit;
}
.header-wrap .pc-nav .nav-item .item-top .link {
  display: flex;
  align-items: center;
  height: inherit;
  font-weight: 400;
  font-size: var(--font18);
  color: #fefefe;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
}
.header-wrap .pc-nav .nav-item .item-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 100%;
  background-color: #fff;
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  z-index: calc(99 * 7);
}
.header-wrap .pc-nav .nav-item .item-bottom .bottom-item {
  display: block;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
  padding: 10px;
  transition: var(--duration);
}
.header-wrap .pc-nav .nav-item .item-bottom .bottom-item:hover {
  color: var(--theme);
}
.header-wrap .other {
  margin-left: auto;
  display: flex;
  align-items: center;
  --unit: 58px;
}
.header-wrap .other .search {
  width: var(--unit);
  height: var(--unit);
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.header-wrap .other .search img {
  display: block;
  width: 31.03448276%;
  height: auto;
}
.header-wrap .other .lang {
  position: relative;
  margin-left: 10px;
}
.header-wrap .other .lang:hover .lang-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0px);
}
.header-wrap .other .lang .current-lang {
  width: 110px;
  height: var(--unit);
  background: #014099;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font14);
  color: #fff;
}
.header-wrap .other .lang .current-lang .icon1 {
  width: 18px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.header-wrap .other .lang .current-lang span {
  margin-left: 10px;
  margin-right: 5px;
}
.header-wrap .other .lang .current-lang .icon2 {
  width: 9px;
  flex-shrink: 0;
  filter: brightness(0) invert(1) opacity(0.8);
}
.header-wrap .other .lang .lang-list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  top: 100%;
  min-width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: var(--duration);
}
.header-wrap .other .lang .lang-list .group {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 0;
}
.header-wrap .other .lang .lang-list .lang {
  display: block;
  line-height: 1.5;
  white-space: nowrap;
  color: #666666;
  transition: var(--duration);
  user-select: none;
  cursor: pointer;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-wrap .other .lang .lang-list .lang:hover {
  color: #014099;
}
header.active {
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}
header.no-liner::after {
  display: none;
}
header.active,
header.hover {
  background: #ffffff;
  z-index: calc(99 * 7);
}
header.active::after,
header.hover::after {
  opacity: 0;
}
header.active .header-wrap .logo img,
header.hover .header-wrap .logo img {
  filter: none;
}
header.active .header-wrap .nav .nav-item .item-top .link,
header.hover .header-wrap .nav .nav-item .item-top .link {
  color: #666666;
}
header.active .header-wrap .other .search,
header.hover .header-wrap .other .search {
  background-color: #eee;
}
header.active .header-wrap .other .search img,
header.hover .header-wrap .other .search img {
  filter: none;
}
header.active .header-wrap .other .lang .current-lang,
header.hover .header-wrap .other .lang .current-lang {
  background-color: #eee;
  color: var(--theme);
}
header.active .header-wrap .other .lang .current-lang .icon1,
header.hover .header-wrap .other .lang .current-lang .icon1 {
  filter: none;
}
header.active .header-wrap .other .lang .current-lang .icon2,
header.hover .header-wrap .other .lang .current-lang .icon2 {
  filter: none;
}
.head-search-area {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: auto;
  padding: max(0.35rem, 20px) 0;
  background-color: #fff;
  display: none;
}
.head-search-area .search-form {
  max-width: 700px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: max(0.6rem, 45px);
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--duration);
}
.head-search-area .search-form:focus-within {
  border-color: var(--theme);
}
.head-search-area .search-form input {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 65px;
  font-size: 16px;
  color: #000;
}
.head-search-area .search-form input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.head-search-area .search-form button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  background-color: var(--theme);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.head-search-area .search-form button img {
  display: block;
  width: 35%;
  height: auto;
  filter: brightness(0) invert(1);
}
header.scroll {
  transform: translateY(-100%);
}
footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: max(1.2rem, var(--space));
}
footer .foot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: max(0.62rem, 35px);
}
footer .foot-top .foot-left {
  /* width: 25.390625%; */
  width: 28%;
  flex-shrink: 0;
}
footer .foot-top .foot-left .foot-logo {
  display: block;
  max-width: max(1.54rem, 100px);
}
footer .foot-top .foot-left .foot-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .foot-top .foot-left .foot-info-list {
  margin-top: max(0.5rem, 20px);
}
footer .foot-top .foot-left .foot-info-list .info-item {
  display: flex;
  align-items: center;
}
footer .foot-top .foot-left .foot-info-list .info-item:not(:last-child) {
  margin-bottom: 10px;
}
footer .foot-top .foot-left .foot-info-list .info-item .icon {
  flex-shrink: 0;
  width: 16px;
  opacity: 0.7;
}
footer .foot-top .foot-left .foot-info-list .info-item .icon img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
footer .foot-top .foot-left .foot-info-list .info-item .text {
  font-weight: normal;
  /* font-size: var(--font16); */
  font-size: max(0.16rem, 14px);
  color: #014099;
  margin-left: max(0.15rem, 10px);
}
footer .foot-top .foot-left .foot-icon-list {
  display: flex;
  align-items: flex-start;
  margin-top: max(0.37rem, 20px);
}
footer .foot-top .foot-left .foot-icon-list .item {
  --unit: max(0.46rem, 35px);
  flex-shrink: 0;
}
footer .foot-top .foot-left .foot-icon-list .item:not(:last-child) {
  margin-right: max(0.14rem, 10px);
}
footer .foot-top .foot-left .foot-icon-list .item .icon {
  width: var(--unit);
  height: var(--unit);
  border-radius: 6px;
  background-color: #014099;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .foot-top .foot-left .foot-icon-list .item .icon img {
  display: block;
  max-width: 58.69565217%;
  height: auto;
}
footer .foot-top .foot-right {
  width: 71.61458333%;
  flex-shrink: 0;
}
footer .foot-top .foot-right .foot-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-top .foot-right .foot-nav .nav-item:not(:last-child) {
  margin-right: 20px;
}
footer .foot-top .foot-right .foot-nav .nav-item .item-top {
  margin-bottom: 15px;
}
footer .foot-top .foot-right .foot-nav .nav-item .item-top .text {
  font-weight: normal;
  font-size: var(--font24);
  color: #ffffff;
  line-height: 1.41666667;
}
footer .foot-top .foot-right .foot-nav .nav-item .item-top .icon {
  display: none;
}
footer .foot-top .foot-right .foot-nav .nav-item .item-bottom .item-link {
  display: block;
  width: fit-content;
  font-weight: normal;
  font-size: var(--font14);
  color: #ffffff;
  line-height: 1.5;
  opacity: 0.7;
  overflow-wrap: break-word;
}
footer .foot-top .foot-right .foot-nav .nav-item .item-bottom .item-link:not(:last-child) {
  margin-bottom: 10px;
}
footer .foot-copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding-top: max(0.3rem, 20px);
  padding-bottom: max(0.3rem, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .foot-copyright .copyright-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 20px;
}
footer .foot-copyright .copyright-wrap .text {
  font-weight: 400;
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.5);
}
footer .foot-copyright .copyright-wrap .left .text:not(:last-child) {
  margin-right: max(0.6rem, 10px);
}
.mt-header {
  margin-top: var(--header-height);
}
.page-aside {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: max(0.46rem, 10px);
  z-index: calc(99 * 2);
  border-radius: 6px;
}
.page-aside .aside-item {
  --unit: max(0.52rem, 45px);
  width: var(--unit);
  height: var(--unit);
  position: relative;
  z-index: calc(99 * 1);
  user-select: none;
  cursor: pointer;
}
.page-aside .aside-item:hover .icon {
  background-color: #014099;
  border-color: #014099;
}
.page-aside .aside-item:hover .icon img {
  filter: brightness(0) invert(1);
}
.page-aside .aside-item:hover .hover-box {
  transform: translateY(-50%) scale(1, 1);
}
.page-aside .aside-item:first-child .icon {
  border-radius: 6px 6px 0 0;
}
.page-aside .aside-item:last-child .icon {
  border-radius: 0 0 6px 6px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.page-aside .aside-item .icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  border-left: 1px solid rgba(204, 204, 204, 0.5);
  border-right: 1px solid rgba(204, 204, 204, 0.5);
  transition: var(--duration);
}
.page-aside .aside-item .icon img {
  display: block;
  max-width: 42.30769231%;
  height: auto;
  transition: var(--duration);
}
.page-aside .aside-item .hover-box {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) scale(1, 0);
  padding-right: 10px;
  transition: 0.5s ease;
}
.page-aside .aside-item .hover-box .text {
  padding: 20px 10px;
  font-size: var(--font16);
  background-color: #014099;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: 10px;
}
@media (max-width: 1600px) {
  .page-aside {
    right: 10px;
  }
}
@media (max-width: 1300px) {
  .header-wrap .pc-nav {
    column-gap: 0.5rem;
    margin-left: auto;
  }
  footer .foot-copyright .copyright-wrap .text {
    font-size: 12px;
  }
}
@media (min-width: 993px) {
  .phone-btn,
  .phone-nav {
    display: none !important;
  }
}
@media (max-width: 1300px) {
  .common-index-news .news-area .left .mask .mask-inner {
    left: 37%;
    top: 67%;
  }
}
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
  .page-aside {
    display: none;
  }
  .header-wrap .pc-nav {
    display: none;
  }
  .header-wrap .other {
    --unit: 40px;
  }
  .header-wrap .other .lang .current-lang .icon1 {
    width: 14px;
  }
  header .phone-nav {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background-color: #fff;
    z-index: calc(99 * 8);
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 5vh;
    padding-bottom: 5vh;
    display: none;
  }
  header .phone-nav .nav-item {
    --unit: 18px;
    --item-color: #333;
  }
  header .phone-nav .nav-item:not(:last-child) {
    margin-bottom: 20px;
  }
  header .phone-nav .nav-item .item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .phone-nav .nav-item .item-top.active .link {
    color: var(--theme) !important;
  }
  header .phone-nav .nav-item .item-top.active .icon {
    transform: rotate(45deg);
  }
  header .phone-nav .nav-item .item-top.active .icon::before,
  header .phone-nav .nav-item .item-top.active .icon::after {
    background-color: var(--theme);
  }
  header .phone-nav .nav-item .item-top .link {
    font-size: 18px;
    color: var(--item-color);
    transition: var(--duration);
  }
  header .phone-nav .nav-item .item-top .icon {
    width: var(--unit);
    height: var(--unit);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: pointer;
    position: relative;
    transition: var(--duration);
  }
  header .phone-nav .nav-item .item-top .icon::before,
  header .phone-nav .nav-item .item-top .icon::after {
    content: "";
    background-color: var(--item-color);
    transition: var(--duration);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .phone-nav .nav-item .item-top .icon::before {
    width: var(--unit);
    height: 2px;
  }
  header .phone-nav .nav-item .item-top .icon::after {
    width: 2px;
    height: var(--unit);
  }
  header .phone-nav .nav-item .item-bottom {
    margin-top: 10px;
    padding-left: 1em;
    padding-right: 1em;
    display: none;
  }
  header .phone-nav .nav-item .item-bottom .bottom-item {
    display: block;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    overflow-wrap: break-word;
  }
  header .phone-nav .nav-item .item-bottom .bottom-item:not(:last-child) {
    margin-bottom: 10px;
  }
  header .phone-btn {
    width: 30px;
    display: block;
    margin-left: 15px;
    user-select: none;
    cursor: pointer;
  }
  header .phone-btn.active span {
    background-color: var(--theme);
  }
  header .phone-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  header .phone-btn.active span:nth-child(2) {
    display: none;
  }
  header .phone-btn.active span:nth-child(3) {
    transform: rotate(45deg);
  }
  header .phone-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }
  header .phone-btn span:last-child {
    margin-bottom: 0;
  }
  footer .foot-top {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  footer .foot-top .foot-left {
    width: 100%;
  }
  footer .foot-top .foot-right {
    width: 100%;
  }
  footer .foot-copyright .copyright-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  footer {
    background-position: left center;
  }
  footer .foot-top .foot-left .foot-icon-list .item .icon img {
    max-height: 60%;
    object-fit: contain;
  }
  footer .foot-top .foot-right .foot-nav {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  footer .foot-top .foot-right .foot-nav .nav-item {
    width: 100%;
  }
  footer .foot-top .foot-right .foot-nav .nav-item:not(:last-child) {
    margin-right: 0;
  }
  footer .foot-top .foot-right .foot-nav .nav-item .item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }
  footer .foot-top .foot-right .foot-nav .nav-item .item-top.active .icon {
    transform: rotate(45deg);
  }
  footer .foot-top .foot-right .foot-nav .nav-item .item-top .icon {
    display: block;
    --unit: 16px;
    width: var(--unit);
    height: var(--unit);
    position: relative;
    transition: var(--duration);
  }
  footer .foot-top .foot-right .foot-nav .nav-item .item-top .icon::before,
  footer .foot-top .foot-right .foot-nav .nav-item .item-top .icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    transition: var(--duration);
  }
  footer .foot-top .foot-right .foot-nav .nav-item .item-top .icon::before {
    width: 100%;
    height: 2px;
  }
  footer .foot-top .foot-right .foot-nav .nav-item .item-top .icon::after {
    width: 2px;
    height: 100%;
  }
  footer .foot-top .foot-right .foot-nav .nav-item .item-bottom {
    display: none;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 1em;
  }
  footer .foot-copyright .copyright-wrap .left {
    width: 100%;
  }
  footer .foot-copyright .copyright-wrap .right {
    width: 100%;
  }
  footer .foot-copyright .copyright-wrap .text {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  footer .foot-copyright .copyright-wrap .text:not(:last-child) {
    margin-right: 0;
  }
  footer .foot-top .foot-right .foot-nav .nav-item .item-bottom .item-link {
    font-size: 14px;
    display: block;
    width: auto;
  }
}
@media (max-width: 576px) {
  .header-wrap .other {
    --unit: 35px;
  }
  .header-wrap .other .lang .current-lang span {
    margin-left: 5px;
    margin-right: 5px;
  }
  .header-wrap .other .lang .current-lang {
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
  }
  .head-search-area .search-form input {
    font-size: 14px;
  }
  .head-search-area .search-form button {
    right: 0;
  }
}
.cookie-confrim {
  position: fixed;
  right: 2%;
  bottom: 2%;
  z-index: calc(99 * 5);
  width: min(480px, 90%);
  height: auto;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: var(--font16);
  overflow-wrap: break-word;
  padding: max(0.32rem, 20px);
}
.cookie-confrim .cookie-btn-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.cookie-confrim .cookie-btn-list .btn {
  white-space: nowrap;
  text-align: center;
  font-size: var(--font14);
  padding: 10px 15px;
  user-select: none;
  cursor: pointer;
  border-radius: 5px;
  outline: none;
  border: none;
}
.cookie-confrim .cookie-btn-list .btn-type1 {
  background-color: var(--theme);
  color: #fff;
}
.cookie-confrim .cookie-btn-list .btn-type2 {
  background-color: #1d1d1d;
  color: #fff;
}
.cookie-confrim .cookie-btn-list .btn-type3 {
  text-decoration: underline;
}
.cookie-dialog-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: calc(999 * 19);
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(28px);
  display: none;
}
.cookie-dialog-area .cookie-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(470px, 90%);
  background-color: #f8f7f480;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: max(0.3rem, 20px);
}
.cookie-dialog-area .cookie-dialog .close {
  width: 22px;
  margin-left: auto;
  user-select: none;
  cursor: pointer;
}
.cookie-dialog-area .cookie-dialog .close img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0);
}
.cookie-dialog-area .cookie-dialog .dialog-title {
  margin-top: 20px;
  border-bottom: 1px solid #0003;
  padding-bottom: 20px;
  font-size: 16px;
  color: #1d1d1d;
}
.cookie-dialog-area .cookie-dialog .text-main {
  margin-top: 20px;
  font-size: var(--font16);
  color: #1d1d1d;
}
.cookie-dialog-area .cookie-dialog .text-main .text-item {
  border-bottom: 1px solid #0003;
  margin-bottom: 10px;
}
.cookie-dialog-area .cookie-dialog .text-main .text-line {
  padding-bottom: 10px;
}
.cookie-dialog-area .cookie-dialog .text-main .text-line label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 5px;
  user-select: none;
  cursor: pointer;
  font-size: var(--font16);
}
.cookie-dialog-area .cookie-dialog .text-main .text-type2 {
  opacity: 0.7;
  margin-left: 5px;
  font-size: var(--font14);
}
.cookie-dialog-area .cookie-dialog .text-main .text-type3 {
  font-size: var(--font12);
}
.cookie-dialog-area .cookie-dialog .text-main .text-line {
  display: flex;
  align-items: center;
}
.cookie-dialog-area .cookie-dialog .dialog-btn-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.cookie-dialog-area .cookie-dialog .dialog-btn-list .btn {
  white-space: nowrap;
  text-align: center;
  font-size: var(--font14);
  color: #fff;
  padding: 10px 15px;
  user-select: none;
  cursor: pointer;
  border-radius: 5px;
  outline: none;
  border: none;
}
.cookie-dialog-area .cookie-dialog .dialog-btn-list .btn-type1 {
  background-color: #1d1d1d;
}
.cookie-dialog-area .cookie-dialog .dialog-btn-list .btn-type2 {
  background-color: var(--theme);
}
.cookie-dialog-area .cookie-dialog .dialog-btn-list .btn-type3 {
  background-color: #1d1d1d;
}
@media (max-width: 576px) {
  .cookie-confrim {
    font-size: var(--font14);
  }
}
