html,body{
    background-color: #e8ecef;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: arial,sans-serif;
}
h1,h2,h3,h4,p{
    margin-block-end: 0;
    margin-block-start: 0;
}
.box{
    position: relative;
    box-sizing: border-box;
    display: flex;
    padding: 15px;
    min-width: 350px;
}
.center-box{
    position: relative;
    box-shadow: 0 17px 23px -22px rgb(0 0 0 / 45%);
    max-width: 1000px;
    background-color: white;
    border-radius: 10px;
    margin: 0 auto;    
    display: flex;
    flex-direction: column;
}
.center-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/happy2.png);
    opacity: 0.06;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: right -435px top 160px;
    z-index: 0;
}

.left{
    padding: 20px 15px;
    position: relative;
    z-index: 1;
}

/* logo */
.logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.logo img{

}

/* 广告语 */
.title{
    margin-top: 15px;
}
.title h3{
    text-align: right;
    font-size: 1.02em;
}
.title p{
    text-align: right;
    font-size: 12px;
    color: #fe9900;
}

/* 表单 */
.form-box{
    width: 100%;
    position: relative;
    min-height: 450px;
}
.right{
    width: 60%;
    display: none;
}
.form-header{
    margin-top: 35px;
    margin-bottom: 25px;
}
.form-header p{
    color: #7468cc;
}
.form-header h2{
    color: #2c22e3;
}
.input-box{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.input-box label{
    color: #776ebd;
    font-size: 12px;
}
.input-box input{
    border: none;
    border-bottom: 1px solid #cdd0d7;
    height: 30px;
    background-color: transparent;
}
input:focus {
    outline: none;
}
.findId{
    color: #f57619;
    padding-left: 5px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
}
.findId:hover{
    text-decoration: underline !important;
}
.radio_type {
    width: 20px;
    height: 20px;
    appearance: none;
    position: relative;
}

.radio_type:before {
    content: '';
    width: 15px;
    height: 15px;
    border: 1px solid #7d7d7d;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
}

.radio_type:checked:before {
    content: '';
    width: 15px;
    height: 15px;
    border: 1px solid #ed6e11;
    background: #ed6e11;
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
}

.radio_type:checked:after {
    content: '';
    width: 8px;
    height: 4px;
    border: 2px solid white;
    border-top: transparent;
    border-right: transparent;
    text-align: center;
    display: block;
    position: absolute;
    top: 5px;
    left: 4px;
    vertical-align: middle;
    transform: rotate(-45deg);
}

.radio_type:checked+label {
    color: #c59c5a;
}
.satisfaction {
    margin-top: 18px;
    margin-bottom: 20px;
    position: relative;
    font-size: 12px;
    display: flex;
    flex-direction: column;
}

.satisfaction label {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    margin-right: 25px;
}

.satisfaction input {
    vertical-align: middle;
    margin-right: 0;
}
.radio-box{
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

.satisfaction p {
    transition: all .3s ease;
    -webkit-transition: .3s ease all;
    color: black;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.satisfaction strong {
    font-weight: normal;
}

.satisfaction i {
    font-size: 12px;
    position: absolute;
    color: red;
    display: none;
    top: 18px;
    right: 0;
}

.btn {
    padding-bottom: 10px;
}

.btn button {
    border: none;
    cursor: pointer;
    background-color: #ed6e11;
    color: #ffffff;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    font-size: 14px;
}

.btn button:hover {
    background-color: #c15d14;
}

.order-div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* 脚注 */
.footer{
    padding: 0 15px;
    color: #575757;
    margin-bottom: 20px;
    /* z-index: 9999; */
}
.footer p{
    margin-bottom: 10px;
}

/* alert */
.alert {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 9999;
    flex-direction: column;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0, 0.4);
}

.alert-box {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    font-size: 14px;
}

.alert-head {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: #ed6e11;
    padding: 12px;
    box-sizing: border-box;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    z-index: 999;
    color: white;
    align-items: center;
}

.alert-close {
    display: flex;
    cursor: pointer;
}

.alert-content {
    width: 100%;
    padding: 22px 15px;
    box-sizing: border-box;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    min-height: 150px;
    background-color: white;
    color: black;
    box-shadow: 0px 1px 1px #a3a2a2;
    z-index: 998;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.alert-content button {
    width: 40%;
    margin: 0 auto;
    padding: 12px 0;
    background-color: #ed6e11;
    border: none;
    color: white;
    border-radius: 30px;
    box-shadow: 1px 1px 2px #818181;
    cursor: pointer;
}

.alert-content button:hover {
    background-color: #d35c04;
}
.alert-message{
    padding-bottom: 20px;
    padding-top: 5px;
}
.alert-message h3{
    margin: 0;
    padding-bottom: 10px;
    display:block;
}

/* 注册成功 */
.regSuccess{
    display: none;
    text-align: center;
    font-size: 14px;
    color: #fe9900;
    flex-direction: column;
    align-items: center;
}
.regSuccess .fireworks-ico{
    width: 80%;
    /* padding: 35px 0; */
    max-width: 350px;
    max-height: 350px;
}
.regSuccess i{
    display: none;
    color: red;
    font-size: 14px;
    margin-top: 30px;
    font-weight: bold;
}

/* 礼花 */
#fireworks {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.fackbook{
    margin-bottom: 15px;
}
.fackbook p{
    margin-top: 10px;
}
 /* Tiktok */
.tiktok{
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 17px 23px -22px rgb(0 0 0 / 45%);
    border: 1px solid #e8ecef;
    border-radius: 4px;
    text-decoration: none;
    text-align: left;
    position: absolute;
    transform: translateY(-50%);
    margin: 0 auto;
    background: #f8f8f8;
    padding: 50px 30px;
    margin-top: 30px;
    z-index: 999999999;
}
.tiktok p{
    font-size: 16px;
    color: black;
    line-height: 22px;
}
.click_tip {
    font-size: 14px !important;
    color: #fe9900 !important;
    margin-top: 10px;
}

.follow_link{
    display: flex;
    flex-direction: row;
    border: 1px dashed #ccc;
    padding: 20px;
    gap: 15px;
}
.follow_link a{
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}
.follow_link a:hover{
    text-decoration: underline;
}
.follow_link a span{
    margin-left: 10px;
}

.tk-box p{
    margin-top: 10px;
}
.tk-qr{
    position: relative;
}
.tk-qr img{
    width: 200px;
    height: 200px;
}
.tk-qr svg{
    position: absolute;
    bottom: -28px;
    right: -17px;
    transform: rotate(322deg);
}
.tk-box{
    display: flex;
    flex-direction: column; 
    gap: 3px;
}
.tiktok:hover{
    box-shadow: 0 17px 23px -22px rgb(0 0 0 / 65%);
}
.tips1{
    display: block;
    margin-bottom: 8px;
}
.close_share{
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
}

/* 媒体查询 */

/* 平板 */
@media screen and (min-width: 768px){
    .box{
        padding: 30px;
    }
    .left,.footer{
        padding-left: 25px;
        padding-right: 25px;
    }
    .center-box::before {
        background-position: right -300px top 140px;
    }
    .form-header h2 {
        font-size: 1.7em;
    }
}

/* 中等桌面 */
@media screen and (min-width: 992px){
    .logo{
        text-align: left;
        justify-content: left;
    }
    .left{
        width: 40%;
        padding-left: 55px;
        padding-right: 55px;
    }
    .box{
        height: 100%;
        align-items: center;
    }
    .center-box::before{
        background-image: url(../images/happy.png);
        background-position: right 0 top 0;
        opacity: 1;
        background-size: 55% auto;
        border-top-right-radius: 10px;
    }
    .form-box{
        display: flex;
        flex-direction: row;
    }
    .title{
        display: none;
    }
    .l-title{
        display: block;
        margin-top: 10px;
        margin-right: 55px;
        text-align: right;
    }
    .l-title h2{
        color: white;
        font-weight: normal;
        font-size: 1.4em;
    }
    .l-title p{
        color: #fe9900;
        font-size: 12px;
    }
    .right{
        display: inline;
        padding-left: 50px;
        box-sizing: border-box;
    }
    .footer{
        padding-left: 55px;
        padding-right: 55px;
        margin-top: 15px;
    }
    .center-box{
        padding: 20px 0;
    }
    .logo img{
    }
    .form-header h2 {
        font-size: 1.9em;
    }
    .form-header {
        margin-top: 20px;
    }
    .alert {
        background-color: #1c1c1cc7;
    }

}

/* 大型桌面 */
@media screen and (min-width: 1200px){
    

}