/* subpage */
.subpage{
  margin: 60px 0;
}

.subpage .position{
    font-size: 14px;
    margin-bottom: 30px
}

.subpage p{
    text-indent: 2em;
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 32px;
}

.subpage h5{
    font-size: 18px;
    color: var(--primary-color);
    margin: 20px 0;
    text-align: left;
}
/* sub banner */
.sub-banner img{
    width: 100%;
    height: auto;
}

/* about */
.about{
    font-size: 0;
}
.about img{
    width: 100%
}

/* 同期活动 */
.live-content .sub-title h3{
    font-size: 32px;
    font-family: 'CnFont', sans-serif; 
}
.live-content .sub-title p{
    text-indent: 0;
    font-size: 22px;
    font-family: 'EnFont', sans-serif; 
}
.live-events-item {
    border-top: solid 1px #cccccc;
    padding: 30px 0;
}

.live-events-item:first-child {
    border-top: none;
}

.live-events-list {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    cursor: pointer;
}
.live-events-list:hover {
    transform: scale(1.03); /* 放大 3% */
}
.live-events-list-img {
    position: relative;
    width: 40%;
    height: auto;
    overflow: hidden;
    padding: 1px;
}

.live-events-list-img::before,
.live-events-list-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 1; 
}

/* 左上角切割（初始状态） */
.live-events-list-img::before {
    top: 0;
    left: 0;
    border-width: 0 0 0 0;
    border-color: transparent transparent transparent #fff; 
}

/* 右下角切割（初始状态） */
.live-events-list-img::after {
    bottom: 0;
    right: 0;
    border-width: 0 0 0 0;
    border-color: transparent #fff #fff transparent; 
}

/* 悬停时显示切割 */
.live-events-list:hover .live-events-list-img::before {
    border-width: 0 0 80px 80px; /* 左上角切割 */
}

.live-events-list:hover .live-events-list-img::after {
    border-width: 80px 80px 0 0; /* 右下角切割 */
}
.live-events-list-img img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #cccccc;
}
.live-events-list-content{
    width: 60%;
    position: relative;
    padding: 35px 0;
}
.live-events-list-content h2{
    font-size: 30px;
    font-family: 'CnFont', sans-serif; 
}
.live-events-list-content p{
    font-size: 25px;
    font-family: 'EnFont', sans-serif;
    color: #6d6d6d;
    margin-top: 25px;
}
.live-events-list-content a {
    background: linear-gradient(to bottom, white, gray);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    position: absolute;
    bottom: 40px;
    transition: background-color 0.4s ease-in-out;
    font-family: 'CnFont', sans-serif; 
}
.live-events-list-content a:hover {
    background: linear-gradient(to bottom, black, black);
    color: #ffffff;
}

