@charset "utf-8";
.clearFix {
    zoom: 1;
}

.clearFix:after {
    content: "";
    display: block;
    clear: both;
}

a{
    -webkit-tap-highlight-color:rgba(255,0,0,0)
}
img a{
    -webkit-touch-callout:none;
}

.fl{
    float: left;
}
.fr{
    float: right;
}
#public-nav-program>a {
    color: #D46D2A !important;
}

.wrap{
    width: 1170px;
    margin: 0 auto;
}

.headWrap{
    max-width: 1920px;
    min-width: 1170px;
    margin: 0 auto;
    width: 100%;
    height: 244px;
    background: #153586;

}
.headWrap>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.headWrap h3{
    font-weight: bold;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 1;
}
.headWrap>div>div{
    width: 566px;
}
.headWrap>div>div p{
    text-align: left;
}
.headWrap>div>div p:first-child{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 34px;
    margin-bottom: 6px;
}
.headWrap>div>div p:last-child a{
   color:rgba(236, 126, 54, 1);
    border-bottom: 1px solid rgba(236, 126, 54,0.6);
}
.headWrap>div>div p:last-child a:hover {
    color: rgba(236, 126, 54,1);
    border-bottom: 1px solid rgba(236, 126, 54,1);

}
.headWrap>div>div p:last-child{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 30px;
}


.formList{
    width: 810px;
    margin-top: 50px;
}
.formList .form-control{
    border: 1px solid #1F45A6;
}
.formList .item-title{
    font-weight: bold;
    font-size: 24px;
    color: #030001;
    line-height: 34px;
    text-align: left!important;
}
.formList .item label {
    font-size: 14px;
    color: #030001;
    line-height: 34px;
    margin: 0;
}
.formList .item select{
    width: 100%;
    height: 30px;
    border: 1px solid #1F45A6;
    font-size: 14px;
    line-height: 30px;
    color: #555;
}

.formList  .control-label{
    font-size: 14px;
    color: #030001;
    line-height: 34px;
    text-align: left!important;
}
.formList .item span{
    font-size: 14px;
    display: block;
}


/* 核心：自定义复选框样式 */
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 24px;
    display: inline-block;
}

input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 24px;
    height: 24px;
    background-image: url("../img/activities/c_h.png");
    background-size: cover;
}

input[type="checkbox"]:checked + label::before {
    background-image: url("../img/activities/c_n.png");
}

input[type="checkbox"] + label:hover::before {
    opacity: 0.8;
}

.submitBtn{
    display: block;
    margin: 0 auto;
    border: none;
    outline: none;
    width: 216px;
    height: 60px;
    background: #EC7E36;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 60px;
    border-radius: 6px;
    margin-top: 50px;
    margin-bottom: 90px;
}
.submitBtn:hover{
    background: #D46D2A;
    transition: background 0.3s ease;

}