:root {
    --w80: 80%;
    --w85: 85%;
}

.participants {
    width: var(--w85);
    height: 0.7rem;
    margin: 20px auto;
    border-radius: 0.7rem;
    box-shadow: 0 0 0.1rem #dcdcdc;
    display: flex;
    align-items: center;
    line-height: 0.36rem;
    box-sizing: border-box;
    padding-left: 0.4rem;
	font-size: 14px;
}
*{font-size: 14px;}
.participants img {
    width: 1.1rem;
    margin-right: 0.1rem;
}


.participate_num {
    color: #d0021b;
    font-weight: 700;
    font-size: 0.36rem;
}
.comom{background-color: #fde300;}
.common .form_container input{border-radius: 15px;border: 1px solid #FF3A00;}
.form_container {
    width: var(--w85);
    margin: 30px 20px;
}

.form_item {
    margin-bottom: 0.4rem;
}

.form_label {
    color: #808080;
    position: relative;
}

.form_label.required::after {
    content: '*';
    position: absolute;
    right: -0.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5a5a;
}

.form_checkbox {
    padding: 0.3rem 0 0.2rem 0;
    display: flex;
    flex-wrap: wrap;
}

.form_checkbox_label {
    flex-basis: 50%;
    color: #444;
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
}

.form_checkbox_label input {
    margin-right: 0.2rem;
    flex-shrink: 0;
    width: 1.3rem;
    height: 1.3rem;
}

.pay_btn {
    color:#fde300;
    width: var(--w80);
    height: 3rem;
    border-radius: 20px;
    margin: 0.2rem auto;
    background-color: #ff583e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.tips {
    width: var(--w85);
    margin: 0 auto;
    text-align: center;
    font-size: 0.25rem;
    color: #999;
}

.comment {
    width: var(--w85);
    margin: 1rem auto;
}

.comment .title {
    font-size: 1.36rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
}

.comment_item {
    line-height: 1.8rem;
    color: #666;
    margin-bottom: 0.1rem;
    text-align: justify;
}

.comment_item span {
    color: #d0021b;
}

.signup {
    margin-bottom: 0.5rem;
}

.signup .title {
    font-size: 1.36rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.swiper-container {
    height: 9rem;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-wrapper .swiper-slide {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 30px !important; */
}

.swiper-slide span:last-child {
    text-align: right;
}

.swiper-slide span:nth-child(2) {
    width: 2rem;
    text-align: center;
}
.fix-btn{position: fixed;bottom: 0}
.fix-btn .fix-btn-wrap{
    /*position: fixed;*/
    float: right;
    width: 30%;
    bottom: 0;
    z-index: 20;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.fix-btn .fix-btn-wrap {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
.fix-btn .fix-btn-wrap a{
    min-width: 75px;
    height: 40px;
    line-height: 40px;
    background-color: #FFE700;
    border-radius: 13px;
    font-size:18px;
    color: #534440;
    padding: 0 15px;
    text-align: center;
    -webkit-animation: pulse 1s both infinite;
    animation: pulse 1s both infinite;
    margin-top: -75px;
    text-decoration:none;
}
@-webkit-keyframes pulse {
    0%,100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
}

@keyframes pulse {
    0%,100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
}