/* ============================================
   全局CSS变量定义（红色主题配色方案）
   以 app/index/view/user/index.html 为准
   所有页面共享此主题配色
   ============================================ */
:root {
    --primary-color: #B40000;
    --gold-color: #D4B106;
    --secondary-color: #f5f5f5;
    --text-color: #1F1F1F;
    --border-color: #E8E8E8;
    --bg-color: #F5F5F5;
    --section-title-color: #333;
    --label-color: #666;
    --hover-bg: rgba(180, 0, 0, 0.05);
    --border-radius: 8px;
}

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td {
    margin: 0;
    padding: 0;
}
body, button, input, select, textarea {
    font: 12px Arial, Tahoma, 'Microsoft Yahei';
    color: #454545;
}
button, input, select, textarea, h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}
h2, h3 {
    font-size: 14px;
}
img {
    vertical-align: middle;
    border: none;
    display: inline-block;
    max-width: 100%;
}
a {
    text-decoration: none;
    color: #454545;
    vertical-align: baseline;
    cursor: pointer;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
body {
    word-wrap: break-word;
    word-break: break-all;
}
.g-cf:after {
    content: "";
    clear: both;
}
.g-cf {
    zoom: 1;
    background: transparent; /* 确保背景透明 */
}
.g-rf .phone {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    width: 100%;
    padding: 20px;
    margin-top: 1%;
}
.foot-cate {
    list-style: none;
    text-decoration: none;
}
.foot-cate a {
    cursor: default;
}
h4 {
    font: 16px Arial, Tahoma, 'Microsoft Yahei';
}
.g-f-l {
    float: left;
    _display: inline;
    background: transparent; /* 确保背景透明 */
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #ccc;
    opacity: 1;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #ccc;
    opacity: 1;
}
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #ccc;
    opacity: 1;
}
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #ccc;
    opacity: 1;
}
.top_logo {
    padding-top: 50px;
    float: left;
    display: block;
    max-width: 100%;
    height: auto;
}
.top_logo_text {
    margin-left: 185px;
    float: left;
    display: block;
    max-width: 100%;
    height: auto;
}
.head_img::after {
    content: "";
    display: table;
    clear: both;
}
.phone {
    width: 11px;
    height: 12px;
}
.top_message span {
    height: 17px;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 17px;
    padding-top: 60px;
}
.wrap {
    width: 100%;
    min-width: 320px; /* 移动端最小宽度 */
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden; /* 防止横向滚动 */
    position: relative;
    background: #FAFAFA;
    box-sizing: border-box;
}
.container span {
    width: 86px;
    text-align: right;
}
.header_top ul li {
    float: left;
    line-height: 50px;
    width: 103px;
    margin-right: 10px;
    text-align: center;
    font-size: 16px;
    position: relative;
    color: #FFF;
}
/* ============================================
   top_titile 导航栏样式 - PC端设计
   ============================================ */

.top_titile {
    width: 100%;
    max-width: 1200px;
    height: 56px;
    background: linear-gradient(135deg, #c71d23 0%, #8b0000 50%, #a00000 100%);
    border-bottom: 3px solid #e3b45e;
    box-shadow: 0 4px 20px rgba(199, 29, 35, 0.3), 
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 9999;
    box-sizing: border-box;
    padding: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

/* 导航栏容器 */
.top_titile .g-f-l {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    height: 56px;
    gap: 5px;
    background: transparent !important; /* 确保背景透明，不受其他样式影响 */
}

/* 导航项 */
.top_titile .g-f-l li {
    position: relative;
    margin: 0 8px;
}

/* 导航链接 - PC端精美设计 */
.top_titile .g-f-l li a {
    display: block;
    padding: 0 18px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 56px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    border-radius: 6px;
    overflow: hidden;
}

/* 导航链接悬停效果 */
.top_titile .g-f-l li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

/* 导航链接底部指示线动画 */
.top_titile .g-f-l li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e3b45e, #ffd700);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(227, 180, 94, 0.6);
}

.top_titile .g-f-l li a:hover::before {
    width: 80%;
}

/* 激活状态样式 */
.top_titile ul li a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    position: relative;
}

