* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
body {
    background-color: #f0f2f5;
}
a:hover{
    cursor: pointer;
}
ul li{
    list-style: none;
}
/* s-公共css */
.w1200{
    width: 1200px;
    margin: 0 auto;
}

.flex {
    display: flex;
    align-items: center;
}
.flex-x-center{
    display: flex;
    justify-content: center;
}
.hidden {
    display: none;
}
.line-clamp2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.line-clamp3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.page-btn:active {
    opacity: 0.8;
}
/* e-公共css */

.main-box {
    margin: 0 auto;
    /* width: 1200px; */
    min-width: 1200px;
}

/*按钮*/
.big-btn{
    width: 358px;
    height: 66px;
    background: #FFCF26;
    border-radius: 33px;
    font-size: 24px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FF0000;
    line-height: 66px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
}


/*标题*/
.title-div{
    display: flex;
    justify-content: center;
    text-align: center;
}

.title{
    position: relative;
    display: inline-block;
}

.title-left{
    width: 29px;
    height: 29px;
    background: #FF6446;
    border-radius: 50%;
    position: absolute;
    left: -17px;
    top: -2px;
    z-index: 1;
}
.title-text{
    z-index: 99;
    position: relative;
    font-family: Source Han Sans CN;
    font-size: 40px;
    color: #099EB6;
    font-weight: bold;
}

.title::after{
    content: "";
    width: 16px;
    height: 16px;
    background: #FFB746;
    border-radius: 50%;
    position: absolute;
    right: -20px;
    top: 3px;
}




/* 在线报名 */
.application-form {
    padding: 30px 0;
    background-color: #13B8D1;
}
.application-form .title-text{
    color: #FFFFFF;
}
.application-form .form-box {
    margin-top: 41px;
}
.application-form .form-box .line-box {
    width: 1241px;
    height: 20px;
    background: #333333;
    border-radius: 10px;
    margin: 0 auto;
}
.application-form .form-box .form-item-box {
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    height: 750px;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    padding: 35px 20px;
}
.application-form .form-box .form-item-box .item-box {
    display: inline-block;
    margin-bottom: 13px;
    font-size: 12px;
    margin-right: 40px;
}
.application-form .form-box .form-item-box .item-box label {
    flex-shrink: 0;
    width: 100px;
    font-size: 18px;
}
.application-form .form-box .form-item-box .item-box label::before {
    content: " ";
    margin-left: 4px;
}
.application-form .form-box .form-item-box .need::before {
    content: "*" !important;
    color: red;
    margin-left: 0px !important;
}
.application-form .form-box .form-item-box .item-box input[type="radio"] {
    width: 14px;
    height: 14px;
    border: 1px solid #CBCBCB;
}
.application-form .form-box .form-item-box .item-box .input-box {
    width: 240px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #CBCBCB;
    border-radius: 4px;
    padding: 0 17px;
    font-size: 16px;
}
.application-form .form-box .form-item-box .item-box .input-box::-webkit-inner-spin-button{
    -webkit-appearance: none !important; 
}

.application-form .form-box .form-item-box .item-box .input-box:focus {
    outline: none;
    border: 1px solid #cf312e;
}

.application-form .form-item-box .application-form-btn {
    width: 300px;
    height: 68px;
    background: #FF6446;
    border-radius: 34px;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    line-height: 68px;
    margin: 40px auto 27px;
    font-weight: 400;
    cursor: pointer;
}
.application-form .form-item-box .tips {
    width: 100%;
    font-size: 16px;
    color: #000000;
    text-align: center;
    font-weight: 400;
}



/* 页脚 */
footer {
    width: 100%;
    height: 109px;
    background: #333333;
    color: #7a7d83;
    font-size: 16px;
    text-align: center;
    line-height: 109px;
}

