* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul {
    list-style: none;
}
.header-container {
    background-color: #9b0000;
}

.header {
    width: 1440px;
    margin: 0 auto;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

.logo {
    height: 80px;
}

.logo img {
    height: 100%;
    width: auto;
}

.search-container {
    flex: 0 1 400px;
}

.search-box {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    font-size: 16px;
    background: inherit;
    color: rgba(255, 255, 255, 0.6);
}
.search-box::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.search-box:focus {
    outline: none;
    color: rgba(255, 255, 255, 0.6);
}
.nav-container {
    width: 1200px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.nav-item {
    position: relative;
    z-index: 999;
}

.nav-item a {
    text-decoration: none;
    color: #9b0000;
    padding: 0 10px;
    display: block;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    font-weight: bold;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #9b0000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    min-width: 200px;
    list-style: none;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
}

.submenu li {
    position: relative;
}

.submenu a {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    display: block;
    padding: 0 20px;
}

.sub-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #9b0000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    min-width: 200px;
    list-style: none;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
}

.submenu a:hover {
    background-color: #4a0101;
}

.nav-item:hover > .submenu {
    display: block;
    transform: translateX(0);
    opacity: 1;
}

.submenu li:hover > .sub-submenu {
    display: block;
    transform: translateX(0);
    opacity: 1;
}

/* News Section Styles */
.news-section {
    width: 100%;
    background: url(../image/news-bg.jpg) no-repeat;
    background-size: cover;
    padding: 60px 0;
}
.news-container {
    width: 1440px;
    height: 750px;
    margin: 0 auto;
}

.news-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    row-gap: 30px;
}

.news-item {
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border-radius: 5px;
}

.news-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.news-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgb(155 0 0 / 70%);
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1;
}

.news-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.news-more {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 1440px;
    height: 600px;
    overflow: hidden;
    margin: 0 auto;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 5s linear infinite;
}

/*@keyframes zoomEffect {*/
/*    0% {*/
/*        transform: scale(1);*/
/*    }*/
/*    100% {*/
/*        transform: scale(1.2);*/
/*    }*/
/*}*/

.slide-title {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
}
.slide-title a {
    color: white;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: inherit;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}
.slider-button img {
    width: 40px;
}
.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}
.notice-dual-news {
    background: url('../image/notice-bg.jpg') no-repeat;
    background-size: cover;

}
/* 双列新闻样式 */
.dual-news-section {
    width: 1440px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}
.news-left, .news-right {
    flex: 1;
    background: #9b0000;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    width: 700px;
}

.news-left h2, .news-right h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e0e0e0;
}

.news-list {
    list-style: none;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.news-list li:last-child {
    border-bottom: none;
}

.list-news-title {
    flex: 1;
    color: #ffffff;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 20px;
    text-align: left;
}

.list-news-date {
    color: #ffffff;
    font-size: 14px;
    white-space: nowrap;
    text-align: right;
    min-width: 80px;
}

/* 跑马灯样式 */
.marquee-section {
    width: 1440px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 5px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 20px;
    padding: 0 10px;
}

.marquee-item {
    flex: 0 0 345px; /* (1440px - 60px间隔) / 4张图片 = 345px */
    position: relative;
    overflow: hidden;
}

.marquee-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marquee-item:hover img {
    transform: scale(1.05);
}

.marquee-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-260px * 5 - 100px)); /* 5张图片的宽度加上间隔 */
    }
}

/* 确保跑马灯无缝循环 */
.marquee-content {
    display: flex;
    gap: 20px;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.notice-section {
    width: 100%;
    padding: 60px 0;
}
.notice-container {
    width: 1440px;
    height: 460px;
    margin: 0 auto;
}


.notice-title {
    text-align: center;
    font-size: 32px;
    color: #9b0000;
    margin-bottom: 50px;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    row-gap: 30px;
}

.notice-item {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.notice-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgb(155 0 0 / 70%);
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1;
}

.notice-item h3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: #444444;
    padding: 30px 15px;
    margin: 0;
    font-size: 20px;
    font-weight: normal;
}
.notice-more {
    display: block;
    color: #9b0000;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
}
/* 页面头部样式 */
.page-header {
    height: 200px;
    background-color: #9b0000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: none;
}

