* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.activdetails-con {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.ad-con-top {
    width: 100%;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    border: solid 1px #eeeeee;
    margin-top: 10px;
}

.ad-con-top-top {
    display: flex;
}

.ad-img-box {
    width: 42%;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 50px;
    border: 1px solid #eee;
    box-shadow: 7px 7px 25px 10px #eee;
    background: #FFF;
    transition: all 1s;
}

.ad-img-box:hover {
    box-shadow: 7px 7px 25px 10px #ccc;
    transform: translateY(-8px);
}

.ad-img-box>img {
    width: 100%;
    height: 100%;
}

/* 票种类型选择 */
.ad-con-top-bot {
    padding: 1.25rem;
}

.tickettitle {
    padding-top: 1.25rem;
    border-top: 1px solid #F0F2F5;
    font-size: 1.125rem;
}

.tabbutbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.tab-button {
    width: 32%;
    margin-left: 2%;
    margin-top: .625rem;
    background-color: #fff;
    border: 2px solid #F0F2F5;
    border-radius: 10px;
    padding: .3125rem .625rem;
}

.tab-button:hover {
    border-color: #f71435;
    cursor: pointer;
}

.tab-button:hover p {
    color: #f71435 !important;
}

.tabbutbox>div:nth-child(3n+1) {
    margin-left: 0;
}

.tab-button>p:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.originaprice {
    color: #000;
    font-size: 1rem;
}

.discountprice {
    color: #999;
    font-size: .75rem;
    margin-left: .1875rem;
    text-decoration: line-through;
}

.ticketright {
    float: right;
}

.minus {
    padding: 1px 3px;
    background-color: #F3900D;
    color: #fff;
    font-size: .875rem;
}

.tab-button>p:nth-child(1) i {
    margin-right: .1875rem;
    color: #999;
    font-size: 1.25rem;
}

.tab-button>p:nth-child(2) {
    font-size: .875rem;
    color: #999;
    padding-left: .25rem;
}

.tab {
    padding: .9375rem .0625rem;
    display: none;
}

.active {
    border-color: #f71435;
}

.active p {
    color: #f71435 !important;
}

.ticketannotation {
    font-size: .875rem;
}

.ticketquantity {
    margin-top: .625rem;
}

.ticketquantity-tit {
    font-size: 1rem;
    color: #000;
}

.ticketquantity-btn {
    padding: .1875rem .3125rem;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-left: 1.25rem;
}

.minusbtn {
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
}

.ticketnum {
    font-size: 1.125rem;
    margin-left: 15px;
    color: #03B349;
}

.addbtn {
    font-size: 1.125rem;
    margin-left: 15px;
    font-weight: bold;
    cursor: pointer;
}

.signbox {
    padding: 1.25rem 0px 1.25rem 1.25rem;
    display: flex;
    justify-content: space-evenly;
    font-size: 1rem;
    align-items: center;
    margin-top: 1.25rem;
}

.signbtn {
    padding: .625rem 3.125rem;
    background-color: #f71435;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    position: relative;
    font-size: 12px;
}

.labelbox {
    font-size: .875rem;
}

.greencon i {
    color: #03B349;
}

.huisecon i {
    color: #CCCCCC;
}

.labelall>span {
    margin-left: .625rem;
    cursor: pointer;
    position: relative;
}

.labelall>span div {
    width: 12.5rem;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
    border: 1px solid #ccc;
    padding: .25rem;
    text-align: center;
    background-color: #fff;
    color: #999;
    top: 1.5625rem;
    z-index: 99;
}

.labelall>span:hover div {
    display: block;
}

.labelall>span:nth-child(1) {
    margin-left: 0px;
}

.labelall>span i {
    margin-right: .3125rem;
}

.signperson {
    margin-left: 1.25rem;
}

.signperson i {
    color: #CCCCCC;
    margin-right: .3125rem;
}

.numberview {
    color: #999;
}

/* 弹窗 */
.pop-up {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: rgb(0, 0, 0, 0.5);
    z-index: 1000;
}

.pop-up i {
    font-size: 1.5rem;
}

.pop-up>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    padding: 1.875rem 3.125rem;
}

.pop-up>div p {
    color: #fff;
    text-align: center;
}

.pop-up>div p:nth-child(2) {
    margin-top: 1.25rem;
}

/* 表单 */
.ad-con-top-bot-form {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: rgb(0, 0, 0, 0.5);
    z-index: 999;
    overflow: auto;
}

.formbox {
    width: 40%;
    border-top: 1px solid #F0F2F5;
    background-color: #fff;
    margin: 0 auto;
    margin-top: 1.25rem;
    padding: 1.25rem 1.875rem 2.5rem 1.875rem;
    position: relative;
}

