@charset "utf-8";
@media screen and (min-width:320px){html{font-size:8px}}
@media screen and (min-width:360px){html{font-size:10px}}
[v-cloak]{display:none}
.fl{float:left}
.fr{float:right}
.cl{clear:both}

/* 全局样式 */
*{margin:0;padding:0;box-sizing:border-box}
html{font-size:10px;line-height:1.5;-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}
body{font-size:1.2rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;color:#333;background-color:#f5f5f5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;max-width: 640px;min-width: 320px;margin: 0 auto;padding-bottom: 70px;}
/* 标题样式 */
h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.2}

/* 段落与文本 */
a{color:#333;text-decoration:none;-webkit-touch-callout:none;transition:all .2s ease}
a:active,a:focus,a:hover{color:#3498db;outline:0}
/* 移除列表默认样式 */
li,ol,ul{list-style:none}

/* 媒体元素 */
audio,embed,iframe,img,object,video{display:block;max-width:100%;height:auto;border:none;-ms-interpolation-mode:bicubic}

/* 表格，表单样式 */
table{border-collapse:collapse;border-spacing:0;width:100%}
button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;-webkit-appearance:none;-moz-appearance:none;appearance:none}
input::-ms-clear,input::-ms-reveal{display:none}/* 修复IE11输入框清除按钮 */
input,textarea{caret-color:#333}/* 修复iOS输入框光标颜色 */
input,select,textarea{width:100%;padding:.7rem 1rem;border:1px solid #ccc;border-radius:.3rem;transition:border-color .2s ease,box-shadow .2s ease}
input:focus,select:focus,textarea:focus{outline:0;border-color:#3498db;box-shadow:0 0 0 3px rgba(52,152,219,.25)}

/* 按钮样式重置 */
button{cursor:pointer;border:none;background-color:transparent;overflow:visible}
.btn-primary{display:inline-block;width: 100%;;padding:1rem 2rem;background-color:#3498db;color:#fff;border-radius:.3rem;font-weight:500;text-align:center;transition:background-color .2s ease,transform .2s ease;user-select:none;cursor:pointer}
.btn-primary:focus,.btn-primary:hover{background-color:#2980b9;transform:translateY(-1px);color: #fff;}
.btn-primary:active{transform:translateY(0)}
.btn-secondary{background-color:#2ecc71}
.btn-secondary:focus,.btn-secondary:hover{background-color:#27ae60}
.btn-danger{background-color:#e74c3c}
.btn-danger:focus,.btn-danger:hover{background-color:#c0392b}
.btn-outline{background-color:transparent;border:1px solid #3498db;color:#3498db}
.btn-outline:focus,.btn-outline:hover{background-color:#3498db;color:#fff}

/* 卡片组件 */
.card{background-color:#fff;border-radius:.5rem;box-shadow:-3px 5px 10px rgba(60, 60, 60, 0.1), 3px 5px 10px rgba(60, 60, 60, 0.1);padding:2rem;transition:all .3s ease}
.card:hover{box-shadow:0 3px 6px rgba(0,0,0,.15),0 2px 4px rgba(0,0,0,.12)}
.card-header{padding-bottom:1.5rem;margin-bottom:1.5rem;border-bottom:1px solid #ecf0f1}

.card-footer{padding-top:1.5rem;margin-top:1.5rem;border-top:1px solid #ecf0f1}
.a-card{border-radius: 10px;overflow: hidden;box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);transition: all .3s ease;cursor: pointer;background-color: #fff;}
.a-card:hover{transform: translateY(-5px);box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);}


/* 显示/隐藏工具类 */
.d-none{display:none}
.d-block{display:block}
.d-inline{display:inline}
.d-inline-block{display:inline-block}
.d-flex{display:flex}

/* 动画 */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.fade-in{animation:fadeIn .3s ease}

/* 底部安全区域适配 */
.footer-safe{padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}
.footer-safe-1rem{padding-bottom:calc(constant(safe-area-inset-bottom) + 1rem);padding-bottom:calc(env(safe-area-inset-bottom) + 1rem)}
.footer-safe-2rem{padding-bottom:calc(constant(safe-area-inset-bottom) + 2rem);padding-bottom:calc(env(safe-area-inset-bottom) + 2rem)}
/* 滚动条样式（Webkit浏览器） */
::-webkit-scrollbar{width:8px;height:6px;}
::-webkit-scrollbar-track{background:#ecf0f1}
::-webkit-scrollbar-thumb{background:#b6ced8;border-radius:4px}
::-webkit-scrollbar-thumb:hover{background:#90b1d3}

/* 文本溢出 */
.ellipsis-1{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ellipsis-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;word-break:break-all}
.ellipsis-3{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;word-break:break-all}

/* 关闭叉 */
.icon-close{position:relative;display:inline-block;width:2rem;height:2rem;overflow:hidden}
.icon-close::after,.icon-close::before{content:"";position:absolute;top:50%;left:50%;width:1.2rem;height:1px;background:#999;-webkit-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}
.icon-close::after{-webkit-transform:translate(-50%,-50%) rotate(-45deg);transform:translate(-50%,-50%) rotate(-45deg)}

/* 箭头（右） */
.icon-arrow-right{display:inline-block;width:.6rem;height:.6rem;border-top:1px solid #ccc;border-right:1px solid #ccc;-webkit-transform:rotate(45deg);transform:rotate(45deg)}

/*返回顶部 */
.icon-back-top{position:fixed;right:1.5rem;bottom:8rem;width:4rem;height:4rem;line-height:4rem;text-align:center;border-radius:50%;background:rgba(0,0,0,.6);color:#fff;font-size:1.2rem;z-index:999}

/* 禁止选中文本 */
.no-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}

/* 溢出处理 -webkit-overflow-scrolling: touch; iOS滚动平滑*/
.overflow-y-auto{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}
.overflow-x-auto{overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch}

/* 布局 */
.flex_col{display:flex;flex-direction:column}
.flex_row_center{display:flex;align-items:center;}
.flex_center{display:flex;align-items:center;justify-content:center}
.flex_space_between{display:flex;align-items:center;justify-content:space-between}
.grid-cols-1{display:grid;grid-template-columns:repeat(1,1fr)}
.grid-cols-2{display:grid;grid-template-columns:repeat(2,1fr)}
.grid-cols-3{display:grid;grid-template-columns:repeat(3,1fr)}
.grid-cols-4{display:grid;grid-template-columns:repeat(4,1fr)}
.grid-cols-5{display:grid;grid-template-columns:repeat(5,1fr)}

/* ---------------------------------------- 内容区域 ------------------------------------------------- */
.wrapper{margin:0 auto;padding: 2rem 1.5rem;}
/* 顶部区域 */
.page-header{height: 50px;width: 100%;max-width: 640px;color: #00305c;padding: 0 5px;position: relative; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);background-color: #fff;z-index: 10;position: sticky;top: 0;}
.page-header .logo{gap: 1rem;}
.page-header .logo .logo-icon{padding: 5px;border-radius: 10px;background-color: #FFD966;color: #053a51;}
.page-header .logo .logo-img{border-radius: 10px;overflow: hidden;background-color: #eafffd;width: 40px;height: 40px;}
.page-header .logo .logo-img img{width: 100%;height: 100%;object-fit: cover;display: block;}
.page-header .logo .phone-number{color: #fff;font-size: 12px;background: rgba(255, 255, 255, 0.15);padding: 2px 10px;border-radius: 40px;display: flex;align-items: center;gap: 4px;}
.page-header .mem >i{width: 3rem;font-size: 1.8rem;display: flex;justify-content: center;cursor: pointer;}
.page-header .mem .fcs{border-radius:1rem;position:absolute; width:10rem;top: 5rem;right:1rem;background: rgb(255 255 255 / 30%);backdrop-filter: blur(4px);border: 1px solid #eaf8ff;z-index: 1;box-shadow: 0 0 10px rgba(26, 95, 158, 0.5);}
.page-header .mem .fcs a{color:#3a6c9e;display:block;line-height:3.8rem;text-align:center;font-size:1.4rem;}
.page-header .mem .fcs a:hover{background: rgb(116 189 255 / 20%);}
.page-header .page-back{height: 44px;width: 44px;}
.page-header .page-back{height:44px;width:44px;position:relative;border:none;background:0 0;cursor:pointer}
.page-back:before{content:'';position:absolute;top:50%;left:55%;width:14px;height:14px;border-left:2px solid #00305c;border-top:2px solid #00305c;transform:translate(-35%,-50%) rotate(-45deg)}
.page-header .topHeaderTitle,.page-header  h1{color: #00305c;line-height: 50px;font-size: 2rem;text-align: center;font-weight: 700;margin: 0 auto;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;box-sizing: border-box;flex: 1;}
.page-header .page-home{height: 44px;width: 44px;}
.page-header .page-home .lucide-house{color: #00305c;font-size: 2.6rem;}

/* 底部tabar */
.bottom-nav{position:fixed;bottom:0;left:0;right:0;max-width:640px;min-width: 320px;margin:0 auto;background:linear-gradient(135deg, rgb(234 244 255 / 60%) 0%, rgba(255, 255, 255, 0.6) 100%);backdrop-filter:blur(20px);border-top:.5px solid rgba(0,0,0,.05);border-radius:28px 28px 0 0;padding:10px 20px 20px 20px;display:flex;justify-content:space-between;align-items:center;box-shadow:0 -4px 20px rgba(0,0,0,.06);z-index:100}

.bottom-nav .nav-item{display:flex;flex-direction:column;align-items:center;gap:4px;text-decoration:none;font-size:11px;color:#125185;transition:.2s;font-weight:500;min-width: 60px;}
.bottom-nav .nav-item:hover{color:#ff8c42}
.bottom-nav .nav-item svg{width:22px;height:22px;stroke:currentColor;fill:none;transition:transform 0.3s ease}
.bottom-nav .nav-item.active{color:#ff8c42}
.bottom-nav .nav-item:active{transform:scale(.95)}
.bottom-nav .nav-item.has-badge{position:relative}
.bottom-nav .nav-item:hover{transform:translateY(-3px)}
.bottom-nav .nav-item:hover svg{transform:scale(1.1)}

/* 底部版权 */
.cpr{font-size:1.2rem;text-align:center;color:#999;margin:3rem 0;}
.cpr a{color:#7a7a7a;margin: 0 5px;}
.cpr h2,.cpr h3,.cpr h4{display:inline;font-size:1.4rem;font-weight:400}

/* 视频播放器 播放按钮样式 */
.zdplayerbox{position:relative;width:100%;height:100%;font-size:0}
.zdplayerbox img,.zdplayerbox video{width:100%}
.zdplayerbox .playerIcon{left:50%;top:50%;position:absolute;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:block;width:48px;height:48px;background-color:rgba(0,0,0,.5);border-radius:50%}
.zdplayerbox .playerIcon::before{content:"";position:absolute;left:50%;top:50%;-webkit-transform:translate(-40%,-50%);-ms-transform:translate(-40%,-50%);transform:translate(-40%,-50%);border-width:10px 0 10px 16px;border-style:solid;border-color:transparent transparent transparent #fff}

/* 返回顶部 */
.topback{background-color: rgb(255 255 255 / 60%);backdrop-filter: blur(1px);position:fixed;right:10px;bottom:150px;z-index:100;border-radius:50px;border:1px solid #ddd;width:40px;height:40px;display:none}
.topback::before{content:'';position:absolute;width:100%;height:100%;border-radius:50%;background:url(pic/topback.png) no-repeat center;background-size:55%}

/* 自定义alert弹窗 */
.alert-toast{position:fixed;left:50%;top:40%;transform:translateX(-50%) translateY(10px);padding:7px 10px;background:rgba(0,0,0,.65);color:#fff;font-size:12px;line-height:1.5;border-radius:7px;max-width:80%;display:flex;align-items:center;justify-content:center;opacity:0;z-index:9999;pointer-events:none;transition:opacity .2s ease-in-out,transform .2s ease-in-out;word-wrap:break-word;white-space:pre-line}
.alert-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* 底部弹窗 */
.moreContent{position:fixed;width:0;max-width:640px;height:100%;box-shadow:.7px .7px 7px #414141;left:50%;transform:translateX(-50%);bottom:0;box-sizing:border-box;z-index:108;display: block;}
.moreContent .overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;backdrop-filter:blur(0.125rem);background-color:rgba(0,0,0,0.6);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}
.moreContent.dialog-show{width: 100%;}
.moreContent.dialog-show .overlay{opacity:1;visibility:visible}
.moreContent .mcontent{position:absolute;width:100%;max-height:90%;min-height:30%;background-color:#fff;z-index:10;left:0;bottom:0;box-sizing:border-box;display: flex;flex-direction: column;border-radius:15px 15px 0 0;overflow:hidden;transform:translateY(100%);transition:transform .3s cubic-bezier(.25, .46, .45, .94);}
.moreContent .mcontent.mcontent-open{transform:translateY(0);-webkit-transform: translateY(0);}
.moreContent .mcontent .mc-top > i{font-size:2rem;margin-right:1.25rem}
.moreContent .mcontent .mc-top .close{position:absolute;left:auto;top:6px;right: 6px;font-size:2.8rem;cursor: pointer;transition: color 0.2s;}
.moreContent .mcontent .mc-cont{flex:1;overflow-y:auto;}

/* 港口和 日历  */
#dateWidget{display:none;max-width:640px;margin:0 auto;width:100%;height:100%;position:fixed;top:0;background-color:#fff;z-index:999}
.mask{background:#000;max-width:640px;margin:0 auto;opacity:.8;z-index:999;position:fixed;top:0;left:0;right:0;bottom:0}
.bot_fc{max-width:600px;margin:0 auto;z-index:999;padding:1rem 1.5rem;background:#fff;position:fixed;top:10%;left:0;right:0;bottom:0;border-radius:20px 20px 0 0}
.bot_fc .mt_cs{text-align:center;color:#000;font-size:1.6rem;line-height:3rem}
.bot_fc .close{display:inline-block;position:absolute;right:2rem;font-size:1.8rem;color:#333}
.bot_fc .fc_nrk{overflow-y:scroll;padding:0 0 5rem;height:95%}
.bot_fc .fc_nrk .b_add{cursor:pointer;font-size:1.4rem;color:#1c3b78;font-weight:700;border:1px solid #eee;width:21%;text-align:center;border-radius:5px;line-height:3rem;margin-bottom:1rem}
.bot_fc .fc_nrk .on,.bot_fc .fc_nrk .s_add div span.on{border:1px solid #0a89fb;color:#0a89fb}

.bot_fc .fc_nrk .s_add{cursor:pointer}
.bot_fc .fc_nrk .s_add div{width:24%;display:inline-block}
.bot_fc .fc_nrk .s_add div{width:24%;display:inline-block}
.bot_fc .fc_nrk .s_add div span{border:1px solid #eee;font-size:1.4rem;border-radius:5px;color:#333;display:block;width:90%;text-align:center;padding:.5rem 0;margin-bottom:1.4rem}

/* 价格显示 */
.cruise-price{display:flex;align-items:baseline;gap:2px;color:#555;font-size:12px}
.cruise-price .num{font-size:22px;font-weight:700;color:#ff6b35}

/* 游轮列表公共样式 */
.cruises-section{margin:25px 15px 20px}
.section-title{font-size:18px;color:#0a3969;margin-bottom:15px;font-weight:700;position:relative;padding-left:10px}
.section-title::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:4px;height:16px;background-color:#ffc107;border-radius:2px}
.cruise-container .cruise-card{display:flex;background-color:#fff;overflow:hidden;border-radius:8px;margin-bottom:15px;box-shadow:0 3px 12px rgba(0,0,0,.05);transition:all .3s ease}
.cruise-container .cruise-card:hover{transform:translateY(-5px)}
.cruise-container .cruise-card .cruise-img{width:40%;min-width: 40%;max-width: 200px;min-height:100px}
.cruise-container .cruise-card .cruise-img img{width:100%;height:100%;object-fit:cover;border-radius:8px 0 0 8px}
.cruise-container .cruise-card .cruise-other{flex:1;padding:10px 0 10px 15px;font-size:12px;display:flex;flex-direction:column;justify-content:space-between;gap:7px;line-height:1.6}
.cruise-card .cruise-other .cruise-tit{font-size:15px;color:#0a3969;font-weight:700;padding-right: 10px;}
.cruise-card .cruise-other .cruise-sub{color:#f57c00;padding-right: 10px;}
.cruise-card .cruise-other .cruise-feature{display:flex;flex-wrap:nowrap;gap:5px;font-size:12px;width:100%;overflow:hidden;position:relative}
.cruise-card .cruise-other .cruise-feature::after{content:'';position:absolute;right:0;top:0;width:40px;height:100%;background:linear-gradient(to right,rgba(255,255,255,0) 0,#fff 80%);pointer-events:none;z-index:1}
.cruise-card .cruise-other .cruise-feature li{padding:2px 4px;text-align:center;    background: rgba(65, 160, 249, 0.1);color: #41a0f9;border: 1px solid rgba(65, 160, 249, 0.3);border-radius:3px;flex-shrink:0;position:relative;z-index:0}
.cruise-card .cruise-other .cruise-date{color:#888;padding-right: 10px;}
.cruise-card .cruise-other .cruise-price{color:#72889e;text-align:right;padding-right: 10px;}
.cruise-card .cruise-other .cruise-price dfn{color:#ff5722;font-size:16px}
.cruise-card .cruise-other .cruise-price .num{font-weight:700;color:#ff5722;font-size:18px;margin:0 1px}

/* 上下页切换 */
/* 分页容器样式 - 完全居中 */
.fym{display:flex;justify-content:center;align-items:center;gap:2rem;margin:1rem 0;padding:.5rem}
.fym a{display:flex;align-items:center;justify-content:center;gap:.4rem;text-decoration:none;font-size:1.4rem;padding:.6rem 1.2rem;border-radius:2rem;transition:all .2s ease;background-color:#f5f5f5;color:#333;min-width:6rem}
.fym a i.iconfont{font-size:1.6rem;line-height:1}
.fym a.on{background-color:#007aff;color:#fff;cursor:pointer}
.fym a.on:active{transform:scale(.96);background-color:#005fc1}
.fym a.off{background-color:#e9ecef;color:#adb5bd;cursor:not-allowed;opacity:.7}
.fym a:only-child{margin:0 auto}

