/* 公共宽 */
.g-width {
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* 标题公共样式 */
.home-title {
    height: 54px;
    width: fit-content;
}

.home-title .home-title-text {
    font-size: 0;
}

.home-title .home-title-text .black {
    color: #333333;
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
}

.home-title .home-title-text .red {
    color: #D82626;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
}

.home-title .home-title-text .gray {
    color: #999999;
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
    margin-left: 4px;
}

.home-title .home-title-icon {
    width: 255px;
    height: 10px;
    background: url("../../images/new_home/title-icon.png") no-repeat center center / 100% 100%;
    margin-top: 5px;
}

.home-title.white .home-title-text .black,
.home-title.white .home-title-text .red,
.home-title.white .home-title-text .gray {
    color: white;
}

.home-title.white .home-title-icon {
    background: url("../../images/new_home/title-icon-white.png") no-repeat center center / 100% 100%;
}

/* 标题跟多按钮公共样式 */
.more-button {
    width: 72px;
    height: 30px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    border: 1px solid #CCCCCC;
    text-decoration: none;
}

.more-button .more-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    background: url("../../images/new_home/more-icon.png") no-repeat center center / 100% 100%;
}

.more-button .more-text {
    font-size: 13px;
    line-height: 1;
    color: #333333;
}

.more-button.white {
    border-color: white;
}

.more-button.white .more-text {
    color: white;
}

.more-button.white .more-icon {
    background: url("../../images/new_home/more-icon-white.png") no-repeat center center / 100% 100%;
}


/* header */
.home-header {
    width: 100%;
    position: relative;
    z-index: 100;
}

