.conent_box {
    width: 100%;
    padding: 60px 0;
}

.container {
    width: 75%;
    max-width: 1400px;
    margin: 0 auto;
}

.width_100 {
    width: 100% !important;
}

.headerZp {
    background: #fff;
    display: flex;
    justify-content: center;
}

.headerZp .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav {
    flex: 1;
}

.nav ul {
    display: flex;
    justify-content: center;
}

.nav ul li {
    padding: 5px 0;
    margin: 0 50px;
}

.nav ul li a {
    font-size: 20px;
    color: #333;
}

.nav ul li.on a {
    color: #1D52AA;
    font-weight: bold;
}

.nav ul li.on {
    border-bottom: 2px solid #1D52AA;
}

.zp_btn a {
    width: 146px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    background: #1D52AA;
    font-size: 20px;
}

.headerZp .home {
    position: relative;
}

.headerZp .home::before {
    content: '';
    width: 100%;
    height: 40px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 100%;
}

.home_phone {
    width: 134px;
    height: 30px;
    border-radius: 200px;
    background: #DEEBFF;
    color: #1D52AA;
    text-align: center;
    line-height: 30px;
}

.headerZp .home ul {
    display: none;
    position: absolute;
    left: 50%;
    top: 50px;
    width: 155px;
    opacity: 1;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    padding: 20px 15px;
    transform: translateX(-50%);
}


.headerZp .home ul li {
    text-align: center;
    margin-bottom: 20px;
}

.headerZp .home ul li:last-of-type {
    margin: 0;
}

.headerZp .home ul li a {
    color: #3D3D3D;
    font-size: 16px;
}

.headerZp .home ul li:hover a {
    color: #1D52AA;
    font-weight: bold;
}

.headerZp .home ul li i {
    margin-right: 10px;
    display: none;
}

.headerZp .home:hover ul {
    display: block;
}

/* ============================================
   3. 底部
   ============================================ */
.footer {
    width: 100%;
    background: #1D52AA;
}

