 html,
 body {
     padding: 0;
     margin: 0;
     background-color: #fff;

 }

 [v-cloak] {
     display: none;
 }

 #appMain {
     min-height: 100vh;
     background-image: url('../../images/2026/convention/bg.jpg');
     background-size: cover;
     background-position: top left;
 }

 img {
     display: block;
 }

 .w1200 {
     width: 1214px;
     margin: 0 auto;
 }

 .content .bannerBox {
     position: relative;
 }
.content .bannerBox .btnBox {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translate(-50%,0);
    display: flex;
    align-items: center;
}
.content .bannerBox .btnBox .btn {
    width: 1.6rem;
    margin-left: .15rem;
    cursor: pointer;
}
 .content .bannerBox .img {
     width: 100%;
 }

 .content .titleTop {
     display: flex;
     justify-content: center;
     align-items: center;
     padding:2.5rem 0 .5rem 0;
 }

 .content .titleTop .i {
     width: .58rem;
 }

 .content .titleTop .tBox {
     margin: 0 .1rem;
 }

 .content .titleTop .tBox .t {
     font-size: .36rem;
     font-weight: 500;
     background: linear-gradient(180deg, #222222 76%, rgba(76, 103, 252, 0.1) 108%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     text-fill-color: transparent;
 }

 .content .titleTop .tBox .line {
     font-size: .16rem;
     background: linear-gradient(270deg, #2EB2FD 0%, #671FFA 100%);
     color: #fff;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     height: .3rem;
     margin-top: .06rem;
     border-radius: 100rem;
 }

 .content .timeBox {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .content .timeBox .time {
     font-size: .24rem;
     color: #3A87E8;
     margin: 0 .4rem;
     padding: .1rem .8rem;
     border-radius: 100rem;
     border: 1px solid #3A87E8;
     box-sizing: border-box;
     cursor: pointer;
     -ms-overflow-style: none;
     /* IE/Edge */
     /* 移除容器的点击高亮 */
     -webkit-tap-highlight-color: transparent;
     tap-highlight-color: transparent;
 }

 .content .timeBox .time.on {
     background: #3A87E8;
     color: #fff;
 }

 .content .timeList {
     padding: .5rem 0;
 }

 .content .timeList .listItem {
     margin-bottom: .3rem;
 }

 .content .timeList .listItem .title {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-bottom: .4rem;
 }

 .content .timeList .listItem .title .t {
     font-size: .26rem;
     position: relative;
     padding-left: .2rem;
     font-weight: 500;
 }

 .content .timeList .listItem .title .t::after {
     content: '';
     position: absolute;
     top: 50%;
     transform: translate(-50, 0%);
     left: 0;
     width: .08rem;
     height: .08rem;
     background: #3A87E8;
 }

 .content .timeList .listItem .labelBox {
     display: flex;
     align-items: center;
     margin-bottom: .18rem;
 }

 .content .timeList .listItem .labelBox .lab {
     font-size: .16rem;
     flex: 1;
 }

 .content .timeList .listItem .labelBox .time {
     flex: 0 0 20%;
     padding: 0 .8rem 0 0;
 }

 .content .timeList .listItem .infoBox {
     display: flex;
     justify-content: center;
     align-items: center;
     background: #FAFDFF;
     border: solid 1px #DCEAFB;
     border-radius: .08rem;
     overflow: hidden;

 }

 .content .timeList .listItem .infoBox .item {
     flex: 1;
     display: flex;
     align-items: center;
     position: relative;
     height: .84rem;
     padding-right: .4rem;
 }

 .content .timeList .listItem .infoBox .time {
     flex: 0 0 20%;
     padding: 0 .4rem;
 }

 .content .timeList .listItem .infoBox .time::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 70%;
     height: 100%;
/*     background: #DCEAFB;*/
border-right: 1px #DCEAFB solid;
 }

 .content .timeList .listItem .infoBox .item .t {
     font-size: .16rem;
     font-weight: 500;
     position: relative;
     z-index: 9;
 }

 .content .timeList .listItem .infoBox .item .i {
     width: .24rem;
     margin-right: .1rem;
     position: relative;
     z-index: 9;
 }

 .content .timeList .listItem .textContent {
     margin-top: .25rem;
     border-radius: .2rem;
     overflow: hidden;
     box-sizing: border-box;
     position: relative;
     background: #fff;
     box-shadow: 0px 4px 162px 0px rgba(0, 0, 0, 0.04);
 }

 .content .timeList .listItem .textContent::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: inherit;
     padding: 2px;
     background: linear-gradient(312deg, #3A87E8 7%, rgba(58, 135, 232, 0) 52%, #3A87E8 99%);
     -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     -webkit-mask-composite: xor;
     mask-composite: exclude;
     pointer-events: none;
 }

 .content .timeList .listItem .textContent img {
     width: 90%;
     margin: auto;
 }

  .content .timeList .msgTip {
     font-size: .16rem;
     color: #9E9E9E;
     text-align: right;
 }

 @media screen and (max-width: 700px) {
     .w1200 {
         width: 100%;
     }

     .content .titleTop {
         padding: 1.75rem 0 .75rem 0;
     }

     .content .titleTop .i {
         width: .7rem;
     }

     .content .titleTop .tBox .t {
         font-size: .4rem;
         text-align: center;
     }

     .content .titleTop .tBox .line {
         font-size: .2rem;
         height: .35rem;
     }

     .content .titleTop .tBox {
         margin: 0 .12rem;
         flex: 0 0 35%;
     }

     .content .timeBox .time {
         font-size: .28rem;
         padding: .06rem .5rem;
         margin: 0 .14rem;
     }

     .content .timeList .listItem {
         padding: 0 .3rem;
     }

     .content .timeList .listItem .title .t {
         font-size: .36rem;
         padding-left: .3rem;
     }

     .content .timeList .listItem .title .t::after {
         width: .12rem;
         height: .12rem;
     }

     .content .timeList .listItem .labelBox .lab {
         font-size: .26rem;
     }

     .content .timeList .listItem .labelBox .time {
         flex: 0 0 35%;
         padding-right: .4rem;
     }

     .content .timeList .listItem .infoBox {
         flex-wrap: wrap;
         justify-content: unset;
         align-items: unset;
     }

     .content .timeList .listItem .infoBox .item {
         height: auto;
         padding: .15rem 0;
         min-height: .85rem;
         justify-content: center;
     }

     .content .timeList .listItem .infoBox .item:nth-child(2) {
         order: 1;
         flex: 0 0 calc(100% - .2rem);
         margin-right: 0;
         padding-right: 0;
         padding-left: .2rem;
         justify-content: flex-start;
         min-height: .7rem;
         border-top: solid 1px #DCEAFB;
     }

     .content .timeList .listItem .infoBox .item:last-child {
         padding-left: .2rem;
         padding-right: .2rem;
         justify-content: flex-start;
     }

     .content .timeList .listItem .infoBox .item .t {
         font-size: .26rem;
     }

     .content .timeList .listItem .infoBox .item .i {
         width: .32rem;
     }

     .content .timeList .listItem .infoBox .time {
         flex: 0 0 35%;
     }

     .content .timeList .listItem .infoBox .time::after {
         width: 100%;
     }

     .content .timeList .listItem .textContent img {
         width: 100%;
     }

     .content .timeList .listItem .labelBox .wap {
         display: none;
     }
       .content .timeList .msgTip {
        font-size: .24rem;
        padding: 0 .3rem;
    }
     .content .bannerBox {
        position: relative;
    }
    .content .bannerBox .btnBox {
        position: absolute;
        bottom: 5.1rem;
        left: 50%;
        transform: translate(-50%,0);
        display: flex;
        align-items: center;
    }
    .content .bannerBox .btnBox .btn {
        width: 1.6rem;
        margin-left: .85rem;
        cursor: pointer;
    }
 }