* {
    padding: 0;
    margin: 0;
    font-family: 'icomoon';
}

ul,
li {
    list-style: none;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
.sidai{
    margin-top: 8px !important;
    z-index: 1;
}
.back_img {
    /* width: 100%;
    height: 4431px;
    background: url('/zt/2024/1212/images/back.jpg') no-repeat;
    background-size: 100% 100%;
    background-position-y: 800px; */
}

.back_img_top {
    position: relative;
    width: 100%;
    height: 1080px;
    background: url("/zt/2024/1212/images/beijing.jpg") no-repeat;
    background-size: 100% 66%;
    padding-bottom: 27px;
}

.lantern {
    position: absolute;
    top: 80;
    left: 2%;
    z-index: 1;
    height: 350px;
    overflow: hidden;
}
.lantern img {
    width: 200px;
    height: auto;
    animation: beat-left 2s ease infinite 1s;
    clip-path: inset(0px 0px 300px 0px);
} 
.lantern2 img {
    width: 160px;
    animation: beat-right 2s ease infinite 1s !important;
    clip-path: inset(270px 0px 0px 0px);
}  
.lantern4 img{
    width: 100px;
    height: auto;
    animation: beat-left 2s ease infinite 1s;
    clip-path: inset(0px 0px 160px 0px);
}   


.emphasis {
    color: #df0017;
}

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.lantern2 {
    left: 92%;
    animation-delay: 2.5s;
    position: absolute;
    top: 80;
    z-index: 1;
    height: 350px;
    margin-top: -240px;
}
.lantern4{
    left: 56%;
    animation-delay: 2.5s;
    position: absolute;
    top: 80;
    /* z-index: 1; */
    height: 350px;
    margin-top: 40px;
}
.lantern3{
    position: absolute;
    top: 240px;
    right: 8%;
    z-index: 0;
}
.lantern3 img{
    width: 300px;
    animation: beat 2s ease infinite 0s;
}
.bannertext {
    width: 1130px;
    position: relative;
    margin: 0 auto;
}

#flagCanvas{
    position: absolute;
    left: -18%;
    right: 0;
    margin: 0 auto;
}
.botmImg{
    position: absolute;
    bottom: 0;
    top: 0px;
    width: 100%;
    z-index:1;
}
.botmImg img{
    width: 100%;
    height: auto;
}
.botmImg2{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 361px;
    z-index:0;
    background-color:#FFE6BD;
    box-shadow:0px -5px 20px 20px #FFE6BD;
}
.banner2 {
    animation-name: zoomIn;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
}

.banner4 {
    animation-duration: 0.5s;
    animation-iteration-count: 1;
}
.mask{
    position: absolute;
    text-align: center;
    top: 130px;
    cursor: pointer;
    left: -18%;
    right: 0;
    overflow: hidden;
    width: 631px;
    margin: 0 auto;
    -webkit-mask-image: url(/zt/2024/1212/images/hei.png);
    animation-name: zoomIn;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
  
    -webkit-mask-position: center; /* 遮罩图片居中 */
    mask-repeat: no-repeat; /* 标准语法 */
}

.banner3 {
    animation-name: zoomIn;
    animation-duration: 0.7s;
    animation-iteration-count: 1;
    top: 240px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.shan {
    position: absolute;
    -webkit-animation: changeImg 3s ease 0s;
    -o-animation: changeImg 3s ease 0s;
    animation: changeImg 3s ease 0s;
    top: 0;
    width: 30%;
    height: 100%;
    content: "";
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-45deg);
    animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}


@keyframes changeImg {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

@-webkit-keyframes changeImg {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}
@keyframes beat {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(5%);
    } 
    100% {
        transform: translateY(0%);
    } 
}

@keyframes beat-left {
    
    0% {
        transform: translate(0%,0%);
    }
    50% {
        transform: translate(-5%,5%);
    } 
    100% {
        transform: translate(0%,0%);
    } 
}
@keyframes beat-right {
    0% {
        transform: translate(0%,0%);
    }
    50% {
        transform: translate(5%,5%);
    } 
    100% {
        transform: translate(0%,0%);
    } 
}




