
.title-box {
    width: 690px;
    text-align: center;
    margin: 50px auto 0;
}

.title-box h1{
    font-size: 32px;
}

.title-box a {
    line-height: 36px;
}

.title-box a:after {
    content: "\F105";
}

.query-box {
    width: 693px;
    margin: 15px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    transition: height 0.3s;
}
.query-box h1 {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
}
.query-desc {
    font-size: 16px;
    color: rgb(0,0,0,0.65);
    margin-top: 16px;
    line-height: 20px;
    text-align: center;
}

.hidden-box {
    margin-top: 25px;
    display: none;
}

.hidden-box span {
    padding: 10px 0;
    font-weight: 600;
}

.active {
    display: flex;
    flex-direction: column;
}


.tabs-box {
    display: flex;
    list-style: none;
    padding: 0;
    border-bottom: 1px dashed #999; /* 虚线隔开效果 */
    /*border-bottom: 1px solid rgba(0,0,0,.06);*/
}

.tab-item {
    margin: 10px;
    border-bottom:2px solid rgba(0,0,0,0.85)

}

.tab-item.active {
    border-bottom-color: #f00; /* 点击后的下边框加粗效果 */
}

/*.tab-item  a {*/
/*    color: rgba(0,0,0,0.85);*/
/*    border-bottom-color: #f00; !* 点击后的下边框加粗效果 *!*/
/*}*/

.input-item {
    width: 400px;
    padding-left: 10px;
    height: 48px;
    line-height: 48px;
    border: 1px solid rgb(235,235,235);
    border-radius: 4px;
    font-size: 14px;
}
.submit-btn {
    width: 186px;
    height: 44px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0,112,213);
    border: 1px solid rgb(0,112,213);
    border-radius: 30px;
    color: white;
    cursor: pointer;
}

.check-button {
    width: 120px;
    height: 44px;
    margin: 30px auto 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0,112,213);
    border: 1px solid rgb(0,112,213);
    border-radius: 30px;
    color: white;
    cursor: pointer;
}
.check-button:hover {
    background-color: rgb(36,144,227);
}

.tabs {
    list-style-type: none;
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.tab {
    text-decoration: none;
    padding: 10px;
    color: #333;
    border-bottom: 2px solid transparent; /* 初始状态下的下边框 */
}

.tab.active {
    border-bottom-color: #333; /* 点击后的下边框加粗效果 */
}

.replace-section {
    width: 100%;
}

.radio-group {
    display: flex;
    flex-direction: column;
}

.radio-container {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}


.radio-detail{
    line-height: 30px;
    margin-left:20px;
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


#textarea-container,#textarea-address {
    display: none;
}

.apply-item .item-content{
    /*font-size: 14px;*/
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 70px;
}


.other-textarea,.address-textarea {
    width: 100%;
    padding-left: 10px;
    height: 150px;
    line-height: 48px;
    border: 1px solid rgb(235,235,235);
    border-radius: 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.plan-box {
    /*margin-top: 25px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-form{
    width: 1000px;
}
.plan-tips {
    font-size: 14px;
    color: #e67e22;
    margin-top: 16px;
    line-height: 20px;
    text-align: center;
    /*font-weight: 600;*/
}

.plan-desc {
    font-size: 14px;
    color: rgb(0,0,0,0.65);
    margin-top: 16px;
    line-height: 20px;
    text-align: center;
    /*font-weight: 600;*/
}

.plan-content {
    margin:30px;
    padding:30px;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 14px;
}

.suggestion-desc {
    padding: 10px;
    line-height: 25px;
}

.other-content,.address-content {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}
.other-desc{
    margin-top:30px
}


.custom-radio {
    display: inline-block;
    margin-right: 15px; /* 用于调整单选按钮之间的间距 */
}

.custom-radio input[type="radio"] {
    display: none; /* 隐藏原始的单选按钮 */
}

.custom-radio label {
    display: inline-block;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.custom-radio input[type="radio"]:checked + label {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.error-message {
    display: none;
    color: red;
    padding:10px 10px;
    font-size:12px;
    width: 100%;
}



