* {
    box-sizing: border-box;
}
/* 主要容器 */
.big_box {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: url(../img/斑点女生,鬼刀带鱼屏3440x1440壁纸_千叶网.jpg) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    height: auto;
}

/* 导航栏适配 */
.nav{
	background-color: rgba(0,0,0,0.25);
	backdrop-filter:blur(10px);
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.nav_left{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40%;
}
.nav_left a{
	font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}
.nav_left span{
	color: #ff6b8b;
}
.nav_right{
	width: 60%;
}
.nav1{
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 50px;
	gap:10px;
}
.nav1 li{
	list-style: none;
}
.nav1 a{
	text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.nav1 li:hover{
	color: #ff6b8b;
	border-bottom: 2px solid #ff6b8b;
    padding-bottom: 5px;
}
.nav1 a:hover{
	color: #ff6b8b;
}

/* 主要内容区域 */
.box1 {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    color: white;
    gap: 40px;
    padding-bottom: 50px;
}

/* 左侧个人卡片 */
.box11 {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    height: auto;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px;
    border-radius: 10px;
}

.box111 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-top: 20px;
}

.img111 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.box111 p {
    margin: 10px 0;
    text-align: center;
}

.box112 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.box1121,
.box1122,
.box1123 {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.box113 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.box1131 {
    text-align: center;
    width: 150px;
    padding: 12px 0;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.box1131:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* 右侧内容区域 */
.box12 {
    display: flex;
    flex-direction: column;
}

.box121 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 700;
}

.box1211 {
    width: 60%;
    display: flex;
    justify-content: center;
    padding: 12px 0;
    border-radius: 25px;
    border: 2px solid white;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.box1211:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.box121 p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.box121 span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.box122 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.box1221,
.box1222,
.box1223 {
    gap: 15px;
    width: 100%;
    height: auto;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    padding: 25px 15px;
    border-radius: 10px;
}

.box12211,
.box12212,
.box12213 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.box12211 p {
    font-size: 2.5rem;
    margin: 0;
}

.box12211 span {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff6b8b;
    margin-left: 5px;
}

.box12212 {
    color: rgba(255, 255, 255, 0.7);
    margin: 10px 0;
}

.box12213 {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.box123 {
    height: 50px;
}

/* 媒体查询 - 平板和桌面 */
@media (min-width: 768px) {
    .nav {
        padding: 20px 40px;
        margin-bottom: 100px;
    }

    .nav_left a {
        font-size: 1.8rem;
    }

    .nav1 a {
        font-size: 1.1rem;
    }

    .box1 {
        flex-direction: row;
        width: 80%;
        gap: 80px;
    }

    .box11 {
        width: 35%;
        height: 800px;
        font-size: 1.2rem;
    }

    .box12 {
        width: 65%;
    }

    .box121 span {
        font-size: 4rem;
    }

    .box122 {
        flex-direction: row;
        gap: 30px;
    }

    .box1221,
    .box1222,
    .box1223 {
        width: 30%;
        height: 250px;
    }

    .box12211 p {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .box1 {
        width: 70%;
        gap: 100px;
    }

    .box11 {
        width: 30%;
    }

    .box12 {
        width: 70%;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav_left,
    .nav_right {
        width: 100%;
        justify-content: center;
    }

    .nav1 {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
	 .box11 {
        width: 35%;
        height: 700px;
        font-size: 1.2rem;
    }
    .box1 {
        width: 95%;
    }

    .box121 span {
        font-size: 2rem;
    }

    .box1211 {
        width: 80%;
    }
}

/* 触屏优化 */
@media (hover: none) and (pointer: coarse) {
    .nav1 li:hover {
        color: inherit;
        border-bottom: none;
        padding-bottom: 0;
    }

    .nav1 a:hover {
        color: white;
    }

    .box1131:active,
    .box1211:active {
        transform: scale(0.98);
    }
}* {
    box-sizing: border-box;
}
/* 主要容器 */
.big_box {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: url(../img/斑点女生,鬼刀带鱼屏3440x1440壁纸_千叶网.jpg) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    height: auto;
}

/* 导航栏适配 */
.nav{
	background-color: rgba(0,0,0,0.25);
	backdrop-filter:blur(10px);
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.nav_left{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40%;
}
.nav_left a{
	font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}
.nav_left span{
	color: #ff6b8b;
}
.nav_right{
	width: 60%;
}
.nav1{
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 50px;
	gap:10px;
}
.nav1 li{
	list-style: none;
}
.nav1 a{
	text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.nav1 li:hover{
	color: #ff6b8b;
	border-bottom: 2px solid #ff6b8b;
    padding-bottom: 5px;
}
.nav1 a:hover{
	color: #ff6b8b;
}

/* 主要内容区域 */
.box1 {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    color: white;
    gap: 40px;
    padding-bottom: 50px;
}

/* 左侧个人卡片 */
.box11 {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    height: auto;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px;
    border-radius: 10px;
}

.box111 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-top: 20px;
}

.img111 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.box111 p {
    margin: 10px 0;
    text-align: center;
}

.box112 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.box1121,
.box1122,
.box1123 {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.box113 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.box1131 {
    text-align: center;
    width: 150px;
    padding: 12px 0;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.box1131:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* 右侧内容区域 */
.box12 {
    display: flex;
    flex-direction: column;
}

.box121 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 700;
}

.box1211 {
    width: 60%;
    display: flex;
    justify-content: center;
    padding: 12px 0;
    border-radius: 25px;
    border: 2px solid white;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.box1211:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.box121 p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.box121 span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.box122 {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.box1221,
.box1222,
.box1223 {
    gap: 15px;
    width: 100%;
    height: auto;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    padding: 25px 15px;
    border-radius: 10px;
}

.box12211,
.box12212,
.box12213 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.box12211 p {
    font-size: 2.5rem;
    margin: 0;
}

.box12211 span {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff6b8b;
    margin-left: 5px;
}

.box12212 {
    color: rgba(255, 255, 255, 0.7);
    margin: 10px 0;
}

.box12213 {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.box123 {
    height: 50px;
}

/* 媒体查询 - 平板和桌面 */
@media (min-width: 768px) {
    .nav {
        padding: 20px 40px;
        margin-bottom: 100px;
    }

    .nav_left a {
        font-size: 1.8rem;
    }

    .nav1 a {
        font-size: 1.1rem;
    }

    .box1 {
        flex-direction: row;
        width: 80%;
        gap: 80px;
    }

    .box11 {
        width: 35%;
        height: 800px;
        font-size: 1.2rem;
    }

    .box12 {
        width: 65%;
    }

    .box121 span {
        font-size: 4rem;
    }

    .box122 {
        flex-direction: row;
        gap: 30px;
    }

    .box1221,
    .box1222,
    .box1223 {
        width: 30%;
        height: 250px;
    }

    .box12211 p {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .box1 {
        width: 70%;
        gap: 100px;
    }

    .box11 {
        width: 30%;
    }

    .box12 {
        width: 70%;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav_left,
    .nav_right {
        width: 100%;
        justify-content: center;
    }

    .nav1 {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
	 .box11 {
        width: 35%;
        height: 700px;
        font-size: 1.2rem;
    }
    .box1 {
        width: 95%;
    }

    .box121 span {
        font-size: 2rem;
    }

    .box1211 {
        width: 80%;
    }
}

/* 触屏优化 */
@media (hover: none) and (pointer: coarse) {
    .nav1 li:hover {
        color: inherit;
        border-bottom: none;
        padding-bottom: 0;
    }

    .nav1 a:hover {
        color: white;
    }

    .box1131:active,
    .box1211:active {
        transform: scale(0.98);
    }
}
.weibu {
    background-color: #282828;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    gap: 100px;
    color: white;
}

.weibu a {
    text-decoration: none;
    color: white;
}

/* 响应式调整 - 针对小屏幕设备 */
@media (max-width: 768px) {
    .nav {
        padding: 10px 5px;
    }
    
    .nav_left a {
        font-size: 1.5rem;
    }
    
    .nav1 {
        gap: 5px;
    }
    
    .nav1 a {
        font-size: 0.9rem;
        padding: 0 3px;
    }
    
    .content-wrapper {
        padding: 25px;
        width: 95%;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    /* 小屏幕下的底部样式 */
    .weibu {
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 20px 15px;
    }
    
    .bottom_left, .footer-msg {
        width: 100%;
        text-align: center;
    }
}

/* 针对超小屏幕设备 */
@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        padding: 10px;
    }
    
    .nav_left, .nav_right {
        width: 100%;
        justify-content: center;
    }
    
    .nav1 {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        height: auto;
        margin-top: 10px;
    }
    
    .content-wrapper {
        padding: 20px 15px;
    }
    
    .content h1 {
        font-size: 1.8rem;
    }
    
    .content p {
        font-size: 0.95rem;
    }
    
    /* 超小屏幕下的底部样式 */
    .weibu {
        gap: 15px;
        padding: 15px 10px;
    }
    
    .bottom_left, .footer-msg {
        font-size: 0.9rem;
    }
}

/* 横屏模式优化 */
@media (max-height: 500px) and (orientation: landscape) {
    .content {
        min-height: calc(100vh - 60px);
    }
    
    .nav {
        padding: 8px 0;
    }
    
    .nav1 {
        height: 35px;
    }
}

/* 触屏设备优化 */
@media (hover: none) and (pointer: coarse) {
    .nav1 li:hover {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .nav1 a:hover {
        color: white;
    }
    
    .nav1 li:active {
        color: #ff6b8b;
        border-bottom: 2px solid #ff6b8b;
        padding-bottom: 5px;
    }
    
    .nav1 a:active {
        color: #ff6b8b;
    }
}