.footer .banq {
    height: 122px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer .banq a {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   4. 表单样式 (应聘登记)
   ============================================ */
.itembox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 表单标题 */
.zp_name {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E2E2;
    margin-bottom: 30px;
}

.zp_name .name {
    font-size: 24px;
    font-weight: bold;
    color: #1D52AA;
}

.zp_name .name span {
    font-size: 18px;
    color: #3D3D3D;
}

.zp_name .desc {
    color: #ff0000;
    font-size: 13px;
    margin-top: 10px;
}

/* 表单行 */
.itembox .box {
    width: 48%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.itembox .box .user-form-label {
    width: 100px;
}

.itembox input {
    flex: 1;
}

/* 表单通用 */
.user-form-group {
    width: 60%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.user-form-group .user-form-label {
    width: 100px;
}

.error-text {
    width: 100%;
    position: absolute;
    left: 100px;
    bottom: -18px;
    color: #ff0000;
    font-size: 12px;
}

.pwd-tips {
    color: #666;
}

.box_btn {
    width: 100%;
    margin-top: 20px;
}

/* ============================================
   5. 单选按钮组 & 照片上传
   ============================================ */
.inline-radio-group {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 38px;
}

.inline-radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
}

.inline-radio-group input[type="radio"] {
    margin: 0;
}

/* 照片上传 */
.photo-upload-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.photo-preview {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    object-fit: cover;
}

.file-tip {
    font-size: 12px;
    color: #999;
    width: 100%;
    margin-top: 5px;
}

/* ============================================
   6. 表单验证错误提示
   ============================================ */
.field-error {
    border-color: #ff0000 !important;
}

.itembox .box .error-message {
    position: absolute;
    width: 100%;
    bottom: -16px;
    /* left: 100px; */
}

.error-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.error-message11 {
    position: absolute;
    color: red;
    bottom: -24px;
    font-size: 14px;
}

.user-btn-primary:hover {
    color: #fff;
}

/* ============================================
   7. 个人中心布局
   ============================================ */
.user-center-wrap {
    display: flex;
    background: #f5f5f5;
    padding: 30px 0;
}

.user-center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.user-center-left {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.user-center-right {
    flex: 1;
    background: #fff;
    border-radius: 8px;
}

/* ============================================
   8. 个人中心 - 头像区域
   ============================================ */
.user-avatar-box {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #5FB878;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.user-name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 12px;
}

.user-status {
    font-size: 12px;
    margin-top: 5px;
}

/* ============================================
   9. 个人中心 - 菜单
   ============================================ */
.user-menu {
    margin-top: 20px;
}

.user-menu a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.user-menu a:hover,
.user-menu a.active {
    background: #5FB878;
    color: #fff;
}

.user-menu a i {
    margin-right: 8px;
}

/* ============================================
   10. 应聘记录表格
   ============================================ */
.apply-table {
    width: 100%;
    border-collapse: collapse;
}

.apply-table th {
    background: #f9f9f9;
    padding: 12px 15px;
    text-align: left;
    font-weight: normal;
    color: #666;
    border-bottom: 2px solid #e6e6e6;
}

.apply-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.apply-table tr:hover td {
    background: #fafafa;
}

/* 状态标签 */
.status-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 12px;
}

.status-0 {
    background: #FFF3CD;
    color: #856404;
}

.status-1 {
    background: #D4EDDA;
    color: #155724;
}

.status-2 {
    background: #F8D7DA;
    color: #721C24;
}

.status-3 {
    background: #CCE5FF;
    color: #004085;
}

/* ============================================
   11. LayUI 组件修复
   ============================================ */
/* 修复复选框样式 */
.layui-form-checkbox[lay-skin="primary"] {
    height: auto !important;
    line-height: normal !important;
    padding: 0 !important;
}

.layui-form-checkbox[lay-skin="primary"] i {
    width: 16px !important;
    height: 16px !important;
    font-size: 12px !important;
    line-height: 16px !important;
    top: 50% !important;
    margin-top: -8px !important;
}

.layui-form-checkbox[lay-skin="primary"] span {
    padding-left: 24px !important;
    line-height: 1.5 !important;
}

/* 按钮加载状态 */
.layui-btn-disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* ============================================
   12. 验证码输入框
   ============================================ */
.captcha-wrapper {
    position: relative;
    width: 100%;
}

.captcha-wrapper .layui-input {
    padding-right: 100px;
}

.captcha-img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    height: 32px;
    border-radius: 4px;
}

/* ============================================
   14. 工具类
   ============================================ */
.layui-margin-top-15 {
    margin-top: 15px;
}

.layui-margin-bottom-15 {
    margin-bottom: 15px;
}

.error {
    color: #333;
}

input.err,
input.error,
textarea.err,
textarea.error,
select.err,
select.error {
    border: #ff0000 1px dashed !important;
    background-color: #eee !important;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

/* ============================================
   15. 响应式
   ============================================ */

.jl_list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.jl_list li {
    border: 1px solid #e6e6e6;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    position: relative;
    background: #fafafa;
}

.jl_list li>a {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #ff5722;
    font-size: 18px;
    text-decoration: none;
}

.jl_list li>a:hover {
    color: #ff0000;
}

.jl_list li p {
    margin: 10px 0;
    font-size: 16px;
}

.jl_list li p .name {
    color: #666;
    display: inline-block;
    width: 100px;
}

.jl_list li p .value {
    color: #333;
}

.empty-tip {
    text-align: center;
    color: #999;
    padding: 30px !important;
}

.step_box ul {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step_box ul li {
    display: inline-block;
    text-align: center;
    position: relative;
    width: 90px;
}

.step_box li .num {
    width: 36px;
    height: 36px;
    border: solid 1px #b3b3b3;
    border-radius: 100%;
    font-size: 14px;
    line-height: 36px;
    display: inline-block;
    margin-bottom: 5px;
    text-align: center;
}

.step_box li .text {
    font-size: 18px;
}

.step_box .xian {
    flex: 1;
    height: 1px;
    background: #a7a7a7;
    position: relative;
    top: -16px;
}

.step_box li:last-child {
    margin-right: 0;
}

.step_box li.on a {
    color: #1D52AA;
}

.step_box li.on .num {
    background: #1D52AA;
    border-color: #1D52AA;
    color: #fff;
}

.step_box li.on::after {
    background-color: #1D52AA;
}

.ypjllist li {
    width: 100%;
    margin-bottom: 30px;
    background: #F6F6F6;
    position: relative;
    padding: 30px;
    transition: all 0.5s ease-in-out;
}

#btSubmit {
    background: #1D52AA;
}

.ypjllist li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.ypjllist li .date {
    color: #9B9B9B;
    font-size: 16px;
}

.ypjllist li .title {
    font-size: 20px;
    color: #333;
}

.ypjllist li .top {
    display: flex;
    align-items: center;
}

.ypjllist li .status {
    width: auto;
    height: 31px;
    line-height: 31px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 0 25px;
    border-radius: 200px 90px 90px 0px;
    background: rgba(29, 82, 170, 0.3);
    margin-left: 30px;
}

.ypjllist li .text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 35px;
}

.ypjllist li .text span {
    color: #666;
    font-size: 16px;
    margin-right: 80px;
}

.ypjllist li .text span img {
    margin-right: 3px;
    position: relative;
    top: -2px;
}

.ypjllist li:hover {
    background: #EBF2FF;
    box-sizing: border-box;
    border-left: 3px solid #1D52AA;
}

.ypjllist li:hover .title {
    color: #1D52AA;
    font-weight: bold;
}

.ypjllist li:hover .status {
    background: #1D52AA;
}


.ypjlDetail .title {
    font-weight: bold;
    font-size: 30px;
    color: #292929;
    background: linear-gradient(270deg, #ecf3ff00 0%, #ecf3ff 100%);
    box-sizing: border-box;
    border-left: 4px solid #1D52AA;
    margin-bottom: 70px;
    padding: 40px;
}

.ypjlBox {
    width: 100%;
    margin-bottom: 30px;
}

.nmain {
    padding: 60px 0;
}

.crumbs {
    width: 100%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    padding: 0 15px;
    background: rgba(243, 243, 243, .6);
    color: #9E9E9E;
    font-size: 14px;
    margin-bottom: 40px;
}

.crumbs a {
    color: #9E9E9E;
}

.column_user .name {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding-bottom: 7px;
    margin-bottom: 40px;
    border-bottom: 1px solid #1D52AA;
}

/* ------------------------- */

.search {
    width: 615px;
    margin: 30px auto 60px auto;
    position: relative;
}

.search input {
    border: none;
}

.search input.search-in {
    width: 100%;
    height: 48px;
    border-radius: 50px;
    line-height: 48px;
    box-sizing: border-box;
    color: #9E9E9E;
    padding-left: 60px;
    outline: none;
    border: none;
    background: #fff;
    font-size: 18px;
    border: 1px solid #1D52AA;
}

.search .search-btn {
    width: 165px;
    height: 48px;
    background: #1D52AA;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    border-radius: 50px;
    font-size: 24px;
    border: none;
    outline: unset;
}

/* Safari锛孋hrome WebKit browsers */
.search input::-webkit-input-placeholder {
    color: #9E9E9E;
}

/* 鐏嫄 Mozilla Firefox 4 to 18 */
.search input:-moz-placeholder {
    color: #9E9E9E;
}

/* 鐏嫄 Mozilla Firefox 19+ */
.search input::-moz-placeholder {
    color: #9E9E9E;
}

/* Internet Explorer 10+ */
.search input:-ms-input-placeholder {
    color: #9E9E9E;
}

.search::before {
    content: '';
    width: 0;
    height: 22px;
    border-left: 1px solid #D8D8D8;
    position: absolute;
    display: inline-block;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.search .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.contentBox {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.box_left {
    width: 300px;
    margin-right: 40px;
    padding-right: 40px;
    border-right: 1px solid #E2E2E2;
}

.box_left_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.box_left_top .sbt {
    font-size: 18px;
    color: #333;
}

.box_left_top .clear {
    font-size: 16px;
    color: #999;
}

.box_left .item .name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.box_left li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.box_left li span {
    width: 22px;
    height: 22px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #999;
    margin-right: 10px;
}

.box_left li .sname {
    font-size: 18px;
    color: #333;
}

.box_left li:last-of-type {
    margin: 0;
}

.item_xian {
    width: 100%;
    border-top: 1px solid #E2E2E2;
    display: block;
    margin: 35px 0;
}

.box_right {
    flex: 1;
}

.box_right h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
}



.zplist li {
    width: 100%;
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 45px;
    margin-bottom: 45px;
    position: relative;
}

.zplist li::before {
    content: '';
    width: 0;
    height: 0;
    display: block;
    border-bottom: 1px solid #1D52AA;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}



.zplist li:last-of-type {
    padding: 0;
    margin: 0;
    border: none;
}

.zplist li .title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.zplist li .extend {
    color: #666;
    font-size: 20px;
    margin: 18px 0 23px 0;
}

.zplist li .extend span {
    margin: 0 8px;
}

.zplist li .desc {
    color: #999;
    line-height: 30px;
    font-size: 18px;
}

.zplist li:hover .title {
    color: #1D52AA;
}

.zplist li:hover::before {
    width: 100%;
}

.zplist li:last-of-type:hover::before {
    display: none;
}

/* --------------------------- */

.zp_detail .title {
    width: 100%;
    height: auto;
    background: linear-gradient(270deg, #ecf3ff00 0%, #ecf3ff 100%);
    box-sizing: border-box;
    border-left: 4px solid #1D52AA;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zp_detail .title .extend {
    font-size: 20px;
    color: #999;
}

.zp_detail .title p {
    font-size: 30px;
    font-weight: bold;
    color: #292929;
}

.zp_detail .dtl {
    padding: 30px 0;
    font-size: 18px;
    color: #3D3D3D;
}

.zp_detail .extend .box {
    margin-bottom: 75px;
}

.zp_detail .extend .box .name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 1px solid #1D52AA;
    display: inline-block;
    margin-bottom: 28px;
}

.zp_detail .extend .box p {
    font-size: 18px;
    color: #3D3D3D;
}

.box_left .item ul li.selected .sname {
    color: #1D52AA;
    font-weight: bold;
}

.box_left .item ul li.selected span {
    background: #1D52AA;
}

.box_left .item ul li {
    cursor: pointer;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
}

.loading-more {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 13px;
    display: none;

}

.no-more {
    text-align: center;
    padding: 20px;
    color: #ccc;
    font-size: 13px;
    display: none;
    margin-top: 30px;
}

.loading-more img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.ypjl_status_list ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.ypjl_status_list ul::before {
    content: '';
    width: 88%;
    left: 6%;
    top: 0;
    display: inline-block;
    border-top: 3px solid #C7C7C7;
    position: absolute;
}

.ypjl_status_list ul li {
    font-size: 18px;
    color: #999;
    position: relative;
    padding-top: 25px;
    flex: 1;
}

.ypjl_status_list ul li p {
    text-align: center;
}

.ypjl_status_list ul li::before {
    content: '';
    width: 100%;
    height: 0;
    border-top: 3px solid #1D52AA;
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
}

.ypjl_status_list ul li.on::before {
    width: 100%;
}

.ypjl_status_list ul li:last-of-type::before {
    display: none !important;
}

.ypjl_status_list ul li span {
    width: 12px;
    height: 12px;
    display: inline-block;
    background: #C7C7C7;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
}

.ypjl_status_list ul li.on {
    color: #333;
}

.ypjl_status_list ul li.on span {
    background: #1D52AA;
}

.statusBox {
    width: 100%;
    margin-top: 50px;
}

.statusBox .item {
    width: 100%;
    /* width: 1400px; */
    height: auto;
    background: #F4F8FF;
    box-sizing: border-box;
    border: 1px solid rgba(29, 82, 170, 0.6706);
    padding: 30px;
}

.item_xgcs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.statusBox .item .title2 {
    font-size: 24px;
    font-weight: bold;
    color: #2BBB03;
}

.statusBox .item .desc {
    font-size: 18px;
    color: #666;
    margin: 20px 0;
    line-height: 1.5em;
}

.btSubmit2 {
    background: #1D52AA;
    color: #fff
}

.user-auth-container {
    padding: 100px 0;
}

.detail_item {
    margin-bottom: 25px;
    overflow: hidden;
}

.detail_title {
    background: #f5f5f5;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}



.info-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.info-col {
    flex: 0 0 50%;
    padding: 5px 0;
    font-size: 16px;
}

.info-col-full {
    flex: 0 0 100%;
}

.info-label {
    color: #666;

}

.info-value {
    color: #333;
}

/* ---------------------- */

.newlist li {
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    box-shadow: -0.0625rem 0 0.625rem 0 rgb(0 0 0 / 7%),
        0.3125rem 1.25rem 2.5rem 0 rgb(0 0 0 / 4%);
}

.newlist li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 2px solid #1D52AA;
    transition: all 0.5s ease-in-out;
}

.newlist li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.newlist li .img {
    width: 362px;
    overflow: hidden;
}

.newlist li .img img {
    width: 100%;
    transition: All 0.3s ease-in-out;
    -webkit-transition: All 0.3s ease-in-out;
    -moz-transition: All 0.3s ease-in-out;
    -o-transition: All 0.3s ease-in-out;
}

.newlist li .text {
    flex: 1;
    box-sizing: border-box;
    padding: 25px;
    /* background: url(../images/bg29.jpg) no-repeat center;
    background-size: cover; */
}

.newlist li .title {
    height: 28px;
    line-height: 28px;
    font-size: 18px;
}

.newlist li .desc {
    height: 56px;
    line-height: 28px;
    color: #929292;
    width: 100%;
    margin: 10px 0 20px 0;
}

.newlist li .date {
    color: #929292;
}

.newlist li:hover .img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.newlist li:hover .title {
    color: #1D52AA;
    font-weight: bold;
}

.newlist li:hover::before {
    width: 100%;
}

/* --------------------------------------- */
.mbheader {
    width: 100%;
    display: none;
    height: 60px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 5%);
}

.mbheader .header-con {
    width: 90%;
    margin: 0 auto;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mbheader .header-con h1 a {
    display: inline-block;
}

.mbheader .header-con .logo {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.mbheader .header-con .logo a {
    width: 100%;
    display: inline-block;
}

.mbheader .header-con .logo img {
    width: 100%;
    max-height: 35px;
}

.sp_header {
    height: 50px;
    background: #fff;
    position: fixed;
    z-index: 10;
    width: 100%;
}

.sp_logo {
    padding: 10px;
    float: left;
    height: 50px;
    width: 70%;
}

.sp_logo img {
    margin: auto;
    width: 100%;
    height: 100%;
}

.sp_nav {
    width: 30px;
    position: relative;
    cursor: pointer;
    height: 30px;
    margin-top: 10px;
    flex: none;
}

.sp_nav span {
    display: block;
    background: #1D52AA;
    width: 30px;
    height: 2px;
    position: absolute;
    transition: all ease 0.35s
}

.sp_nav span:nth-of-type(1) {
    top: 0px
}

.sp_nav span:nth-of-type(2) {
    top: 10px
}

.sp_nav span:nth-of-type(3) {
    top: 20px
}

.sp_nav_se span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg)
}

.sp_nav_se span:nth-of-type(2) {
    width: 0
}

.sp_nav_se span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg)
}

.sjj_nav {
    position: absolute;
    z-index: 9999;
    background: #eee;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 40px;
    top: -1000%;
    left: 0;
    overflow: auto;
    overflow-x: hidden;
    transition: top ease 0.35s;
}

.nav_show {
    top: 80px
}

.sjj_nav>ul>li:first-child {
    overflow: hidden;
    border-top: 0
}

.sjj_nav>ul>li:first-child>a {
    float: left;
    width: calc(100% - 70px)
}

.sjj_nav>ul>li:first-child .language {
    float: right;
    width: 70px;
    overflow: hidden;
    line-height: 30px;
    margin-top: 5px
}

.sjj_nav>ul>li:first-child .language a {
    width: 35px;
    float: left;
    border-left: 1px #ddd solid;
    text-align: center;
    color: #999;
}

.sjj_nav ul li i {
    position: absolute;
    top: 5px;
    right: 0px;
    border-left: 1px #ddd solid;
    height: 30px;
    padding: 0px 7px 0 7px;
}

.sjj_nav ul li i svg {
    transform: rotate(-90deg);
    transition: all ease 0.35s
}

.sjj_nav ul li .sjj_nav_i_se svg {
    transform: rotate(0deg)
}

.sjj_nav ul li {
    border-top: 1px #ddd solid;
    margin-left: 20px;
    position: relative;
    line-height: 40px;
    font-size: 14px
}

.sjj_nav>ul>li:last-child {
    border-bottom: 1px #ddd solid;
}

.sjj_nav ul li ul {
    display: none
}

.sjj_nav ul li a {
    color: #666;
    /* width: 80% */
}

.sjj_nav ul li ul li a {
    color: #999;
    display: block;
    text-align: left;
}

.sjj_nav ul li i svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
    fill: #0DA1B0
}

.sjj_nav ul li ul li>ul {
    margin-left: 10px
}

.user-btn-primary {
    background-color: #1D52AA;
}

.dtl_detail p img,
.dtl_detail p video {
    max-width: 100%;
    height: auto;
}

.user_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    color: #333;
    font-size: 20px;
    background: #F6F6F6;
    margin-bottom: 60px;
}

