@font-face {
    font-family: "Inter";
    font-weight: bold;
    font-style: normal;
  
    font-display: swap;
    src: url(../fonts/Inter-Bold.woff2) format("woff2"), url(../fonts/Inter-Bold.woff) format("woff");
}
@font-face {
    font-family: "Inter";
    font-weight: 500;
    font-style: normal;
  
    font-display: swap;
    src: url(../fonts/Inter-Medium.woff2) format("woff2"), url(../fonts/Inter-Medium.woff) format("woff");
}
@font-face {
    font-family: "Inter";
    font-weight: 400;
    font-style: normal;
  
    font-display: swap;
    src: url(../fonts/Inter-Regular.woff2) format("woff2"), url(../fonts/Inter-Regular.woff) format("woff");
}

ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}

* {
    box-sizing: border-box;
}
body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, "Open Sans", "Helvetica Neue", sans-serif, serif;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.4735;
  
    position: relative;
  
    color: #333;
  
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input:focus,
button:focus {
    outline: none;
}
body,h1,h2,h3,h4,h5,h6,p,ul,ol {
    margin: 0;
    padding: 0;
}
table {
  border-collapse: collapse;
}
li {
  list-style: none;
}
a {
    display: inline-block;
  
    cursor: pointer;
    text-decoration: none;
  
    color: #000;
}
a,
a:hover,
a:visited {
    outline: none;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
img {
    width: 100%;
    max-width: 100%;
  
    transition: opacity ease 0.25s;
    vertical-align: middle;
  
    opacity: 1;
}
img[data-src] {
    opacity: 0;
}
input {
    border: none;
    background: 0 0;
} 
::-webkit-input-placeholder {
    color: #9da8ba;
    font-size: 15px;
}
::-moz-placeholder {
    color: #9da8ba;
    font-size: 15px;
} 
:-ms-input-placeholder {
    color: #9da8ba;
    font-size: 15px;
} 
input[type="checkbox"] {
    display: none;
}
.coverlink {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
}

/* header */
.header {
    background-color: #000;
    height: 56px;
    border-bottom: 1px solid #eee;
    /* box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06); */
}
.wrapper {
    padding-left: 20px;
    padding-right: 20px;
}
.header-con {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: block;
  
    width: 122px;
    height: 56px;
    z-index: 1004;
  
    background-image: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 122px 17px;
}
.navfix {
    position: absolute;
    z-index: 1003;
    top: 55px;
    right: -20px;
    left: -20px;
    background-color: #fff;
    box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.06);
    border-radius: 0 0 12px 12px;
    height: 0;
    overflow: hidden;
    transition: all ease 0.25s;
}
  
.header-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    padding: 0 16px;
    height: 44px;
}
.opacitybg {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    z-index: 1002;
    background-color: rgba(0, 0, 0, 0.55);
    transition: all ease 0.25s;
    display: none;
}
#topmenu:checked ~ .opacitybg {
    display: block;
}

#topmenu:checked ~ .navfix {
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
}
#topmenu:checked ~ .bible-navfix {
    height: 100px;
}
#topmenu:checked ~ .topmenu-box::after {
    display: none;
}
#topmenu:checked ~ .topmenu-box .menu-icon {
    background: 0 0;
}
#topmenu:checked ~ .topmenu-box .menu-icon::before {
    transform: rotate(45deg);
    width: 20px;
    right: -5px;
}
#topmenu:checked ~ .topmenu-box .menu-icon::after {
    width: 20px;
  
    transform: rotate(-45deg);
    transform-origin: 5px -7px;
}
.topmenu-box {
    position: absolute;
    z-index: 1003;
    top: 8px;
    right: -13px;
  
    width: 40px;
    height: 40px;
    padding: 13px 10px;
  
    transition: all ease 0.25s;
}
.topmenu-box::after {
    position: absolute;
    left: 6px;
    top: 13px;
    display: block;
    content: "";
    width: 2px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
}

.menu-icon {
  position: relative;
  z-index: 1000;

  display: block;
}
.menu-icon::before,
.menu-icon::after {
  position: absolute;
  top: 6px;
  right: 0;

  content: "";
  transition: all ease 0.25s;
}
.menu-icon::after {
  width: 10px;
  top: 12px;
}

/* footer */
.footer {
    line-height: 24px;
    margin-top: 24px;
    background-color: #f8f8f8;
}
  
.footer-con {
    padding-top: 18px;
    padding-bottom: 26px;
}
  