.separator {
    margin: 0 10px;
}

/* 主要内容区域样式 */
.main-content {
    width: 1440px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
}

/* 侧边栏样式 */
.sidebar {
    flex: 0 0 280px;
}
.sidebar-title {
    background: #9b0000;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}
.side-nav {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav > ul > li {
    margin-bottom: 2px;
    border-radius: 4px;
}

.side-nav > ul > li > a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.side-nav > ul > li > a::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.side-nav > ul > li.active > a::after {
    content: '-';
}

.side-nav > ul > li.active > a,
.side-nav > ul > li > a:hover {
    background: #9b0000;
    color: white;
}

.sub-nav {
    display: none;
    padding: 5px 0;
    margin-top: 2px;
}

.side-nav > ul > li.active .sub-nav {
    display: block;
}

.sub-nav li a {
    display: block;
    padding: 8px 15px 8px 30px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sub-nav li a:hover,
.sub-nav li.active a {
    color: #9b0000;
    background: #f5f5f5;
}

/* 文章内容区域样式 */
.article-content {
    flex: 1;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}
.content-title {
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 3px solid #9b0000;
    color: #9b0000;
}
.article-list-link {
    display: block;
    border-bottom: 1px solid #ececec;
}
.article-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.article-item h2:hover {
    color: #9b0000;
    cursor: pointer;
}

.article-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.article-meta span {
    margin-right: 20px;
}

.article-summary {
    color: #666;
    line-height: 1.6;
}
.article-content p, .article-content span, .article-content {
    font-family: "Microsoft YaHei UI", sans-serif !important;
    font-size: 18px;
}
/* 分页样式 */
.pagination {
    margin-top: 30px!important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn,
.page-num {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-num.active,
.page-btn:hover,
.page-num:hover {
    background: #9b0000;
    color: white;
    border-color: #9b0000;
}

.page-ellipsis {
    color: #666;
}

/* 快速链接区域 */
.quick-links {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 40px;
}

.quick-links-container {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    padding: 20px;
    border-radius: 5px;
}

.quick-link-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    background: #9b0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.quick-link-item span {
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    background: #9b0000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* 页脚样式 */
.footer {
    position: relative;
    background-color: #9b0000;
    padding: 20px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.footer-link {
    margin-bottom: 40px;
}
.footer-link .footer-h3 {
    float: left;
    width: 106px;
    height: 36px;
    margin-left: 10px;
    background: linear-gradient(135deg, transparent 0px, #fff 0) top left, linear-gradient(45deg, transparent 0px, #fff 0) bottom left, linear-gradient(-45deg, transparent 12px, #fff 0) bottom right, linear-gradient(-135deg, transparent 12px, #fff 0) top right;
    background-size: 50% 50%;
    background-repeat: no-repeat;
}
.footer-link h3 {
    font-size: 16px;
    color: #fff;
    margin: 2px 0 0 2px;
    width: 103px;
    height: 32px;
    line-height: 30px;
    text-align: left;
    padding-left: 14px;
    background: linear-gradient(135deg, transparent 0px, #9b0000 0) top left, linear-gradient(45deg, transparent 0px, #9b0000 0) bottom left, linear-gradient(-45deg, transparent 12px, #9b0000 0) bottom right, linear-gradient(-135deg, transparent 12px, #9b0000 0) top right;
    background-size: 50% 50%;
    background-repeat: no-repeat;
}
.footer-link ul {
    margin-left: 148px;
    position: relative;
    z-index: 2;
}
.footer-link ul li {
    float: left;
    padding: 0 20px;
    text-align: left;
}
.footer-link ul li a {
    font-size: 16px;
    color: #fff;
    line-height: 36px;
    text-decoration: none;
}
.footer-copyright {
    float: left;
    padding-top: 40px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: white;
}

.contact-info i {
    margin-right: 10px;
    color: #9b0000;
}

.footer-right {
    flex: 0 0 300px;
}

.qrcode-container {
    display: flex;
    gap: 20px;
}

.qrcode-item {
    text-align: right;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    background: white;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.qrcode-item p {
    font-size: 14px;
    color: #999;
}

/* 图标样式 */
.icon-study { background-image: url('../image/icon-study.png'); }
.icon-library { background-image: url('../image/icon-library.png'); }
.icon-email { background-image: url('../image/icon-email.png'); }
.icon-vpn { background-image: url('../image/icon-vpn.png'); }
.icon-cloud { background-image: url('../image/icon-cloud.png'); }
.icon-info { background-image: url('../image/icon-info.png'); }
.icon-mooc { background-image: url('../image/icon-mooc.png'); }

/* 跑马灯视频样式 */
.marquee-section {
    width: 1440px;
    margin: 40px auto;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 15px;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 20px;
    padding: 0 10px;
}

.marquee-item {
    flex: 0 0 330px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-icon {
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

.marquee-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.marquee-item:hover .play-button {
    opacity: 1;
}

.marquee-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #9b0000;
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 16px;
}

/* 视频弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 40px auto;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

#videoPlayer {
    width: 100%;
    background: black;
    border-radius: 5px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-260px * 5 - 100px));
    }
}

.marquee-content:hover {
    animation-play-state: paused;
}

.p_fun, .p_fun_d, .p_no, .p_no_d {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 2px;
}


/* News Section Styles */
.h-450 {
    height: 450px;
}
.h-500 {
    height: 500px;
}
.h-550 {
    height: 550px;
}
.section{
    width: 100%;
    background-size: cover;
    padding: 60px 0;
}

.container {
    width: 1440px;
    margin: 0 auto;
}

.box1 {
    width: 600px;
    float: left;
}

.box2 {
    width: 800px;
    float: right;
}

.box3 {
    width: 800px;
    float: left;
}

.box4 {
    width: 600px;
    float: right;
}

.focusBox1 {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    font: 12px/1.5 Verdana, Geneva, sans-serif;
    text-align: left;
    background: white;
}

.focusBox1 .pic img {
    width: 100%;
    height: 400px;
    display: block;
}

.focusBox1 .txt-bg {
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 60px;
    width: 100%;
    background: #9b0000;
    overflow: hidden;
}

.focusBox1 .txt {
    position: absolute;
    bottom: 0;
    z-index: 2;
    height: 60px;
    width: 100%;
    overflow: hidden;
}

.focusBox1 .txt li {
    height: 60px;
    line-height: 60px;
    position: absolute;
    bottom: -60px;
}

.focusBox1 .txt li a {
    display: block;
    color: white;
    padding: 0 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.focusBox1 .num {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    right: 8px;
}

.focusBox1 .num li {
    float: left;
    position: relative;
    width: 18px;
    height: 15px;
    line-height: 15px;
    overflow: hidden;
    text-align: center;
    margin-right: 1px;
    cursor: pointer;
}

.focusBox1 .num li a, .focusBox1 .num li span {
    position: absolute;
    z-index: 2;
    display: block;
    color: white;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    text-decoration: none;
}

.focusBox1 .num li span {
    z-index: 1;
    background: #ffffff;
    border-radius: 10px;
}

.focusBox1 .num li.on a, .focusBox1 .num a:hover {
    border-radius: 10px;
    background: #9b000090;
}

.hasMoreTab1 {
    width: 100%;
    height: 400px;
}

.hasMoreTab1 .hd {
    line-height: 60px;
    height: 60px;
    border-bottom: 1px solid #9b0000;
    position: relative;
    padding-right: 10px;
}

.hasMoreTab1 .hd .more {
    float: right;
    height: 45px;
}

.hasMoreTab1 .hd ul {
    z-index: 5;
    position: absolute;
    height: 60px;
    overflow: hidden;
    zoom: 1;
}

.hasMoreTab1 .hd li {
    float: left;
    cursor: pointer;
    margin-left: -1px;
    font-size: 28px;
    font-weight: bold;
    padding-left: 60px;
    padding-right: 30px;
    color: #666666;
}

.hasMoreTab1 .hd li.on {
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    border-bottom: 5px solid #9b0000;
    color: #9b0000;
}

.hasMoreTab1 .bd {
    padding: 10px;
    clear: both;
    position: relative;
}

.hasMoreTab1 .bd .conWrap .con .list {
    color: #333333;
    display: flex;
    justify-content: space-between;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    border-bottom: 1px dotted #eeeeee;
}

.hasMoreTab1 .bd h2 {
    font-size: 14px;
}

.hasMoreTab1 .bd p {
    color: #999;
}

.hasMoreTab1 .bd p a {
    color: #9b0000;
}

.hasMoreTab1 .bd ul a {
    color: #9b0000;
}
.focusBox2 {
    position: relative;
    width: 100%;
    height: 325px;
    overflow: hidden;
    font: 12px/1.5 Verdana, Geneva, sans-serif;
    text-align: left;
    background: white;
}

.focusBox2 .pic img {
    width: 100%;
    height: 325px;
    display: block;
}

.focusBox2 .txt-bg {
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 60px;
    width: 100%;
    background: #9b0000;
    overflow: hidden;
}

.focusBox2 .txt {
    position: absolute;
    bottom: 0;
    z-index: 2;
    height: 60px;
    width: 100%;
    overflow: hidden;
}

.focusBox2 .txt li {
    height: 60px;
    line-height: 60px;
    position: absolute;
    bottom: -60px;
}

.focusBox2 .txt li a {
    display: block;
    color: white;
    padding: 0 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.focusBox2 .num {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    right: 8px;
}

.focusBox2 .num li {
    float: left;
    position: relative;
    width: 18px;
    height: 15px;
    line-height: 15px;
    overflow: hidden;
    text-align: center;
    margin-right: 1px;
    cursor: pointer;
}

.focusBox2 .num li a, .focusBox2 .num li span {
    position: absolute;
    z-index: 2;
    display: block;
    color: white;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    text-decoration: none;
}

.focusBox2 .num li span {
    z-index: 1;
    background: #ffffff;
    border-radius: 10px;
}

.focusBox2 .num li.on a, .focusBox2 .num a:hover {
    border-radius: 10px;
    background: #9b000090;
}

.hasMoreTab2 {
    width: 100%;
    height: 300px;
}

.hasMoreTab2 .hd {
    line-height: 60px;
    height: 60px;
    border-bottom: 1px solid #9b0000;
    position: relative;
    padding-right: 10px;
}

.hasMoreTab2 .hd .more {
    float: right;
    height: 45px;
}

.hasMoreTab2 .hd ul {
    z-index: 5;
    position: absolute;
    height: 60px;
    overflow: hidden;
    zoom: 1;
}

.hasMoreTab2 .hd li {
    float: left;
    cursor: pointer;
    margin-left: -1px;
    font-size: 28px;
    font-weight: bold;
    padding-left: 60px;
    padding-right: 30px;
    color: #666666;
}

.hasMoreTab2 .hd li.on {
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    border-bottom: 5px solid #9b0000;
    color: #9b0000;
}

.hasMoreTab2 .bd {
    padding: 10px;
    clear: both;
    position: relative;
}

.hasMoreTab2 .bd .conWrap .con .list {
    color: #333333;
    display: flex;
    justify-content: space-between;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    border-bottom: 1px dotted #eeeeee;
}

.hasMoreTab2 .bd h2 {
    font-size: 14px;
}

.hasMoreTab2 .bd p {
    color: #999;
}

.hasMoreTab2 .bd p a {
    color: #9b0000;
}

.hasMoreTab2 .bd ul a {
    color: #ffffff;
}
.hasMoreTab3 {
    width: 100%;
    height: 400px;
}

.hasMoreTab3 .hd {
    line-height: 60px;
    height: 60px;
    border-bottom: 1px solid #9b0000;
    position: relative;
    padding-right: 10px;
}

.hasMoreTab3 .hd .more {
    float: right;
    height: 45px;
}

.hasMoreTab3 .hd ul {
    z-index: 5;
    position: absolute;
    height: 60px;
    overflow: hidden;
    zoom: 1;
}

.hasMoreTab3 .hd li {
    float: left;
    cursor: pointer;
    margin-left: -1px;
    font-size: 28px;
    font-weight: bold;
    padding-left: 60px;
    padding-right: 30px;
    color: #666666;
}

.hasMoreTab3 .hd li.on {
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    border-bottom: 5px solid #9b0000;
    color: #9b0000;
}

.hasMoreTab3 .bd {
    padding: 5px 0;
    clear: both;
    position: relative;
}

.hasMoreTab3 .bd .conWrap .con .list {
    display: flex;
    justify-content: space-between;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    border-bottom: 1px dotted #eeeeee;
}

.hasMoreTab3 .bd h2 {
    font-size: 14px;
}

.hasMoreTab3 .bd p {
    color: #999;
}

.hasMoreTab3 .bd p a {
    color: #9b0000;
}

.hasMoreTab3 .bd ul a {
    color: #9b0000;
}

.icon-more {
    width: 30px;
    padding-top: 20px;
}
.icon-xwdt {
    background-image: url('../image/xwdt.png');
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: left;"
}
.icon-yxfc {
    background-image: url('../image/yxfc.png');
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: left;"
}
.icon-tzgg {
    background-image: url('../image/tzgg.png');
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: left;"
}
.icon-llxx {
    background-image: url('../image/llxx.png');
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: left;"
}
.icon-spzs {
    background-image: url('../image/spzs.png');
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: left;"
}
.icon-yxby {
    background-image: url('../image/yxby.png');
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: left;"
}
.icon-yrfc {
    background-image: url('../image/yrgs.png');
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: left;"
}

.picScroll {
    width: 100%;
}

.picScroll .hd {
    height: 36px;
    line-height: 35px;
    padding: 0 15px;
    background: #f4f4f4;
}

.picScroll .hd h2 {
    font-size: 17px;
    color: #C80300;
    float: left;
    margin-right: 15px;
}

.picScroll .bd {
    position: relative;
}

.picScroll .prev, .picScroll .next {
    position: absolute;
    top: 44px;
    left: -1px;
    display: block;
    width: 26px;
    height: 64px;
    background: url(images/slide_tigger.png) 0 -65px;
    z-index: 9;
    overflow: hidden;
}

.picScroll .next {
    left: auto;
    right: -1px;
    background-position: -26px -65px;
}

.picScroll .prev:hover {
    background-position: 0 -130px;
}

.picScroll .next:hover {
    background-position: -26px -130px;
}

.picScroll .prevStop {
    background-position: 0 -65px !important;
}

.picScroll .nextStop {
    background-position: -26px -65px !important;
}

.picScroll .scrollWrap {
}

.picScroll ul {
    overflow: hidden;
    zoom: 1;
}

.picScroll li {
    width: 330px;
    height: 240px;
    margin:0 25px 10px 0;
    position: relative;
    float: left;
    display: inline;
}

.picScroll li .pic {
    position: relative;
    display: block;
    overflow: hidden;
}

.picScroll li .pic img {
    display: block;
    height: 220px;
    background: #ddd;
}

.picScroll li a {
    margin-top: 5px;
    color: #999;
    line-height: 15px;
    overflow: hidden;
}

.picScroll li a span {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #9b0000;
    color: #ffffff;
    padding-left: 10px;
}
.picScroll li .txt1 a {
    color: #333;
}

.picScroll li .movielist_tt {
    position: relative;
    height: 16px;
    line-height: 16px;
    padding-right: 30px;
    overflow: hidden;
    position: relative;
}

.picScroll li .movielist_tt a {
    font-size: 14px;
}

.picScroll li .score {
    color: #FF6600;
    font-family: Arial;
    position: absolute;
    top: 0;
    right: 10px;
}
.marquee-title a {
    color:#ffffff;
}
.marquee-title a:hover {
    color:#ffffff;
}
.more a {
    color:#333333;
}