/* 导航条 */
.navigation-bar{
    position: relative;
    width: 1200px;
    height: 380px;
    margin: 0 auto;
    top: 530px;
    z-index: 1;
}
.box-title{
    width: 100%;
    height: 80px;
    text-align: center;
}
.buypicturescontentBoxItem_rightPrice{
    position: absolute;
    bottom: 10px;
    right: 30px;
    font-size: 40px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.buypicturescontentBoxItem_rightPrice_text{
    font-size: 40px; /* 你可以根据需要调整字体大小 */
    background: linear-gradient(to bottom, #A80000, #fa2205); /* 渐变颜色 */
    -webkit-background-clip: text; /* 将背景裁剪为文本形式 */
    -webkit-text-fill-color: transparent; /* 将文本颜色设置为透明，显示背景渐变 */
}
.buypicturescontentBoxItem_rightPrice_num{
    font-size: 68px; /* 你可以根据需要调整字体大小 */
    background: linear-gradient(to bottom, #A80000, #fa2205); /* 渐变颜色 */
    -webkit-background-clip: text; /* 将背景裁剪为文本形式 */
    -webkit-text-fill-color: transparent; /* 将文本颜色设置为透明，显示背景渐变 */
    font-weight: bold;
    transform: skewX(-10deg);
}
.box-title>a{
    display: inline-block;
    width: 160px;
    height: 60px;
}
.num{ animation: kc infinite 5s 0s;}
.num1{ animation: kc infinite 5s 0.5s;}
.num2{ animation: kc infinite 5s 1s;}
.num3{ animation: kc infinite 5s 1.5s;}
.num4{ animation: kc infinite 5s 2s;}
.num5{ animation: kc infinite 5s 2.5s;}
.num6{ animation: kc infinite 5s 3s;}
.numText span{
    font-size: 18px;
    color: #FFFFFF;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 52%;
    text-align: center;
    transform: translate(-52%, -50%);
    text-shadow: -1px -1px 0 #EF3123, 1px -1px 0 #EF3123, -1px 1px 0 #EF3123, 1px 1px 0 #EF3123;
}
@keyframes kc {
    0%,25%,5%,12.5%,20% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    10% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
    15% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px)
    }
}


/* 限时秒杀 */
.seckill-module{
    width: 100%;
    height: 360px;
    /* background: url('/zt/2024/1212/images/seckill-background.png') no-repeat; */
    /* background-size: 100% 100%; */
    /* background-color: #dc1227; */
    /* background: linear-gradient(to bottom, rgba(255, 89, 71, 1), rgba(226, 53, 49, 1)); */
    background: linear-gradient(to bottom,  rgba(226, 53, 49, 1),rgba(255, 89, 71, 1));
    box-shadow: inset 0 0 30px #FFFFFF;
    border-radius: 80px;
}
.time-text-prompt{
    width: 80%;
    padding: 15px 0;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.promptItem{
    width: 80%;
    padding: 15px 0;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 10px;
}
.left1{
    position: absolute;
    left: 16%;
}
.left2{
    position: absolute;
    left: 51.5%;
}
.left3{
    position: absolute;
    left: 92.5%;
}
.promptItemImg{
    background: url('/zt/2024/1212/images/topBtn.png') no-repeat;
    background-size: 100% 100%;
    width: 122px;
    height: 50px;
    text-align: center;
    line-height: 45px;
    color: #FFFFFF;
    font-size: 14px;
}
.riqi{
    width: 405px;
    text-align: center;
}
.jiagou{
    width: 169px;
    text-align: start;
}
.time-text-prompt > span{
      /* margin-left: 7%; */
      /* margin-right: 6%; */
      color: #FFFFFF;
      font-size: 26px;
  }


.time-text-prompt > span:last-child{
    /* margin-left: 15%; */
} 
.left30{
    left: 18%;
}
.left40{
	left: 29%;
}
.left60{
    left: 53%;
}
.left70{
    left: 62%;
}
.left90{
    left: 94%;
}

.latriqi{
    padding-right: -50px;
}

.second-kill-head{
    width: 100%;
    height: 85px;
    position: relative;
    /* padding-bottom: 20px; */
    /* background-color: #ea4330; */
    border-radius: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.second-kill-head_text{
    color: #FFFFFF;
    font-size: 41px;
    font-weight: bold;
}
.progress-bar{
    width: 80%;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    background-image: -webkit-linear-gradient(top, #f93e3a, #ca0e09, #f93e3a);
    box-shadow: 0px 3px 2px 0px rgba(144, 4, 1, 0.35);
    border-radius: 20px;
}
.myProgress1{
    width: 24%;
    height: 18px;
    border-radius: 20px;
    color: #e92f2c;
    display: flex;
    background-image: -webkit-linear-gradient(top, #f9e6aa, #ff991f, #fe503b);
    box-shadow: 0px 3px 2px 0px rgba(144, 4, 1, 0.35);
    left: -3.5%;
    position: relative;
}
.back-progress-bar{
    /* background: url('/zt/2024/1212/images/icon_timeline.png') no-repeat; */
}
.not-opened-yet{
    width: 100%;
    text-align: center;
}
.nexat {
    width: 20% !important;
    height: 100% !important;
    line-height: 18px !important;
    background: url('/zt/2024/1212/images/icon_timeline.png') no-repeat !important;
    border-radius: 0 20px 20px 0;
    text-align: center !important;
    border-radius: 20px !important;
}
.myProgress {
    width: 70%;
    border-radius: 0 20px 20px 0;
    background-image: -webkit-linear-gradient(top, #f93e3a, #ca0e09, #f93e3a);
    box-shadow: 0px 3px 2px 0px rgba(144, 4, 1, 0.35);
}
.myBar {
    width: 0;
    height: 18px;
    line-height: 18px;
    background: url('/zt/2024/1212/images/icon_timeline.png') no-repeat;
    text-align: center;
    color: white;
    border-radius: 20px;
    transition: all 2s linear;
    -webkit-transition: all 2s linear;
}
.circle{
    width: 100px;
    height: 100px;
    position: absolute;
    border-radius: 50%;
    background: url(/zt/2024/1212/images/liangdian.png) no-repeat;
    background-size: 100% 100%;
    top: -40px;
}
.reduce{
    position: absolute;
    width: 100px;
    height: 100px;
    box-shadow: 0 5px 20px rgba(241, 196, 15, .5);
    top: -10px;
    right: 0;
    border-radius: 50%;
    background: url('/zt/2024/1212/images/wfe.png') no-repeat;
}
.seckill-book{
    width: 100%;
    height: 362px;
    margin: 0 auto;
    display: flex;
    border-radius: 80px;
    /* background-color: #f0d7a6; */
    background: linear-gradient(to bottom, rgba(244, 209, 161, 1), rgba(228, 55, 50, 1));

}

.seckill-book-back{
    height: 100%;
    position: relative;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.seckill-book-back>div>a{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.seckill-book-back div:first-child{
    width: 100%;
    height: 100%;
	
}
.seckill-book-back div:first-child img{
    width: 101%;
    height: 106%;
}
.seckill-book-next > a > img{
    position: absolute;
    width: 120px;
    bottom: 20px;
    right: 10px;
}

.seckill-book-back:hover{
    transform: translate3d(0, -5px, 0);
}
.flash-sale{
    position: absolute;
    right: 0;
    top: 0;
}
.seckill-book-box{
    width: calc(92% - 68px);
    margin-left: 4%;
    margin-top: 46px;
    height: 210px;
    /* background-color: #FFE6BD; */
    background: linear-gradient(to bottom, rgb(250, 247, 228),rgba(253, 251, 218, 1) );

    border-radius: 80px;
    padding: 28px 34px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.seckill-book-boxItem{
    width: 44%;
    height: 173px;
    /* background-color: #b30308; */
    padding: 12px 20px 13px 20px;
    background: linear-gradient(to bottom, rgba(255, 254, 248, 1), rgba(255, 246, 195, 1));
    border-radius: 31px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border:rgba(228, 56, 52, 1) 5px solid;
    margin-bottom: 20px;
    box-shadow: rgba(194, 26, 0, 0.54) 0px 10px 5px;   
    cursor: pointer;
}
.seckill_book_content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: 66%;
}
.seckill_img{
    width: 139px;
    height: 125px;
    position: relative;
}
.seckill_img_img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.seckill-book-btn{
    /* margin-bottom: 13px; */
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0px;
    border-radius: 31px;
    color: #FFFFFF;
    /* background: url('/zt/2024/1212/images/miaoshabtn.png') no-repeat;
    background-size: 100% 120%; */
}
.seckill-book-btn1{
    display: flex;   
    color: #EB251A;
    font-size: 30px;
    font-weight: bold;
}
.seckill-book-btn2{
    font-size: 29px;
    font-weight: bold;
    /* text-shadow: rgba(255, 106, 6, 1) 5px; */
    text-shadow: -2px -2px 2px  rgba(255, 106, 6, 1),-2px -2px 2px   rgba(255, 106, 6, 1),-2px -2px 2px  rgba(255, 106, 6, 1),-2px -2px 2px   rgba(255, 106, 6, 1);
}
.seckill-book-btn3{
    width: 118px;
    height: 46px;
    text-align: center;
    line-height: 41px;
    font-size: 16px;
    border-radius: 20px;
    /* background: linear-gradient(0deg, #a70303 0%, #FD3D1D 100%);
    box-shadow: 4px 10px 9px 0px rgba(255,184,42,0.39); */
    background: url('/zt/2024/1212/images/dingbuBtn.png') no-repeat;
    color: #FFFFFF;
    background-size: 100% 115%;
    cursor: pointer;
}
.seckill-book-btn1t{
    text-align: end;
}
.topleft_img{
    width: 224px;
    height: auto;
    position: absolute;
    bottom: -900px;
    left: -260px;
}









/* 全天购 */
.all-day-shopping-module{
    width: 1200px;
    padding: 0 360px;
    /* height: 614px; */
    margin: 0 auto;
    padding-top: 110px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom,  rgb(255, 201, 181),rgba(249, 62, 70, 1));
}
.all-day-othershopping-module{
    width: 1200px;
    padding: 0 360px;
    /* height: 614px; */
    margin: 0 auto;
    padding-top: 110px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom,  rgba(233, 233, 233, 1),rgba(255, 236, 205, 1),rgba(248, 243, 235, 1));
}
.all-day-shopping-module2{
    width: 1200px;
    padding: 0 360px;
    /* height: 614px; */
    margin: 0 auto;
    padding-top: 110px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom,  rgb(250, 143, 143),rgba(255, 236, 205, 1));
}
.content-picture-item{
    width: 1144px;
    height: 533px;
    border-radius: 80px;
    background: #b30308;
}
.content-picture-item img{
    width: 100%;
    height: 100%;
}
.all-day-shopping-module3{
    background: linear-gradient(to bottom,rgba(255, 236, 205, 1),rgb(247, 229, 229));
   width: 1200px;
   padding: 0 360px;
   /* height: 614px; */
   margin: 0 auto;
   padding-top: 110px;
   position: relative;
   overflow: hidden;
}
.buy-pictures{
    position: relative;
    width: 100%;
    height: 0;
    text-align: center;
    z-index: 4;
    margin-top: -82px;
    line-height: 66px;
}
.buy-pictures span{
    position: absolute;
    top: -63%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 36px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    text-shadow: -5px -5px 3px rgba(255, 106, 6, 1), 5px -5px 3px rgba(255, 106, 6, 1), -5px 5px 3px rgba(255, 106, 6, 1), 5px 5px 3px rgba(255, 106, 6, 1);
    z-index: 5;
}
.buy-pictures img{
    width: 420px !important;
    position: absolute;
    top: -70%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 5;
}
.buy-pictures-content{
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    /* background: url('/zt/2024/1212/images/module-back.png') no-repeat; */
    /* background-color: #b30308; */
    background: linear-gradient(to bottom,  rgba(226, 53, 49, 1),rgba(255, 89, 71, 1));
    box-shadow: inset 0 0 30px #FFFFFF;
    border-radius: 80px;
    width: 1210px;
    /* height: 780px; */
    height: 645px;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-top: -64px;
    box-sizing: border-box;
    padding: 90px 40px 40px 40px;
    z-index: 3;
}
.buy-pictures-contentTitle{
    width: calc(100% + 32px);
    height: 55px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    font-size: 19px;
    font-weight: bold;
    margin-left: -40px;
    background: linear-gradient(to bottom,  rgba(255, 254, 248, 1),rgba(253, 251, 218, 1));
    border-top-left-radius: 48.5px;
    border-top-right-radius: 48.5px;
    /* box-shadow: inset 0 8px 12px rgba(153, 19, 0, 0.54); */
    /* box-shadow: 0 15px 15px  rgba(113, 15, 2, 0.54); */
    box-shadow: 0px 7px 10px 5px rgba(119, 15, 1, 0.736);
    margin-bottom: -5px;
    position: relative;
    z-index: 999;
}
.buy-pictures-contentTitleItem{
    background: url(/zt/2024/1212/images/yaoshizhicheng_btn.png) no-repeat;
    background-size: 100% 300%;
    background-position: center 94%;
    width: 164px;
    display: flex;
    justify-content: center;
    height: 59px;
    line-height: 55px;
    border-radius: 21px;
    text-shadow: -1px -1px 0 #EF3123, 1px -1px 0 #EF3123, -1px 1px 0 #EF3123, 1px 1px 0 #EF3123;
    cursor: pointer;
}
.buy-pictures-contentTitleItemXuanZhong{
    background: url(/zt/2024/1212/images/yaoshizhicheng_btn.png) no-repeat;
    background-size: 100% 290%;
    color: #FFFFFF;
}
.buy-pictures-contentBox{
    width: 100%;
    height: 629px;
    
}


.content-picture111{
    width: 100%;
    height: 100%;
    border-radius: 48.5px;
    margin-top: -30px;
    /* background-color: #999; */
}
.content-picture111Item{
    width:96%;
    height: 55px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    font-size: 19px;
    font-weight: bold;
    /* margin-left: -24px; */
    background: linear-gradient(to bottom,  rgba(255, 254, 248, 1),rgba(253, 251, 218, 1));
    border-top-left-radius: 48.5px;
    border-top-right-radius: 48.5px;
    /* box-shadow: inset 0 8px 12px rgba(153, 19, 0, 0.54); */
    /* box-shadow: 0 15px 15px  rgba(113, 15, 2, 0.54); */
    box-shadow: 0px 7px 10px 5px rgba(119, 15, 1, 0.736);
    margin-bottom: -5px;
    position: relative;
    z-index: 999;
}
.content_picture111ItemContent{
    width: 100%;
    height: calc(100% - 55px);
    position: relative;
    z-index: 1;
}
.buy_pictures_contentItemBottm{
    width: calc(100% - 113px);
    height: 218px;
    background: linear-gradient(to bottom,  #FF9751 ,#E63211 , #CD080F );
    border-radius: 30px 30px 80px 80px;
    position: absolute;
    bottom: -260px;
    left: 0;
    z-index: 2;
    padding: 29px 70px  41px 43px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.buy_pictures_contentItemleft{
    color: #FFFFFF;
    font-size: 39px;
}
.buy_pictures_contentItemlefttop{
    transform: skewX(-10deg);
    margin-bottom: 50px;
}
.buy_pictures_contentItemleftbttom{
    display: flex;
    align-items: center;
}
.buy_pictures_mianfei{
    background-color: #FFFFFF;
    border-radius: 20px 0 20px 0;
    color: #E63211;
    font-size: 26px;
    margin-right: 30px;
    height: 48px;
    line-height: 48px;
    width: 144px;
    text-align: center;
    margin-top: 10px;
}
.buy_pictures_contentItemrighttop{
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: absolute;
    right: 74px;
    top: -10px;
    transform: skewX(-10deg);
}
.buy_pictures_contentItemrighttop1{
   
    font-size: 26px;
    margin-bottom: 30px;
}
.buy_pictures_contentItemrighttop11{
    width: 100px;
    text-align: end;
}
.buy_pictures_contentItemrighttop2{
    font-size: 130px;
    font-weight: bold;
}
.buy_pictures_contentItemrightbttom{
    position: absolute;
    bottom: 39px;
    right: 70px;
    width: 400px;
    height: 83px;
    line-height: 64px;
    text-align: center;
    color: #FFFFFF;
    font-size: 33px;
    background: url(/zt/2024/1212/images/lastBtn.png) no-repeat;
    background-size: 100% 110%;
}
.buy_pictures_wenzi{
    transform: skewX(-10deg);
}
.yaoshi_Img{
    position: absolute;
    left: -50px;
    top: -50px;
}
.content-picture{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.content-picturetwo{
    height: calc(100% - 64px) !important;
}
.buy-shopping{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
}
.double_picture_back{
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 20px;
}
.shopping-module{
    height: 420px;
    width: 380px;
    border-radius: 30px;
    background: #b30308 !important;
    transition:all 0.2s linear;
    -webkit-transition:all 0.2s linear;
}
.shopping-module:hover {
    transform: translate3d(0, -5px, 0);
}
.shopping-module > a {
    display: inline-block;
}
.swiper-button-prev-shopping{
    width: 50px !important;
    height: 70px !important;
    background: url('/zt/2024/1212/images/left-buttom.png') no-repeat !important;
    background-size: 100% 100% !important;
}
.swiper-button-next-shopping{
    width: 50px !important;
    height: 70px !important;
    background: url('/zt/2024/1212/images/right-bottom.png') no-repeat !important;
    background-size: 100% 100% !important;
}




/* 书课大礼包 */
.all-day-booklesson-module{
    width: 1200px;
    padding: 0 360px;
    /* height: 614px; */
    margin: 0 auto;
    padding-top: 110px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom,  rgba(249, 62, 70, 1),rgba(234, 8, 82, 1));
}
.book-package{
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    background: url(/zt/2024/1212/images/module-back.png) no-repeat;
    width: 1200px;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-top: -64px;
    box-sizing: border-box;
    padding: 90px 20px 25px 20px;
    z-index: 3;
}
.book-package-model{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-image: linear-gradient(to right,#ffe2b8,#ffdba5,#feca7c)
}
.buy-booklesson-content{
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    background: url(/zt/2024/1212/images/module-back.png) no-repeat;
    width: 1210px;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-top: -64px;
    box-sizing: border-box;
    padding: 90px 40px 40px 40px;
    z-index: 3;
}
.class_buy_book_nav {
    height: 78px;
    width: 100%;
    display: flex;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 10px;

}

.class_buy_book_nav span {
    display: inline-block;
    position: relative;
    overflow: hidden;
    flex: 1;
    line-height: 75px;
    text-align: center;
    color: #FFF;
    font-weight: 700;
    font-size: 20px;
    background: url("/zt/2024/1212/images/red-back.png") no-repeat center center;
}

.class_buy_book_nav span:hover {
    background: url('/zt/2024/1212/images/blue-back.png') no-repeat center center;
    color: #FFFFFF;
}

.class_buy_book_nav span:last-child::after {
    width: 0;
}
.class_buy_book_nav .item_favorable_change {
    background: url('/zt/2024/1212/images/blue-back.png') no-repeat center center;
    color: #FFFFFF;
}
.book_package_detail{
    width: 100%;
    height: 440px;
    margin: 0 auto;
}
.book_package_detail_block{
    width: 100%;
    height: 100%;
    background: #eaeaea;
    display: none;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.book_package_detail_block img{
    width: 100%;
    height: 100%;
}
.other_preferential_buy_price{
    position: absolute;
    width: 130px;
    height: 50px;
    border-radius: 30px;
    right: 6%;
    bottom: 24%;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    font-style: oblique;
    background: url('/zt/2024/1212/images/book-purchase-immediately.png') no-repeat center center;
    text-align: center;
    background-size: 110% 110%;
    line-height: 50px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.other_preferential_buy_price:hover{
    transform: translate3d(0,-5%,0);
    
}








/* 单品优惠 */
.item-discount-content{
    /* position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    background: url(/zt/2024/1212/images/module-back.png) no-repeat;
    width: 1170px;
    height: 552px;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-top: -64px;
    box-sizing: border-box;
    padding: 79px 20px 23px 20px;
    z-index: 3; */
}
.item_favorable_nav_same {
    width: 191px;
    height:100%;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-sizing: border-box;
    cursor: pointer;
    align-items: center;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    background: linear-gradient(rgba(253, 251, 218, 1),rgba(255, 254, 248, 1) );
}
.yaoshi_content{
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(#FFFFFF,#FDD385 );
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
}
.yaoshi_content_Img{
    position: absolute;
    top: 0%;
    left: -17%;
    width: 118%;
    height: 100%;
    border-radius: 80px;
}
.zhiyeyaoshi_title{
    position: absolute;
    top: 30px;
    left: 215px;
    color: #E60212;
    font-size: 52px;
    transform: skewX(-10deg);
    display: inline-block;
    z-index: 1;
}
.yaoshi_content_text{
    position: absolute;
    top: 27%;
    right: 120px;
    transform: translate(0, -35%);
    color: #FF4271;
    font-size: 39.46px;
    font-weight: bold;
    text-shadow: #FFE5B6 9;
    text-shadow: 
    0 0 10px white, /* 第一个白色阴影，小模糊半径 */
    0 0 15px white, /* 第二个白色阴影，中等模糊半径 */
    0 0 17.5px white, /* 第三个白色阴影，较大模糊半径 */
    0 0 20px rgb(241, 185, 102), /* 第一个渐变色阴影，小模糊半径 */
    0 0 22.5px rgb(247, 150, 4), /* 第二个渐变色阴影，中等模糊半径 */
    0 0 25px rgb(244, 149, 6); /* 第三个渐变色阴影，较大模糊半径 */
}
.lijigoumai{
    position: absolute;
    bottom: 105px;
    right: 113px;
    font-size: 50px;
    color: #FFFFFF;
    font-weight: bold;
    z-index: 1;
}
.huodngjia{
     position: absolute;
     bottom: 0px;
     right: 20px;
     font-size: 40px;
     font-weight: bold;
     background: linear-gradient(to bottom, rgba(255, 102, 49, 1), rgba(168, 0, 0, 1));
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     color: transparent;
     display: inline-block;
     z-index: 1;
}
.huodngjia span{
    font-size: 71px;
    font-weight: bold;
}
.yaoshi_content_pricebox{
    position: absolute;
    top: 43%;
    right: 110px;
    transform: translate(0, -48%);
    color: #E60212;
    width: 450px;
    height: 130px;
    float: left;
    transform: skewX(-5deg);
    /* display: inline-block; */
}
.yaoshi_content_price{
    display: flex;
    justify-content: end;
    align-items: center;
}
.yaoshi_content_price_left{
    font-size: 30px;
    text-align: end;
    margin-right: 6px;
    margin-top: 50px;
}
.yaoshi_content_price_right{
    font-size: 126px;
    text-align: unset;
}
.item_favorable_nav_same span {
    display: inline-block;
    position: relative;
    overflow: hidden;
    line-height: 78px;
    text-align: center;
    width: 160px;
    height: 70px;
    line-height: 61px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    background: url("/zt/2024/1212/images/yaoshizhicheng_btn.png") no-repeat center center;
    /* background-size: 250% 100%; */
    background-size: 100% 250%;
    background-position: center 104%;
    margin: 30px 0;
}
.yaoshi{
    box-shadow: 5px 2px 9px 5px rgba(119, 15, 1, 0.736);
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yaoshi_content_btn{
    background: url(/zt/2024/1212/images/yaoshi_content_btn.png) no-repeat center center;
    background-size: 100% 100%;
    width: 774px;
    position: absolute;
    bottom: 20px;
    height: 97px;
    right: 121px;
    text-align: center;
    color: #FFFFFF;
    font-size: 33px;
    line-height: 66px;
}
/* .item_favorable_nav_same span:hover {
    background: url('/zt/2024/1212/images/blue-back.png') no-repeat center center;
    background-size: 100% 100%;
    color: #FFFFFF;
} */
.item_favorable_detail_item {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}
.item_book_detail_item{
    
}
.item_favorable_detail_one{
    height: 80% !important;
}
.item_favorable_detail_littlered {
    position: absolute;
    top: 86px;
    /* left: 173px; */
    left: 173px;
    width: 155px;
    height: 157px;
    z-index: 1;
}
.item_favorable_detail_littlered_detail {
    box-sizing: border-box;
    position: absolute;
    top: 204px;
    left: 130px;
    padding-top: 26px;
    width: 243px;
    height: 207px;
    text-align: center;
    background: url(/zt/2021/1212/images/pink.png) no-repeat 100%;
}
.item_favorable_detail_littlered_detail p {
    margin-bottom: 10px;
}
.book_package_detail_red {
    color: #e80017;
    font-weight: 700;
    font-size: 28px;
    margin-top: 10px;
}
.price_color b {
    font-size: 30px;
    color: #e80218;
}
.buy_now {
    background: #fc4341;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 12px;
    background-image: linear-gradient(to right, #ff6666, #ff3333);
    width: 100px;
}
.item_favorable_detail_littleNet {
    position: absolute;
    top: 59px;
    left: 447px;
    width: 155px;
    height: 157px;
    z-index: 1;
}
.item_favorable_detail img {
    height: 100%;
}
.item_favorable_detail_littleNet_detail {
    position: absolute;
    top: 185px;
    left: 422px;
    width: 295px;
    padding-top: 33px;
    height: 233px;
    box-sizing: border-box;
    text-align: center;
    background: url(/zt/2021/1212/images/yellow.png) no-repeat;
}
.item_favorable_detail_littleskill {
    position: absolute;
    top: 86px;
    left: 770px;
    width: 155px;
    height: 157px;
    z-index: 1;
}
.item_favorable_detail_littleskill_detail {
    position: absolute;
    top: 203px;
    left: 767px;
    width: 243px;
    height: 207px;
    padding-top: 30px;
    box-sizing: border-box;
    text-align: center;
    background: url(/zt/2021/1212/images/pink2.png) no-repeat;
}
.item_favorable_detail {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    border-radius: 80px;
    overflow: hidden;
    background: linear-gradient(#ffe2b8,#ffdba5,#feca7c );;
}
.item_book_detail_item{
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
    border-radius: 80px;
    overflow: hidden;
    background: linear-gradient(#ffe2b8,#ffdba5,#feca7c );;
}
.item_favorable_nav_same .item_favorable_change {
    background: url(/zt/2024/1212/images/yaoshizhicheng_btn.png) no-repeat;
    /* clip-path: inset(0px 0px 0px 0px); */
    background-size: 100% 250%;
    color: #FFFFFF;
}



/* 买课赠书 */
.buy-free-books-module {
    width: 1200px;
    height: 662px;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}
.class_buy_book_detail {
    margin: 0 14px;
    height: 380px;
    border-radius: 10px;
}
.class_buy_book_detail_item {
    width: 100%;
    height: 100%;
    display: none;
}
.buy-free-books-but{
    position: absolute;
    width: 110px;
    height: 38px;
    border-radius: 30px;
    right: 6%;
    bottom: 24%;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    font-style: oblique;
    background: url(/zt/2024/1212/images/book-purchase-immediately.png) no-repeat center center;
    text-align: center;
    background-size: 110% 110%;
    line-height: 38px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.buy-free-books-but:hover{
    transform: translate3d(0,-5%,0);
}

.course-purchase-module{
    width: 100%;
    height: 100%;
    background: #eaeaea;
    display: none;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}
.course-purchase-module img{
    width: 100%;
    height: 100%;
}



/* 其他优惠活动 */
.item-discount-content {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    /* background: url('/zt/2024/1212/images/module-back.png') no-repeat; */
    /* background-color: #b30308; */
    background: linear-gradient(to bottom,  rgba(226, 53, 49, 1),rgba(255, 89, 71, 1));
    box-shadow: inset 0 0 30px #FFFFFF;
    border-radius: 80px;
    width: 1210px;
    height: 780px;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-top: -64px;
    box-sizing: border-box;
    padding: 90px 40px 40px 40px;
    z-index: 3;
}
.item-discount-contenttwo{
    height: 720px !important;
}
.item_discount_detail{
    position: relative;
    float: left;
    width: 990px;
    height: 100%;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    overflow: hidden;
}
.item_discount_nav_same {
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}
.other_item_favorable_detail{
    position: relative;
}
.other-buy-now{
    position: absolute;
    width: 130px;
    height: 50px;
    border-radius: 30px;
    right: 4%;
    bottom: 24%;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    font-style: oblique;
    background: url(/zt/2024/1212/images/book-purchase-immediately.png) no-repeat center center;
    text-align: center;
    background-size: 110% 110%;
    line-height: 50px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
.pharmacy-now-one{
 position: absolute;
 width: 130px;
 height: 50px;
 border-radius: 30px;
 right: 4%;
 bottom: 24%;
 color: #FFF;
 font-size: 16px;
 font-weight: 600;
 font-style: oblique;
 background: url(/zt/2024/1212/images/book-purchase-immediately.png) no-repeat center center;
 text-align: center;
 background-size: 110% 110%;
 line-height: 50px;
 transition: all 0.2s linear;
 -webkit-transition: all 0.2s linear;
}
.pharmacy-now-two{
   position: absolute;
   width: 130px;
   height: 50px;
   border-radius: 30px;
   right: 4%;
   bottom: 24%;
   color: #FFF;
   font-size: 16px;
   font-weight: 600;
   font-style: oblique;
   background: url(/zt/2024/1212/images/book-purchase-immediately.png) no-repeat center center;
   text-align: center;
   background-size: 110% 110%;
   line-height: 50px;
   transition: all 0.2s linear;
   -webkit-transition: all 0.2s linear;
}

/* 盲盒大礼包 */
.blind-box-head{
    width: 100%;
    height: 80px;
    display: flex;
    background: #ea4330;
    justify-content: center;
    align-items: center;
}
.four-products{
    flex: 1;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.content-picture{
    width: calc(100% + 5px);
    height: calc(100% - 24px);
    padding: 52px 37.5px;
    border-radius: 80px;
    background: linear-gradient(to bottom, rgba(244, 209, 161, 1), rgba(228, 55, 50, 1));
    margin-left: -40px;
    display: flex;
}
.content-picture2{
    float: left;
}
.four-products div:first-child{
    font-size: 22px;
}
.four-products div:last-child{
    font-size: 14px;
}
.products-line{
    height: 50px;
    border: 1px solid #ffd79a;
}
.products-back{
    background: url(/zt/2024/1212/images/products-back.png) no-repeat;
    background-size: 100% 100%;
    height: 92px;
    margin-top: 10px;
    color: #ea4330;
    z-index: 10;
}
.products-back div:first-child{
    margin-top: 10px;
}
.blind-box-carousel{
    width: 100%;
    height: 360px;
    display: flex;
    overflow: hidden;
}
.drawing-of-blind-box{
    height: 360px;
    width: 728px;
}
.blind-box-diagram{
    width: 408px;
    height: 360px;
}
.blind-box-diagram img{
    width: 100%;
}
.swiper_center_img_blind{
    width: 100%;
    height: 360px;
    margin-top: 0;
}
.swiper-container-horizontal{
    width: 100%;
    height: 100%;
}
.swiper_center_img_blind img{
    width: 100%;
    height: 100%;
    margin-top: 0;
}
.blind-box-module{
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0);
    background: url(/zt/2024/1212/images/module-back.png) no-repeat;
    width: 1178px;
    height: 534px;
    background-size: 100% 100%;
    margin: 0 auto;
    margin-top: -64px;
    box-sizing: border-box;
    padding: 74px 20px 21px 20px;
    z-index: 3;
}
.blind-box-picture{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.prototype-of-blind-box-module{
    width: 100%;
    height: 360px;
    display: flex;
    overflow: hidden;
}
.title_gift {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    color: #fff;
    line-height: 50px;
    padding-left: 20px;
}






/* 弹窗 */
.pop-up-module{
    width: 250px;
    position: fixed;
    z-index: 70;
    right: -20px;
    top: 40%;
    margin-top: -245px;
    margin-right: 0;
}
.pop-up-header{
    width: 227px;
    height: 145px;
    /* background: url('/zt/2024/1212/images/shang.png') no-repeat; */
    z-index: 2;
}
.pop-up-body{
    width: 227px;
    height: 610px;
    background: url('/zt/2024/1212/images/xuanfuchuang.png') no-repeat;
    z-index: 1;
    position: absolute;
    background-size: 100% 100%;
    top: -30px;
}
.pop-up-center{
    position: relative;
        z-index: 1;
        width: 111px;
        margin: 0 auto;
        height: 411px;
        padding-top: 12px;
        /* background: url(/zt/2024/1212/images/pop-up-center.png) no-repeat; */
        background-size: 100% 100%;
        margin-left: 60px;
}
.nav_modular{
    display: block;
    width: 90px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin: 0 auto 10px;
    background: url('/zt/2024/1212/images/default-back.png') no-repeat;
    background-size: 100% 100%;
}
.nav_modular:hover{
    background: url('/zt/2024/1212/images/suspension-back.png') no-repeat;
    color: #fff;
    background-size: 100% 100%;
}
.pop-up-center-suspension{
    background: url('/zt/2024/1212/images/suspension-back.png') no-repeat;
    color: #fff;
    background-size: 100% 100%;
}
.top_half{
    cursor: pointer;
    width: 90px;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 20px;
}
.top_half div:first-child {
    width: 0;
    height: 0;
    border-bottom: 20px solid #f0d7a6;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    display: inline-block;
}
.top_half p {
    font-size: 16px;
    color: #f0d7a6;
}
.pop-up-footer{
    position: absolute;
    left: 18px;
    z-index: 2;
    top: 250px;
    width: 32px;
    height: 60px;
    background: url('/zt/2024/1212/images/narrow-btn-left.png') no-repeat;
}
.pop-up-module-fa{
    background: url('/zt/2024/1212/images/narrow-btn-right.png') no-repeat;
}
.pop-up-module-fan{
    right: -190px;
}

html,body{
    overflow-y: initial !important ;
}

.buy-pictures-contentBoxItem{
    width: calc(100% + 80px);
    margin-left: -40px;
    height: 629px;
    position: relative;   
}
.yishizigeqiehuan{
    display: none;
}
.buypicturescontentBoxItem_title{
    position: absolute;
    right: 183px;
    top: 46px;
    font-size: 50px;
    background: linear-gradient(to bottom, rgba(255, 102, 49, 1), rgba(168, 0, 0, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    display: inline-block; 
    font-weight: bold;
}
.buypicturescontentBoxItem_active{
    position: absolute;
    right: 126px;
    top: 168px;
    width: 593px;
    height: 154px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 2px 6px 6px rgba(122, 11, 132, 0.27);
}
.buypicturescontentBoxItem_activeText{
    display: flex;
    margin: 28px 0;
}
.buypicturescontentBoxItem_activeText_img{

}
.buypicturescontentBoxItem_activeText_img img{
    width: 51px;
    height: 38px;
    background-size: 100% 100%;
    margin-right: 24px;
}
.buypicturescontentBoxItem_activeText_text{
    color: rgba(180, 14, 7, 1);
    font-size: 16px;   
}
.buypicturescontentBoxItem_activeText_text span{
    color: rgb(119, 97, 90);
    font-size: 13.46px;
}
.buypicturescontentBoxItem_price{
    position: absolute;
    left: 60px;
    bottom: 36px;
    color: rgb(218, 213, 208);
    font-size: 22px;
    z-index: 9;
    transform: skewX(-10deg);
}
.buypicturescontentBoxItem_price img{
  
}
.buypicturescontentBoxItem_dayprice{
    position: absolute;
    left: 552px;
    bottom: 80px;
    color: #FFFFFF;
    font-size: 22px;
    z-index: 9;
}
/* .lazy{
    width: 100%;
    height: auto;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
} */
.twotwoImg{
    width: 103.5%;
    height: auto;
    position: absolute;
    bottom: -61px;
    left: -17px;
}
.show{
    display: none;
}
.seckill-book-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.seckill-book-contentTitle{
    color: rgba(254, 72, 51, 1);
    font-size: 26px;
    font-weight: bold;
}
.seckill-book-contentText{
    color: rgba(255, 117, 72, 1);
    font-size: 18px;
    font-weight: bold;
    margin-top: 7px;
}
.seckill-book-contentImg{
    width: 205px;
    height: 184px;
    margin-top: 16px;
}
.seckill-book-contentImg img{
    width: 205px;
    height: 184px;
    position: static;
}
.buy_pictures_contentItemImg{
    width: 100%;
    height: 333px;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 0;
    background-color: beige;
}
.weisheng_img{
    width: 100%;
    height: 333px;
}
