@font-face { font-family: "Times Newer Roman"; src: url('TimesNewerRoman-Regular.otf'); }
@font-face { font-family: "Averia"; src: url('AveriaSerifLibre-Regular.ttf'); }
html,body {
    /*cursor: url(arrow.png), auto;*/
    /*position: fixed;*/
    /*overflow-y: scroll;*/
    margin: 0;
    border: 0;
    /*border-top: solid 1px black;*/
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #f5f5f5;
    /*display: flex;*/
    /*background: linear-gradient(#86888C 80%, #E9E7EB 100%);*/
    /*background-attachment: fixed;*/
    /*transition: background-color 0s;*/
}
a, p, div {
    text-decoration: none;
    font-family:  "Averia","Times", "Times New Roman","Times Newer Roman", "Songti SC", "宋体", STSong, Simsun, 'Noto Serif CJK SC', 'Source Han Serif SC', ‘Source Han Serif’, source-han-serif-sc, TimesNewRoman, Times New Roman, Times, Baskerville, Georgia, serif;
    font-weight: bold;
    line-height: 18px;
    /*letter-spacing: 0.1px;*/
    color: #000000;
    /*hyphens: auto;*/
    /*-webkit-hyphens: auto;*/
    /*-moz-hyphens: auto;*/
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
a[href^=tel] {
    text-decoration:inherit;
    color: inherit;
}
::selection {
    background: grey;
}
::-moz-selection {
    background: grey;
}
::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}
.bg{
    position: fixed;background-color: white;
    width: 100vw;height: 100%;top: 0;left: 0;
}
.title{
    position: fixed;
    top: 25px;
    left: 40px;
}
.title-text{
    top: 25px;
    left: 40px;
    mix-blend-mode: exclusion;
    color: white;
}
.dot{
    left: 40px;position: fixed;
    background-color: white;mix-blend-mode: exclusion;
    background-blend-mode: difference;
}
.title-p{
    left: 40px;position: fixed;
    letter-spacing: -0.5px;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}
.title-img{
    width: 95px;
    left: 90px;
    top: 25px;
    position: fixed;
    /*z-index: -99;*/
    transform: translateY(-3%);
    animation: floating 5s alternate ease-in-out infinite;
}
.dot{
    left: 40px;
    top: 142.5px;
    position: fixed;
    margin: 10px 0 5px 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.title-a{
    left: 40px;
    top: 180px;
    position: fixed;
    font-size: 12px;
}

.content{
    background-color: black;
    position: absolute;
    left: 25vw;
    top: 5%;
    width: 70vw;
    height: 80%;
}
.content-img{
    position: absolute;
    left: 50%;top: 50%;max-width: 89%;max-height: 90%;
    transform: translate(-50%,-50%);
    transition-duration: 0.5s;
    opacity: 0;
}
.text{
    background-color: #ffffff;
    position: absolute;
    border: solid 1px grey;

    left: 25vw;
    top: 90%;
    width: 70vw;
    height:max-content;
}
.text p{
    font-size: 12px;font-weight: normal;
    font-family: 'Noto Serif CJK SC', 'Source Han Serif SC', ‘Source Han Serif’, source-han-serif-sc,"Songti SC","宋体",STSong, Simsun,TimesNewRoman,Times New Roman,Times,Baskerville,Georgia,serif;
    line-height: 20px;padding: 30px;
    width: 490px;max-width: 88%;
}
.footer{
    float: left;
    background-color: #ffffff;
    width: 600px;max-width: 88%;
    padding-left:10px ;
    /*position: absolute;*/

    /*left: 25vw;*/
    /*top: 115%;*/
    /*width: 70vw;*/
    /*height: 20%;*/
}
.pdf-icon{
    max-height: 150px;
    max-width: 70vw;
}
.bottomcontent{
    height: max-content;
    padding-bottom: 50px;
}

@media (max-aspect-ratio: 1/1) {
    .content{
        left: 5vw;
        top: 37.5%;
        width: 90vw;
        height: 50%;
    }
    .text{
        left: 5vw;
        top: 90%;
        width: 89.5vw;
        height:max-content;
    }
    .text p{
        padding: 5%;
        width: 90%;
    }
    .footer{
        width: 90%;
        /*left: 5vw;*/
        /*top: 90.5%;*/
        /*width: 90vw;*/
        /*height: 20%;*/
    }
}
@media (max-width: 350px){


    .title{
        top: 5.5vw;
        left: 7vw;
    }
    .title-p{
        top: 5.5vw;
        left: 7vw;
        letter-spacing: -0.5px;
        font-size: 4vw;
        line-height: 5.5vw;
    }
    .title-img{
        top: 5.5vw;
        width: 25vw;
        left: 25vw;
    }

    .dot{
        top: 33.5vw;
        left: 7vw;
        margin: 10px 0 5px 0;
        width: 5vw;
        height: 5vw;
    }
    .title-a{
        top: 44.5vw;
        left: 7vw;
        font-size: 4vw;
    }
    .text p{padding: 3vw;
        font-size: 3vw;
        line-height: 5vw;
    }
    .pdf-icon {
        max-width: 50vw;
    }
    .footer {
        padding-left: 3vw;
    }
}
@keyframes opacityUp {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
@keyframes floating {
    from {
        transform: translateY(-3%);
    }
    to {
        transform: translateY(7%);
    }
}