.home-header-top {
    height: 100px;
    background: url("../../images/new_home/header-bg.png") no-repeat center center / 100% 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-header-top .g-width {
    height: 100px;
    display: flex;
    align-items: center;
}

.home-header-top .logo {
    width: 274px;
    height: 56px;
    background: url("../../images/new_home/logo.png") no-repeat center center / 100% 100%;
}

.home-header-top .space {
    width: 1px;
    height: 28px;
    background: #ffffff;
    margin: 0 18px;
}

.home-header-top .logo-title {
    font-size: 24px;
    line-height: 34px;
    color: #ffffff;
    font-weight: 600;
}

/* 右侧搜索 + 登录区 */
.home-header-top .right-option {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.home-header-top .right-option .header-search {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.home-header-top .right-option .header-search input {
    display: none;
    margin-right: 6px;
    width: 186px;
    height: 30px;
    border: 1px solid #f8f8f8;
    border-radius: 4px;
    background: none;
    padding-left: 9px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    outline: none;
}

.home-header-top .right-option .header-search input::placeholder {
    color: #ffffff;
}

.home-header-top .right-option .header-search .search-btn {
    width: 20px;
    height: 20px;
    background: url("../../images/new_home/search-icon.png") no-repeat center center / 100% 100%;
    cursor: pointer;
}

.home-header-top .right-option .header-user .login-area {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-header-top .right-option .header-user .login-area .divider {
    width: 2px;
    height: 20px;
    background: #ffffff;
    margin: 0 8px;
}

.home-header-top .right-option .header-user .login-area, .home-header-top .right-option .header-user .login-area a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
}

.home-header-nav {
    height: 60px;
    background: #A8161C;
}

.home-header-nav .g-width {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 70px;
}

.home-header-nav .g-width .nav-item {
    height: 60px;
    position: relative;
    user-select: none;
}

.home-header-nav .g-width .nav-item .nav-item-label {
    height: 60px;
    line-height: 60px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.home-header-nav .g-width .nav-item.active .nav-item-label::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #F5A300;
    bottom: 0;
    left: 0;
    right: 0;
}

.home-header-nav .g-width .nav-item .nav-sub {
    display: none;
    font-size: 24px;
    line-height: 34px;
    color: #ffffff;
    font-weight: 600;
    position: absolute;
    top: 60px;
    background: #ffffff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 0;
}

.home-header-nav .g-width .nav-item .nav-sub a {
    white-space: nowrap;
    color: #333333;
    text-align: center;
    text-underline: none;
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    padding: 4px 20px;
    text-decoration: none;
    max-width: 100%;
    width: fit-content;
    transition: 200ms ease-in-out;
}

.home-header-nav .g-width .nav-item .nav-sub a:hover {
    color: #D82626;
}

/* footer */
.home-footer {
    clear: both;
    width: 100%;
    height: 240px;
    background: url("../../images/new_home/footer-bg.png") no-repeat center center / 100% 100%;
}

.home-footer .g-width {
    display: flex;
    flex-direction: row;
    padding-top: 40px;
    font-size: 14px;
}

.home-footer .left-info {
    color: #ffffff;
}

.home-footer .left-info-title {
    line-height: 27px;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
}

.home-footer .left-info-item {
    line-height: 26px;
}

.home-footer .left-info-menus {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    margin-bottom: 16px;
}

.home-footer .left-info-menus .divider {
    width: 1px;
    height: 14px;
    background: #ffffff;
}

.home-footer .left-info-menus .footer-nav-item {
    position: relative;
}

.home-footer .left-info-menus .footer-nav-item .footer-nav-item-label {
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    user-select: none;
}

.home-footer .left-info-menus .footer-nav-item .footer-nav-sub {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 0;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}

.home-footer .left-info-menus .footer-nav-item .footer-nav-sub a {
    white-space: nowrap;
    color: #333333;
    text-align: center;
    text-underline: none;
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    padding: 4px 20px;
    text-decoration: none;
    max-width: 100%;
    width: fit-content;
    transition: 200ms ease-in-out;
}

.home-footer .left-info-menus .footer-nav-item .footer-nav-sub a:hover {
    color: #D82626;
}


.home-footer .right-code {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.home-footer .right-code .code-img {
    width: 125px;
    height: 125px;
    background: url("../../images/erweima_03.png") no-repeat center center / 100% 100%;
}

.home-footer .right-code .code-text {
    font-size: 14px;
    line-height: 26px;
    margin-top: 8px;
    text-align: center;
    color: #ffffff;
}

/* 左侧导航 */
.left_actinfo_titsl_nav li.xyhd {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    height: fit-content !important;
    line-height: 50px !important;
}

.left_actinfo_titsl_nav li.xyhd ul.sub li, .left_actinfo_titsl_nav li.xyhd ul.sub li span {
    height: 30px !important;
    line-height: 30px !important;
    padding-left: 30px;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-weight: normal;
    color: #333333;
    background: transparent;
}

.left_actinfo_titsl_nav li.xyhd ul.sub li.active span {
    color: #D82626;
    font-weight: bold;
}

.left_actinfo_titsl_nav li.xyhd ul.sub li:hover span {
    color: #D82626;
    font-weight: bold;
}

.left_actinfo_titsl_nav li.sub span {
    height: 100% !important;
}

/* 列表区域样式 */
.conactive_left {
    float: left;
}

.conactive_right {
    width: 923px;
    float: right;
    margin-top: 50px;
}

.conactive_right_con {
    width: 100%;
    border: none;
    padding: 0;
    background: transparent;
    margin-top: 10px;
}

.conactive_right_con .detail-container {
    background: #ffffff;
}

.conactive_right_con .conactive_right_con_list {
    width: 100%;
    margin: 0;
    padding: 0;
}

.conactive_right_con .conactive_right_con_list li {
    padding: 30px;
    background: #ffffff;
    border: none;
    margin-bottom: 20px;
    transition: 200ms;
    height: fit-content;
}

.conactive_right_con .conactive_right_con_list li .new_sd_con {
    margin-top: 0;
}

.conactive_right_con .conactive_right_con_list h3, .conactive_right_con .conactive_right_con_list h3 span, .new_sd_con_title span {
    transition: 200ms;
}

.conactive_right_con .conactive_right_con_list li:hover {
    box-shadow: 0px 9px 10px 0px rgba(0, 0, 0, 0.06);
}

.conactive_right_con .conactive_right_con_list li:hover h3,
.conactive_right_con .conactive_right_con_list li:hover h3 span,
.conactive_right_con li:hover .new_sd_con_title span {
    color: #D82626;
}

.page {
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page .M-box3 span, .page .M-box3 a {
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #ffffff;
    color: #999999;
    padding: 0;
}

.page .page_numall {
    color: #333333;
}

.page .page_numall,
.page .M-box3 .prev,
.page .M-box3 .next,
.page .M-box3 .jump-btn {
    width: fit-content;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #333333;
    transition: 200ms;
}

.page .M-box3 .jump-btn:hover {
    color: #D82626;
}

.page .M-box3 input {
    width: 40px;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: #D82626;
    background: #ffffff;
    color: #333333;
}

.page .M-box3 span.active {
    background: #D82626;
    color: #ffffff;
}

.conactive_right_con .new_video_list {
}

.conactive_right_con .new_video_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.conactive_right_con .new_video_list ul li {
    margin: 0;
    background: #ffffff;
    padding: 10px;
}

.conactive_right_con .new_video_list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conactive_right_con .new_video_list ul li .bot_titles {
    width: calc(100% - 20px);
    bottom: 10px;
}

/* 校友寄语 */
.dh_top {
    background: #ffffff;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: none;
}

.dh_top span {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-left: 30px;
}

.dh_top span a {
    color: #333333;
    transition: 200ms;
}

.dh_top span a:hover {
    color: #D82626;
}

/* 顶部面包屑 */
.conactive_right_top {
    width: 923px;
    height: 50px;
    background: #ffffff;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: none;
}

.conactive_right_top span {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-left: 30px;
}

.conactive_right_top span a {
    color: #333333;
}

.conactive_right_top span a:hover {
    color: #D82626;
}

.dh_con {
    border: none;
    background: transparent;
}

.dh_con .lm_list {
    margin: 0;
}

.dh_con .lm_list li {
    height: fit-content;
    width: 100%;
    padding: 30px;
    background: #ffffff;
    border: none;
    margin-bottom: 20px;
}

.dh_con .lm_list li .li_lm {
    margin: 0;
}

.dh_con .lm_list li .chalan {
    right: 30px;
}


.dh_con .lm_list li .lm_con_title span {
    transition: 200ms ease-in-out;
}


.dh_con .lm_list li:hover .lm_con_title span {
    color: #D82626;
}

/* 左边页面导航 */
.conactive_left {
    display: flex;
    flex-direction: column;
    width: 248px;
    background: #8a0200;
    margin-top: 50px;
}

.left_actinfo_titsl {
    width: 100%;
    height: 80px;
    background: #d82626 url("../../images/left_actinfo_titsl_bg.png") no-repeat center center / 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.left_actinfo_titsl_nav {
    width: 248px;
    background: #ffffff;
    float: left;
    padding: 24px 16px;
    box-sizing: border-box;
    margin: 0;
}

.left_actinfo_titsl_nav li {
    width: 100%;
    height: 50px !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #333333;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 0;
    border-bottom: none;
}

.left_actinfo_titsl_nav li.active {
    background: rgba(216, 38, 38, 0.1);
    font-weight: 600;
}

.left_actinfo_titsl_nav li:hover {
    background: rgba(216, 38, 38, 0.1);
    font-weight: 600;
}

.left_actinfo_titsl_nav li:hover span {
    color: #D82626;
    font-weight: 600;
}

.left_actinfo_titsl_nav li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #333333;
    border-bottom: none;
}

.left_actinfo_titsl_nav li.active span {
    font-size: 16px;
    color: #D82626;
    font-weight: 600;
}

.new_cons_n_dh_nav_but {
    background: #ffffff;
    padding-bottom: 36px;
    padding-top: 20px;
    box-sizing: content-box;
    margin-top: 0;
}

.conactive_right_con_wbsel {
    width: 100%;
    height: fit-content;
    margin: 20px 0;
    padding: 20px 10px;
    box-sizing: border-box;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
