/*0.1	19*/
/*0.2	33*/
/*0.3	4C*/
/*0.4	66*/
/*0.5	7F*/
/*0.6	99*/
/*0.7	B2*/
/*0.8	C8*/
/*0.9	E5*/
.grayscale {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1);
}
body{
    overflow: hidden;
    background-color: #000;
}
.content-page{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner{
    position: relative;
    height: 100vh;
    overflow: hidden;
    /*display: none;*/
}
.banner-opacity{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.1);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#19000000,endColorstr=#19000000);
}
.banner-content{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.banner-info{
    position: absolute;
    width: 774px;
    height: 260px;
    top: 300px;
    left: 14.7%;
    background: rgba(0,0,0,0.5);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F000000,endColorstr=#7F000000);
    color: #fff;
}
.banner-info h2{
    font-size: 32px;
    line-height: 90px;
    /*border-bottom: 1px solid #565656;*/
    margin: 16px 24px 20px 24px;
    position: relative;
}
.banner-info h2::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: rgba(255,255,255,0.2);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#33000000,endColorstr=#33000000);
}
.banner-info p{
    font-size: 14px;
    padding: 0 24px;
    line-height: 30px;
    color: #e5e5e5;
}
/* 视频容器样式 */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bannerVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    display: block;
}

/* 响应式视频适配 - 确保不同比例下的最佳显示效果 */
@media (max-aspect-ratio: 16/9) {
    /* 屏幕比例较窄时，视频宽度适配屏幕，高度可能超出 */
    #bannerVideo {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
}

@media (min-aspect-ratio: 16/9) {
    /* 屏幕比例较宽时，视频高度适配屏幕，宽度可能超出 */
    #bannerVideo {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
}