.footer-con .logo {
    margin: inherit;
}
  
.footer-service {
    font-size: 14px;
    line-height: 18px;
    margin-top: 3px;
    color: #999;
}
  
.footer-ls {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
  
.footer-link {
    line-height: 36px;
    display: block;
    color: #666;
}

.header-link:hover {
    color: #3e84f7;
}
.footer-link:hover {
    text-decoration: underline;
}

/* 404 */
.error-con {
    margin: 34px 20px;
    text-align: center;
}
  
.error-pic {
    display: block;
    margin: 0 auto;
}
  
.error-des {
    margin: 16px 0;
    color: #8f999e;
}
  
.error-link {
    line-height: 48px;
    display: block;
    width: 180px;
    margin: 0 auto;
    color: #fff;
    border-radius: 24px;
    background-color: #3e84f7;
}

/* index */
.index-ads {
    margin: 16px 0;
}
.cate-scroll {
    position: relative;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 16px;
}
.cate-ls {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.cate-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    margin-right: 8px;
}
.cate-link > span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 500;
}
.cate-ls .cate-link:last-child {
    margin-right: 0;
}
.page-tl {
    font-size: 18px;
    line-height: 1.4;
    margin: 16px 0;
}

.card-ls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.card-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    height: 164px;
    padding: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.card-item:hover {
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
.card-ads {
    width: 100%;
    grid-column: 1 / -1;
    margin: 4px 0;
}
.card-cover {
    width: 136px;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #EFEFEF;
    flex-shrink: 0;
}
.real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.display-img {
    display: none;
}
.display-img.loaded {
    display: block;
}
.loading-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    background-color: #f7f7fd;
    position: relative;
}
.loading-img.hidden {
    display: none;
}
.loading-inner {
    height: 100%;
    width: 100%;
    background-image: url(../images/loading.svg) !important;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f8ff;
} 
.loading-inner {
    position: absolute;
    width: 9px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 7%;
}
.loading-inner div {
    position: absolute;
    width: 50%;
    height: 150%;
    background: #474bff;
    transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
    animation: spinner-fzua35 1s calc(var(--delay) * 1s) infinite ease;
}
.loading-inner div:nth-child(1) {
    --delay: 0.1;
    --rotation: 36;
    --translation: 150;
}
.loading-inner div:nth-child(2) {
    --delay: 0.2;
    --rotation: 72;
    --translation: 150;
}
.loading-inner div:nth-child(3) {
    --delay: 0.3;
    --rotation: 108;
    --translation: 150;
}
.loading-inner div:nth-child(4) {
    --delay: 0.4;
    --rotation: 144;
    --translation: 150;
}
.loading-inner div:nth-child(5) {
    --delay: 0.5;
    --rotation: 180;
    --translation: 150;
}  
.loading-inner div:nth-child(6) {
    --delay: 0.6;
    --rotation: 216;
    --translation: 150;
}  
.loading-inner div:nth-child(7) {
    --delay: 0.7;
    --rotation: 252;
    --translation: 150;
}  
.loading-inner div:nth-child(8) {
    --delay: 0.8;
    --rotation: 288;
    --translation: 150;
}  
.loading-inner div:nth-child(9) {
    --delay: 0.9;
    --rotation: 324;
    --translation: 150;
}  
.loading-inner div:nth-child(10) {
    --delay: 1;
    --rotation: 360;
    --translation: 150;
}
@keyframes spinner-fzua35 {
    0%, 10%, 20%, 30%, 50%, 60%, 70%, 80%, 90%, 100% {
      transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1%));
    }
    50% {
      transform: rotate(calc(var(--rotation) * 1deg)) translate(0, calc(var(--translation) * 1.5%));
    }
}
.card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.card-tl {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-desc {
    font-size: 13px;
    line-height: 22px;
    color: #9A9CAC;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    font-size: 12px;
}
.card-rate {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666666;
    font-size: 14px;
}
.card-rate img {
    width: 14px;
    height: 14px;
}
.card-rate span {
    color: #666;
    line-height: 1;
}
.card-visitors {
    width: 111px;
    height: 24px;
    margin-left: auto;
    border-radius: 12px;
    border: 1px solid #F0F1F4;
    background: #FBFBFB;
    color: #999999;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.card-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-avatar img {
    width: 16px;
    height: 16px;
}

.app-card .card-item {
    height: auto;
    flex-direction: column;
    padding: 0;
}
.app-card .card-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.app-card .card-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28A745, #28A745);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.app-card .app-cover {
    position: relative;
    width: 100%;
    height: unset;
    flex-shrink: 0;
    aspect-ratio: 347 / 203;
}
.app-card .app-cover:after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 99px;
    height: 41px;
    background: url(../images/go.svg) no-repeat center center;
}
.app-card .card-item:hover .app-cover:after {
    background-image: url(../images/go-hover.svg);
}
.app-card .cover-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.app-card .app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.app-card .card-item:hover .app-img {
    transform: scale(1.05);
}
.app-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 14px 14px 14px;
}
.app-info .card-tl {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.app-info .card-meta {
    margin-top: 0;
}
.more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 150px;
    height: 40px;
    padding: 0 24px;
    margin: 0 auto 16px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}
