body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
a {
    text-decoration: none; 
    color: inherit;
}

a:hover,
a:visited,
a:active {
    text-decoration: none;
    color: inherit;
}

.mobile-container {
    width: 100%;
    height: 100%;
}

.pc-container {
    width: 390px;
    height: 100%;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* 固定在底部的 390 px 宽容器（也可以放 top:0） */
.pc-fixed {
    position: fixed;
    bottom: 0;                 /* 也可改 top:0、left:0 等 */
    left: 50%;                 /* 让盒子水平中心线对齐视口中心 */
    transform: translateX(-50%);/* 再往左移自身 50% 实现真正居中 */
    width: 390px;
    box-shadow: 0 0 15px rgba(0,0,0,.2);
}