.top_titile ul li a.active::before {
    width: 90%;
    background: linear-gradient(90deg, #ffd700, #e3b45e);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* 下拉菜单样式 */
.top_titile .g-f-l li .ul {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top_titile .g-f-l li:hover .ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 下拉菜单项 */
.top_titile .g-f-l li .ul .li {
    margin: 0;
    padding: 10px 24px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    transition: all 0.25s ease;
    border-radius: 6px;
    margin: 2px 8px;
}

.top_titile .g-f-l li .ul .li:hover {
    background: linear-gradient(90deg, rgba(199, 29, 35, 0.12), rgba(199, 29, 35, 0.06));
    color: #c71d23;
    transform: translateX(5px);
    padding-left: 28px;
    font-weight: 600;
}
.header_top {
    width: 100%;
    height: 224px;
    background: url("../img/topimg.jpg") no-repeat center center;
    background-size: cover;
    background-position: center top;
    left: 0;
    top: 0;
    position: relative;
    z-index: 200;
    box-sizing: border-box;
    overflow: visible;
}
.head_tops {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    height: 100%;
}
.head_img {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
}
    background-image: url("../image/search.png");
.header_top ul li a {
    display: block;
    color: #fff;
    transition: all ease-in-out .3s
}
.header_top ul li.active a {
    color: #fff;
}
.header_top ul li.active:after {
    opacity: 1;
}
.header_top ul li:hover:after {
    opacity: 1;
}
.header_top ul li:hover a {
    color: #fff;
}
.header_top span {
    line-height: 50px;
    padding: 0 22px;
    position: relative;
}
.header_top span:first-child:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 11px;
    background-color: #2155EF;
    right: 0;
    top: 2px;
}
.main_body {
    position: relative;
}
.index_img {
    width: 100%;
    float: left;
    height: 358px;
}
.banner_main h4 {
    font-size: 50px;
    color: #fff;
    font-weight: normal;
}
.banner_main p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    width: 469px;
    margin-top: 12px;
    opacity: .8;
}
.banner_main a {
    display: block;
    width: 138px;
    height: 36px;
    background: rgba(0, 140, 245, 1);
    border-radius: 1px;
    margin-top: 24px;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 16px;
    transition: all ease-in-out .3s;
}
.entrance ul li {
    float: left;
    width: 20%;
    text-align: center;
    transition: all ease-in-out .3s;
}
.entrance ul li a {
    display: block;
    padding-bottom: 45px;
}
.entrance ul li p {
    color: #fff;
    font-size: 22px;
    padding: 24px 0;
}
.entrance ul li.bg1 {
    background: rgba(0, 145, 255, .95);
}
.entrance ul li.bg2 {
    background: rgba(242, 193, 46, .95);
}
.entrance ul li.bg3 {
    background: rgba(253, 91, 78, .95);
}
.entrance ul li.bg4 {
    background: rgba(23, 195, 177, .95);
}
.entrance ul li.bg5 {
    background: rgba(189, 122, 219, .95);
}
.entrance ul li:hover {
    transform: translateY(-30px);
}
.entrance ul li.active {
    transform: translateY(-30px);
}
.picture {
    background: url(../image/bg1.png) no-repeat center center;
    background-size: cover;
    padding-bottom: 10px;
}
.picture_tit {
    text-align: center;
    color: #fff;
    font-size: 22px;
    padding: 40px 0 30px;
}
.picture_l {
    width: 30.8%;
}
.picture_l .item {
    margin-bottom: 10px;
    position: relative;
}
.picture_l .item p {
    box-sizing: border-box;
    padding: 0 20px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 10px;
    text-align: center;
    color: #fff;
    line-height: 48px;
    height: 48px;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all ease-in-out .3s;
}
.picture_wen {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 145, 255, .7);
    text-align: center;
    opacity: 0;
    transition: all ease-in-out .3s;
}
.picture_wen img {
    display: block;
    margin: 30% auto 0;
}
.picture_wen span {
    display: block;
    margin: 20px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    height: 44px;
    overflow: hidden;
}
.picture_l .item:hover .picture_wen {
    opacity: 1;
}
.picture_l .item:hover p {
    opacity: 0;
}
.picture_c {
    width: 30.8%;
    margin-left: 2.5%;
}
.picture_c .picture_wen img {
    margin: 50% auto 0;
}
.picture_r {
    width: 30.8%;
    margin-left: 2.5%;
}
.px {
    margin-bottom: 30px;
}
.train {
    width: 48.33%;
    margin-top: 48px;
}
.train .table li {
    padding: 2px 0;
}
.train .table li div span {
    text-align: left;
    padding: 0;
    line-height: 40px;
    height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/* ============================================
   底部容器基础样式 - 现代化设计
   ============================================ */
.foot {
    width: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* 底部装饰线 */
.foot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold-color) 50%, var(--primary-color) 100%);
}