.more-link:hover {
    background: #28A745;
    color: #fff;
    border-color: #28A745;
}
.more-link:hover .icon-more {
    fill: #fff;
    transform: translateX(2px);
}
.icon-more {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}
.link-ls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
    margin-top: 20px;
}
.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 6px 16px;
    border-radius: 6px;
}
.link-item > span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 500;
}
.cate-link:hover, .link-item:hover {
    color: #3e84f7;
}

/* detail */
.app-detail {
    margin: 16px 0;
}
.detail-img {
    margin-top: 16px;
    border: 1px solid #ececec;
    border-radius: 10px;
}
.current {
    display: flex;
    align-items: center;
    position: relative;
}
.current-logo {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border: 1px solid #e8e8e8;
    border-radius: 20%
}
.current-info {
    overflow: hidden;
    flex: 1;
}
.current-score {
    display: flex;
    align-items: center
}
.current-score .score-span-num {
    margin-left: 3px
}
.current-title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}
.current-star {
    position: relative;
    width: 70px;
    height: 14px;
    margin-top: -2px;
    margin-left: -2px;
    background-image: url('http://www.appslocal.com/Public/static/images/star.svg');
    background-size: 14px 14px
}
.current-active-star {
    position: absolute;
    top: 0;
    left: 0;
    height: 14px;
    background-image: url('http://www.appslocal.com/Public/static/images/star_active.svg');
    background-size: 14px 14px;
}
.current-cate {
    font-size: 14px;
    color: #666
}
.current-rating {
    font-size: 14px;
    margin-left: 3px;
}
.app-descript {
    margin: 24px 0 -4px;
}

.app-descript p {
    margin-bottom: 16px;
}

.download-top {
    background-color: #00a173;
    line-height: 32px;
    color: #fff;
    padding: 0 16px;
    border-radius: 3px;
    margin: 5px 0;
    font-size: 14px;
    font-weight: 700;
}

.review-curapp-pc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    margin-left: -1px;
    overflow: hidden;
    margin-top: 16px;
}

.review-curapp-pcitem {
    position: relative;
    overflow: hidden;
    margin-left: -1px;
    padding: 0 8px;
    text-align: center
}