/* 移动端优化 */
@media (max-width: 768px) {
    .video-container {
        height: 100vh;
    }
    
    #bannerVideo {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
    
    .video-controls {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* 视频控制按钮样式 */
.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(203, 178, 136, 0.8);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

/* 保持原有的轮播图样式作为备用 */
.banner-img{
    position: absolute;
    width: 100%;
    display: none;
}
@keyframes twinkling{
    0%{
        opacity: 0.3;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0.3;
    }
}
@-webkit-keyframes twinkling{
    0%{
        opacity: 0.3;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0.3;
    }
}
@-moz-keyframes twinkling{
    0%{
        opacity: 0.3;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0.3;
    }
}
@-o-keyframes twinkling{
    0%{
        opacity: 0.3;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0.3;
    }
}
.dot{
    -webkit-animation: twinkling 2s infinite ease-in-out;
    -moz-animation: twinkling 2s infinite ease-in-out;
    -o-animation: twinkling 2s infinite ease-in-out;
    animation: twinkling 2s infinite ease-in-out;
}
.des{
    position: absolute;
    top: 320px;
    left: 1250px;
}
.banner-word{
    position: absolute;
    top: 200px;
    right: 200px;
}
.banner-word img{
    position: relative;
    top: 0;
    display: none;
}
@keyframes floatWord{
    0%{
        left: -1px;
    }
    25%{
        left: 0px;
    }
    50%{
        left: 1px;
    }
    75%{
        left: 0px;
    }
    100%{
        left: -1px;
    }
}
.float-word{
    -webkit-animation: floatWord 5s infinite linear;
    /*-moz-animation: floatWord 2s infinite ease-in-out;*/
    /*-o-animation: floatWord 2s infinite ease-in-out;*/
    /*animation: floatWord 2s infinite ease-in-out;*/
}
.theater{
    background-color: #fcf1e4;
    padding-top: 90px;
}
.theater-title{
    height: 350px;
    text-align: center;
    position: relative;
}
.introduction{
    /*margin-top: 78px;*/
}
.theater-title .cloud1{
    position: absolute;
    right: 210px;
    top: 62px;
}
.theater-title .cloud2{
    position: absolute;
    left: 0;
    top: 230px;
}
.theater-introduction{
    height: 427px;
    position: relative;
    background: url("../img/title/theater-introduction-bg.jpg") center 0 no-repeat;
}
.introduction-opacity{
    position: absolute;
    width: 100%;
    height: 427px;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
}
.introduction-content{
    position: absolute;
    width: 753px;
    top: 145px;
    left: 50%;
    text-align: center;
    margin-left: -376.5px;
    height: 80px;
}
.introduction-content p{
    /*color: #fbf8d7;*/
    color: #fff;
    text-align: center;
    white-space: nowrap;
}
.introduction-content .p1{
    position: absolute;
    left: 0px;
    z-index: 1;
}
.introduction-content .p2{
    position: absolute;
    left: 561px;
    z-index: 1;
}
.introduction-content .img{
    position: absolute;
    left: 337px;
    z-index: 2;
}
.actor-information .introduction-content{
    width: 725px;
    margin-left: -362.5px;
}
.actor-information .introduction-content .p2{
    left: 442px;
}
.actor-information .introduction-content .img{
    left: 323px;
}
.play-information .introduction-content{
    width: 510px;
    margin-left: -255px;
}
.play-information .introduction-content .p2{
    left: 336px;
}
.play-information .introduction-content .img{
    left: 224px;
}
.introduction-content p span{
    font-size: 22px;
    padding: 0 10px;
    border-bottom: 1px solid #fbf8d7;
    display: inline-block;
}
.introduction-content p em{
    font-style: normal;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}
.introduction-content img{
    /*margin: 0 50px;*/
}
.introduction-opacity2{
    position: absolute;
    width: 100%;
    height: 427px;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.9);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#E5000000,endColorstr=#E5000000);
    z-index: 3;
}
.introduction-content2{
    position: absolute;
    width: 100%;
    top: 175px;
    text-align: center;
    height: 80px;
    color: #fff;
    z-index: 4;
}
.introduction-content2 a{
    color: #fff;
    font-size: 22px;
    display: inline-block;
    letter-spacing: 2px;
    margin: 0 15px;
}
.introduction-content2 a:hover{
    color: #f0c600;
}
.introduction-content2 a span{
    font-size: 14px;
    display: block;
}

/* 了解详情按钮样式 */
.detail-button {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 5;
}

.detail-button a {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #cbb288;
    text-decoration: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #cbb288;
    backdrop-filter: blur(5px);
        opacity: 0.5;
    filter: Alpha(Opacity=50);
}

.detail-button a:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-color: #f0c600;
    box-shadow: 0 6px 20px rgba(240, 198, 0, 0.4);
    transform: translateY(-2px);
}

.detail-button .button-text {
    margin-right: 10px;
}

.detail-button .button-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.detail-button a:hover .button-arrow {
    transform: translateX(3px);
}

/* 手风琴效果样式 */
.list {
    overflow: hidden;
    height: 100%;
}

.list-item {
    position: relative;
    float: left;
    width: 20%;
    height: 100%;
    background: center no-repeat;
    background-size: cover;
    transition: width 0.5s ease;
    cursor: pointer;
}

.l1::before,.l2::before,.l3::before,.l4::before,.l5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.list-item:hover::before {
    opacity: 0;
}

.list-item.cur {
    width: 44%;
    background-position: center;
}

.list-item.sib {
    width: 12%;
}

.list-item .h30 {
    position: absolute;
    left: 12.5%;
    top: 26%;
    width: 30px;
    line-height: 1;
    writing-mode: vertical-lr;
    transition: left 0.5s ease, margin 0.3s ease;
    font-size: 26px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

.list-item.sib .h30 {
    left: 50%;
    margin-left: -15px;
}

/* 文创展示滚动样式 */
.cultural-showcase {
    padding: 10px 0;
    /* background: linear-gradient(135deg, #f8f4e6 0%, #f0e6d2 100%); */
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    z-index: 1;
}

.cultural-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-image: 
        radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);*/
    pointer-events: none;
}

