* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.2;
}
:root {
    --pc-header-height-top: 140px;
    --pc-header-height-bottom: 60px;
    --header-h5-height: 60px;
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
html {
    font-size: 16px;
    color: #333333;
    scroll-behavior: smooth;
    letter-spacing: 1px;
}
.animate-section {
    opacity: 0;
    transition: all 0.8s ease;
}
.button {
    cursor: pointer;
}
button {
    outline: none;
    border: none;
    background: none;
}
input {
    height: 40px;
    background: #FFFFFF;
    border-radius: 10px;
    outline: none;
    border: none;
    padding: 0 10px;
}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 48px;
    height: 48px;
    background: #AC272A;
    border-radius: 4px;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    transform: rotate(-45deg);
    margin-top: 5px;
}
.back-to-top:active {
    transform: scale(0.95);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top[data-show="false"] {
    display: none !important;
}
.breadcrumb {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #eee;
}
.breadcrumb .text {
    width: 1200px;
    margin: 0 auto;
    color: #999999;
}
.breadcrumb .text span {
    color: #333;
}
/* 主体盒子 */
main {
    min-width: 1400px;
}
.side-nav {
    display: none;
}
.header-h5 {
    display: none;
}
.pages-header-top,
.header-h5 {
    background-image: url(../images/bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.pages-header-top .header-main {
    width: 73%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--pc-header-height-top);
    min-width: 1200px;
    padding: 0 20px;
}
.pages-header-top .header-main .header-main-l {
    display: flex;
    align-items: center;
}
.pages-header-top .header-main .header-main-l .logo {
    width: 340px;
}
.pages-header-top .header-main .header-main-l .title {
    line-height: 60px;
    font-weight: bold;
    font-size: 32px;
    color: #AC272A;
    padding-left: 32px;
    margin-left: 40px;
    border-left: 1px solid rgba(172, 39, 42, 0.3);
}
.pages-header-top .header-main .header-main-r {
    display: flex;
    align-items: center;
}
.pages-header-top .header-main .header-main-r .text {
    margin-right: 32px;
    font-size: 18px;
}
.pages-header-top .header-main .header-main-r .input-box {
    width: 260px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
}
.pages-header-top .header-main .header-main-r .input-box input {
    flex: 1;
}
.pages-header-top .header-main .header-main-r .input-box img {
    width: 20px;
    margin-right: 20px;
    cursor: pointer;
}
.pages-header-bottom {
    height: var(--pc-header-height-bottom);
    background: #AC272A;
    /* position: sticky; */
    top: 0;
    z-index: 999;
}
.pages-header-bottom .header-main {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}
.pages-header-bottom .header-main > a {
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
    transition: .3s;
    white-space: nowrap;        /* 防止文本换行 */
    flex: 0 1 auto;             /* 不放大，可缩小，宽度基于内容 */
    min-width: 0;              /* 确保可以缩小 */
    text-align: center;        /* 文本居中对齐 */            /* 确保flex项目可以缩小到比内容更小的宽度 */
}
.pages-header-bottom .header-main > a img {
    width: 100px;
    height: 32px;
}
.pages-header-bottom .header-main > a:hover,
.pages-header-bottom .header-main > a.active {
    background-color: #C92E31;;
}

/* 底部 */
footer {
    background: #302A29;
    height: 521px;
    min-width: 1400px;
}
footer .footer-main {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}
footer .footer-main .logo-box {
    padding: 30px 0;
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-main .logo-box img {
    width: 196px;
}
footer .footer-main .logo-box .text {
    font-weight: bold;
    color: #FFFFFF;
}
footer .footer-main .content-box {
    display: flex;
    height: 100%;
}
footer .footer-main .content-box .item {
    display: flex;
    font-size: 14px;
    flex-wrap: wrap;
    flex-direction: column;
    flex-shrink: 0;
    width: 300px;
}
footer .footer-main .content-box .item .lists {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    row-gap: 30px;
}
footer .footer-main .content-box .item:nth-of-type(1) {
    width: 300px;
}
footer .footer-main .content-box .item .title {
    color: #FFFFFF;
    margin-bottom: 10px;
    margin-top: 40px;
    width: 100%;
}
footer .footer-main .content-box .item .cell {
    width: 130px;
    color: #999999;
    display: block;
}
footer .footer-main .content-box .item:nth-of-type(2) {
    margin-left: auto;
}
footer .footer-main .content-box .item:nth-of-type(2) .cell {
    width: 100%;
}
footer .footer-main .content-box .item:nth-of-type(3) {
    width: auto;
    margin-left: auto;
}
footer .footer-main .content-box .item:nth-of-type(3) img {
    width: 100px;
    height: 100px;
    margin-top: 30px;
}
footer .footer-main .content-box .item:nth-of-type(3) .text {
    margin-top: 20px;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
}
footer .footer-main .bottom-box {
    flex-shrink: 0;
    color: #999999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .footer-main .bottom-box a {
    color: #999999;
}

/* ···首页start··· */
/* .banner */
.index-pages .banner {
    height: 700px;
}
.index-pages .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-pages .banner .swiper-button-prev,
.index-pages .banner .swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.index-pages .banner .swiper-button-prev {
    left: 18.75%;
}
.index-pages .banner .swiper-button-next {
    right: 18.75%;
}
.index-pages .banner .swiper-button-prev::after,
.index-pages .banner .swiper-button-next::after,
.index-pages .banner .swiper-button-prev svg,
.index-pages .banner .swiper-button-next svg {
    content: none;
    display: none;
}
.index-pages .banner .swiper-button-prev::before,
.index-pages .banner .swiper-button-next::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.index-pages .banner .swiper-button-prev::before {
    transform: rotate(-135deg);
    margin-left: 6px;
}
.index-pages .banner .swiper-button-next::before {
    transform: rotate(45deg);
    margin-right: 6px;
}
.index-pages .banner .swiper-pagination {
    bottom: 30px;
}
.index-pages .banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    opacity: 0.3;
    margin: 0 10px;
}
.index-pages .banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}
/* 首页通用标题 */
.index-pages .block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid #DDDDDD;
}
.index-pages .block-title .title-l,
.index-pages .block-title .title-r {
    display: flex;
    align-items: center;
}
.index-pages .block-title .title-l img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.index-pages .block-title .title-l .name {
    font-weight: bold;
    font-size: 30px;
    color: #AC272A;
    margin-left: 10px;
}
.index-pages .block-title .title-r .text {
    margin-left: 10px;
    font-size: 14px;
    color: #999999;
    flex-shrink: 0;
}
/* 首页 新闻快讯 */
.index-pages .block1 .block-main {
    width: 1200px;
    margin: 80px auto 68px;
    display: flex;
    gap: 70px;
}
.index-pages .block1 .block-main-left {
    width: 800px;
    flex-shrink: 0;
}
.index-pages .block1 .text-n {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    height: 50px;
}
.index-pages .block1 .text-d,
.index-pages .block1 .text-t {
    color: #999999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 24px;
}
.index-pages .block1 .text-t {
    font-size: 14px;
}
.index-pages .block1 .content-box {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.index-pages .block1 .hot-item {
    width: 380px;
    position: relative;
    flex-shrink: 0;
}
.index-pages .block1 .hot-item:hover img {
    transform: scale(1.05);
}
.index-pages .img-box {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.index-pages .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.index-pages .block1 .hot-item__img-box {
    width: 100%;
    height: 242px;
}
.index-pages .block1 .hot-item .text-n,
.index-pages .block1 .hot-item .text-d {
    margin-top: 10px;
}
.index-pages .block1 .hot-item .text-t {
    position: absolute;
    bottom: 0;
    left: 0;
}
.index-pages .block1 .lists {
    width: 390px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.index-pages .block1 .block-main-left .item {
    display: flex;
    position: relative;
    padding-bottom: 20px;
    border-bottom: #EEEEEE solid 1px;
}
.index-pages .block1 .block-main-left .item:hover img {
    transform: scale(1.05);
}
.index-pages .block1 .block-main-left .item__img-box {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 20px;
}
.index-pages .block1 .block-main-left .item .text-t {
    position: absolute;
    bottom: 16px;
    left: calc(100px + 20px);
}
.index-pages .block1 .block-main-right {
    flex: 1;
}
.index-pages .block1 .right__lists {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.index-pages .block1 .right__lists .item {
    display: flex;
    align-items: center;
}
.index-pages .block1 .right__lists .text-t {
    width: 56px;
    height: 56px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    margin-right: 10px;
}
.index-pages .block1 .right__lists .text-t p {
    font-weight: bold;
    color: #333;
}
.index-pages .block1 .right__lists .text-t p:nth-child(2) {
    font-size: 14px;
    color: #999999;
    font-weight: 400;
}
.index-pages .block1 .right__lists .text-n {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
/* 首页 七个一行动 */
.index-pages .block2 {
    background-image: url(../images/bg2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.index-pages .block2 .block-main {
    width: 1200px;
    margin: 0 auto;
    padding: 75px 0;
}
.index-pages .block2 .block-title {
    width: 0 auto;
}
.index-pages .block2 .tips {
    margin-top: 40px;
}
.index-pages .block2 .tabs {
    margin-top: 40px;
    display: flex;
    column-gap: 65px;
}
.index-pages .block2 .tabs__label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.index-pages .block2 .tabs__label .cell {
    width: 240px;
    height: 72px;
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 18px;
    padding: 0 30px;
    transition: .2s;
    cursor: pointer;
}
.index-pages .block2 .tabs__label .cell:hover,
.index-pages .block2 .tabs__label .cell.active {
    background: #AC272A;
    box-shadow: 0px 6px 10px 0px #EAC8C8;
    color: #FFFFFF;
    box-shadow: 0px 6px 10px 0px #EAC8C8;
    position: relative;
}
.index-pages .block2 .tabs__label .cell.active::after {
    content: '';
    width: 22px;
    height: 12px;
    background: url(../images/jt.png) no-repeat;
    background-size: cover;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.index-pages .block2 .tabs__label .cell .icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.index-pages .block2 .tabs__label .cell .icon img {
    width: 100%;
}
.index-pages .block2 .tabs__content {
    display: flex;
    gap: 16px;
}
.index-pages .block2 .tabs__content .item {
    width: 288px;
    height: 352px;
    background: #FFFFFF;
    border-radius: 10px;
    position: relative;
}
.index-pages .block2 .tabs__content .item:hover img {
    transform: scale(1.05);
}
.index-pages .block2 .tabs__content .img-box {
    width: 100%;
    height: 240px;
}
.index-pages .block2 .tabs__content .text-n {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 15px;
    padding: 0 20px;
    font-size: 18px;
    line-height: 24px;
}
.index-pages .block2 .tabs__content .text-t {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    color: #999999;
}
/* 首页 创业大赛 */
.index-pages .block3 .block-main {
    width: 1200px;
    padding: 40px 0;
    margin: 0 auto;
}
.index-pages .block3 .lists {
    display: flex;
    margin-top: 40px;
    gap: 26px;
    flex-wrap: wrap;
}
.index-pages .block3 .img-box,
.index-pages .block3 .item {
    border-radius: 10px;
    cursor: pointer;
    flex: 1 1 calc(50% - 13px);
    transition: .2s;
    height: 160px;
}
.index-pages .block3 .item-text {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    padding-left: 35px;
}
.index-pages .block3 .item .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
}
.index-pages .block3 .item:hover {
    box-shadow: 0px 0px 10px 0px #ebdcdc;
}
/* 首页 项目管理 */
.index-pages .block4 {
    background: #F5F5F5;
    padding: 75px 0;
    background-image: url(../images/cxcy.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 1660px 316px;
}
.index-pages .block4 .block-main {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 76px;
}
.index-pages .block4 .block-main > div {
    flex: 1;
}
.index-pages .block4 .left .lists {
    display: flex;
    row-gap: 20px;
    column-gap: 4%;
    margin-top: 40px;
    flex-wrap: wrap;
}
.index-pages .block4 .left .item:nth-child(1) {
    display: flex;
    width: 100%;
}
.index-pages .block4 .left .item:nth-child(2) {
    width: 48%;
}
.index-pages .block4 .left .item:nth-child(3) {
     width: 48%;
}
.index-pages .block4 .left .item {
    padding: 10px;
    background: #FFFFFF;
    border-radius: 10px;
    transition: .3s;
}
.index-pages .block4 .left .item:hover {
    box-shadow: 0px 0px 16px 0px #CCCCCC;
}
.index-pages .block4 .left .item:hover img {
    transform: scale(1.05);
}
.index-pages .block4 .left .item:hover .name {
    color: #AC272A;
}
.index-pages .block4 .left .item .img-box {
    width: 100%;
    height: auto;
    aspect-ratio: 258 / 120;
    flex-shrink: 0;
}
.index-pages .block4 .left .item:nth-child(1) .img-box {
    width: 138px;
    height: 138px;
    margin-right: 20px;
}
.index-pages .block4 .left .item .name {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 18px;
    position: relative;
    transition: .3s;
}
.index-pages .block4 .left .item .name::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #333333;
    position: absolute;
    bottom: 0;
    left: 0;
}
.index-pages .block4 .left .item .text {
    margin-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 24px;
}
.index-pages .block4 .right .item {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DDDDDD;
}
.index-pages .block4 .right .text-n {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-right: 20px;
    font-size: 18px;
    line-height: 24px;
}
.index-pages .block4 .right .text-d {
    color: #999999;
}
/* 首页 创新创业孵化基地 */
.index-pages .block5 {
    padding: 83px 0;
}
.index-pages .block5 .block-main {
    width: 1200px;
    margin: 0 auto;
}
.index-pages .block5 .swiper-box {
    display: flex;
    margin-top: 40px;
    height: 422px;
    cursor: pointer;
    gap: 15px;
}
.index-pages .block5 .swiper-slide:hover .img-box img {
    transform: scale(1.05);
}
.index-pages .block5 .swiper-box .swiper-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.index-pages .block5 .swiper-tabs .img-box {
    width: 187px;
    height: 130px;
    border: solid 1px transparent;
}
.index-pages .block5 .swiper-tabs .img-box.active {
    border: solid 1px rgba(172, 39, 42, 1);
}
.index-pages .block5 .swiper {
    height: 422px;
}
.index-pages .block5 .img-box {
    width: 694px;
    height: 100%;
    flex-shrink: 0;
}
.index-pages .block5 .swiper-slide {
    display: flex;
    gap: 15px;
}
.index-pages .block5 .swiper-slide .content-box {
    background: #AC272A;
    border-radius: 10px;
    padding: 30px;
    color: #fff;
}
.index-pages .block5 .swiper-slide .text-n {
    font-weight: bold;
    font-size: 20px;
    color: #FEFEFE;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-all;
}
.index-pages .block5 .swiper-slide .text-t {
    margin-top: 15px;
    color: #D1787A;
}
.index-pages .block5 .swiper-slide .text-d {
    line-height: 1.5;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    -webkit-line-clamp: 10;
}
/* 首页 师资队伍 */
.index-pages .block6 {
    padding-bottom: 80px;
}
.index-pages .block6 .block-main {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.index-pages .block6 .tabs-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.index-pages .block6 .tabs {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.index-pages .block6 .tabs .cell {
    width: 180px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 19px;
    border: 1px solid #DDDDDD;
    font-weight: bold;
    font-size: 18px;
    transition: .3s;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}
.index-pages .block6 .tabs .cell.active,
.index-pages .block6 .tabs .cell:hover{
    border: 1px solid #AC272A;
    background-color: #AC272A;
    color: #fff;
}
.index-pages .block6 .tabs-content {
    height: 460px;
    width: 1200px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0 75px;
    position: relative;
}
.index-pages .block6 .tabs-content .img-box {
    width: 100%;
    height: 300px;
    margin-top: 40px;
}
.index-pages .block6 .tabs-content .text-n {
    font-weight: bold;
    font-size: 18px;
    margin-top: 18px;
    text-align: center;
}
.index-pages .block6 .tabs-content .text-d {
    color: #999999;
    line-height: 24px;
    margin-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.index-pages .block6__swiper-button-prev,
.index-pages .block6__swiper-button-next {
    width: 50px;
    height: 50px;
    background:  rgba(0,0,0,.3);
    border-radius: 50%;
    position: absolute;
    top: 320px;
    cursor: pointer;
}
.index-pages .block6__swiper-button-prev {
    left: 0;
}
.index-pages .block6__swiper-button-next {
    right: 0;
}
.index-pages .block6__swiper-button-prev::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-135deg);
    margin-left: 5px;
}
.index-pages .block6__swiper-button-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    margin-left: -5px;
}
/* 首页 文件下载 */
.index-pages .block7 {
    padding: 75px 0;
    background: #F5F5F5;
}
.index-pages .block7 .block-main {
    width: 1200px;
    margin: 0 auto;
}
.index-pages .block7 .lists {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}
.index-pages .block7 .lists .cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    border-bottom: 1px solid #DDDDDD;
    width: 48%;
}
.index-pages .block7 .lists .cell .text-n {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
    margin-right: 30px;
}   
.index-pages .block7 .lists .cell .text-t {
    color: #999999;
    flex-shrink: 0;
}
/* ---首页end--- */
/* 分页 */
.pages-list ul,
.pages-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    font-size: 14px;
}
.pages-list {
    padding-bottom: 100px;
}
.pages-list .active {
    color: #AC272A;
}
.pages-list .disabled {
    color: #999999;
}
/* 新闻切换 */
.news-tabs-box {
    width: 1200px;
    margin: 40px auto 0;
}
.news-tabs-box .tabs {
    display: flex;
    align-items: center;
}
.news-tabs-box .tabs .cell {
    height: 70px;
    cursor: pointer;
    transition: .3s;
    font-weight: bold;
    font-size: 30px;
    color: #333333;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: solid 3px #DDDDDD;
    position: relative;
}
.news-tabs-box .tabs .cell::after {
    content: '';
    position: absolute;
    width: 0;
    bottom: -3px;
    height: 3px;
    background-color: #AC272A;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
}
.news-tabs-box .tabs .cell:hover::after,
.news-tabs-box .tabs .cell.active::after {
    width: 100%;
}

.news-tabs-box .tabs .cell.active,
.news-tabs-box .tabs .cell:hover {
    color: #AC272A;
    font-weight: bold;
}
.news-tabs-box .lists {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.news-tabs-box .lists .item {
    width: 373px;
    height: 563px;
    background: #F5F5F5;
    border-radius: 10px;
    padding: 0 30px;
    position: relative;
    /* cursor: pointer; */
    transition: .3s;
}
.news-tabs-box .lists .item .text-t {
    line-height: 70px;
    font-size: 14px;
    color: #999999;
    border-bottom: solid #DDDDDD 1px;
}
.news-tabs-box .lists .item .text-n {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    line-height: 26px;
    margin-top: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}
.news-tabs-box .lists .img-box {
    width: 100%;
    height: 210px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}
.news-tabs-box .lists .text-d {
    line-height: 1.5;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}
.news-tabs-box .lists .button-box {
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    border-top: #DDDDDD solid 1px;
    width: calc(100% - 60px);
}
.news-tabs-box .lists .button-box .icon {
    width: 22px;
    height: 12px;
    background-image: url(../images/xjt.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-left: 20px;
}
.news-tabs-box .lists .item:hover .button-box .icon {
    background-image: url(../images/xjt-2.png);
}
.news-tabs-box .lists .item:hover {
    background-color: #AC272A;
}
.news-tabs-box .lists .item:hover * {
    color: #fff;
    border-color: #fff;
}

.banner {
    background: url(../images/banner2.jpg) no-repeat center center;
}
.banner-main {
    height: 400px;
    min-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-main .text {
    font-weight: bold;
    font-size: 36px;
    color: #FFFFFF;
}

/* ---新闻start--- */
.news-pages .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-pages .news-tabs-box .tabs .cell:nth-of-type(1)::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/xz2-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: .3s;
    margin-right: 10px;
}
.news-pages .news-tabs-box .tabs .cell.active:nth-of-type(1)::before,
.news-pages .news-tabs-box .tabs .cell:hover:nth-of-type(1)::before {
    background-image: url(../images/xz2.png);
}
.news-pages .news-tabs-box .tabs .cell:nth-of-type(2)::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/xz3-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: .3s;
    margin-right: 10px;
}
.news-pages .news-tabs-box .tabs .cell.active:nth-of-type(2)::before,
.news-pages .news-tabs-box .tabs .cell:hover:nth-of-type(2)::before {
    background-image: url(../images/xz3-3.png);
}
.news-pages .tabs-content .lists2 {
    column-gap: 40px;
    row-gap: 30px;
}
.news-pages .tabs-content .lists2 .cell {
    width: 580px;
    height: 148px;
    background: #F5F5F5;
    border-radius: 10px;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    position: relative;
    transition: .3s;
}
.news-pages .tabs-content .lists2 .cell .text-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.news-pages .tabs-content .lists2 .cell .text-t {
    width: 56px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 20px;
}
.news-pages .tabs-content .lists2 .cell .text-t p {
    font-size: 14px;
    color: #999999;
    font-weight: 400;
    margin-top: 8px;
}
.news-pages .tabs-content .lists2 .cell .text-n {
    font-weight: bold;
    font-size: 18px;
}
.news-pages .tabs-content .lists2 .cell .tips {
    position: absolute;
    bottom: 0px;
    line-height: 53px;
    width: calc(100% - 40px);
    font-size: 14px;
    border-top: 1px solid #DDDDDD;
    color: #999999;
    transition: .3s;
}
.news-pages .tabs-content .lists2 .cell:hover {
    background-color: #fff;
    box-shadow: 0px 0px 16px 0px #CCCCCC;
}
.news-pages .tabs-content .lists2 .cell:hover .tips {
    color: #AC272A;
}
/* ---新闻end--- */

/* ---新闻详情start--- */
.news-details-pages .main-box {
    max-width: 1200px;
    margin: 60px auto 80px;
    display: flex;
    gap: 60px;
}
.news-details-pages .main-box .left {
    flex: 1;
    width: 0;
    overflow: hidden;
}
.news-details-pages .main-box .left .title{
    font-size: 30px;
    color: #333333;
    line-height: 1.3;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}
.news-details-pages .main-box .info {
    display: flex;
    gap: 60px;
    margin-top: 25px;
    color: #999999;
}
.news-details-pages .main-box .content {
    padding: 40px 0 100px;
    border-bottom: #eee solid 1px;
    border-top: #eee solid 1px;
    margin-top: 20px;
}
.news-details-pages .main-box .content p {
    line-height: 30px;
}
.news-details-pages .main-box .content img {
    max-width: 100% !important;
    margin: 20px 0;
}
.news-details-pages .main-box .pages-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}
.news-details-pages .main-box .right {
    width: 270px;
    flex-shrink: 0;
}
.news-details-pages .main-box .right .title {
    width: 100%;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 48px;
    background: #EEEEEE;
}
.news-details-pages .main-box .right .title::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url('../images/xtb.png') no-repeat center center;
    margin:0 10px;
}
.news-details-pages .main-box .right .item {
    display: flex;
    height: 95px;
    width: 100%;
    border-bottom: 1px #EEEEEE solid;
    justify-content: center;
    flex-direction: column;
}
.news-details-pages .main-box .right .text-n {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}
.news-details-pages .main-box .right .text-t {
    margin-top: 10px;
    font-size: 14px;
    color: #999999;
}
.news-details-pages .main-box .right .button-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: #EEEEEE;
}
/* ---新闻详情end--- */
/* ---七个一start--- */
.seven-ones-pages .news-tabs-box .tabs .cell::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: url(../images/z30.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: .3s;
    margin-right: 10px;
}
.seven-ones-pages .news-tabs-box .tabs .cell:hover::before,
.seven-ones-pages .news-tabs-box .tabs .cell.active::before{
    background: url(../images/z30-2.png);
}
/* ---七个一end--- */
/* ---创业大赛start--- */
.tournament-pages .main-box .lists {
    width: 1200px;
    margin: 60px auto 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.tournament-pages .main-box .item {
    display: flex;
    gap: 20px;
    position: relative;
}
.tournament-pages .main-box .left {
    flex: 1;
}
.tournament-pages .main-box .left .text-n {
    font-weight: bold;
    font-size: 28px;
    margin-top: 40px;
}
.tournament-pages .main-box .left .text-d {
    font-size: 14px;
    color: #999999;
    margin-top: 20px;
    letter-spacing: 0px;
}
.tournament-pages .main-box .left .date-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    font-weight: bold;
    font-size: 18px;
}
.tournament-pages .main-box .left .date-box .tag {
    position: absolute;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    top: 0;
    left: 0;
    background: #EEEEEE;
    border-radius: 10px 0px 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
}
.tournament-pages .main-box .left .date-box .tag.new {
    background-color: #C92E31;
    color: #fff;
}
.tournament-pages .main-box .left .date__item {
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.tournament-pages .main-box .right {
    width: 693px;
    height: 505px;
    background: #AC272A;
    border-radius: 30px 0px 0px 0px;
    flex-shrink: 0;
    text-align: right;
    position: relative;
}
.tournament-pages .main-box .right .text-n {
    margin-top: 75px;
    margin-right: 38px;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
}
.tournament-pages .main-box .right .text-d {
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 60px;
    margin-right: 38px;
    font-weight: 400;
}
.tournament-pages .main-box .right .btn {
    position: absolute;
    right: 40px;
    bottom: 65px;
    font-size: 14px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.tournament-pages .main-box .right .btn::after {
    content: '';
    height: 12px;
    width: 20px;
    background: url(../images/xjt-2.png) no-repeat center center;
    background-size: cover;
    margin-left: 21px;
}
.tournament-pages .main-box .right .text-bg {
    position: absolute;
    right: 38px;
    top: 35px;
    font-weight: bold;
    font-size: 72px;
    color: #000000;
    letter-spacing: 0;
    opacity: 0.1;
    line-height: 1;
    z-index: 0;
}
.tournament-pages .main-box .img-box {
    position: absolute;
    bottom: 65px;
    width: 587px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
}
/* ---创业大赛end--- */
/* ---项目管理start--- */
.project-pages .news-tabs-box .tabs {
    gap: 40px;
}
.project-pages .news-tabs-box .tabs .cell {
    position: relative;
    height: 120px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.project-pages .news-tabs-box .tabs .cell .mask-bg,
.project-pages .news-tabs-box .tabs .cell .mask-bg-red {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
    /* border-radius: 10px; */
    opacity: 0.6;
    transition: .3s;
}
.project-pages .news-tabs-box .tabs .cell .mask-bg-red {
    width: 0;
    left: 0;
    opacity: 0.9;
    background: #AC272A;
    transition: .3s;
}
.project-pages .news-tabs-box .tabs .cell .img-bg {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.project-pages .news-tabs-box .tabs .cell::after {
    width: 50px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
    background-color: #fff;
}
.project-pages .news-tabs-box .tabs .cell .text {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}
.project-pages .news-tabs-box .tabs .cell:hover .mask-bg,
.project-pages .news-tabs-box .tabs .cell.active .mask-bg {
    width: 0;
}
.project-pages .news-tabs-box .tabs .cell:hover .mask-bg-red,
.project-pages .news-tabs-box .tabs .cell.active .mask-bg-red{
    width: 100%;
}
.project-pages .news-tabs-box .guide-box {
    width: 100%;
    height: 274px;
    position: relative;
    background: #F5F5F5;
    border-radius: 10px;
    margin-top: 60px;
    padding: 40px;
}
.project-pages .guide-box .text-n {
    font-weight: bold;
    font-size: 30px;
    color: #333333;
}
.project-pages .guide-box .text-d {
    text-align: right;
    font-size: 14px;
    position: absolute;
    bottom: 40px;
    right: 0px;
    padding: 0 40px;
    line-height: 24px;
}
.project-pages .guide-box .text-e {
    margin-top: 20px;
    color: #999999;
}
.project-pages .guide-box .text-bg {
    position: absolute;
    top: 40px;
    right: 40px;
    font-weight: bold;
    font-size: 30px;
    color: #333333;
    opacity: 0.2;
}
.project-pages .guide-box .icon-bg {
    position: absolute;
    bottom: 40px;
    left: 40px;
}
/* ---项目管理end--- */
/* ---创业政策start--- */
.policy-pages .lists-box {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 20px auto 0;
    width: 1200px;
}
.policy-pages .lists-block {
    display: flex;
    align-items: flex-start;
    gap: 85px;
}
.policy-pages .lists-block .left {
    display: flex;
    align-items: flex-end;
    margin-top: 40px;
    flex-shrink: 0;
}
.policy-pages .lists-block .big-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: bold;
    font-size: 18px;
}
.policy-pages .lists-block .big-box::after {
    content: '';
    position: absolute;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    background-color: #EEEEEE;
    z-index: -1;
}
.policy-pages .lists-block .small-box {
    width: 48px;
    height: 48px;
    background: #AC272A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    margin-left: -25px;
    position: relative;
}
.policy-pages .lists-block .right {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.policy-pages .lists-block .right .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DDDDDD;
    height: 100px;
}
.policy-pages .lists-block .right .item .text-n {
    flex: 1;
    width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    color: #333333;
}
.policy-pages .lists-block .right .item .text-t {
    color: #999999;
    flex-shrink: 0;
    margin-left: 20px;
}
.policy-pages .pages-list {
    margin-top: 60px;
}
/* ---创业政策end--- */
/* ---孵化基地start--- */
.base-pages .base-sign {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    gap: 40px;
}
.base-pages .base-sign .item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1 1 auto;
    width: 0;
}
.base-pages .base-sign .item .big {
    height: 268px;
    border-radius: 10px;
    overflow: hidden;
}
.base-pages .base-sign .item > div {
    border-radius: 10px;
    overflow: hidden;
}
.base-pages .base-sign .item > div:hover img {
    transform: scale(1.1);
}
.base-pages .base-sign .item .small {
    height: 160px;
}
.base-pages .base-sign .item .text-n {
    font-weight: bold;
    font-size: 24px;
    position: relative;
    padding-bottom: 20px;
}
.base-pages .base-sign .item .text-d {
    font-weight: 400;
    margin-top: 20px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.base-pages .base-sign .item .text-n::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110px;
    height: 2px;
    background-color: #AC272A;
}
.base-pages .base-sign .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.base-pages .news-block {
    background-color: #F5F5F5;
    padding-top: 40px;
}
.base-pages .news-block .news-tabs-box,
.base-pages .news-block .news-tabs-box .lists {
    margin-top: 0;
}
.base-pages .news-block .news-tabs-box .lists .item {
    background-color: #FFFFFF;
}
.base-pages .news-tabs-box .lists .item:hover {
    background-color: #AC272A;
}
/* ---孵化基地end--- */
/* ---师资start--- */
.faculty-pages .news-tabs-box .tabs .cell:nth-of-type(1)::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/xw.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: .3s;
    margin-right: 10px;
}
.faculty-pages .news-tabs-box .tabs .cell.active:nth-of-type(1)::before,
.faculty-pages .news-tabs-box .tabs .cell:hover:nth-of-type(1)::before {
    background-image: url(../images/xw-2.png);
}
.faculty-pages .news-tabs-box .tabs .cell:nth-of-type(2)::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/xn.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: .3s;
    margin-right: 10px;
}
.faculty-pages .news-tabs-box .tabs .cell.active:nth-of-type(2)::before,
.faculty-pages .news-tabs-box .tabs .cell:hover:nth-of-type(2)::before {
    background-image: url(../images/xn-2.png);
}
.faculty-pages .lists {
    row-gap: 80px;
    column-gap: 40px;
    margin-top: 100px;
}
.faculty-pages .lists .item {
    width: 580px;
    height: 370px;
    display: flex;
    gap: 30px;
    padding: 0 40px;
}
.faculty-pages .lists .item .img-box {
    width: 250px;
    height: 350px;
    border-radius: 10px;
    flex-shrink: 0;
    margin-top: -40px;
}
.faculty-pages .lists .item .right {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.faculty-pages .lists .item .info {
    display: flex;
    align-items: center;
    margin-top: 40px;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: solid 1px #CCCCCC;
}
.faculty-pages .lists .item .text-d {
    display: block;
    flex: 1;
    letter-spacing: 0.9px;
    margin-bottom: 20px;
    overflow-y: auto;
}
.faculty-pages .lists .item .text-d::-webkit-scrollbar {
    width: 4px;
}
.faculty-pages .lists .item .text-d::-webkit-scrollbar-track {
  background: #f1f1f1; /* 轨道的背景颜色 */
  border-radius: 10px; /* 轨道的圆角 */
}

/* 3. 滚动条滑块 */
.faculty-pages .lists .item .text-d::-webkit-scrollbar-thumb {
  background: #888; /* 滑块的背景颜色 */
  border-radius: 10px; /* 滑块的圆角 */
}
.custom-scrollbar::-webkit-scrollbar-button {
  display: none; 
}
.faculty-pages .lists .item .name {
    font-weight: bold;
    font-size: 18px;
    color: #333333;
}
.faculty-pages .lists .item * {
    color: #666666;
}
.faculty-pages .lists .item:hover {
    background-color: #F5F5F5;
}
.faculty-pages .lists .item:hover * {
    color: #666;
}
.faculty-pages .lists .item:hover .name {
    color: #333333;
}
/* ---师资end--- */
/* ---文件下载start--- */
.file-download-pages .lists {
    display: flex;
    flex-direction: column;
    width: 1200px;
    margin: 0 auto 60px;
}
.file-download-pages .lists .item {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px #DDDDDD dashed;
}
.file-download-pages .lists .item:hover .text-n,
.file-download-pages .lists .item:hover .right{
    color: #AC272A;
}
.file-download-pages .lists .item:hover .right::before {
    background-image: url(../images/xz-2.png);
}
.file-download-pages .lists .text-n {
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 1.5;
}
.file-download-pages .lists .text-t {
    color: #999999;
    margin-top: 20px;
}
.file-download-pages .lists .right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
}
.file-download-pages .lists .right::before {
    content: '';
    height: 16px;
    width: 16px;
    background-image: url(../images/xz.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-right: 10px
}
/* ---文件下载end--- */
/* ---阳光服务start--- */
.sevice-pages .news-tabs-box .tabs .cell:nth-of-type(1)::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/xz11.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: .3s;
    margin-right: 10px;
}
.sevice-pages .news-tabs-box .tabs .cell.active:nth-of-type(1)::before,
.sevice-pages .news-tabs-box .tabs .cell:hover:nth-of-type(1)::before {
    background-image: url(../images/xz11-2.png);
}
.sevice-pages .news-tabs-box .tabs .cell:nth-of-type(2)::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/xz12.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: .3s;
    margin-right: 10px;
}
.sevice-pages .news-tabs-box .tabs .cell.active:nth-of-type(2)::before,
.sevice-pages .news-tabs-box .tabs .cell:hover:nth-of-type(2)::before {
    background-image: url(../images/xz12-2.png);
}
.sevice-pages .tips {
    text-align: center;
    margin-top: 60px;
}
.sevice-pages .main-box {
    width: 1200px;
    margin: 60px auto 100px;
}
.sevice-pages .form-group {
    margin-bottom: 30px;
}
.sevice-pages .radio-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
.sevice-pages .radio-group {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}
.sevice-pages .radio-item {
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 10px;*/
    /*cursor: pointer;*/
}
.sevice-pages .radio-item .layui-form-radio {
    margin: 0;
    padding: 0;
}
.sevice-pages .input-row input {
    flex: 1;
    padding: 8px;
    border-radius: 4px;
    background-color: #F5F5F5;
}
/* .sevice-pages .radio-group input[type="radio"] {
    height: auto;
    display: none;
}
.sevice-pages .radio-item::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 50%;
}
.sevice-pages .radio-item:has(input[type="radio"]:checked)::before {
    background: #4CAF50;
    border-color: #4CAF50;
} */
.sevice-pages .input-row {
    display: flex;
    gap: 30px;
}
.sevice-pages .textarea-wrapper {
    position: relative;
}
.sevice-pages textarea {
    width: 100%;
    padding: 8px 8px 20px;
    border-radius: 4px;
    resize: none;
    border: none;
    outline: none;
    background-color: #F5F5F5;
}
.sevice-pages .char-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #999;
}
.sevice-pages button {
    width: 300px;
    height: 48px;
    background: #AC272A;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 0;
    color: #FFFFFF;
    cursor: pointer;
}
.sevice-pages button:hover {
    background-color: #AC272A;
}
.sevice-pages input::placeholder,
.sevice-pages textarea::placeholder {
    color: #999999;
}
.sevice-pages .table-box {
    margin: 60px auto;
    width: 1200px;
}
.sevice-pages .table-box .row {
    /* border-bottom: #AC272A 1px solid; */
}
.sevice-pages .table-box .table-header {
    background-color: #AC272A;
    font-weight: bold;
    color: #fff;
}
.sevice-pages .table-box .cell-wrapper,
.sevice-pages .table-box .reply-box {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 40px;
}
.sevice-pages .table-box .cell-wrapper {
    border-bottom: 1px solid #ddd;
}
.sevice-pages .table-box .reply-box {
    display: none;
    background-color: #F5F5F5;
}
.sevice-pages .table-box .reply-box.show {
    display: flex;
}
.sevice-pages .table-box .cell-wrapper .cell:nth-child(1) {
    width: 200px;
}
.sevice-pages .table-box .cell-wrapper .cell:nth-child(2) {
    width: 150px;
}
.sevice-pages .table-box .cell-wrapper .cell:nth-child(3) {
    width: 150px;
}
.sevice-pages .table-box .cell-wrapper .cell:nth-child(4) {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 0;
}
.sevice-pages .table-box .cell-wrapper .cell:nth-child(5) {
    width: 200px;
    cursor: pointer;
    color: #AC272A;
}
.sevice-pages .table-box .table-header .cell-wrapper .cell:nth-child(5) {
    color: #fff;
}

/* 特殊改动兼容其它外部样式 */
.header-main input {
    padding: 0 10px;
}
.sevice-pages .layui-form-radioed > i {
    color: #AC272A;
}
.sevice-pages .radio-item .layui-form-radio:hover .layui-icon {
    color: #AC272A;
}
/* ---阳光服务end--- */


