/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局图片限制 */
img {
    height: auto;
    display: block;
    margin-left: auto;    /* 添加左右边距自动，实现水平居中 */
    margin-right: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(to right, #ff7e5f, #feb47b); 
    
    min-height: 100vh;
    position: relative;
}
.body-hidden{
    overflow: hidden;
} 


/* 导航栏样式 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1.5rem 0rem; */
    padding-top: 2rem;
    background: none;
    position: fixed;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    /* gap: 0.5rem; */
    color: #fff;
    text-decoration: none;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    span{
        font-size: 1rem;
        font-weight: normal;
        padding-left: 0.5rem;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
	padding-right: 15px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    transition: opacity 0.3s ease;
    /* font-weight: 500; */
}

.nav-link:hover {
    opacity: 0.8;
}

/* 主要内容区样式 */
.main-content {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
/* .main-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height:100vh;
    background: url(images/main_l.png) center center;
    width: 100%;
    height: 100%;
} */

/* 中心大图样式 */
.center-image {
    width: 45%;
    /* max-width: 800px; */
    position: relative;
    z-index: 2;
	
}

.center-image img {
    width: 100%;
    height: auto;
    display: block;
	
}

/* 角落图片样式 */
.corner-image {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-51%, -50%);
    height: 80%;
    z-index: 1;
}

.corner-image img {

    height: 100%;
    object-fit: cover;
    object-position: center;
	border-radius: 20px;
}

/* 底部版权信息 */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* text-align: center; */
    padding: 1rem;
    padding-left: 0rem;
    color: white;
    background: none;
    z-index: 1000;
    width: 1200px;
    margin: 0 auto;
	display: flex;
	justify-content: center;
}

footer p {
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.8;
	padding: 5px;
}

footer p:first-child {
    margin-bottom: 0.5rem;
}

.privacy-page{
     
}
.navbar-privacy{
    position: fixed;
     
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}
.navbar-privacy-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    width: 1200px;
    margin: 0 auto;
}
.privacy-content{
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 9rem;
    max-width: 1200px;
    margin-bottom: 4rem;
}
.privacy-title{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}
.policy-content{
    font-size: 1rem;
    /* line-height: 1.5; */
    text-align: left;
    color: #575757;
    /* 英文换行 */
    word-break: break-all;
}

.policy-content span{
    font-weight: bold;
    color: #000000;
}

/* 移动端 */
@media (max-width: 1000px) {
    .navbar {
       padding-left: 0.8rem;
       padding-right: 0.8rem;
       padding-top: 1rem;
       
    }
    .logo{
        font-size: 1.5rem;
    }
    .nav-links{
        gap: 1rem;
    }
    .nav-link{
        font-size: 0.9rem;
    }
    footer{
        width: 100%;
        max-width: 1200px;
        text-align: center;
    }
    .navbar-privacy-content{
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        margin:0px;
    }
    .privacy-content{
        margin: 0px 0.8rem;
        margin-top: 6rem;
        margin-bottom: 2rem;
    }
}
