/**
 * seo_login.css
 * 用途：SEO 详情页的注册/登录弹框所需的最小样式
 * 来源：从 Public/newhome/css/defalt.css、Public/css/reg_login.css、
 *       Public/newhome/css/style.css、Public/newhome/layui/css/layui.css
 *       原样抽取相关规则，避免为弹框引入整份大文件。
 */

.btn {
    cursor: pointer;
    border-radius: 4px;
    color: #fff}
.btnW100 {
    width: 90px;
    height: 34px;
    font-size: 14px;
    background-color: #fff}
.btn_blue {
    background-color: #0898ff;
    color: #fff}
.Pop-ups {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1000}
.Pop-ups form {
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 760px}
.Pop-ups form ul {
    padding: 40px 30px;
    border-radius: 8px;
    background-color: #fff}
.Pop-ups .popup_title h4 {
    font-size: 24px;
    color: #333}
.Pop-ups .popup_title p {
    color: #999;
    font-size: 14px;
    padding-bottom: 10px;
    padding-top: 10px}
.Pop-ups form ul .form_popup_item {
    margin-bottom: 30px}
.Pop-ups form ul .form_popup_item:last-child {
    margin-bottom: 0}
.Pop-ups form ul .form_popup_item label {
    margin-bottom: 12px;
    font-size: 16px;
    display: block}
.Pop-ups form ul .form_popup_item input {
    /* height: 40px; */
    border: 0;
    border-radius: 4px;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 40px;
    font-size: 14px;
    background: rgba(255, 255, 255, 1);
    margin-right: 10px;
    /* width: 520px */}
/* 2026-09-14 弹框内所有文本/密码输入框去掉边框（外框已由容器提供，避免双线） */
.Pop-ups input[type="text"],
.Pop-ups input[type="password"],
.Pop-ups form .ipt,
#denglu_modal input[type="text"],
#denglu_modal input[type="password"],
#denglu_modal .ipt {
    border: 0;
}
.Pop-ups input[type="text"]:focus,
.Pop-ups input[type="password"]:focus,
#denglu_modal input[type="text"]:focus,
#denglu_modal input[type="password"]:focus {
    outline: none;
}

/* ===== #secform 二次验证输入框（reg_login.css 102-122 原样）===== */
.ipt {
    border: solid 1px #d2d2d2;
    border-left-color: #ccc;
    border-top-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 1px 0 #f8f8f8;
    background-color: #fff;
    padding: 4px 6px;
    height: 21px;
    line-height: 21px;
    color: #555;
    width: 180px;
    vertical-align: baseline;
}
.ipt:focus {
    border-color: #95C8F1;
    box-shadow: 0 0 4px #95C8F1;
}

/* ===== 发送验证码按钮（style.css 原样）===== */
.getCode {
    font-size: 12px;
    color: #e1121b;
    padding-right: 10px;
    line-height: 40px;
    cursor: pointer;
}

/* ===== layui 图标字体子集（#agree_modal 关闭 X 用，layui.css 原样抽取，
 *        字体文件用本地 /Public/newhome/layui/font/，避免加载整份 layui.css）===== */
@font-face {
    font-family: layui-icon;
    src: url(/Public/newhome/layui/font/iconfont.eot?v=282);
    src: url(/Public/newhome/layui/font/iconfont.eot?v=282#iefix) format('embedded-opentype'),
         url(/Public/newhome/layui/font/iconfont.woff2?v=282) format('woff2'),
         url(/Public/newhome/layui/font/iconfont.woff?v=282) format('woff'),
         url(/Public/newhome/layui/font/iconfont.ttf?v=282) format('truetype'),
         url(/Public/newhome/layui/font/iconfont.svg?v=282#layui-icon) format('svg');
}
.layui-icon {
    font-family: layui-icon !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.layui-icon-close:before { content: "\1006"; }

/* ===== 弹框所需 Tailwind 工具类静态化（2026-09-14）=====
 * 弹框 HTML（seo_reglogin.html）原样保留，其布局类原由旧站 CDN
 * tailwindcss.js 运行时生成；新页面不再加载 CDN，故在此原样补齐
 * 等价规则。类名与语义与 Tailwind 默认一致，对旧页面无副作用。 */
.flex { display: flex; }
.flex-1 { flex: 1 1 0%; min-width: 0; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }
.bg-white { background-color: #fff; }
.hidden { display: none; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.text-black { color: #000; }
.text-white { color: #fff; }
.twochecklogin { display: flex; gap: 10px; }
.twochecklogin .ipt { flex: 1; width: auto; }
