@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,900;1,700&display=swap");

/* CSS Variables */
:root {
    --normal-font: 400;
    --bold-font: 600;
    --bolder-font: 900;
    --primary-color: #0652dd;
    --secondary-color: #ea2027;
    --third-color: #ffffff;
    --line-height: 1.7rem;
    --transition: 0.4s ease-in;
}

/* Smooth scroll effect */
html {
    scroll-behavior: smooth;
}

html, body{
    /* width: 100vw;
    height: 100vh;
    overflow: hidden; */
}

/* Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* transition: var(--transition); */
}

body {
    font-family: "Roboto", sans-serf;
    background: url("../images/banner2.png") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



ul li {
    list-style-type: none;
    display: inline;
}

a {
    text-decoration: none;
    color: var(--third-color);
}

.empty {
    width: 50%;
}

nav {
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.3rem 6rem;
    height: 5rem
}
ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logomb{
    display: none;
}
  
.nav-item {
    margin-left: 2rem;
    /* background: linear-gradient(90deg,rgb(230 10 133) 50%,rgb(203 9 179)  100%); */
    /* border-radius: 18px; */
    padding: 8px 0px 8px 0px;
    font-size: 26px;
    color: #ffffff;

}

.nav-item.navtxt {
    white-space: nowrap;
}
  
.nav-link {
    font-weight: var(--bold-font);
}

.content{
    display: flex;
    padding-top: 20rem;
}

.txt{
    width: 60%;
    display: grid;
    height: 100%;
}

.nav-item{
    display: grid;
    height: 100%;
}

.iconnav {
    max-width: 100%;
    max-height: 100vh;
    width: 70px;
    margin: auto;
}

.center-fit {
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
}

.qrcode{
    /* width: 40%; */
    margin-left: 20%;
    margin-top: 8%;
}

.qrcodee{
    background-color: rgb(255 255 255 / 43%);
    padding: 10px;
    width: auto;
    margin: auto;
    border-radius: 10px;
}

.pc-code-box{
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    width: 170px;
    height: 170px;
    margin: auto;

}
.contentmb{
    display: none;
}


.android_poisoning_header {
    width: 100%;
    background: #fff;
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
}
.android_poisoning_left {
    background: center/2.2rem no-repeat url(../images/sp/back-black.png);
}
.android_poisoning_left, .android_poisoning_right {
    width: 2.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.android_poisoning_center {
    flex: 1;
    height: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.android_poisoning_main {
    margin-top: 4.5rem;
    padding: 0 0.125rem 4.5rem 0.125rem;
    background-color: #ffffff;
}
.android_poisoning_main > .item {
    width: 100%;
    height: auto;
    display: block;
}
.android_poisoning_main > .item > img {
    width: 100%;
    height: 100%;
}
@media screen and (max-width:1448px) {
    nav{
        padding: 0px;
        margin-top: 10px;
    }
    .nav-item{
        font-size: 11px;
    }
}
@media screen and (max-width:640px) {
    body {
        background: url("../images/sp/banner2.png") no-repeat;
    }
    .titlee{
        display: none;
    }
    nav{
        padding: 10px;
        margin-top: 15px;
    }
    .nav-item{
        margin-left: 1rem;
        font-size: 18px;
    }
    .iconnav{
        width: 80%;
    }
    .content{
        display: none;
    }
    .contentmb{
        display: block;
        margin-top: 15rem;
    }
    .txtmb{
        font-size: 16px;
        color: #eeeeeea8;
        text-align: center;
    }

    /* #clickImgMb, #linkIOS{
        display: none;
    }
    .txtandroid{
        display: none;
    } */
    
}

#clickImgMb {
    display:flex;
    align-items:center;
    margin-top: 2rem;
}

#clickImgMb a {
    display:block;
    text-align: center;
}

#clickImgMb img {
    width: 90%;
}


@media screen and (max-width:480px) {
    .hide{
        display: none;
    }
    .nav-item{
        margin-left: 0rem;
        font-size: 11px;
        width: 70px;
    }
    .iconnav{
        width: 60%;
        margin-left: 20%;
    }
}   



