﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    display: none;
}
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hidden {
    display: none;
}
.h-230{
    height: 230px;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}
img {
    object-fit: cover;
}
a {
    text-decoration: none;
    color: #5c9bd5;
}

/* 🔥 核心修改：body 宽度 700px，清新淡蓝背景 */
body {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    color: #3c5a7d;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    background: linear-gradient(145deg, #eef5ff 0%, #e0ecf9 100%);
}

#app {
    font-size: .26rem;
}
.swiper-c{
    overflow: hidden;
}
.text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.px-15 {
    padding: 0 .30rem;
}
.px9 {
    padding: 0 .18rem;
}
.mt-15{
    margin-top: .30rem;
}
.mb-9{
    margin-bottom: 9px;
}
.mt-7{
    margin-top: .14rem;
}
.mb-0{
    margin-bottom: 0 !important;
}

/* 顶栏 — 半透玻璃质感 */
.my-sticky {
    position: sticky;
    top: 0;
    display: flex;
    height: 1.12rem;
    align-items: center;
    z-index: 12;
    padding: 9px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(92, 155, 213, 0.2);
}

.marquee-wrap {
    padding: .10rem 0;
    width: 100%;
}
.scrollable-content{
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 1.25rem;
}

.marquee-box {
    display: flex;
    align-items: center;
    height: .78rem;
    padding: .12rem;
    background: rgba(92, 155, 213, 0.1);
    border-radius: .38rem;
    backdrop-filter: blur(4px);
}
.marquee-box .container-main {
    flex: 1;
    margin: 0 .18rem;
    font-size: .21rem;
    overflow: hidden
}
.marquee-box p {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    font-size: .29rem;
    animation: vMarquee 13s linear infinite;
    color: #5c9bd5;
}
.marquee-box .btn-more {
    width: 1.55rem;
    height: .54rem;
    line-height: .54rem;
    border-radius: .27rem;
    text-align: center;
    font-size: .23rem;
    background: linear-gradient(95deg, #6ab0f5, #4a8bcb);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(74, 139, 203, 0.2);
}

@keyframes vMarquee {
    0% { transform: translate3d(0, 0, 0) }
    100% { transform: translate3d(-100%, 0, 0) }
}

.waterfall-flow{
    columns:2;
    column-gap: 9px;
}
.column-gap-13 {
    column-gap: 13px;
}

.flow-item {
    margin-bottom: 9px;
    display: block;
    width: 100%;
    border-radius: 20px;
    break-inside:avoid;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s;
}
.flow-item:hover {
    transform: translateY(-2px);
}
.home .flow-item{
    margin-bottom: 13px;
}
.flow-h-img{
    width: 100%;
    height: auto;
}

#ad1-swiper {
    margin-top: .26rem;
    overflow: hidden;
}