.form {
    margin: 0 auto;
    padding: 1.25rem;
    border-top: 1px solid #F0F2F5;
}

.form-title {
    font-size: 1rem;
    padding-bottom: .3125rem;
    border-bottom: 1px solid #F0F2F5;
    color: #000;
}

.form-title span {
    font-size: .875rem;
    color: #999;
}

.form-con {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #F0F2F5;
}

.form-con>p {
    margin-top: 1.25rem;
}

.form-con>p>label {
    color: #000;
    font-size: 1rem;
}

.form-con>p>label>span {
    color: #f00;
    margin-left: .125rem;
}

.form-con>p>input {
    width: 100%;
    border: 1px solid #ccc;
    padding: .3125rem;
    border-radius: 5px;
    font-size: 1rem;
}

.pricay {
    position: relative;
    top: .0625rem !important;
    margin-right: .1875rem !important;
}

.sign-endbtn>p {
    margin-top: .9375rem;
}

.sign-endbtn>p span {
    font-size: .875rem;
}

.signup-endbtn-all {
    margin-top: 1.5625rem !important;
}

#submitbtn {
    box-sizing: border-box;
    padding: .625rem 5rem;
    background-color: #f71435;
    border-radius: 20px;
    color: #fff;
    font-size: .875rem;
    cursor: pointer;
}

#cancelbtn {
    box-sizing: border-box;
    padding: .5rem 2.5rem;
    background-color: #999;
    border-radius: 20px;
    color: #fff;
    font-size: .75rem;
    margin-left: 1.25rem;
    cursor: pointer;
}

.ad-tit-box {
    width: 50%;
    position: relative;
}

.titname {
    width: 500px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.5rem;
    color: #010e2d;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 20px
}

.ad-time {
    font-size: 14px;
    margin-top: 10px;
}

.ad-adress {
    font-size: 14px;
    margin-top: 10px;
}

.ad-name {
    font-size: 14px;
    margin-top: 10px;
}

.ad-show {
    /* width: 330px; */
    width: 150px;
    height: 40px;
    position: absolute;
    bottom: 14px;
    right: 0px;
    text-align: center;
    line-height: 40px;
    background-color: #f71435;
    color: #fff;
}

