/* space Page Styles - 严格按照设计稿，使用rem单位配合resizeRoot.js */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mb-only {
    display: none;
}

body {
    
    font-family: 'p-medium';
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    /* font-size: var(--custom-text-size4); */
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    /* 基础字体大小 */
}
.bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section{
     width: 100vw;
    /* height: 100vh; */
    position: relative;
}
.privacy{overflow: hidden;}
.privacy ul{width: 100%;}
.privacy li{ width: 100%; height: 100vh; position: relative; color: #fff;}
.privacy li:last-child{
    height: calc(100vh - 0.75rem);
}
.privacy li img{width: 100%; height: 100%; object-fit: cover;}
.privacy li img.mb-only{object-fit: contain;}
.privacy li .con{
        width: 10.46rem;
        /* height: 100%; */
        position: absolute;
        bottom: 0.7rem;
        left: 0.96rem;
        /* display: flex; */
        /* flex-direction: column; */
        /* justify-content: center; */
        /* align-items: center; */
    }
.privacy li .con .title{
        font-size: 0.3rem;
        line-height: 1.26;
        text-transform: uppercase;
    }
.privacy li .con .desc{
        font-size: 0.2rem;
        line-height: 1.8;
        margin-top: 0.14rem;
    }
.privacy li .con a{
    border-radius: 0.04rem;
    background-color: #a59178;
    color: #fff;
    font-size: 0.2rem;
    height: 0.66rem;
    line-height: 0.66rem;
    display: inline-block;
    padding: 0 0.5rem;
    text-transform: uppercase;
    margin-top: 0.2rem;
}
.privacy .disclaimer{
    font-size: 0.12rem;
    line-height: 1.6;
    position: absolute;
    bottom: 0.24rem;
    right: 0.58rem;
    width: 8.16rem;
    opacity: 0.5;
}



/* 手机端适配 */
@media (max-width: 768px) {
     :root {
        /* --font-72: 0.56rem;
        --font-50: 0.4rem;
        --font-40: 0.36rem;
        --font-36: 0.32rem;
        --font-28: 0.28rem;
        --font-24: 0.24rem;
        --font-22: 0.22rem;
        --font-20: 0.2rem;
        --font-18: 0.32rem;
        --font-16: 0.16rem;
        --font-14: 0.14rem; */
        --videoWidth:90%;
        --videoHeight:3.8rem;
    } 

    .pc-pad {
        display: none !important;
    }

    .mb-only {
        display: block !important;
    }

    section {
        width: 100%;
        /* height: 100vh; */
        /* min-height: 100vh; */
    }
    .privacy li:last-child{
    height: 100vh;
}
   .privacy li .con{
    width: 90%;
    left: 5%;
    bottom: 2.6rem;
    /* transform: translateX(-50%); */
   }
   .privacy li img.mb-only{object-fit: cover;}
   .privacy li .con .title{
    font-size: 0.4rem;
   }
   .privacy li .con .desc{
    font-size: 0.24rem;
    margin-top: 0.24rem;
   }
   .privacy li .con a{
    width: 100%;
    text-align: center;
    padding: 0;
    height: auto;
    line-height: 1.6;
    padding: 0.2rem 0;
   }
   .privacy .disclaimer{
        font-size: 0.18rem;
        width: 90%;
        left: 50%;
        bottom: 0.64rem;
        transform: translateX(-50%);
    }
}