.top-sticky {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 12;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 9px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.go-home{
    width: 1.68rem;
    height: .75rem;
}

.jgg-wrap {
    margin-bottom: .18rem;
    margin-top: .26rem;
}
.xm-title {
    font-size: .30rem;
    color: #2c577c;
    margin-bottom: .18rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* 🔥 九宫格：桌面端6列，手机端≤600px时4列 */
.jgg-conter {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .24rem;
}
@media (max-width: 600px) {
    .jgg-conter {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.jgg-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.jgg-img {
    width: 1.24rem;
    height: 1.24rem;
    border-radius: .22rem;
    margin-bottom: .14rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background: #f0f6ff;
    border: 1px solid rgba(92, 155, 213, 0.3);
}

/* 广告卡片 */
.ad1-item {
    display: flex;
    align-items: center;
    padding: .34rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    width: 100%;
    border-radius: 20px;
    margin-bottom: 8px;
}
.hp-ad .ad1-item:first-child {
    border-bottom: 1px solid rgba(92, 155, 213, 0.2);
}
.ad1-item-img{
    width: 1.08rem;
    height: 1.08rem;
    margin-right: .18rem;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.ad1-item-info {
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
}
.ad1-name {
    color: #2c577c;
    font-weight: 700;
    font-size: .29rem;
}
.ad1-sub-text{
    color: #7ba0c0;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}
.ad2-item {
   display: flex;
   align-items: center;
   border-radius: 18px;
   background-color: #ffffff;
   padding: 5px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.ad2-item-img{
    width: .92rem;
    height: .92rem;
    margin-right: .18rem;
    border-radius: 14px;
}
.ad2-item-info {
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
}
.ad2-name {
    color: #2c577c;
    font-weight: 700;
    font-size: .29rem;
}
.ad2-sub-text{
    color: #7ba0c0;
}

.flow-text-wrap {
    padding: 9px;
}
.flow-img-wrap {
    position: relative;
}
.flow-ab {
    position: absolute;
    width: 100%;
    padding: 0 9px;
    bottom: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.sound {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 30px;
    height: .44rem;
    display: flex;
    align-items: center;
    padding: 0 8px;
    backdrop-filter: blur(4px);
}
.praise {
    border-radius: 30px;
    height: .44rem;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 0 8px;
    backdrop-filter: blur(4px);
}
.praise img {
    margin-right: 4px;
}

.flow-img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    min-height: 3.36rem;
}
.flow-text1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flow-name {
    flex: 0 0 auto;
    width: 1.96rem;
    font-size: .29rem;
    font-weight: 700;
    color: #2c577c;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.flow-add {
    font-size: .21rem;
    color: #7ba0c0;
}

.flow-tips {
    width: 100%;
    display: flex;
}
.flow-tips div {
    margin-right: 7px;
    background-color: rgba(92, 155, 213, 0.12);
    color: #5c9bd5;
    border-radius: 22px;
    height: .36rem;
    padding: 0 10px;
    margin: 7px 0;
    font-size: .21rem;
    margin-right: 5px;
}
.flow-tips div:last-child {
    margin-right: 0;
}

#banner1-swiper,#banner2-swiper{
    overflow: hidden;
    margin-top: .22rem;
}
.banner1-img,.banner2-img{
    width: 100%;
    aspect-ratio: 65 / 34;
    border-radius: .22rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}
#banner1-swiper .swiper-pagination-bullet,#banner2-swiper .swiper-pagination-bullet {
    width: 0.09rem;
    height: 0.09rem;
    background: #cbdbe6;
}
#banner1-swiper .swiper-pagination-bullet-active,#banner2-swiper .swiper-pagination-bullet-active{
    width: .18rem !important;
    border-radius: .18rem;
    background-color: #5c9bd5 !important;
}

.live-tab{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .16rem;
    margin-bottom: 9px;
}
.live-tab-item{
    background-color: #ffffff;
    padding: .14rem;
    color: #3c5a7d;
    font-size: .21rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.live-tab-title {
    font-size: .25rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.live-tab-title  span {
    max-width: .98rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex: 0 0 auto;
}
.avatar1{
   width: 1.25rem;
   height: .30rem;
}
.live-count{
    color: #5c9bd5;
}

.live-wrap,.qq-wrap{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .24rem;
}
.live-item {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}
.hot-icon{
    position: absolute;
    top: 0;
    left: 0;
}
.live-item-img {
    width: 100%;
    height: 5.30rem;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background: linear-gradient(95deg, #6ab0f5, #4a8bcb);
    border-radius: 2rem;
    height: .76rem;
    line-height: .76rem;
    color: #fff;
    padding: 0 .32rem;
    white-space:nowrap;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(74, 139, 203, 0.3);
}
.bt-info {
    position: absolute;
    display:flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    height: .85rem;
    padding:0 6px;
    overflow: hidden;
    color: #fff;
    font-size: .25rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}
.bt-info img {
    width: 0.26rem;
    height: 0.26rem;
    margin-right: 0.09rem;
}
.bt-info-left {
     color: #fff;
     display: flex;
     align-items: center;
}
.bt-info-left .dian {
     width: .09rem;
     height: .09rem;
     border-radius: 50%;
     background-color: #5c9bd5;
     margin-right: .05rem;
}
.bt-info-left .online-num {
      color: #5c9bd5;
}
.bt-t {
    display: flex;
    align-items: center;
}

.item-s4 {
    padding: .24rem;
    margin-bottom: .22rem;
    background: #ffffff;
    border-radius: .28rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}
.item-s4 .header {
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-s4 .header .cover {
    width: 1.38rem;
    height: 1.38rem;
}
.cover img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #5c9bd5;
}
.flex-1 {
    flex: 1;
}
.ml13 {
    margin-left: .26rem;
}
.item-s4 .header .name {
    font-size: .42rem;
    font-weight: 600;
    color: #2c577c;
}
.address {
    border: 1px solid rgba(92, 155, 213, 0.25);
    height: .47rem;
    border-radius: .2rem;
    padding: 0 11px;
    width: 2.10rem;
    margin-top: 9px;
    white-space: nowrap;
    color: #5c9bd5;
    background-color: #f0f6ff;
}
.flex-middle {
    align-items: center;
}
.flex {
    display: flex;
}
.item-s4 .header .btn-detail {
    width: 2.05rem;
    height: .70rem;
    line-height: .70rem;
    text-align: center;
    font-size: .29rem;
    color: #fff;
    font-weight: 600;
    border-radius: .35rem;
    background: linear-gradient(95deg, #6ab0f5, #4a8bcb);
    box-shadow: 0 2px 6px rgba(74, 139, 203, 0.2);
}

.fc-text {
    margin-bottom: 9px;
}
.fc-item{
    background-color: #f0f6ff;
    padding: 9px;
    margin-bottom: 5px;
    border-radius: 12px;
}
.fc-title{
    color: #5c9bd5;
    margin-right: 5px;
}
.fc-flex{
    display: flex;
    margin-bottom: 9px;
}
.fc-flex:last-child {
    margin-bottom: 0;
}
.fc-flex div{
    flex: 1;
    width: 100%;
    margin-right: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.fc-flex div:last-child {
    margin-right: 0;
}
.no-wrap{
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.item-s4 .more-preview {
    display: grid;
    gap: .22rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: .30rem
}
.item-s4 .more-preview img {
    width: 2.04rem;
    height: 2.72rem;
    border-radius: .18rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.qq-wrap .qq-item {
    background-color: #ffffff;
    width: 100%;
    padding: 10px;
    border-radius: .22rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.qq-wrap .qq-img {
    width: 100%;
    height: 3.28rem;
    border-radius: .22rem;
}
.qq-title {
    margin: 9px 0;
    font-size: .38rem;
    font-weight: 700;
    color: #2c577c;
}
.qq-info {
    display: flex;
    justify-content: space-between;
    font-size: .25rem;
}
.qq-pic {
    font-size: .29rem;
    color: #5c9bd5;
    font-weight: 600;
}

.nav1, .nav2, .nav3 {
    display: flex;
    align-items: center;
    height: .57rem;
    margin-bottom: .18rem;
}
.nav-item {
    color: rgba(44, 87, 124, 0.6);
    margin-right: .44rem;
    font-size: .29rem;
    transition: 0.2s;
}
.nav-item.active {
    color: #2c577c;
    font-weight: 600;
    font-size: .33rem;
}
.nav-item.active::after {
    content: '';
    width: .45rem;
    height: .07rem;
    position: relative;
    display: block;
    top: .11rem;
    left: 25%;
    border-radius: .5rem;
    background: linear-gradient(95deg, #6ab0f5, #4a8bcb);
    margin-bottom: .18rem;
}

.flow-text2 {
    color: #5c7a9a;
    line-height: 17px;
}
.g-name {
    font-size: .29rem;
}
.g-info{
    margin-left: 3px;
    color: #5c9bd5;
    font-weight: 600;
}
.text2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.g-pic{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .14rem;
    margin-bottom: .08rem;
}
.g-bg{
    width: 1.66rem;
    height: .51rem;
    text-align: center;
    line-height: .51rem;
}
.g-l-bg{
    background: rgba(92, 155, 213, 0.12);
    border-radius: 25px;
}
.g-r-bg {
    background: rgba(92, 155, 213, 0.12);
    border-radius: 25px;
}

#zp1-swper,#zp2-swper,#zp3-swper{
    overflow: hidden;
    margin: .22rem 0;
}

/* 底部导航栏 */
.footer-nav{
    position: fixed;
    bottom: 0;
    left: 50%;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(92, 155, 213, 0.2);
    width: 100%;
    z-index: 13;
    max-width: 700px;
    margin: 0 auto;
    transform: translateX(-50%);
}
.footer-item {
    height: 1.1rem;
    padding-top: .14rem;
    padding-bottom: .18rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8dabca;
    font-size: .22rem;
    gap: 4px;
}
.footer-item.active{
    color: #5c9bd5;
    font-weight: 600;
}
.footer-item div:first-child,.footer-item img {
    height: .50rem;
    width: .50rem;
}

.s-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .22rem;
    padding-top: .26rem;
    padding-bottom: .22rem;
}
.s-wrap .lf-g {
    border-radius: .22rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.s-wrap .ad-name {
    font-weight: 700;
    font-size: .29rem;
    color: #2c577c;
}
.lf-g-load {
    color: #7ba0c0;
}
.lf-g .lf-g-img {
    width: 1.24rem;
    height: 1.24rem;
    border-radius: .22rem;
    margin-right: 0.18rem;
    background: #f0f6ff;
}
.go-icon {
    position: absolute;
    top: .26rem;
    right: 10px;
    opacity: 0.5;
}

.zp-menu-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}
.zp-menu-item {
    flex: 1;
    margin-right: 7px;
}
.zp-menu-item img {
    width: 100%;
    border-radius: 12px;
}
.zp-swper{
    overflow: hidden;
}