.live-events-list-more{
    color: #6d6d6d;
    font-family: 'CnFont', sans-serif; 
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
.to-top,.to-bottom{
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

.to-top img,.to-bottom img{
    width: 60px;
}
.to-top{
    margin-top: 50px;
}
.to-bottom{
    margin-bottom: 30px;
}

.to-top a img{
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}
.to-top a{
    font-family: 'EnFont', sans-serif; 
    font-size: 20px;
    color: #6d6d6d;
}

/* 展商服务 */
/* 观众注册 */
.gzzc-btn {
    height: 200px;
    color: var(--primary-color);
    background: var(--secondary-color);
    transition: transform 0.3s;
    cursor: pointer;
    max-width: 400px;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    border-radius: 50px;
    margin: 50px auto;
    letter-spacing: 0.1em;
}

.gzzc-btn i {
    font-size: 20px;
    font-family: 'EnFont', sans-serif;
    display: block;
    color: var(--primary-color);
    margin-top: 10px;
    letter-spacing: 0;
    font-style: normal;
}

.gzzc-btn .gzzc-btn-img-top {
    position: absolute;
    top: 35px;
    right: 30px;
    background: url('../images/index_btn_ico02.png') no-repeat;
    width: 26px;
    height: 26px;
}

.gzzc-btn:hover {
    transform: translateY(-10px);
    color: #fff;
    background-color: var(--primary-color);
}
.gzzc-btn:hover i{
    color: #fff;
}

.gzzc-btn:hover .gzzc-btn-img-top {
    background: url('../images/index_btn_ico01.png') no-repeat;
}

.gzzc-con {
    padding: 50px 0;
}

.gzzc-con h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* newslist */
.subpage-position {
    /* margin-top: 60px; */
}

.subpage-position a {
    margin: 0 10px;
}

.newslist {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.newslist .media {
    border-bottom: 1px dotted #bbbbbb;
    padding: 20px 0;
    margin-right: 40px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.newslist .media-body {
    flex: 1;
}

.newslist .media-body .newsmore {
    color: #CD0205;
}

.newslist .media-body span {
    border: 1px solid var(--primary-color);
    font-size: 12px;
    padding: 5px 8px;
    color: var(--primary-color);
    float: right;
    margin-top: 20px;
}

.newslist .media-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.newslist .media-body p {
    line-height: 25px;
    margin: 0;
    font-size: 14px;
    text-indent: 0;
}

.newslist .news-ad {
    margin: 20px 0;
}

.newslist .news-right {
    background-color: #f2f2f2;
    padding: 20px 0;
}

.newslist .news-right h4 {
    border-left: #008baf 4px solid;
    font-size: 20px;
    font-weight: 400;
    padding-left: 25px;
    width: 100%;
    margin-bottom: 20px;
}

.newslist .news-right h4 a {
    font-size: 14px;
    color: #bbbbbb;
    margin-right: 30px;
    float: right;
}

.newslist .news-right ul {
    margin: 0 30px;
}

.newslist .news-right ul li {
    margin-top: 10px;
}

.newslist .news-right ul li a {
    line-height: 25px;
}

.newslist .news-right ul li a,
.news-right ul li span {
    display: block;
}

.newslist .news-right ul li span {
    font-size: 12px;
    color: #bbbbbb;
}

.newslist .media-object {
    width: 230px;
    height: 160px;
}

ul.newslists li {
    height: 50px;
    line-height: 50px;
    border-bottom: 1px dotted #cccccc;
}

ul.newslists li em {
    float: right;
    font-style: normal;
}

.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 5px 10px;
    line-height: 1.42857143;
    color: #008baf;
    text-decoration: none;
    background-color: white;
    border: 1px solid #ddd;
    margin: 0 3px;
}

.pagination>li.thisclass {
    position: relative;
    float: left;
    padding: 5px 10px;
    line-height: 1.42857143;
    color: white;
    text-decoration: none;
    background-color: #008baf;
    border: 1px solid #008baf;
    margin: 0 3px;
}

/* articlepage */
.articlepage {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: auto;
}

.articlepage h2 {
    margin: 0;
    padding: 50px 0 24px;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    font-family: 'Cnont', sans-serif;
    line-height: 45px;
}

.articlepage h3 {
    margin: 0;
    text-align: left;
    font-weight: bold;
    font-size: 30px;
    color: var(--primary-color);
    line-height: 40px;
}

.articlepage .info {
    text-align: center;
    font-size: 14px;
    margin-bottom: 44px;
}

.articlepage .conbox {
    position: relative;
    z-index: 99;
    margin-bottom: 10px;
}

.articlepage .conbox p {
        text-indent: 2em;
        margin: 0 0 10px;
        font-size: 16px;
        line-height: 32px;
}

.articlepage div img {
    max-width: 800px !important;
    height: auto !important;
    display: block;
    margin: 15px auto;
}

.preinfo {
    margin-top: 10px;
    line-height: 30px;
    font-size: 14px;
}

/* 联系我们 start */
.contactus{
  background-color: var(--primary-color);
  display: grid;
    grid-template-columns: 1fr 1fr;
}
/* .contactus img{
  height: 320px;
} */
.contactus .kele-flex{
  padding: 0px 100px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.contactus .kele-flex h2{
  margin-bottom: 20px;
}
.contactus-code{
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: url(/public/images/contactus-code-bg.jpg) no-repeat;
  background-size: 100%;
  align-items: center;
}
.xiaoshou{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.sales-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-left: 50px;
  padding-right: 50px;
}
.sales-item{
  display: grid;
  /* grid-template-columns: 1fr 3fr; */
  grid-template-columns: 1fr;
  padding: 30px;
  box-shadow: 0px 0px 20px 5px #f3f3f3;
}
.sales-item > img{
  display: none;
  width: 100px;
  height: 140px;
  object-fit: contain;
}
.sales-box h4{
  /* margin-bottom: 10px; */
  font-size: 24px;
}
.sales-box hr{
  margin-top: 10px;
  margin-bottom: 10px;
  width: 40px;
  border-color: rgba(0, 84, 167, .5);
}
.sales-box div{
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 5px 5px;
  font-size: 14px;
  line-height: 18px;
}
.sales-box div.tel{
  background-image: url(/public/images/icon-tel.png);
}
.sales-box div.mobile{
  background-image: url(/public/images/icon-mobile.png);
}
.sales-box div.email{
  background-image: url(/public/images/icon-email.png);
}
/* 联系我们 end */

/* about us */
.about-con{
    text-align: center;
}
.about-con img{
    margin: 20px 0;
}
.about-con p{
    text-align: left;
    /* width: 764px; */
    margin: 0 auto
}

/* 展商服务 */
.zscon p{
    text-indent: 0
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table td {
  padding: 15px;
  vertical-align: top;
  font-size: 18px;
}

.item-category {
  width: 20%;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
} 
.fee-table>tbody>tr:nth-of-type(odd) {
    background-color: #f3f3f3;
}

@media (max-width: 768px) {
    .subpage{
        margin: 30px 0;
    }
    .live-events-list-content h2{
        font-size: 16px;
    }
    .live-events-list-content a{
        bottom: 0;
    }
    .live-events-list{
        gap: 20px;
    }
    .media-list{
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .media-list li img {
        height: 50px;
        width: 150px;
    }
    .contactus .kele-flex{
        padding: 15px;
        font-size: 14px;
    }
    .sales-list{
        padding: 0 20px;
    }
    .contactus{
        grid-template-columns: 1fr;
    }
    .contactus .kele-flex h2{
        font-size: 20px;
    }
    .sales-list{
        grid-template-columns: 1fr;
    }

    .newslist .media-object{
        display: none;
    }
    .articlepage h2{
        font-size: 22px;
        line-height: 35px;
        padding: 20px 0 24px;
    }
    .articlepage .info{
        margin: 0;
    }
    
}