/* ============================================
   友情链接区域
   ============================================ */
.link {
    background: transparent;
    padding: 40px 0 30px;
    position: relative;
}

.link .containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.link dl {
    margin: 0;
    padding: 0;
    float: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.link dt {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 8px 0;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.link dt::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--gold-color) 100%);
    margin-right: 10px;
    border-radius: 2px;
}

.link dd {
    margin: 0;
    padding: 0;
    float: none;
    position: relative;
}

.link dd a {
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.6;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
}

.link dd a:hover {
    color: #fff;
    background: rgba(180, 0, 0, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
}

.link dd::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

.link dd:last-child::after {
    display: none;
}

/* ============================================
   版权信息区域
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    margin: 0;
    height: auto;
}

.copyright {
    text-align: center;
    background: transparent !important;
    padding: 0 20px;
}

.copyright a {
    text-decoration: none;
    display: block;
}

.copyright a p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 26px;
    height: auto;
    margin: 0;
    transition: color 0.3s ease;
}

.copyright a p:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* 容器样式 */
.containers {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* 清除浮动 */
.foot-phone::after,
.g-cf::after {
    content: "";
    clear: both;
    display: table;
}

/* 注意：底部样式的响应式媒体查询已移至 media.css 文件中 */
.main_top {
    text-align: center;
    height: 130px;
    background-size: cover;
    position: relative;
}
.main_top > h4 {
    font-weight: normal;
    color: #fff;
    font-size: 26px;
    line-height: 37px;
    padding-top: 28px;
}
.main_top > p {
    font-size: 14px;
    color: #fff;
    margin-top: 14px;
}
.main_top > p span {
    color: #9BA0A5;
}
.roll p {
    font-size: 14px;
    color: #3D424B;
    line-height: 46px;
    overflow: hidden;
}
.roll p span {
    font-size: 16px;
    color: #000;
    float: left;
    width: 64px;
}
.course ul li {
    border-bottom: 1px solid #D1D1D1;
    padding: 4px 0;
    margin-bottom: 10px;
    position: relative;
}
.course ul li div {
    box-sizing: border-box;
    padding-top: 30px;
    min-height: 68px;
    font-weight: bold;
    line-height: 26px;
    font-size: 14px;
    color: #9BA0A5;
    padding-left: 14px;
    transition: all ease-in-out .3s;
}
.course ul li span {
    position: absolute;
    font-weight: normal;
    font-size: 30px;
    color: #9BA0A5;
    width: 114px;
    text-align: right;
    left: -168px;
    transition: all ease-in-out .3s;
}
.course ul li:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D8D8D8;
    left: -38px;
    top: 38px;
}
.course ul li:hover div {
    background: rgba(0, 145, 255, .08);
    color: #231F20;
    font-size: 18px;
}
.course ul li:hover span {
    color: #0091FF;
    font-size: 36px;
}
.authentication {
    padding-top: 45px;
}
.authentication_tit {
    height: 20px;
    /*font-size:14px;*/
    font-weight: 400;
    color: #000000;
    line-height: 20px;
    padding-top: 53px;
    margin-left: 31.5%;
    font: 16px Arial, Tahoma, 'Microsoft Yahei';
}
.inquire .item span {
    float: left;
    width: 63px;
    height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 38px;
}
.lines {
    width: 766px;
    border: 1px solid #979797;
    margin: 0 auto;
    opacity: 29%;
}
.update p {
    font-size: 24px;
    color: #0091FF;
    margin-top: 24px;
}
.contact_top {
    height: 290px;
    background: url(../image/bg4.png) no-repeat center center;
    background-size: cover;
}
.contactUs_l textarea {
    box-sizing: border-box;
    display: block;
    width: 85%;
    border: 1px solid #E5E5E5;
    height: 177px;
    padding: 6px 15px;
    background-color: #fff;
    font-size: 14px;
    margin-bottom: 26px;
    resize: none;
}
.btn-img {
    background-color: rgba(245, 166, 35, 1) !important;
}
.contactUs_r h4 {
    text-align: center;
}
.contactUs_r p {
    text-indent: 2em;
}
.contactUs_r h4 { /*font-weight: normal;*/
    margin-left: 40px;
    font-size: 22px;
    color: #333333;
    line-height: 22px;
    font-weight: 600;
    margin-top: 54px;
    /*padding-left: 5%;*/
    margin-bottom: 36px;
}
.contactUs_r h4 small {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}
.contactUs_r p {
    font-size: 14px;
    color: #3D424B;
    margin-left: 40px;
    line-height: 22px;
    padding-left: 24px;
    margin-top: 23px;
    margin-right: 60px;
}
    background: url(../image/icon10_03.png) no-repeat left 3px;
    background: url(../image/icon11_03.png) no-repeat left 3px;
    background: url(../image/icon12_03.png) no-repeat left 3px;
.cons span {
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    height: 42px;
    line-height: 42px;
}
.register_top {
    font-size: 14px;
    color: #9BA0A5;
}
.register_top i {
    color: #D0021B;
    padding-right: 4px;
}
.register_top span {
    float: right;
    color: #0091FF;
    font-size: 12px;
}
.upload_pic img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}
.upload_r p {
    color: #0091FF;
    margin-top: 18px;
}
.register_k textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: 1px solid #DDE3E8;
    background-color: #fff;
    height: 96px;
    font-size: 14px;
    padding: 6px 10px;
    margin-top: 6px;
    resize: none;
}
.register_type_tit.active {
    background: url(../image/radio2_03.jpg) no-repeat 20px center;
}
.register_btn .btn2 a {
    color: #fff;
    display: block;
}
    background: url(../image/bg5.png) no-repeat;