.showcase-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.showcase-title h2 {
    font-size: 36px;
    color: #8B4513;
    margin-bottom: 10px;
    font-family: 'Microsoft YaHei', serif;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
    position: relative;
}

.showcase-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #DAA520, #B8860B, #DAA520);
    border-radius: 2px;
}

.showcase-title p {
    font-size: 16px;
    color: #A0522D;
    font-style: italic;
    margin-top: 20px;
}

.showcase-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 280px;
    mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    display: flex;
    align-items: center;
}

.showcase-track {
    display: flex;
    width: calc(300px * 12);
    animation: scroll-left 40s linear infinite;
    will-change: transform;
    flex-shrink: 0;
    align-items: center;
    height: 100%;
}

.showcase-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6));
    }
}

/* 宽屏优化 */
@media (min-width: 1400px) {
    .showcase-container {
        height: 320px;
    }
    
    .showcase-item {
        width: 300px;
        height: 280px;
    }
    
    .showcase-track {
        width: calc(320px * 12);
        animation: scroll-left-wide 45s linear infinite;
    }
    
    @keyframes scroll-left-wide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 6));
        }
    }
}

@media (min-width: 1920px) {
    .showcase-container {
        height: 350px;
    }
    
    .showcase-item {
        width: 320px;
        height: 300px;
    }
    
    .showcase-track {
        width: calc(340px * 12);
        animation: scroll-left-ultra-wide 50s linear infinite;
    }
    
    @keyframes scroll-left-ultra-wide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-340px * 6));
        }
    }
}

.showcase-item {
    width: 280px;
    height: 260px;
    margin: 0 10px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(139, 69, 19, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(145deg, #fff 0%, #f8f4e6 100%);
    border: 2px solid rgba(218, 165, 32, 0.3);
    flex-shrink: 0;
    display: block;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(139, 69, 19, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.showcase-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(0);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.item-overlay h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Microsoft YaHei', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.item-overlay p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.4;
    font-style: italic;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 5px;
}

.showcase-item:hover .item-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* 中国风装饰元素 */
.cultural-showcase::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
}

/* 视频加载特效样式 - 简化版 */
.video-loading-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.video-loading-mask.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: #fff;
    max-width: 400px;
    padding: 20px;
}

/* 进度条样式 */
.progress-container {
    margin: 20px 0;
}

.progress-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.progress-fill {
    height: 100%;
    background: #ffffff50;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* 加载提示文字 */
.loading-tips span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    animation: textFade 1.5s ease-in-out infinite alternate;
}

@keyframes textFade {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .progress-bar {
        width: 250px;
    }
    
    .progress-text {
        font-size: 13px;
    }
    
    .loading-tips span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .progress-bar {
        width: 200px;
    }
    
    .progress-text {
        font-size: 12px;
    }
    
    .loading-tips span {
        font-size: 12px;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .showcase-title h2 {
        font-size: 28px;
    }
    
    .showcase-container {
        height: 220px;
    }
    
    .showcase-item {
        width: 200px;
        height: 180px;
    }
    
    .showcase-track {
        width: calc(220px * 12);
        animation: scroll-left-mobile 35s linear infinite;
    }
    
    @keyframes scroll-left-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 6));
        }
    }
}