.user_box .text {
    display: flex;
    align-items: center;
}



.btnlist a {
    margin-left: 20px;
    border-bottom: 2px solid #1D52AA;
    box-sizing: border-box;
    background: #1D52AA;
    color: #fff;
    padding: 0 25px;
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 20px;
}

.ncontent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.ncontent_left {
    width: 220px;
    background: #F4F8FF;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 35px 25px;
}

.ncontent_left ul li {
    margin-bottom: 35px;
    font-size: 20px;
    position: relative;
}

.ncontent_left ul li:last-of-type {
    margin-bottom: 0;
}

.ncontent_left ul li::before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-left: 5px solid #1D52AA;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 4px 0px 0px 4px;
}

.ncontent_left ul li.on::before {
    height: 100%;
}

.ncontent_left ul li a {
    color: #333;
}

.ncontent_left ul li.on a {
    color: #1D52AA;
    font-weight: bold;
}

.ncontent_right {
    flex: 1;
    margin-left: 35px;
    box-sizing: border-box;
    border: 1px solid rgba(29, 82, 170, 0.4);
    padding: 40px 50px;
    border-radius: 10px;
}

.dtl_detail p,
.dtl_detail p span {
    font-size: 18px !important;
    color: #333;
    font-family: 微软雅黑 !important;
}

.field-error {
    border-color: #FF5722 !important;
}

.valid-success {
    border-color: #5FB878 !important;
}

.error-message {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 2px;
    position: absolute;
    bottom: -20px;
}

.info-tip {
    color: #5FB878;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.info-tip i {
    font-size: 14px;
}

.inline-radio-group label {
    margin-right: 15px;
    cursor: pointer;
}

.photo-upload-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.file-tip {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
}

.error-message11 {
    color: #FF5722;
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

.box {
    position: relative;
}

.char-count {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 12px;
    color: #1D52AA;
}

/* ---------------------------- */

.field-error {
    border-color: #FF5722 !important;
}

.valid-success {
    border-color: #5FB878 !important;
}

.error-message {
    color: #ff0000;
    font-size: 12px;
    display: block;
    margin-top: 2px;
    position: absolute;
    bottom: -20px;
}

.password-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e2e2;
}

.password-section .section-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.required-star {
    color: #FF5722;
}

.info-tip {
    color: #5FB878;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.info-tip i {
    font-size: 14px;
}