.login_wrap {
    width: 354px;
    margin: 153px auto 0;
}
.login_top {
    font-size: 24px;
    color: #3D424B;
    letter-spacing: 1px;
}
.login_top small {
    color: #9BA0A5;
    font-size: 12px;
    padding-left: 4px;
}
.login_wrap ul {
    margin-top: 35px;
}
.login_wrap ul li {
    overflow: hidden;
    margin-bottom: 12px;
}
.login_wrap ul li input {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 50px;
    background-color: #FCFCFD;
    border: 1px solid #ECF0F3;
    font-size: 14px;
    text-indent: 10px;
}
.login_wrap ul li.yzm input {
    width: 150px;
    float: left;
}
.login_wrap p {
    text-align: center;
    margin-top: 58px;
    font-size: 18px;
}
.login_wrap p a {
    color: #0091FF;
}
.login_wrap p:hover {
    text-decoration: underline;
}
.aisle {
    height: 670px;
    background: url(../image/bg6.png) no-repeat center center;
    background-size: cover;
    position: relative;
}
.aisle_k {
    width: 852px;
    padding-top: 220px;
    margin: 0 auto;
    overflow: hidden;
}
.aisle_k a {
    box-sizing: border-box;
    padding-top: 10px;
    width: 330px;
    height: 80px;
    text-align: center;
    background-color: #F5A623;
    color: #fff;
    font-size: 26px;
    transition: all ease-in-out .3s;
}
.aisle_k a small {
    font-size: 12px;
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
}
.aisle_k a:last-child {
    background-color: #247BEB;
}
.aisle_k a:hover {
    opacity: .9;
}
.cultivate_top {
    height: 130px;
    background-size: cover;
    text-align: center;
}
.cultivate_top a {
    box-sizing: border-box;
    padding-top: 10px;
    display: inline-block;
    width: 260px;
    height: 80px;
    color: #fff;
    font-size: 26px;
    margin: 30px;
    /*background: rgba(245, 166, 35, 1);*/
}
.cultivate_top a span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 4px;
}
.cultivate_top a:last-child {
    /*background: rgba(208, 2, 27, 1);*/
}
.cultivate_top .member-color {
    background: rgba(245, 166, 35, 1);
}
.cultivate_top .exam-color {
    background: rgba(78, 129, 248, 1);
}
.cultivate_top .apply-color {
    background: rgba(208, 2, 27, 1);
}
.demand_top {
    /*height: 300px; */
    text-align: center;
    font-size: 14px;
    color: #3D424B;
    line-height: 88px;
    /*margin-top: 230px !important;*/
}
.demand_top span {
    float: left;
}
.demand_top select {
    width: 180px;
    height: 50px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(221, 227, 232, 1);
    margin-left: 10px;
    margin-top: 18px;
    text-indent: 14px;
    float: left;
}
.demand_top input[type="text"] {
    width: 220px;
    height: 48px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(221, 227, 232, 1);
    text-indent: 14px;
    float: left;
    margin-top: 18px;
    margin-left: 30px;
}
.demand_top button {
    width: 150px;
    height: 50px;
    background: rgba(0, 145, 255, 1);
    float: left;
    margin-left: 30px;
    color: #fff;
    font-size: 18px;
    margin-top: 18px;
    cursor: pointer;
}
.demand_tit th {
    height: 56px;
    line-height: 56px;
    background-color: #e8e9ea;
    font-size: 16px;
    color: #000;
    text-align: center;
    font-weight: normal;
}
.wh1 {
    width: 6.9%;
}
.wh2 {
    width: 19.2%;
}
.wh3 {
    width: 8%;
}
.wh4 {
    width: 6.34%;
}
.wh5 {
    width: 18%;
}
.wh6 {
    width: 8%;
}
.demand_con tr:hover td {
    background: rgba(245, 245, 245, 1);
}
.demand_con td {
    line-height: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding: 20px 10px;
}
.demand_con td span {
    display: block;
    color: #0091FF;
}
.demand_con td a {
    color: #0091FF;
}
.paging2 {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}
.paging2 div {
    display: inline-block;
    overflow: hidden;
}
.paging2 div a {
    float: left;
    width: 40px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    color: #000;
    border: 1px solid rgba(229, 229, 229, 1);
    margin-left: 32px;
}
.paging2 div p {
    float: left;
    line-height: 34px;
    font-size: 14px;
    color: #030303;
    margin-left: 60px;
}
.paging2 div a.sw {
    width: 125px;
}
.paging2 div a.pagePrev, .paging2 div a.pageNext {
    width: 80px;
}
.paging2 div a:hover {
    background: rgba(0, 145, 255, 1);
    border: 1px solid rgba(0, 145, 255, 1);
    color: #fff;
}
.paging2 div a.active {
    background: rgba(0, 145, 255, 1);
    border: 1px solid rgba(0, 145, 255, 1);
    color: #fff;
}
.paging {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}
.paging div {
    display: inline-block;
}
.paging a {
    font-size: 18px;
    color: #999;
    padding: 0 7px;
}
.paging a.active {
    color: #0091FF;
}
.Competition_item span {
    float: left;
}
.cultivate_td {
    background-color: #fff;
}
.cultivate_tt ul {
    margin-left: 80px;
}
.cultivate_tt ul li {
    float: left;
    height: 58px;
    margin-right: 40px;
    line-height: 58px;
    font-size: 16px;
    transition: all ease-in-out .3s;
}
.cultivate_tt ul li a {
    display: block;
    color: #999;
    padding: 0 32px;
    transition: all ease-in-out .3s;
}
.cultivate_tt ul li.active {
    background-color: #1E87F0;
}
.cultivate_tt ul li.active a {
    color: #fff;
}
.cultivate_tt ul li:hover {
    background-color: #1E87F0;
}
.cultivate_tt ul li:hover a {
    color: #fff;
}
.plan_list td {
    text-align: left;
    padding: 30px 45px;
}
.plan_list td b {
    font-weight: normal;
    padding-left: 14px;
}
.plan_list td:hover p {
    color: #1E87F0;
}
.plan_list th:first-child {
    text-align: left;
    padding-left: 45px;
}
.copyright2 {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -54px;
    line-height: 54px;
    text-align: center;
    font-size: 12px;
    color: #9BA0A5;
}
.img_one {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.system_one ul li {
    width: 191px;
    height: 259px;
    /*border-image: url('../image/cheek.png') no-repeat;*/
    border-image: url('../image/cheek.png');
    padding-top: 36px;
    float: left;
    padding-left: 93px;
}
.system_img {
    width: 174.91px;
    height: 245px;
}
.system_small_img {
    width: 106px;
    height: 151px;
}
.system_two ul li {
    width: 12%;
    height: 151px;
    border-image: url('../image/cheek.png') no-repeat;
    padding-left: 2.2%;
    float: left;
    padding-top: 46px;
}
.bulid_whole span {
    width: 130px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 40px;
    padding-left: 55px;
    text-align: center;
}
.line {
    color: #33337A;
}
    background: url("../image/lines.png") no-repeat center center;
    background: url("../image/lines.png") no-repeat center center;
.bulid_sec_list ul li {
    width: 121px;
    height: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #002F98;
    line-height: 16px;
    text-align: center;
    padding-bottom: 14px;
}
    background: url("../image/lines.png") no-repeat center center;
.new_left p {
    height: 18px;
    font-size: 18px;
    font-weight: 500;
    color: #0045C7;
    line-height: 18px;
    padding-left: 22px;
    padding-top: 24px;
    border-bottom: 1px solid #0045C7;
    padding-bottom: 11px;
}
.new_left_con ul li {
    padding-top: 24px;
    padding-left: 27px;
    padding-right: 22px;
    border-bottom: 1px solid #F5F5F5;
}
.new_left_con ul li a {
    width: 220px;
    height: 42px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 21px;
    padding-bottom: 13px;
}
.new_right ul li {
    padding-left: 44px;
    padding-right: 46px;
    padding-top: 22px;
    border-bottom: 1px solid #F5F5F5;
}
.new_right2 ul li {
    padding-left: 44px;
    padding-right: 46px;
    padding-top: 22px;
    border-bottom: 1px solid #F5F5F5;
}
.new_right ul li h6 {
    height: 14px;
    /*font-size:14px;*/
    font-weight: 400;
    color: #333333;
    line-height: 14px;
    padding-bottom: 14px;
    font: 16px Arial, Tahoma, 'Microsoft Yahei';
}
.new_right2 ul li h6 {
    height: 14px;
    /*font-size:14px;*/
    font-weight: 400;
    color: #333333;
    line-height: 14px;
    padding-bottom: 14px;
    font: 16px Arial, Tahoma, 'Microsoft Yahei';
}
.new_right ul li p {
    font-size: 12px !important;
    font-weight: 400;
    color: #999999 !important;
    line-height: 20px;
    padding-bottom: 10px;
    background-color: #fff !important;
    font-family: PingFangSC-Regular, PingFang SC !important;
}
.new_right2 ul li p {
    font-size: 12px !important;
    font-weight: 400;
    color: #999999 !important;
    line-height: 20px;
    padding-bottom: 10px;
    background-color: #fff !important;
    font-family: PingFangSC-Regular, PingFang SC !important;
}
.new_right ul li span {
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 30px;
    padding-bottom: 21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.new_right2 ul li span {
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 30px;
    padding-bottom: 21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.index_title a {
    float: right;
    width: 50px;
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 14px;
    padding-right: 21px;
}
.index_list ul {
    padding-left: 25px;
    margin-top: 25px;
}
.index_list ul li {
    padding-left: 7px;
    padding-right: 28px;
    /*padding-bottom: 16px;*/
    /*padding-top: 9px;*/
    height: 34px;
    line-height: 34px;
}
.index_list ul li p {
    height: 14px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 14px;
    float: left;
    width: 86%;

    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.index_list ul li p:hover {
    color: #0045C7;
}
.index_list ul li span {
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 14px;
    float: right;
}
.index_two_up {
    width: 100%;
}
.index_match a {
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 14px;
    float: right;
    padding-right: 55px;
    margin-top: -16px;
}
.index_match_list ul {
    /*list-style: disc !important;*/
    padding-left: 25px;
}
.index_match_list ul li {
    padding-top: 20px;
}
.index_match_list ul li div {
    float: left;
}
.index_match_list ul li p:hover {
    color: #0045C7;
}
.index_match_list ul li div:hover {
    color: #0045C7;
}
.index_train_match ul {
    padding-left: 25px;
}
.index_train_match ul li {
    padding-top: 20px;
}
.index_train_match ul li div {
    float: left;
}
.index_train_match ul li p:hover {
    color: #0045C7;
}
.index_train_match ul li div:hover {
    color: #0045C7;
}
.index_history a {
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 14px;
    float: right;
    padding-right: 25px;
    margin-top: -16px;
}
.index_history_list ul {
    /*list-style: disc !important;*/
    /*padding-left: 25px;*/
}
.index_history_list ul li {
    padding-top: 20px;
}
.index_history_list ul li p {
    width: 75%;
    height: 34px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 14px;
    float: left;
}
.index_history_list ul li p:hover {
    color: #0045C7;
}
.index_history_list ul li span {
    width: 22%;
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 14px;
    float: right;
}
.speacil_phone {
    display: none;
}
.index_train_list ul li {
    background: url(https://www.cabp.org.cn/static/index/img/train.png) no-repeat center center;
    width: 176px;
    height: 44px;
    /*padding-left: 20px;*/
    margin-bottom: 9px;
    text-align: center;
}
.index_train_list ul li span {
    height: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 44px;
    /*padding-left: 25%;*/
}
.index_video_list ul li {
    width: 50%;
    float: left;
    padding-top: 18px;
}
.index_video_img {
    width: 207px;
    height: 116px;
}
.index_video p {
    height: 14px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 14px;
    text-align: center;
    padding-top: 10px;
}
.index_cert_list ul li {
    padding-top: 21px;
    padding-left: 21px;
    padding-right: 21px;
}
.index_cert_list ul li p {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}
.index_cert_list ul li span {
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
}
.index_train_rank a {
    height: 14px;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
    line-height: 14px;
    float: right;
    padding-right: 55px;
    margin-top: -16px;
}
.index_end_left p {
    font-size: 18px;
    font-weight: 500;
    color: #0045C7;
    line-height: 18px;
    padding-left: 28px !important;
    padding: 20px 0;
}
.index_end_right .index_history li {
    font-size: 12px;
}
.two_active {
    color: #FFFFFF;
    border-bottom: 2px solid #0045C7;
    background: #0045C7;
    padding: 10px;
    margin-top: -11px;
}
.index_english ul {
    padding-left: 90px;
    margin-top: -18px;
}
.index_english ul li {
    padding-bottom: 2px;
}
.index_end_right p {
    font-size: 18px;
    font-weight: 500;
    color: #0045C7;
    padding-left: 20px;
    padding-top: 20px;
}
.newd_main h1 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
    text-align: center;
    padding-top: 44px;
}
.newd_content p {
    background-color: #FFFFFF !important;
}
.foot-phone:after {
    content: "";
    clear: both;
    display: table;
}
.page_list .on {
    color: #0b62c5;
    font-weight: 700;
}
.new_left_con span {
    color: #B2B2B2;
    font-size: 12px;
}
.img-div {
    margin: 30px auto;
    text-align: center;
    max-width: 80%;
}
.page-select {
    display: inline-block;
    width: 91px;
    height: 36px;
    margin-bottom: 3px;
}
.imgbox {
    margin-top: 4rem;
    top: 3rem;
    width: 100%
}
.img {
    width: 9rem;
}
.text_img {
    margin-top: 1.5rem;
    text-align: left;
}
.text_img img {
    width: 5rem;
}
.text_img .time {
    width: 12rem;
    text-align: right;
    margin-top: 1rem;

}
   base.html 样式
.ul {
    background: #fff;
    position: absolute;
    min-width: 100px;
}
.ul .li {
    cursor: pointer;
    padding: 0 15px;
    white-space: nowrap;
    color: #000;
    font-size: 14px;
}

/* ============================================
   从 media.css 移动过来的非媒体查询样式
   ============================================ */

.mo_lb {
    display: none;
}

.header_top ul {
    margin-left: 20px;
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
}

.main_top {
    margin-top: 224px !important;
}

.header_top {
    position: relative;
}

.index_list ul li {
    position: relative;
}

/* ============================================
   index_main 主页样式已移至 app/index/view/index/index.html
   不再在此公共样式文件中定义
   ============================================ */