.ad-show>a {
    text-decoration: none;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-show:hover {
    border: 1px solid #f71435;
    color: #f71435;
    background-color: #fff;
}

.ad-show:hover>a {
    cursor: pointer;
    text-decoration: none;
    color: #f71435;
}

.ad-tit-box>p>a {
    padding-left: 2px;
    text-decoration: none;
}

.ad-com-bottom {
    width: 100%;
    margin-top: 50px
}

.tabscon {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.tabscon-left {
    width: 70%;
}

.tabscon-right {
    width: 29%;
    margin-top: 50px
}

.tabscon-right>div:last-child>div>ul {
    margin-top: 0px;
}

.tabscon-right-top {
    box-sizing: border-box;
    padding: 0px 5px;
    overflow: hidden;
    height: 41px;
    line-height: 41px;
}

.tabscontwo {
    margin-top: 20px;
}

.tabscon-right-top>span:nth-child(2) {
    font-size: 21px;
    color: #333;
}

.tabscon-right-top>span:nth-child(3)>a {
    text-decoration: none;
    float: right;
    font-size: 15px;
    color: #909497;
    margin-top: 7px;
}

.tabscon-right-top>span:nth-child(3)>a:hover {
    color: #2295e0;
    text-decoration: none;
}

/* 右侧上半部分 */
.tabscon-right-bottom {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 3px
}

.tabscon-right-bottom>div {
    overflow: hidden;
    padding: 10px;
}

.sp {
    position: relative;
    left: 8px;
}


.tabscon-right-bottom>div>div {
    width: 90px;
    height: 90px;
    float: left;
}

.tabscon-right-bottom>div>div>img {
    width: 100%;
    height: 100%;
}

.spantit {
    color: #000;
}

.spantit>a {
    color: #000;
    text-decoration: none;
}

.spantit>a:hover {
    color: #2295e0;
    text-decoration: none;
}

.spancon {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 15px;
    color: #909497;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tabscon-right-bottom>div>ul {
    margin-top: 76px;
    margin-left: 25px;
}

.tabscon-right-bottom>div>ul>li {
    list-style-type: disc;
    color: #ccc;
    margin-top: 15px;
}

.tabscon-right-bottom>div>ul>li:nth-child(1) {
    margin-top: 3px;
}

.tabscon-right-bottom>div>ul>li::before {
    width: 5px;
    height: 5px;
    background-color: #000;
}

.tabscon-right-bottom>div>ul>li>a {
    text-decoration: none;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tabscon-right-bottom>div>ul>li>a:hover {
    text-decoration: none;
    color: #2295e0;
}

.tabscon-right-bottom>div>ul {
    margin-top: 0px;
    margin-left: 25px;
}

/* 右侧下半部分 */
.tabscon-right-bottom1 {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 10px
}

.tabscon-right-bottom1>div {
    overflow: hidden;
    padding: 10px;
}

.sp {
    position: relative;
    left: 8px;
}


.tabscon-right-bottom1>div>div {
    width: 140px;
    height: 90px;
    float: left;
    overflow: hidden;
}

.tabscon-right-bottom1>div>div:hover>img {
    transform: scale(1.2)
}

.tabscon-right-bottom1>div>div>img {
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.spantit {
    color: #000;
}

.spantit>a {
    color: #000;
    text-decoration: none;
}

.spantit>a:hover {
    color: #2295e0;
    text-decoration: none;
}

.spancon {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 15px;
    color: #909497;
    overflow: hidden;
    text-overflow: ellipsis;
}


.tabscon-right-bottom1>div>ul>li {
    list-style-type: disc;
    color: #ccc;
    margin-top: 15px;
}

.tabscon-right-bottom1>div>ul>li:nth-child(1) {
    margin-top: 3px;
}

.tabscon-right-bottom1>div>ul>li::before {
    width: 5px;
    height: 5px;
    background-color: #000;
}

.tabscon-right-bottom1>div>ul>li>a {
    text-decoration: none;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tabscon-right-bottom1>div>ul>li>a:hover {
    color: #2295e0;
    text-decoration: none;
}

.tabscon-right-bottom1>div>ul {
    margin-top: 45px;
    margin-left: 25px;
}

/* 右侧下半部分结束 */
.tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 7px;
    margin-top: 50px;
}

.tabtab {
    padding: 10px 1px;
    background-color: #fff;
    cursor: pointer;
    color: #999;
    /* border: 1px solid #ccc; */
    border-radius: 9px 9px 0px 0px;
}

.tabs>a {
    padding: 0px 15px;
    text-decoration: none;
}

.tabtab.active {
    /* background-color: #2295e0; */
    color: #f71435;
    border-bottom: 3px solid #f71435;
}

.tab-content {
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.tab-pane {
    display: none;
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    float: left;
}

.tab-pane img {
    width: 100%;
}

.tab-pane.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 简历 */
.jianli>div>div {
    padding: 5px 15px;
}

.jianli>div>h3 {
    margin: 10px 5px;
}

.jianli>div>p {
    text-align: center;
}

.jianli>div>div>img {
    width: 100%;
    height: 100%;
}

.jianli-child {
    padding: 20px;
}

/* 嘉宾 */
.jiabincon {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 5px 5px;
}

.jiabincon>span {
    display: block;
    width: 25%;
    text-align: center;
    margin-bottom: 20px;
}

.jiabincon>span>div {
    width: 63%;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
}

.jiabincon>span>div:hover>img {
    transform: scale(1.3);
}

.jiabincon>span>p {
    margin-top: 10px
}

.jiabincon>span>div>img {
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.jiabintit {
    color: #333;
    font-size: 17px;
}

.jiabinlocal {
    color: #333;
    font-size: 15px;
}

.jiabinshow {
    color: #ccc;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 日程 */
/* .richeng {
    padding: 10px;
} */

.richeng>div>div {
    padding: 5px 25px;
}

.richeng>div>h3 {
    margin: 10px 5px;
}

.richeng>div>div>img {
    width: 100%;
    height: 100%;
}

.richeng-tit2 {
    padding: 5px 10px;
}

.richeng img {
    width: 100%;
    height: 100%;
}

/* 合作伙伴 */
.hezuo>div>h3 {
    margin: 10px 5px;
}

/* .hezuo>div>div>div {
    width: 24%;
    height: 100px;
} */

.hezuo>div>div {
    padding: 9px 34px;
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}

.hezuo>div>div>div>img {
    width: 100%;
}

.hezuochild>div {
    width: 30%;
}

/* 媒体报道 */
.meiti>p {
    font-size: 20px;
    margin: 5px 10px;
}

.meiti>ul {
    padding: 5px 25px;
}

.meiti>ul>li {
    /* list-style-type: none; */
    margin-top: 10px;
    color: #ccc;
}


.meiti>ul>li>a {
    text-decoration: none;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meiti>ul>li>a:hover {
    text-decoration: underline;
    text-decoration: none;
}

#aside {
    position: fixed;
    right: 15px;
    bottom: 110px;
    width: 34px;
    height: 20px;
    background-image: url("./../images/下载.png");
    background-repeat: no-repeat;
    cursor: pointer;
}

/* 资料下载 */
.xiazaicon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 15px;
}

.xiazaicon>div {
    width: 24%;
    height: 250px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.xiazaicon>div:hover {
    box-shadow: 4px 5px 16px 4px #ccc;
}

.xiazaicon>div:hover>div:nth-child(1)>img {
    transform: scale(1.2);
}

.xiazaicon>div>div:nth-child(1) {
    width: 100%;
    height: 72%;
    overflow: hidden;
}

.xiazaicon>div>div:nth-child(1)>img {
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.xiazaicon>div>div:nth-child(2) {
    width: 100%;
    padding: 5px;
}

.xiazaicon>div>div:nth-child(2)>p:nth-child(1) {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #010e2d;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xiazaicon>div>div:nth-child(2)>p:nth-child(2) {
    margin-top: 5px;
}

.xiazaicon>div>div:nth-child(2)>p:nth-child(2)>span {
    color: #ccc;
}

.xiazaicon>div>div:nth-child(2)>p:nth-child(2)>button {
    padding: 4px 7px;
    background-color: #2295e0;
    color: #fff;
    border: none;
    float: right;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.ticform-pop-close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    font-size: 1.375rem;
    color: #999;
    cursor: pointer;
}

.ticform-pop-close:hover {
    color: #333;
}

@media screen and (max-width: 1200px) {
    html {
        font-size: 11px;
    }

    .activdetails-con {
        box-sizing: border-box;
        padding: 0 15px;
    }

    .ad-img-box {
        margin-left: 0px;
        width: 50%;
        margin-right: 20px;
    }

    .ad-tit-box {
        width: 45%;
    }

    .titname {
        width: 100%;
    }

    .tabs {
        display: flex;
        flex-wrap: wrap;
    }

    .tabs>div:nth-child(n+3) {
        margin-top: 10px
    }

    .tabscon {
        display: flex;
        flex-wrap: wrap;
    }

    .tabscon-left {
        width: 100%;
    }

    .tabscon-right {
        width: 100%;
        margin-top: 20px;
    }

    .formbox {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: 10px;
    }

    .ad-show {
        /* width: 330px; */
        width: 150px;
        height: 40px;
        position: relative;
        text-align: center;
        line-height: 40px;
        background-color: #f71435;
        color: #fff;
    }

    .ad-show>a {
        text-decoration: none;
        color: #fff;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ad-show:hover {
        border: 1px solid #f71435;
        color: #f71435;
        background-color: #fff;
    }

    .ad-show:hover>a {
        cursor: pointer;
        text-decoration: none;
        color: #f71435;
    }

    .activdetails-con {
        box-sizing: border-box;
        padding: 0 15px;
    }

    .ad-con-top {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .ad-img-box {
        width: 100%;
        margin: 0px;
    }

    .ad-img-box>img {
        width: 100%;
    }

    .titname {
        width: 100%;
    }

    .ad-tit-box {
        width: 100%;
    }

    .ad-tit-box>p {
        box-sizing: border-box;
        padding: 0px 10px
    }

    .tabs {
        display: flex;
        flex-wrap: wrap;
    }

    .tabs>div:nth-child(n+2) {
        margin-top: 10px
    }

    .tabtab {
        width: 100%;
    }

    .hezuo>div>div>div {
        width: 48%;
    }

    .jiabin>span {
        width: 44%;
    }

    .jiabincon>span {
        width: 48%;
    }

    .xiazaicon {
        padding: 5px;
    }

    .xiazaicon>div {
        width: 48%;
    }
}

@media screen and (max-width:480px) {
    html {
        font-size: 10.5px;
    }

    .ad-con-top-top {
        display: flex;
        flex-wrap: wrap;
    }

    .tab-button {
        width: 100%;
        margin-left: 0;
    }

    .signbox {
        display: flex;
        flex-wrap: wrap;
    }

    .labelbox {
        width: 100%;
        margin-top: 1.25rem;
    }

    .form {
        width: 100%;
    }

    .labelall>span {
        margin-left: 3%;
    }

    .labelall>span:hover div {
        display: none;
    }

    .phonepopup {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        display: none;
    }

    .pupbot {
        position: absolute;
        bottom: 0;
    }

    .phonepopup-content {
        padding: 2.5rem 1.25rem;
        background-color: #fff;
        font-size: 1rem;
        z-index: 999;
        line-height: 2.25rem;
    }

    .phonepopup-close {
        position: absolute;
        right: 1.25rem;
        top: -3px;
        font-size: 26px;
    }

    .pricay {
        position: relative;
        top: 4px !important;
    }

    .formbox {
        width: 100%;
        height: 85%;
        overflow: auto;
        margin-top: 0px;
        padding: 1.25rem;
    }

    .sign-endbtn {
        width: 100%;
        height: 15%;
        background-color: #fff;
        position: absolute;
        bottom: 0px;
        padding: 0px 1.25rem;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .signup-endbtn-all {
        margin-top: 0px !important;
    }
}