        /* 设置 html 高度为 100% */
        html {
            height: auto;
        }

        /* 全局样式设置 */
        body {
            font-size: 20px;
            margin: 0;
            min-height: 100%;
            background: #e6f0ff; /* 使用淡蓝色作为整体背景色 */
            font-family: Arial, 'Microsoft YaHei', '微软雅黑';
        }

        /* 去除链接下划线，设置链接颜色 */
        a {
            text-decoration: none;
            color: #212121;
            outline: 0;
        }

        /* 盒子模型设置 */
        div {
            box-sizing: border-box;
        }

        /* 主体内容容器样式 */
        .body_view {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 3%;
            background-color: #e6f0ff;
            border-radius: 10px;
            margin-top: 30px;
            margin-bottom: 80px;
            padding: 20px;
        }

        /* 头部标题样式 */
        .header_title {
            width: 100%;
            position: relative;
        }

        /* 网站 logo 样式 */
        .header_title .logo {
            width: auto;
            text-align: center;
            margin: 0 auto;
            font-size: 35px;
            font-weight: bold;
            color: #0060ed;
            text-shadow: 2px 1px 1px #000;
            display: block;
            padding: 10px 0 40px;
            user-select: none;
        }

        /* 线路列表容器样式 */
        .xianlu {
            width: 100%;
            padding: 0 5%;
        }

        /* 线路列表边框样式 */
        .xianlu .clearfix {
            padding: 38px 18px 9px;
            background-color: #ffffff;
            border: 1px solid #ffffff;    
            border-radius: 15px;
            box-shadow: 0 0 5px rgba(0, 96, 237, 0.5), 0 0 10px rgba(0, 96, 237, 0.3), 0 0 15px rgba(0, 96, 237, 0.2);
        }

        /* 线路条目样式 */
        .xianlu .xianlu_item {
            width: 100%;
            border-radius: 50px;
            height: 60px;
            line-height: 58px;
            font-size: 25px;
            text-align: left;
            padding: 0 20px;
            margin-bottom: 20px;
            font-weight: bold;
            display: block;
            box-sizing: border-box;
            color: #0060ed;
            position: relative;
            border: 1px solid #0060ed54;
            cursor: pointer;
        }

        /* 线路条目文本样式 */
        .xianlu .xianlu_item .text {
            display: inline-block;
            background: url(../images/icon01.png) no-repeat left center;
            background-size: 25px 25px;
            padding-left: 33px;
        }

        /* 线路条目右侧图标样式 */
        .xianlu .xianlu_item .icon {
            position: absolute;
            right: 20px;
            top: 50%;
            margin-top: -14px;
            width: 30px;
            height: 30px;
            background: url(../images/right_icon.png) no-repeat left center;
            background-size: 100% 100%;
        }

        /* 提示文本样式 */
        .title_tips_text {
            padding: 20px 0 0;
            font-size: 18px;
            color: #242b33;
            text-align: center;
        }

        /* 页脚样式 */
        .footer {
            position: fixed;
            bottom: 0;
            text-align: center;
            color: #000;
            font-size: 18px;
            padding: 10px 0;
            width: 100%;
            background-color: #fff;
            border-top: 1px solid #eee;
        }

        /* 小屏幕设备页脚字体大小调整 */
        @media only screen and (max-width: 450px) {
            .footer {
                font-size: 16px;
            }
        }

        @media only screen and (max-width: 390px) {
            .footer {
                font-size: 15px;
            }
        }

        @media only screen and (max-width: 360px) {
            .footer {
                font-size: 13px;
            }
        }