/* ===========================
   MaxTV 发布页
   style.css
=========================== */

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

html,body{
    width:100%;
    height:100%;
}

body{
    font-family:"Microsoft YaHei",Arial,sans-serif;
    background:#0b1220;
    color:#fff;
    overflow-x:hidden;
}

/* 背景 */

.bg{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:-1;

    background:
    radial-gradient(circle at top,#2563eb 0%,transparent 35%),
    radial-gradient(circle at bottom,#00d4ff 0%,transparent 30%),
    linear-gradient(135deg,#081018,#0f172a,#111827);

}

/* 主容器 */

.container{

    max-width:900px;

    margin:auto;

    padding:40px 20px;

}

/* Logo */

.logo{

    text-align:center;

}

.logo-circle{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#00d4ff,#2563eb);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    font-weight:bold;

    box-shadow:

    0 0 25px rgba(0,212,255,.5);

}

.logo h1{

    margin-top:20px;

    font-size:42px;

}

.logo p{

    margin-top:10px;

    color:#cbd5e1;

}

/* 公告 */

.notice{

    margin-top:35px;

    padding:18px;

    text-align:center;

    border-radius:16px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(18px);

    line-height:32px;

}

.notice span{

    color:#00d4ff;

    font-weight:bold;

}

/* 推荐 */

.best-box{

    margin-top:35px;

    border-radius:20px;

    padding:25px;

    background:rgba(255,255,255,.08);

    border:2px solid #00d4ff;

    backdrop-filter:blur(20px);

    box-shadow:

    0 0 35px rgba(0,212,255,.25);

}

.best-title{

    text-align:center;

    font-size:24px;

    font-weight:bold;

    color:#ffd54f;

}

.best-site{

    margin-top:25px;

    text-align:center;

    font-size:22px;

    line-height:42px;

}

/* 按钮 */

#goBest{

    width:100%;

    margin-top:25px;

    border:none;

    border-radius:14px;

    padding:16px;

    cursor:pointer;

    color:#fff;

    font-size:18px;

    background:linear-gradient(135deg,#00b894,#00cec9);

    transition:.3s;

}

#goBest:hover{

    transform:translateY(-2px);

    box-shadow:

    0 0 25px rgba(0,255,180,.45);

}

/* 列表 */

.list-title{

    margin-top:45px;

    margin-bottom:20px;

    font-size:22px;

    font-weight:bold;

}

/* 每条线路 */

.card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:18px;

    padding:20px;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    transition:.25s;

}

.card:hover{

    transform:translateY(-3px);

    border-color:#00d4ff;

}

/* 推荐线路 */

.card.best{

    border:2px solid #ffd54f;

    box-shadow:

    0 0 20px rgba(255,213,79,.35);

}

/* 左侧 */

.left{

    flex:1;

}

.site{

    font-size:18px;

    word-break:break-all;

}

.speed{

    margin-top:8px;

    color:#94a3b8;

}

/* 状态 */

.ok{

    color:#00ff88;

    font-weight:bold;

}

.timeout{

    color:#ff5d5d;

    font-weight:bold;

}

/* 按钮 */

.enter{

    display:inline-block;

    text-decoration:none;

    color:#fff;

    background:#2563eb;

    padding:10px 20px;

    border-radius:10px;

    transition:.25s;

}

.enter:hover{

    background:#1d4ed8;

}

/* 底部 */

.footer{

    margin-top:60px;

    text-align:center;

    color:#94a3b8;

    font-size:14px;

}

/* 手机 */

@media(max-width:700px){

.card{

    flex-direction:column;

    align-items:flex-start;

}

.enter{

    margin-top:18px;

    width:100%;

    text-align:center;

}

.logo h1{

    font-size:34px;

}

.best-site{

    font-size:18px;

}

}