@media (min-width: 769px) and (max-width: 1399px) {
    .showcase-container {
        height: 280px;
    }
    
    .showcase-item {
        width: 280px;
        height: 260px;
    }
    
    .showcase-track {
        width: calc(300px * 12);
        animation: scroll-left 40s linear infinite;
    }
}
.information{
    margin-top: 50px;
}
.theater-title-information{
    position: relative;
}
.theater-title-information::before{
    content: '';
    width: 550px;
    height: 300px;
    background: url("../img/title/dragon.png") center 0 no-repeat;
    position: absolute;
    left: 50%;
    margin-left: -275px;
    top: 0;
}
.actor-information{
    height: 427px;
    position: relative;
    background: url("../img/title/actor-information-bg.jpg") center 0 no-repeat;
}
.actor-information-content{
    top: 98px;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    margin: 0;
}
.play{
    margin-top: 50px;
}
.play-information{
    width: 100%;
    height: 427px;
    position: relative;
    overflow: hidden;
    background: url("../img/title/play-information-bg.jpg") center 0 no-repeat;
}
.play-section-center{
    width: 638px;
    height: 427px;
    position: absolute;
    left: 50%;
    margin-left: -319px;
}
.play-section-center .center{
    position: relative;
    z-index: 2;
    top: 0;
}
.play-section-center h3{
    /*width: 100%;*/
    width: 30px;
    line-height: 32px;
    font-size: 26px;
    text-align: center;
    position: absolute;
    /*top: 190px;*/
    top: 140px;
    color: #fff;
    z-index: 4;
    left: 314px;
}
.play-section-first{
    position: absolute;
    left: -641px;
    top: 0;
    z-index: 1;
    overflow: hidden;
    width: 640px;
}
.play-section-last{
    position: absolute;
    right: -641px;
    top: 0;
    z-index: 1;
    width: 640px;
    overflow: hidden;
}
.play-information-opacity{
    position: absolute;
    width: 100%;
    height: 427px;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F000000,endColorstr=#7F000000);
}
.left-opacity,.center-opacity,.right-opacity{
    background: rgba(0,0,0,0.5);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F000000,endColorstr=#7F000000);
}
.center-opacity{
    position: absolute;
    z-index: 3;
    width: 638px;
    height: 427px;
    top: 0;
    left: 50%;
    margin-left: -319px;
}
.left-opacity{
    width: 640px;
    height: 427px;
    top: 0;
    left: 0;
    position: absolute;
}
.right-opacity{
    width: 640px;
    height: 427px;
    top: 0;
    left: 0;
    position: absolute;
}
.art{
    margin-top: 60px;
}
.art-icon{
    position: absolute;
    right: 196px;
    top: 65px;
}
.art-news-content{
    height: 427px;
    position: relative;
}
.art-news{
    height: 427px;
    position: relative;
    cursor: pointer;
}
.art-news-1{
    background: url("../img/title/art-news-1.jpg") center 0 no-repeat;
}
.art-news-2{
    background: url("../img/title/art-news-2.jpg") center 0 no-repeat;
}
.art-news-3{
    background: url("../img/title/art-news-3.jpg") center 0 no-repeat;
}
.art-dot{
    width: 100%;
    position: absolute;
    left: 0;
    top: 382px;
    text-align: center;
}
.art-dot a{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    opacity: 0.3;
    filter: alpha(opacity=30);
    background-color: #fff;
    margin: 0 8px;
}
.art-dot a.on{
    opacity: 1;
    filter: alpha(opacity=100);
}
.art-news-opacity{
    position: absolute;
    width: 100%;
    height: 427px;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F000000,endColorstr=#7F000000);
}
.art-new-content{
    width: 100%;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    position: relative;
    height: 240px;
    top: 70px;
}
.art-new-content-word{
    width: 996px;
    top: 0;
}
.art-new-content1,.art-new-content2{
    /*background: url("../img/title/art-news-img1.png") center 0 no-repeat;*/
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.art-new-content .logo{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.art-new-content .word{
    position: absolute;
    top: 0;
    left: 140px;
    z-index: 1;
}
.art-new-content .pic{
    position: absolute;
    top: 0;
    left: 248px;
    z-index: 3;
}
.art-new-content2{
    /*background: url("../img/title/art-news-img2.png") center 0 no-repeat;*/
}
.art-new-content h3{
    font-size: 26px;
    padding-top: 340px;
    padding-bottom: 18px;
}
.art-new-content p{
    font-size: 18px;
    line-height: 46px;
    letter-spacing: 3px;
}
.art-new-content p span{
    color: #f0c600;
}
.theater-title2{
    height: 364px;
    text-align: center;
    position: relative;
    width: 512px;
    margin: 0 auto;
    margin-top: 100px;
}
.opera{
    margin-top: 62px;
}
.opera-logo{
    position: absolute;
    top: 15px;
    left: 50px;
}
.opera-content{
    width: 465px;
    height: 58px;
    position: relative;
    margin: 0 auto;
    margin-top: 15px;
}
.opera-content a{
    display: block;
    width: 100%;
    height: 48px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    background-color: #cf1d22;
    /* background-color: #9d5d46; */
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    line-height: 20px;
    padding-top: 10px;
    letter-spacing: 6px;
}
.opera-content a span{
    font-size: 13px;
}
.search-opacity{
    width: 100%;
    height: 427px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.8;
    filter:alpha(opacity=80);
    z-index: 8;
}
.search{
    width: 584px;
    height: 58px;
    line-height: 58px;
    position: absolute;
    left: 50%;
    margin-left: -292px;
    top: 182px;
    font-size: 16px;
    z-index: 8;
}
.search input{
    float: left;
    width: 400px;
    height: 38px;
    border: none;
    background-color: #f6f7fa;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-indent: 16px;
    color: #b9b9bb;
    letter-spacing: 2px;
    padding-top: 7px;
    padding-bottom: 13px;
}
.search a{
    width: 183px;
    height: 58px;
    text-align: center;
    float: left;
    background-color: #cf1d22;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    letter-spacing: 7px;
}
.header-other{
    /*background: rgba(0,0,0,0.2);*/
    /*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#33000000,endColorstr=#33000000);*/
}
.header-other .header-bg{
    width: 100%;
    height: 90px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #7b0000;
    opacity: 0.7;
    filter: Alpha(Opacity=70);
}
.banner-tag{
    width: 600px;
    height: 280px;
    position: absolute;
    left: 50%;
    bottom: 120px;
    /*top: 500px;*/
    z-index: 999;
    margin-left: -300px;
    /*background: rgba(0,0,0,0.5);*/
    /*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F000000,endColorstr=#7F000000);*/
}
.tag-img{

}
.tag-img p{
    width: 600px;
    height: 50px;
}
.tag-img .p1{
    background: url("../img/banner/tag01_hover.png") no-repeat;
}
.tag-img .p2{
    background: url("../img/banner/tag02_hover.png") no-repeat;
}
.tag-img .p3{
    background: url("../img/banner/tag03_hover.png") no-repeat;
    height: 100px;
}
.tag-img .p4{
    background: url("../img/banner/tag04_hover.png") no-repeat;
}
.tag-img .p1.on{
    background: url("../img/banner/tag01.png") no-repeat;
}
.tag-img .p2.on{
    background: url("../img/banner/tag02.png") no-repeat;
}
.tag-img .p3.on{
    background: url("../img/banner/tag03.png") no-repeat;
}
.tag-img .p4.on{
    background: url("../img/banner/tag04.png") no-repeat;
}
.tag-dot{
    position: absolute;
    bottom: -42px;
    text-align: center;
    width: 100%;
}
.tag-dot p{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #666873;
    margin: 0 7px;
    cursor: pointer;
}
.tag-dot p.on{
    background-color: #fff;
}
.banner-tag-new{
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0;
    top: 168px;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}
.banner-tag-new img{
    position: absolute;
    left: 50%;
}
.banner-tag-new .img1{
    margin-left: -16px;
}
.banner-tag-new .img2{
    margin-left: -15px;
}
.banner-tag-new .img3{
    margin-left: -45.5px;
}
.banner-tag-new .img4{
    margin-left: -15.5px;
}

/* 首页侧边导航样式重写 */
.sidebar {
    position: fixed;
    right: -80px;
    top: 42%;
    z-index: 2;
    font-family: "微软雅黑";
    display: none;
}

.sidebar.x-show {
    display: block;
}

/* 鼠标悬停效果通过JavaScript控制 */