.review-curapp-pcitem::before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 1px;
    height: 30px;
    content: '';
    background-color: rgba(37,44,77,.1)
}
.review-curapp-new {
    font-size: 12px;
    line-height: 1.1;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-curapp-pcvalue {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.icon-curapp {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    flex: 0 0 15px;
}

.review-curapp-pcitem:nth-child(1) {
    padding-left: 5px
}

.archive-page {
    min-height: calc(100vh - 300px);
}
.detail-info {

}
.detail-info h3,.faq-info h3:first-child {
    color: #2B2B2B;
    font-family: "Open Sans";
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}
.detail-info p {
    font-family: "Open Sans";
    font-size: 15px;
    line-height: 30px;
    color: #5F5F5F;
    margin-bottom: 12px;
}
.detail-info p + p {
    margin-top: -6px;
}
.detail-info table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #F2F2F2;
    margin: 16px 0;
}
.detail-info table th {
    font-family: "Open Sans";
    background: #FBFBFD;
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #F2F2F2;
    font-weight: 500;
}
.detail-info table tr {
    border-bottom: 1px solid #F2F2F2;
}
.detail-info table td {
    padding: 12px 16px;
    border: 1px solid #F2F2F2;
    color: #5F5F5F;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    
}
.detail-info table tr td:first-child {
    background-color: #FBFBFD;
}

.faq-info h3:not(:first-child) {
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    background: #FAFBFC;
    display: flex;
    align-items: center;
    padding: 15px 20px;

    color: #4E4E4E;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #E8F5EC;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}
.faq-info p {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;

    color: #5F5F5F;
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 400;
    line-height: 29px;
    border-radius: 0 0 20px 20px;
    border: 1px solid #E8F5EC;
    border-top: none;
    margin-bottom: 16px;
}

.visit-link {
    width: 100%;
    height: 46px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    background: #1486FF;
    color: #fff;
    margin: 16px 0;
}
.visit-link span {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 500;
    line-height: 14px;
}
.icon-arrow {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: all 0.3s ease;
}
.visit-link:hover {
    text-decoration: underline;
}
.visit-link:hover .icon-arrow {
    transform: translateX(4px);
}



.side-ls {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.side-item {
    position: relative;
    width: 100%;
    padding-bottom: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #F6F6F6;
}
.side-logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #ECECEC;
    overflow: hidden;
    margin-right: 14px;
}
.side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.side-tl {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.icon-side-arrow {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    fill: #ccc;
}
.side-item:hover .icon-side-arrow {
    fill: #000;
}



@media screen and (min-width: 768px) {
    .wrapper {
        position: relative;
        max-width: 768px;
        margin: 0 auto;
    }
    /* 404 */
    .error-con {
        margin-top: 64px;
        margin-bottom: 32px;
    }
    .error-pic {
        max-width: 435px;
    }
    .error-des {
        font-size: 22px;
        margin-top: 28px;
        margin-bottom: 32px;
    }

    /* index */
    .index-ads {
        margin: 20px 0;
    }
    .page-tl {
        font-size: 20px;
    }
    .cate-link {
        width: 20%;
        margin-right: 16px;
    }
    .card-ls {
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }
    .card-ls.related-card {
        grid-template-columns: repeat(3, 1fr);
    }
    .link-ls {
        grid-template-columns: repeat(5, 1fr);
    }
    .more-link {
        width: 172px;
        height: 44px;
        font-size: 15px;
    }
    .icon-more {
        width: 18px;
        height: 18px;
    }

    /* detail */
    .current-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .app-detail {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 12px;
        margin: 20px 0;
    }
    .detail-img {
        flex: 0 0 180px;
        width: 180px;
        height: 95px;
        margin-top: 0;
    }
    
    .current-logo {
        flex: 0 0 96px;
        width: 96px;
        height: 96px;
    }
    .review-curapp-pc {
        margin-top: 20px;
        overflow: hidden;
    }
    
    .review-curapp-pcitem {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .review-curapp-new {
        height: 100%;
        display: flex;
        align-items: center;
    }
    .review-curapp-new,.review-curapp-pcvalue {
        font-size: 14px;
    }

    .card-ads {
        min-height: 250px;
    }
    .card-ads ins.adsbygoogle {
        min-height: 250px;
    }

    

}
@media screen and (min-width: 1200px) {
    .wrapper {
        max-width: 1136px;
    }
    .page-content {
        display: flex;
    }
    .page-left {
        flex: 0 0 728px;
        width: 728px;
        margin-right: 0;
        margin-left: 0;
    }
    .page-right {
        flex: 1;
        margin-left: 68px;
    }

    .topmenu-box {
        display: none;
    }
    .header {
        height: 64px;
    }
    .navfix {
        position: static;
        height: 44px;
        box-shadow: none;
        display: flex;
        padding: 0;
        border-radius: 0;
    }
    .logo {
        width: 156px;
        height: 64px;
        background-size: 156px 22px;
    }
    .navfix {
        background-color: #000;
    }
    .header-link {
        color: #fff;
    }
    .footer .logo {
        width: 241px;
        height: 41px;
        background-size: 241px 33px;
    }
    .footer {
        padding-top: 40px;
    }
    .footer-inline {
        display: flex;
        align-items: flex-end;
    }
    
    .footer-ls {
        display: flex;
        gap: 20px;
    }
    .footer-service {
        padding-left: 24px;
    }

    .about-us-link {
        margin-right: 36px;
    }
    .header-pc {
        display: flex;
        flex: 1;
        justify-content: flex-end;
    }

    /* index */
    .page-tl {
        font-size: 24px;
        line-height: 1;
        margin: 20px 0;
    }
    .card-ls {
        grid-template-columns: repeat(3, 1fr);
    }
    .card-ls.app-card {
        grid-template-columns: repeat(4, 1fr);
    }
    .card-ls.related-card {
        grid-template-columns: repeat(3, 1fr);
    }
    .link-ls {
        grid-template-columns: repeat(5, 1fr);
    }
    .cate-link, .link-item {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}