@import url("main.css");

html,body{
    position: relative;
}
body{overflow-y: scroll;background: #F8F7F4;}

.header{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.top-white>a:hover,
.top-white ul li:hover
{
    cursor: pointer;
}

/* 顶部导航 */
.top-white{
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    padding: 0 2%;
    align-items: center;
    justify-content: space-between;
    transition: 1.5s;
    background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 100%);
    box-shadow: none;

}
.top-white>a{
    width: 10%;
}
.top-white>a img.icon-w{
    display: block;
    width: 100%;
}
.top-white>a img.icon-b{
    display: none;
}
.top-white ul{
    display: flex;
    width: 56%;
    justify-content: space-between;
    font-size: 0.9rem;
}
/*.top-white ul li:nth-of-type(5){
    display: none;
}*/
.top-white ul li.on{
    background: url(../../images/navImg_w.png) no-repeat left center;
    background-size: 10px;
    padding-left: 20px;
}
.top-white ul li a{
    color: #fff;
    font-weight: normal;
    margin-bottom: 20px;
    background: linear-gradient(to right, #C0B283, #C0B283) no-repeat;   
    background-position: right bottom;
    background-size: 0 2px;
    -webkit-transition:background-size .5s;
    transition: background-size .5s;
    position: relative; padding-bottom: 10px;
}
.top-white ul li a:hover{
    background-size: 100% 1px;
    background-position-x: left;
    color: #C0B283;
}
.top-white .right-top-box{
    margin-left: 5%;
    width: 12%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-white .right-top-box a{
    display: block;
    color: #fff;
    font-weight: normal;
}
.top-white .right-top-box a img{
    width: 20px;
}
.top-white .right-top-box .to-login{
    font-weight: normal;
    font-size: 0.8rem;
    padding: 10px 30px;
    background: #0D0C22;
    border-radius: 50px;
}
.top-white .right-top-box .datepicker{
    display: block;
    width: 30px;
    height: 30px;
    background: url(../../images/icon_date_w.png) no-repeat center;
    background-size: 22px;
}
.top-white .right-top-box .datepicker{
    background: url(../../images/icon_date_w.png) no-repeat center;
    background-size: 22px;
    cursor: pointer;
}
.top-white .right-top-box .media-hall{
    display: block;
    width: 30px;
    height: 30px;
    background: url(../../images/icon_concert_w.png) no-repeat center;
    background-size: 25px;
}
.top-white .right-top-box .media-hall{
    background: url(../../images/icon_concert_w.png) no-repeat center;
    background-size: 25px;
}


.top-white .right-top-box a{
    color: #fff;
}
.top-white .right-top-box a:hover{
    color: #C0B283;
}
.top-white .right-top-box .to-login,.top-white .right-top-box .to-login:hover{
    color: #fff;
}
.top-white ul li a{
    color: #fff;
}
.top-white ul li a:hover{
    color: #C0B283;
}
.top-white ul li.on{
    background: url(../../images/navImg_w.png) no-repeat left center;
    background-size: 10px;
}
.top-white .icon-b{
    display: none;
}
.top-white .right-top-box a.to-login{
    display: none;
}

/* 顶部轮播 */
.mySwiper1{
    width: 100%;
    height: 100%;
    background: #F8F7F4;
    position: absolute;
    overflow: hidden;
}
.mySwiper1 .swiper-slide{
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.mySwiper1 .swiper-slide a{
    display: block;
    width: 100%;
    height: 100%;
}
.mySwiper1 .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination{
    right: 10px;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.swiper-container-horizontal > .swiper-pagination-bullets{
    width: 30px;
    right: 10px;
    left: auto;
    top: 50%;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background: #B3B3B3;
    margin-bottom: 20px;
    opacity: 1;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active{
    width: 24px;
    height: 24px;
    background: none;
    border: 1px solid #fff;
    
}
.mouse-down{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    text-align: center;
    z-index: 2;
}
.mouse-down span{
    display: inline-block;
    position: relative;
    margin: auto;
    width: 18px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 10px;
}
.mouse-down span:before{
    position: absolute;
    left: 50%;
    margin-left: -2px;
    top: 6px;
    content: "";
    width: 4px;
    height: 11px;
    border-radius: 2px;
    background: #fff;
    animation: mousedown 1s infinite;
}
.mouse-down p{
    margin-top: 11px;
    color: #fff;
    font-size: 14px;
    opacity: .5;
    line-height: 1;
}
@keyframes mousedown {
    0%, 100% {
      transform: translateY(0);
      opacity: 1;
    }
    50% {
      transform: translateY(2px);
      opacity: .1;
    }
}


/* 音乐会 */
.concert{
    width: 100%;
    padding-bottom: 50px;
}
.concert-datepicker{
    background: #F8F7F4;
    width: 100%;
    margin-bottom: 30px;
}
.concert-datepicker .choose-date{
    width: 95%;
    max-width: 1340px;
    margin: 0 auto 30px;
    height: 90px;
    background: url(../../images/datepicker_bg.png) no-repeat center;
    background-size: contain;
    padding: 0 25px 0 40px;
}
.choose-date ul{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    line-height: 100px;
}
.choose-date ul li{
    font-size: 1rem;
    color: #C0B283;
    cursor: pointer;
    background: url(../../images/icon_note.png) no-repeat center 95px;
    background-size: 20px;
    transition: .5s;
}

.choose-date ul li:hover{
    transition: .5s;
    color: #A29361;
    font-size: 1.4rem;   
    background: url(../../images/icon_note.png) no-repeat center 70px;
    background-size: 20px;
    transform: translateY(-5px);
    cursor: url('../../images/cursor-pointer.cur') -15 -15, pointer !important;
}
.choose-date ul li.on{
    color: #A29361;
    font-size: 1.4rem;   
    background: url(../../images/icon_note.png) no-repeat center 65px;
    background-size: 20px;
    line-height: 85px;
}

/* 音乐会日历三个演出轮播 */
.concert-list{
    width: 95%;
    max-width: 1340px;
    margin: 80px auto 0;
    padding-bottom: 50px;
    position: relative;
}
.mySwiper2{
    width: 100%;
    overflow: hidden;
}
.mySwiper2 .swiper-slide{
    display: block;
    border-radius: 4px;  
    margin-bottom: 15px;
}
.mySwiper2 .swiper-slide:hover img{
    transform: scale(1.1);
}


.mySwiper2 .swiper-slide img{
    width: 100%;
    height: 196px;
    object-fit: cover;
    transition: .8s;
    transform: scale(1);
}
.mySwiper2 .swiper-slide .program-info{
    padding: 20px 15px;
    overflow: hidden;
}
.mySwiper2 .swiper-slide .program-time .date{
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 10px;
    color: #262423;
}
.mySwiper2 .swiper-slide .program-time .time{
    font-size: 0.8rem;
    color: #898989;
}
.mySwiper2 .swiper-slide .program-time{
    margin-bottom: 5px;
}
.mySwiper2 .swiper-slide .program-address{
    font-size: 0.7rem;
    margin-bottom: 20px;
    color: #3d3c3c;
}
.mySwiper2 .swiper-slide .program-name{
    font-size: 0.9rem;
    background: linear-gradient(to right, #C0B283, #C0B283) no-repeat;   
    background-position: right bottom;
    background-size: 0 2px;
    -webkit-transition:background-size .8s;
    transition: background-size .8s;
    position: relative; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: inline-block;
}
.mySwiper2 .program-name:hover {    
    background-size: 100% 1px;
    background-position-x:left;
}
.mySwiper2 .swiper-slide .program-info .btn-buy{
    display: block;   
    background: #0D0C22;
    margin: 40px auto 0;
    width: 150px;
    height: 46px;
    font-size: 0.8rem;
    color: #fff;
    text-align: center;
    line-height: 46px;
}
.mySwiper2 .swiper-slide .program-info .btn-buy:hover{
    background: #C0B283;
}
.swiper2-btn{
    position: absolute;
    width: 1420px;
    top: 40%;
}
.swiper2-btn .swiper-button-prev,.swiper2-btn .swiper-button-next{
    position: absolute;
    width: 50px;
    height: 50px;    
    border-radius: 50%;
}
.swiper2-btn .swiper-button-prev{
    left: -80px;
    background: #fff url(../../images/navigation-prev-b.png) no-repeat center !important;
    background-size: 20px !important;
    transition: 0.5s;
}
.swiper2-btn .swiper-button-prev:hover{
    background: #0D0C22 url(../../images/navigation-prev-w.png) no-repeat center !important;
    background-size: 20px !important;
}
.swiper2-btn .swiper-button-next{
    right: 0;
    background: #fff url(../../images/navigation-next-b.png) no-repeat center !important;
    background-size: 20px !important;
    transition: 0.5s;
}
.swiper2-btn .swiper-button-next:hover{
    background: #0D0C22 url(../../images/navigation-next-w.png) no-repeat center !important;
    background-size: 20px !important;
}

/* 数字音乐厅 */
.bg-white{
    background: #fff;
    width: 100%;
}
.media-hall{
    width: 100%;
    height: auto; 
    overflow: hidden;
}
.media-hall-content{
    position: relative;
    padding-bottom: 80px;
}
.media-hall video{
    width: 55%;
}
.media-hall-content>p{
    position: absolute;
    left: 64%;
    bottom: 15%;
    width: 34%;
    font-size: 0.8rem;
    line-height: 1.6;
}
.media-hall-content .special-fonts{
    position: absolute;
    left: 50%;
    top: 10%;
    z-index: 50;   
    text-align: left; 
    width: fit-content;
    height: auto;
}
.media-hall-content .special-fonts p{
    width: 100%;
    display: block;
}
.media-hall-content .special-fonts p.font-first{
    width: 100%;
    /* -webkit-text-stroke: 2px #C0B283; */
    color: #fff;
    font-size: 2rem;
    text-transform:uppercase;
    text-shadow: 0px 2px #C0B283, 2px 0px #C0B283, -2px 0px #C0B283, 0px -2px #C0B283;
}
.media-hall-content .special-fonts p.font-first span{
    margin-right: 20px;
}
.media-hall-content .special-fonts p.font-brown{
    font-size: 2rem;
    text-transform:uppercase;
    color: #C0B283;
}

/* 新闻中心 */
.news{
    width: 100%;
    height: auto;
    background: url(../../images/news-bg.png) no-repeat top left;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 100px;
}
.news .title-box{
    margin-top: 0;
}
.news ul{
    width: 95%;
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
}
.news ul li{
    width: 31%;
}
.news ul li.mt50{
    margin-top: 150px;
}
.news ul li a{
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.8s;
    transform: scale(1);
}
.news ul li a:hover{
    color: #0D0C22;    
    box-shadow: 0 3px 6px 5px rgba(0, 0, 0, 0.08);
    transform: scale(1.1);
}
.news ul li a:nth-of-type(2){
    margin-top: 50px;
}
.news ul li a img{
    width: 100%;
    display: block;
    height: 240px;
    object-fit: cover;
}
.news ul li a .news-details{
    width: 100%;
    background: #fff;
    padding: 25px 15px;
}
.news ul li a .news-details .title{
    display: inline;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    background: linear-gradient(to right, #C0B283, #C0B283) no-repeat;   
    background-position: right bottom;
    background-size: 0 2px;
    -webkit-transition:background-size .8s;
    transition: background-size .8s;
    position: relative; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news ul li a:hover .news-details .title{
    background-size: 100% 1px;
    background-position-x: left;
    color: #0D0C22;
}
.news ul li a .date-more{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.news ul li a .date-more span{
    font-size: 0.8rem;
}
.news ul li a .date-more span:last-child{
    color: #C0B283;
    transition: 0.8s;
    transform:translateY(0) ;
    background: url(../../images/more-brown.png) no-repeat right center;
    background-size: 30px;
    padding-right: 40px;
    font-size: 0.7rem;
}
.news ul li a .date-more span:last-child:hover{
    transform:translateY(-5px) ;
    font-weight: 700;
}

/* 关于我们 */
.about-us{
    padding: 80px 0;
}
.about-us .title-box{
    margin-top: 0;
}
.about-us-content{
    position: relative;
    height: 600px;
    overflow: hidden;
}
.about-us-content .intro-classify{
    width: 55%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
}
.about-us-content .intro-box{
    position: absolute;
    right:59%;
    width: 19%;
    height: 100%;
    display: flex;
    flex-direction: column;   
    overflow: hidden;
    text-overflow: ellipsis; 
}
.about-us-content .intro-box h2{
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 30px;
}
.about-us-content .intro-box p{
    font-size: 0.8rem;
    line-height: 1.6;
    color: #262423;
}
.intro-classify a{
    display: block;
    width: 20%;
    height: 100%;
    position: relative;
    transition: 0.8s;
}
.intro-classify a.on{
    width: 40%;
}
.intro-classify a.band-intro{
    background: url(../../images/home-intro01.png) no-repeat center;
    background-size: cover;
} 
.intro-classify a.memorabilia-intro{
    background: url(../../images/home-intro02.png) no-repeat center;
    background-size: cover;
}
.intro-classify a.performers-intro{
    background: url(../../images/home-intro03.png) no-repeat center;
    background-size: cover;
}
.intro-classify a.leaders-intro{
    background: url(../../images/home-intro04.png) no-repeat center;
    background-size: cover;
}
.intro-classify a .intro-mask{
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.intro-classify a .default-font{
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    z-index: 6;
    top: 40%;
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
}
.intro-classify a .intro-details{
    width: 70%;
    height: 160px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 8;
    padding: 20px;
    padding-bottom: 40px;
    display: none;
}
.intro-classify a .intro-details h3{
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.intro-classify a .intro-details p{
    font-size: 0.7rem;
    text-transform:uppercase;
    margin-bottom: 20px;
}
.intro-classify a .intro-details span{
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 34px;
    height: 34px;
}
.intro-classify a .intro-details span img{
    width: 12px;
    margin-top: -6px;
    margin-left: -6px;
}
.intro-classify a:hover{
    color: #0D0C22;
}
.intro-classify a.on .intro-details{
    display: block;
}
.intro-classify a.on .default-font{
    display: none;
}

@media(max-width:2400px){
    .about-us-content .intro-box{width: 36%;justify-content: center;}
}

@media(max-width:1920px){
    .about-us-content .intro-classify{width: 60%;}
    .about-us-content .intro-box{right: 64%;width: 30%;}
    .media-hall-content .special-fonts p.font-first,.media-hall-content .special-fonts p.font-brown{font-size: 2rem;}
    .media-hall-content>p{width: 30%;}
    .media-hall-content>p{bottom: 15%;}

    
}

@media(max-width:1700px){
    .media-hall-content>p{width: 40%;left: 58%;}
    .media-hall-content .special-fonts{top: 3%;}
    .about-us-content .intro-box p{line-height: 1.4;}
}

@media(max-width:1650px){
    .about-us-content .intro-box{width: 35%;right: 62%;}
}


@media(max-width:1440px){
    .swiper2-btn .swiper-button-prev,.swiper2-btn .swiper-button-next{font-size: 0.8rem;}
    .about-us-content .intro-box{width: 36%;}
    .top-white ul{width: 65%;font-size: 0.8rem;}
    .top-white .right-top-box{width: 14%;margin-left: 1%;}
    .media-hall-content .special-fonts p.font-first, .media-hall-content .special-fonts p.font-brown{font-size: 1.4rem;}
    .media-hall-content>p{line-height: 1.4;}
	.swiper2-btn{width: 100%;}
    .swiper2-btn .swiper-button-prev{left: 0;}
    .swiper2-btn .swiper-button-prev,.swiper2-btn .swiper-button-next{box-shadow:0 2px 4px 3px rgba(0, 0, 0, 0.08) ;}
    .swiper2-btn .swiper-button-prev,.swiper2-btn .swiper-button-next{font-size: 0.8rem;}
}

@media(max-width:1366px){
    .about-us-content .intro-classify{position: unset;width: 100%;height: 500px;}
    .about-us-content .intro-box{width: 100%;position: unset;margin-bottom: 20px;}
    .about-us-content{position: unset;height: auto;}
}

@media(max-width:1250px){
    .mySwiper2 .swiper-slide-active .show-info .btn-buyTicket{width: auto;display: inline-block;margin-top: 15px;padding: 10px 40px;}
    .media-hall-content .special-fonts p.font-first, .media-hall-content .special-fonts p.font-brown{font-size: 1.4rem;}
    .news ul li a .news-details .title{font-size: 0.8rem;}
    .news ul li a .date-more span{font-size: 0.7rem;}
    .news ul li a .date-more{margin-top: 20px;}
    .intro-classify a .default-font,.intro-classify a .intro-details h3{font-size: 0.9rem;}
    .media-hall-content>p{position: unset;width: 100%;margin-top: 30px;line-height: 1.6;padding: 0 20px;}
    .media-hall-content .special-fonts p.font-first, .media-hall-content .special-fonts p.font-brown{font-size: 1.6rem;top: 10%;}
    .media-hall-content{padding-bottom: 0;}

}
@media(max-width:1100px){
    .top-white{display: none;}    
    .about-us-content{display: flex; flex-direction: column;height: auto;position: unset;}
    .about-us-content .intro-box,.about-us-content .intro-classify{width: 95%;position: unset;margin: 0 auto;}
    .about-us-content .intro-box{margin-bottom: 40px;}
    .about-us-content .intro-classify{flex-direction: column;height: auto;}
    .about-us-content .intro-classify a{width: 100% !important;height: 200px;margin-bottom: 20px;}
    .intro-classify a .intro-details{display: block;}
    .intro-classify a .default-font{display: none;}
    .about-us-content .intro-classify a .intro-classify a .intro-details{right: 20px;left: auto;}
    .news ul li a img{height: 160px;}
    .news ul li.mt50{margin-top: 80px;}
    .news{padding-top: 30px;padding-bottom: 30px;}
    .about-us{padding: 30px 0;}
    .mySwiper1, .header{height: 650px;}
    .about-us-content .intro-box p{display: block;height: auto;}
    .show-time span{font-size: 0.6rem;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
    .mySwiper2 .swiper-slide-active .img{border: 4PX solid #C0B283;}
    .mySwiper2 .swiper-slide-active .show-info .btn-buyTicket{margin-top: 20px;padding: 8px 10px;font-size: 0.6rem;}
}

@media(max-width:1024px){
    .concert-datepicker .choose-date{display: none;}
    .news ul li a .date-more span:last-child{font-size: 0.6rem;padding-right: 35px;background-size: 26px;}
    .news ul li a .date-more span{font-size: 0.6rem;}
}

@media(max-width:850px){
    .mySwiper2 .swiper-slide-active .show-info .show-name{font-size: 0.8rem;margin-bottom: 10px;}
    .mySwiper2 .swiper-slide-active .show-info .address, .mySwiper2 .swiper-slide-active .show-info .show-time{font-size: 0.7rem;margin-bottom: 5px;}
    .mySwiper2 .swiper-slide-active .show-info{padding-top: 22%;}
    .concert{padding-bottom: 20px;}
    .media-hall video{width: 100%;}
    .media-hall-content>p{width: 100%;}
    .media-hall-content .special-fonts{top: 20px;left: 20px;}
    .media-hall-content .special-fonts p.font-first{-webkit-text-stroke:0}
    .news{padding: 40px 0 30px;}
    .news ul li.mt50{margin-top: 60px;}
    .news ul li a img{height: 140px;}
    .news ul{gap: 15px;}
    .news ul li a .news-details{padding: 15px;}
    .about-us{padding: 40px 0;}
    .intro-classify a .default-font{font-size: 0.7rem;top: 30%;}
    .intro-classify a .intro-details h3{font-size: 0.8rem;margin-bottom: 10px;}
    .about-us-content .intro-box{margin-bottom: 20px;}
    .about-us-content .intro-box h2{font-size: 1rem;margin-bottom: 10px;}
    .about-us-content .intro-box p{font-size: 0.7rem;}
    .mySwiper2 .swiper-slide-active .show-info .btn-buyTicket{margin-top: 1px;font-size: 0.5rem;}
    .media-hall-content .special-fonts{display: none;}
    .news ul li a .news-details .title{margin-bottom: 10px;}
    .news ul li a .date-more{flex-direction: column;}
    .news ul li a .date-more span:last-child{text-align: right;margin-top: 10px;}
}

@media(max-width:640px){
    .mySwiper2 .swiper-slide-active .show-info .show-name{font-size: 0.6rem;line-height: 1.2;margin-bottom: 2px;padding: 0 30px;white-space: nowrap !important;overflow: hidden !important;text-overflow: ellipsis !important;width: 100%;display: block;}
    .mySwiper2 .swiper-slide-active .img,.mySwiper2 .swiper-slide-active .mask{border: 2px solid #C0B283 !important;}
    .mySwiper1,.header{height: 200px;}
    .mouse-down{display: none !important;}
    .line .middle-note{background-size: 50px;}
    .intro-classify a .intro-details span{right: 5px;bottom: 5px;width: 20px;height: 20px;}
    .intro-classify a .default-font{width: 16px;margin-left: -8px;}
    .about-us{padding-bottom: 0;}
    .news ul{flex-direction: column;gap: 20px;width: 100%;padding: 0 20px;}
    .news ul li.mt50{margin-top: 0;}
    .news ul li{width: 100%;}
    .intro-classify a .intro-details{height: 82px;}
    .media-hall-content>p{display: block;height: auto;}
    .news ul li a .date-more{flex-direction: row;}
    .concert-list{margin-top: 20px;padding-bottom: 0px;}
    .mySwiper2 .swiper-slide .program-info .btn-buy{margin-top: 20px;}
    .mySwiper2 .swiper-slide img{height: 150px;}
}

@media(max-width:550px){
    /* .mySwiper2 .swiper-slide-active .show-info{display: none;} */
    .mySwiper2{margin-top: 0;}
    .media-hall-content .special-fonts {display: none;}
    .media-hall-content{padding-bottom: 10px;}
    .news{padding-top: 30px;}
    .swiper-container-horizontal > .swiper-pagination-bullets{width: 16px;top: 40%;}
    .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{width: 4px;height: 4px;margin-bottom: 5px;}
    .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active{width: 8px;height: 8px;}
    .header{margin-top: 44px;}
    .media-hall-content>p{font-size: 0.7rem;width: 100%;padding: 15px;line-height: 1.4;margin-top: 0;}
    .about-us-content .intro-classify a{height: 140px;}
    .intro-classify a .intro-details{left: 10px;bottom: 10px;padding: 10px;}
    .news ul li a .date-more span:last-child{margin-top: 0;}
    .news ul li a .date-more span{font-size: 0.7rem;}
    .news ul{padding: 0 15px;gap:15px;}
    .swiper2-btn .swiper-button-prev, .swiper2-btn .swiper-button-next{width: 36px;height: 36px;background-size: 14px !important;}
    .swiper2-btn .swiper-button-prev:hover, .swiper2-btn .swiper-button-next:hover{background-size: 14px !important;}
    .mySwiper2 .swiper-slide .program-info .btn-buy{width: 100px;height: 36px;line-height: 36px;}
}
@media(max-width:420px){
    .mySwiper2 .swiper-slide img{height: 190px;}
}