@charset "UTF-8";

/* ============================================================
   RDD 移动端响应式样式（≤750px）
   说明：
   1) 本文件通过 Head.ascx 在 style.css 之后引入，靠级联覆盖；
   2) 只重排已有 DOM，不改动任何页面模板；
   3) 汉堡按钮 / OffCanvas 抽屉由 js/mobile.js 注入，样式在此定义。
   ============================================================ */

/* 桌面端（>750px）：隐藏移动专用元素 */
@media screen and (min-width: 751px) {
    .mnav-btn,
    .mnav-offcanvas,
    .mnav-overlay {
        display: none !important;
    }
    /* 首页宣传横幅：Search.ascx 已移除 blank30 分隔，这里补回上下间距 */
    .ea {
        margin: 30px auto;
    }
}

@media screen and (max-width: 750px) {

    /* ---------- 基础重置 ---------- */
    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        margin: 0;
    }

    /* ---------- 固定头部容器（由 mobile.js 包裹 .top_bg + .head_con） ---------- */
    .mnav-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
    }

    /* ---------- 账户条（登录/注册 → 进入会员中心/切换账户/退出） ---------- */
    .top_bg {
        width: 100%;
        height: auto;
        line-height: normal;
        border-bottom: 1px solid #ececec;
        position: relative;
    }
    .top {
        width: 100%;
        padding: 0 48px 0 12px;
        line-height: 44px;
        font-size: 13px;
    }
    .mnav-has-menu .top {
        padding: 0 48px 0 56px;
    }
    .top::after {
        content: "";
        display: block;
        clear: both;
    }
    .top ul {
        float: left;
    }
    .top ul li {
        float: left;
        padding: 0 10px;
        border: none;
        text-align: left;
        line-height: 44px;
    }
    .top ul li:first-child {
        padding-left: 0;
        border: none;
    }
    .top a {
        font-size: 13px;
        line-height: 44px;
    }
    .top > a.colr_6 {
        float: left !important;
    }
    .top img {
        float: right;
        margin: 14px 4px 0;
    }
    .lan_app {
        display: none !important;
    }

    /* ---------- 主头部：手机端隐藏（logo 一行占位，导航已移入账户条） ---------- */
    .head_con {
        display: none;
    }

    /* 汉堡按钮：灰色圆角图标（全站导航 / 会员中心导航） */
    .mnav-btn {
        position: absolute;
        top: 50%;
        margin-top: -16px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15%;
        cursor: pointer;
        text-align: center;
    }
    .mnav-btn i {
        position: static;
        display: inline-block;
        margin: 0;
        font-size: 16px;
        line-height: 1;
    }
    .mnav-btn i:before {
        color: #fff;
        margin-right: 0;
    }
    .mnav-menu {
        left: 10px;
        background: #8a8a8a;
    }
    .mnav-nav {
        right: 10px;
        background: #8a8a8a;
    }

    /* ---------- 全站导航下拉 ---------- */
    .head_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #ececec;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        z-index: 10000;
    }
    .head_nav.open {
        display: block;
    }
    .head_nav ul {
        padding: 0;
        margin: 0;
    }
    .head_nav ul li {
        float: none;
        margin: 0;
        height: auto;
        line-height: 46px;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }
    .head_nav ul li a {
        display: block;
        border-bottom: none;
        color: #2c3642;
        font-size: 16px;
    }
    .head_nav ul li a:hover,
    .head_nav ul li a.hover {
        color: #0cc355;
        border-bottom: none;
        background: #f5f6f8;
    }
    /* 语言切换：移到全局导航下拉，去除右浮动以居中 */
    .head_nav ul li.mnav-lang a {
        float: none !important;
    }
    /* 搜索弹层在移动端内嵌显示，去掉全屏遮罩 */
    .head_nav .search_pop {
        position: static;
        width: 100%;
        height: auto;
        padding: 12px 16px;
        border-radius: 0;
    }
    .head_nav .mask {
        display: none !important;
    }

    /* ---------- OffCanvas 左侧抽屉（会员中心菜单） ---------- */
    .mnav-offcanvas {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 78%;
        max-width: 320px;
        background: #fff;
        z-index: 10001;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.25s ease;
        transition: transform 0.25s ease;
    }
    .mnav-offcanvas.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .mnav-offcanvas-head {
        position: relative;
        height: 50px;
        line-height: 50px;
        padding: 0 16px;
        background: #0cc355;
        color: #fff;
        font-size: 16px;
    }
    .mnav-offcanvas-title::after {
        content: "会员中心";
    }
    .mnav-offcanvas-close {
        position: absolute;
        top: 0;
        right: 12px;
        color: #fff;
        font-size: 26px;
        line-height: 48px;
        text-decoration: none;
    }
    .mnav-offcanvas-body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mnav-offcanvas-body ul {
        padding: 0;
        margin: 0;
    }
    .mnav-offcanvas-body ul li a {
        display: block;
        height: 48px;
        line-height: 48px;
        padding: 0 16px;
        color: #2c3642;
        font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    .mnav-offcanvas-body ul li a h2 {
        display: inline;
        font-size: 15px;
        font-weight: normal;
        line-height: 48px;
        margin: 0;
        color: inherit;
    }
    .mnav-offcanvas-body ul li a:hover,
    .mnav-offcanvas-body ul li a.hover {
        color: #0cc355;
        background: #f5f6f8;
    }
    /* 退出登录：置于会员中心侧边栏底部，用分隔线隔开 */
    .mnav-offcanvas-body ul li.mnav-logout {
        margin-top: 8px;
        border-top: 1px solid #ececec;
    }
    .mnav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 10000;
        display: none;
    }
    .mnav-overlay.open {
        display: block;
    }

    /* ---------- 通用容器改全宽 ---------- */
    .page,
    .top,
    .head_con,
    .search_rdd,
    .baner_con,
    .help_con,
    .content_us,
    .search_result,
    .search_result_con,
    .choose_con,
    .feedback,
    .promise,
    .promise_age,
    .menu_con {
        width: 100% !important;
    }

    /* ---------- 会员中心布局：左菜单隐藏、内容全宽 ---------- */
    .choose {
        width: 100%;
        padding: 0;
    }
    .choose_left {
        display: none;
    }
    .choose_right {
        width: 100%;
        float: none;
        padding: 16px 16px 24px;
        box-sizing: border-box;
    }
    .choose_right h2 {
        float: none;
        width: 100%;
        height: auto;
        padding-top: 0;
        line-height: 1.6;
        margin: 0 0 16px;
    }

    /* ---------- 首页 banner ---------- */
    .baner_bg {
        height: auto;
        min-height: 180px;
    }
    .baner_bg_p1,
    .baner_bg_p2 {
        height: auto;
        min-height: 120px;
    }
    .baner_con h2 {
        height: auto;
        line-height: 1.4;
        padding: 30px 16px;
        font-size: 26px;
    }
    .baner_con a {
        display: inline-block;
        line-height: 1.4;
        margin: 0 8px;
    }
    /* banner 上的“使用指南 / 登录”背景图按钮：保留背景图，按屏宽等比缩放，文字垂直居中 */
    .baner_con_help,
    .baner_con_login {
        width: 44%;
        height: 48px;
        padding: 0;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        font-size: 18px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        line-height: 1.4;
    }

    /* ---------- 首页宣传横幅 .ea 堆叠（背景图改纯色，去勾，左右留边距） ---------- */
    .ea {
        width: 100%;
        margin: 20px 0;
    }
    .ea_lt,
    .ea_rt {
        float: none;
        width: auto;
        margin: 0 16px 8px;
        height: auto;
        padding: 16px 20px;
        text-align: left;
        border-radius: 8px;
    }
    .ea_lt {
        background: #0cc355;
    }
    .ea_rt {
        background: #3d556d;
    }

    /* ---------- 首页 使用指南 / 联系我们 堆叠 ---------- */
    .help,
    .content {
        width: 100%;
        float: none;
        padding: 0 16px;
    }
    .content {
        margin-top: 20px;
    }
    .content_bottom img {
        width: 100%;
        height: auto;
    }

    /* ---------- RDD 搜索条 ---------- */
    .search_rdd {
        width: 100%;
        height: auto;
        padding: 14px 16px;
        line-height: normal;
    }
    .search_rdd > span {
        display: block;
        float: none;
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 1.4;
    }
    .search_box {
        width: 100%;
        float: none;
        margin: 0;
        display: flex;
    }
    .search_input {
        flex: 1;
        min-width: 0;
        width: auto;
        height: 44px;
        line-height: 44px;
        padding: 0 12px;
        border: 1px solid #d6d6d6;
        border-right: 0;
        border-radius: 5px 0 0 5px;
    }
    .search_but {
        flex: none;
        width: 88px;
        height: 44px;
        line-height: 44px;
        margin-top: 0;
        margin-left: 0;
        padding: 0;
        text-align: center;
        border-radius: 0 5px 5px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size:16px;
    }
    .search_but img {
        display: block;
        height: 20px;
        width: auto;
        margin: 0 6px 0 0;
    }

    /* ---------- 表单 / 输入框通用改全宽 ---------- */
    .personal,
    .personal_400,
    .personal_305,
    .personal_206,
    .personal_185,
    .personal_85,
    .personal_30,
    .feedback_input_735,
    .feedback_input_260,
    .feedback_input_160,
    .feedback_input_180,
    .feedback_input_200,
    .feedback_input_110,
    .feedback_input_85,
    .feedback_input_370,
    .feedback_input_355,
    .feedback_input_310,
    .feedback_input_790,
    .feedback_input_955,
    .feedback_790,
    .feedback_955,
    .project_box,
    .project_txt,
    .project_age {
        width: 100% !important;
        float: none;
    }
    .feedback_input_common,
    .feedback_input {
        width: 100%;
        max-width: 100%;
    }
    .feedback {
        padding: 16px;
        line-height: 1.8;
    }
    .feedback h2 {
        width: 100%;
        height: auto;
    }
    .personal_but,
    .project_age_but {
        width: 100%;
        text-align: center;
    }
    .personal_but a,
    .project_age_but a {
        display: block;
        width: 100%;
        margin: 0 0 10px;
    }

    /* ============================================================
       会员中心：项目列表搜索 / 新增修改项目表单
       ============================================================ */

    /* 项目表单容器去掉左偏移 */
    .project {
        margin-left: 0;
    }

    /* 列表搜索区："至"字、project_mar45 左对齐，去掉居中 */
    .personal_30 {
        text-align: left !important;
        line-height: 30px;
    }
    .project_mar45,
    .project_mar {
        margin-left: 0 !important;
        text-align: left !important;
    }
    .project h2 {
        text-align: left;
    }
    /* 新增作者按钮容器里的空 h2 占位隐藏（按钮已移到作者区末尾） */
    .feedback_input_110.project_mar h2 {
        display: none;
    }

    /* 补全输入框全宽 */
    .feedback_input_100,
    .feedback_input_165 {
        width: 100% !important;
        float: none;
    }

    /* 上传/获取/浏览/新增作者/删除 按钮行内化 */
    .project_get,
    .project_user,
    .project_but,
    .project_del {
        float: none !important;
        display: inline-block;
        margin: 8px 8px 0 0;
    }

    /* 作者/文件列表：隐藏表头，数据行卡片化 */
    .project_box {
        display: none;
    }
    .project_txt {
        height: auto !important;
        line-height: 1.6 !important;
        border: 1px solid #dedede;
        border-radius: 4px;
        margin-bottom: 8px;
        padding: 8px 12px;
        box-sizing: border-box;
    }
    .project_txt > div {
        float: none !important;
        width: 100% !important;
        text-align: left !important;
        padding: 3px 0;
        word-break: break-all;
    }
    .project_txt > div::before {
        content: attr(data-label);
        color: #999;
        margin-right: 8px;
    }

    /* 动态列（GetProjectColumn 生成的 table）→ 块堆叠 */
    .project table,
    .feedback table {
        display: block;
        width: 100% !important;
        min-width: 0 !important;
    }
    .project tbody,
    .project tr,
    .project td,
    .feedback tbody,
    .feedback tr,
    .feedback td {
        display: block;
        width: 100% !important;
    }
    .feedback_input_td {
        width: 100% !important;
        float: none;
        padding: 0 0 12px !important;
    }
    .feedback_input_tdr {
        padding-left: 0 !important;
    }

    /* 时间段（从 / 到）行内布局 */
    .feedback_input_45 {
        float: left;
        width: 45px !important;
        text-align: left !important;
        line-height: 36px;
    }
    .feedback_input_45 + .feedback_input_310,
    .feedback_input_45 + .feedback_input_355 {
        width: calc(100% - 50px) !important;
        float: left;
    }

    /* 声明区（请谨慎检查以下陈述） */
    .project_age {
        padding: 16px;
        box-sizing: border-box;
        line-height: 1.6;
        overflow: hidden;
    }
    .project_age h2 {
        width: 100%;
    }
    .project_age_25 {
        width: 25px !important;
        float: left;
    }
    .project_age_25:not(:has(input)) {
        display: none;
    }
    .project_age_930 {
        width: calc(100% - 30px) !important;
        float: left;
        line-height: 1.6;
    }
    .project_age_90 {
        width: 100% !important;
        float: none;
    }
    .project_age_790 {
        width: 100% !important;
        float: none;
    }
    .project_age_600 {
        width: 100% !important;
        float: none;
    }

    /* 底部保存/下一步按钮 */
    .project_age_but a {
        height: 44px;
        line-height: 44px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        font-size: 18px;
    }

    /* ============================================================
       会员中心：其余页面（个人信息 / 项目查看 / 意见反馈 / 审计 /
       项目类型选择 / AI 审阅 / 承诺书）
       ============================================================ */

    /* 通用固定宽 → 全宽（防止横向溢出） */
    .project_line {
        width: 100% !important;
    }
    .feedback_mark {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }
    .personal_common {
        width: 100% !important;
        max-width: 100%;
    }
    .personal_mar12,
    .personal_mar20 {
        margin-left: 0 !important;
    }

    /* 意见反馈：左右两列（内联 width:50%）改单列全宽 */
    .feedback > div[style*="width:50%"] {
        width: 100% !important;
        float: none !important;
    }

    /* 项目类型选择：大按钮全宽（背景图随按钮拉伸，避免右侧被裁） */
    .choose_but {
        width: 100% !important;
        height: 56px;
        line-height: 56px;
        margin-bottom: 16px;
        box-sizing: border-box;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
    }

    /* 审计（新申请 / 审计记录）：左菜单隐藏、内容全宽 */
    .menu_con_left {
        display: none;
    }
    .menu_con_right {
        width: 100% !important;
        float: none;
        padding: 16px;
        box-sizing: border-box;
    }
    .menu_con_rt_tit {
        font-size: 20px;
        line-height: 1.5;
        padding: 10px 0;
    }

    /* 审计记录列表表格 → 卡片 */
    .audit_table table,
    .audit_table tbody,
    .audit_table tr,
    .audit_table th,
    .audit_table td {
        display: block;
        width: 100% !important;
    }
    .audit_table tr {
        margin-bottom: 12px;
        border: 1px solid #dedede;
        background: #fff;
    }
    .audit_table th {
        display: none;
    }
    .audit_table td {
        position: relative;
        padding: 10px 12px 10px 40%;
        border: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        text-align: left;
        height: auto;
        min-height: 40px;
        box-sizing: border-box;
        color: #2c3642;
    }
    .audit_table td:last-child {
        border-bottom: none !important;
    }
    .audit_table td::before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        top: 10px;
        width: 32%;
        color: #999;
        text-align: left;
    }

    /* 审计申请表单表格 → 卡片 */
    .menu_con_rt_tab table,
    .menu_con_rt_tab tbody,
    .menu_con_rt_tab tr,
    .menu_con_rt_tab td {
        display: block;
        width: 100% !important;
    }
    .menu_con_rt_tab td {
        height: auto !important;
        border: none !important;
        padding: 6px 0;
        text-align: left;
    }
    .menu_con_rt_tab input {
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box;
        display: block;
    }
    .menu_con_rt_tab textarea {
        width: 100% !important;
        box-sizing: border-box;
    }
    .tab_td_tit {
        width: 100% !important;
        font-weight: bold;
        padding: 4px 0;
        color: #2c3642;
    }
    .tab_td_portrait img {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    .tab_td_portrait p {
        position: static;
        width: 100%;
        text-align: center;
        margin: 4px 0 0;
    }
    .menu_con_rt_submit,
    .menu_con_rt_submit button {
        width: 100% !important;
        box-sizing: border-box;
    }

    /* AI 审阅 / 自我审核：摘要表标签列收窄（PC 端 11rem 太宽） */
    .project_table_lt {
        width: 6rem !important;
        padding-right: 0.5rem;
        text-align: left;
    }
    .project_table_rt {
        width: calc(100% - 6rem) !important;
    }

    /* 承诺书（ViewDOC） */
    .promise {
        padding: 20px 16px;
        box-sizing: border-box;
    }
    .promise_top h2 {
        height: auto;
        line-height: 1.3;
        padding: 10px 0;
    }
    .promise_tit {
        height: auto;
        line-height: 1.6;
        padding: 10px 0;
    }
    .promise_footer {
        line-height: 1.7;
    }
    .promise_age_30 {
        width: 30px;
        float: left;
    }
    .promise_age_1050 {
        width: calc(100% - 34px) !important;
        float: left;
        line-height: 1.6;
    }
    .promise_bottom {
        line-height: 1.7;
    }

    /* 智能方案：模式选择按钮（在线生成 / 上传 / 选择）改全宽堆叠
       （页面内联 <style> 声明了 display:inline-block，需 !important 覆盖） */
    .sci-mode-option {
        display: block !important;
        width: 100% !important;
        margin: 0 0 10px !important;
        box-sizing: border-box;
    }

    /* AI 审阅 / 自我审核：风险表格（动态生成）横向滚动，避免挤压 */
    #riskTableContainer,
    #allRisksTable {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .sci-risk-table,
    .sc-risk-table {
        min-width: 640px;
    }

    /* ============================================================
       前台内容页（使用指南 / 常见问题 / 搜索结果 / 联系我们 / 审查）
       ============================================================ */

    /* 页面标题 */
    .help_tit {
        height: auto;
        line-height: 1.4;
        padding: 18px 16px 10px;
        font-size: 24px;
    }

    /* 内容容器加内边距；富文本图片自适应 */
    .content_us,
    .help_con,
    .faq_con,
    .search_result {
        padding: 0 16px;
        box-sizing: border-box;
    }
    .content_us img,
    .se-4 img {
        max-width: 100%;
        height: auto;
    }

    /* Article / Inspection 内联固定宽容器 */
    .use-1,
    .use-2,
    .se-4 {
        width: 100% !important;
        box-sizing: border-box;
    }
    .use-1 {
        height: auto;
        padding: 20px 16px;
    }
    .se-4 {
        padding: 0 16px;
        margin: 10px 0 0;
    }
    .mp-1 {
        display: none !important;
    }

    /* 列表页搜索中栏（使用指南 / 常见问题） */
    .search_middle {
        width: 100%;
        height: auto;
        padding: 14px 16px;
        line-height: normal;
    }
    .search_boxm {
        width: 100%;
        margin: 0;
        display: flex;
    }
    .search_boxm_txt {
        flex: none;
        width: 96px;
        height: 44px;
        border-radius: 5px 0 0 5px;
    }
    .search_boxm_select {
        width: 100%;
        height: 44px;
        line-height: 44px;
        padding: 0;
    }
    .search_middle select {
        float: none !important;
        width: 100% !important;
        height: 44px;
        margin-top: 0 !important;
    }
    .search_minput {
        flex: 1;
        min-width: 0;
        width: auto;
        height: 44px;
        line-height: 44px;
        margin-left: 0 !important;
        padding: 0 12px;
        box-sizing: border-box;
    }

    /* 使用指南列表 */
    .help_con ul li {
        height: auto;
        line-height: 1.5;
        padding: 12px 4px;
    }
    .help_con ul li span {
        float: none;
        display: block;
        color: #999;
        font-size: 12px;
        margin-top: 4px;
    }

    /* 常见问题 FAQ */
    .faq_con {
        width: 100%;
    }
    .faq_con li {
        padding: 16px;
        margin-bottom: 14px;
    }
    .faq_title {
        font-size: 18px;
        line-height: 1.5;
    }
    .faq_details {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 12px;
    }

    /* 搜索结果：标签-值上下堆叠 */
    .search_result h2 {
        height: auto;
        line-height: 1.5;
        padding: 10px 0;
    }
    .search_result_con {
        line-height: 1.6;
    }
    .search_result_left {
        float: none;
        width: 100%;
        text-align: left;
        padding: 8px 12px;
        background: #f5f5f5;
        font-weight: bold;
    }
    .search_result_right {
        float: none;
        width: 100%;
        border-left: 0;
        padding: 8px 12px;
        word-break: break-all;
    }
    .search_Author {
        width: 100%;
        height: auto;
        line-height: 1.6;
        padding: 8px 0;
    }
    .search_Author_100,
    .search_Author_195,
    .search_Author_200,
    .search_Author_225,
    .search_Author_250,
    .search_Author_280,
    .search_Author_120,
    .search_Author_70,
    .search_Author_40 {
        float: none;
        width: 100% !important;
        white-space: normal;
        word-break: break-all;
    }

    /* ---------- 项目列表表格 → 卡片堆叠 ---------- */
    .item_table table,
    .item_table tbody,
    .item_table tr,
    .item_table td {
        display: block;
        width: 100% !important;
    }
    .item_table table {
        border: none;
    }
    .item_table tr:first-child {
        display: none;
    }
    .item_table tr {
        margin-bottom: 12px;
        border: 1px solid #dedede;
        background: #fff;
    }
    .item_table td {
        position: relative;
        padding: 10px 12px 10px 40% !important;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        font-size: 14px;
        min-height: 40px;
    }
    .item_table td:last-child {
        border-bottom: none;
    }
    .item_table td::before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        top: 10px;
        width: 32%;
        color: #999;
        text-align: left;
        word-break: break-all;
    }

    /* ============================================================
       登录 / 注册 / 重置密码 弹窗（未登录态）
       PC 用内联 width:607/620px 固定宽，手机端改为全屏内弹窗
       ============================================================ */
    .log-text .am-modal-dialog,
    .am-modal-dialog.log-in {
        width: 92% !important;
        height: auto !important;
        max-height: 90vh;
        overflow-y: auto;
        padding: 0 16px 24px;
        margin: 10vh auto;
        box-sizing: border-box;
    }

    /* 注册/重置密码弹窗内容左对齐（amazeui .am-modal-bd 默认 text-align:center） */
    .lo1-input {
        text-align: left;
    }

    /* 输入框全宽 */
    .lo1-input input,
    .lo1-input .input1 input,
    .yzm input {
        width: 100% !important;
        max-width: 100% !important;
        height: 46px;
        box-sizing: border-box;
        font-size: 15px;
    }

    /* 提交按钮（登录 / 注册 / 重置密码）全宽、去掉固定左外边距 */
    .lo1-input button,
    .lo1-input .button1,
    .lo1-input-add .button1 {
        width: 100% !important;
        margin-left: 0 !important;
        height: 46px;
    }

    /* 登录弹窗的 label+input 横排改为 label 换行到上方 */
    .lo1-input-add .input-login {
        flex-wrap: wrap;
    }
    .lo1-input-add .input-login > label:first-child {
        width: 100% !important;
        text-align: left !important;
        margin: 0 0 6px !important;
    }

    /* 注册弹窗 label 靠左 */
    .lo1-input .input1 label {
        width: auto !important;
        text-align: left !important;
    }

    /* 输入框右侧小图标贴边 */
    .lo1-input .input-login-img {
        right: 12px !important;
    }

    /* 验证码图 / 获取验证码按钮：从绝对定位改为输入框下方 */
    .input-login-yzm {
        position: static !important;
        right: auto !important;
        width: auto !important;
        margin-top: 8px;
    }
    .input-login-yzm img {
        display: block;
        max-width: 125px;
        height: auto;
    }
    .yzm-hq {
        display: inline-block;
        width: auto;
        padding: 0 18px;
        line-height: 40px !important;
        height: 40px !important;
        text-align: center;
        font-size: 14px;
        box-sizing: border-box;
    }
    .yzm-hq p {
        margin: 0;
        line-height: 40px;
        font-size: 14px;
    }

    /* 底部“忘记密码 / 我要注册 / 登录”链接：去掉固定边距与浮动 */
    .log-down {
        margin: 16px 0 0 !important;
    }
    .log-down .am-fl,
    .log-down .am-fr,
    .log-title p {
        float: none !important;
        display: block;
        margin: 6px 0;
        text-align: left;
    }
    .log-in .ppass {
        margin-left: 0 !important;
    }
    .xlinput {
        margin-right: 0 !important;
    }
    .yzm {
        margin-left: 0 !important;
        text-align: left;
    }
    .lo1-input .tick {
        margin-bottom: 16px;
        line-height: 1.6;
    }
}
