@charset "utf-8";
/* CSS Document */

body {padding:0; margin: 0; font-size: 12px; font-family:"Microsoft Yahei";  background:linear-gradient(to bottom,#4774f6,#5580f7);}
ul,ol{list-style:none; padding: 0; margin: 0;}
.container{width:750px; margin: 0 auto; min-height: 100vh;}
.baoming{padding:20px 10px;}
.baoming .title{text-align:center; font-size: 26px;  color: #FFF; margin-bottom: 20px; font-weight: bold;}
.baoming .title .t1{font-size: 28px; font-weight: bold;}
.baoming .title .t2{ font-size:18px; font-weight: bold;}
.baoming .bm-box{background:#FFF; border-radius: 10px; padding:15px;}
.baoming .bm-box .smtext{ line-height: 1.8; font-size: 14px; color: #555; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid #eef1f5;}

.baoming .biaodan{padding:20px 0;}
.biaodan .bd-item{display:flex; margin-bottom: 10px;}
.biaodan .bd-item .item-tit{width:25%; font-size: 16px;  display: flex; align-items: center; color: #000;}
.biaodan .bd-item .item-tit span{ color:#FF0004; padding: 0 2px;}
.biaodan .bd-item .item-input{width:75%;}
.biaodan .bd-item .item-input .lr{border:1px solid #eef1f5; font-size:16px; outline: none; padding: 10px; width: calc(100% - 20px); border-radius: 5px;}
.baoming .bm-box .tips{padding: 15px 0; text-align: center; font-size: 14px; color: #333;}
.baoming .bm-box .tips span{ color:#FF0004; padding: 0 2px; font-weight: bold;}
.baoming .bm-box .bm-btn{ padding: 0px 5%; text-align: center;}
.baoming .bm-box .bm-btn .tijiao{width:100%; text-align: center; outline: none; border:none; background: #4774f6; font-size: 18px; padding: 15px 0; color: #FFF; border-radius: 30px;}

  #dr_nianji {  
    border:1px solid #eef1f5; font-size:16px; outline: none; padding: 10px; width: 100%; border-radius: 5px; background:url(../img/down.svg) right center no-repeat; background-size: 15px;
  }  
  #dr_shetuan {  
    border:1px solid #eef1f5; font-size:16px; outline: none; padding: 10px; width: 100%; border-radius: 5px; background:url(../img/down.svg) right center no-repeat; background-size: 15px;
  }  

input, select {
    -webkit-appearance: none;
    box-shadow: none !important;
    outline: none;
    background-color: #fff;
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #000;


}
#enrollmentTitle{color:red;}
h2{text-align:center;}
/*补充*/
 .btn-primary {
            background: #3498db;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }
        .btn-primary:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52,152,219,0.3);
        }
        .btn-primary:disabled {
            background: #95a5a6 !important;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
        }
        .tips {
            margin: 20px 0;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            color: #2c3e50;
            border-left: 4px solid #3498db;
            font-size: 14px;
        }
        .tips span {
            color: #3498db;
            font-weight: 600;
            margin: 0 5px;
        }
        .mb-3 {
            margin-bottom: 20px;
        }
        select:disabled {
            background-color: #f8f9fa;
            cursor: not-allowed;
        }
        /* 添加动画效果 */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .form-control, .form-select, .tips {
            animation: fadeIn 0.5s ease-out;
        }
        /* 错误提示样式 */
        .error-message {
            color: #e74c3c;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }
        /* 响应式调整 */
        @media (max-width: 768px) {

            .btn-primary {
                padding: 10px 20px;
            }
        }
        /* 移动端下拉框样式优化 */
        @media (max-width: 768px) {
            .form-select {
                height: 46px;
                font-size: 16px;  /* 避免iOS自动缩放 */
                -webkit-appearance: none;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: right 15px center;
                background-size: 12px;
                padding-right: 40px;
            }
            
            /* 表单组间距调整 */
            .mb-3 {
                margin-bottom: 25px;
            }
            
            /* 标签文字调整 */
            .form-label {
                font-size: 15px;
                margin-bottom: 10px;
            }
            
            /* 输入框样式调整 */
            .form-control {
                height: 46px;
                font-size: 16px;
            }
            
            /* 提交按钮样式调整 */
            .btn-primary {
                height: 48px;
                font-size: 16px;
                margin-top: 30px;
            }
            
            /* 容器内边距调整 */
            .container {
                padding: 20px 5px;
                margin-top: 15px;
                margin-bottom: 15px;
            }
            
            /* 标题样式调整 */
            h2 {
                font-size: 18px;
                margin-bottom: 25px;
                text-align: center;
            }
            
            /* 提示信息样式调整 */
            .tips {
                margin: 25px 0;
                padding: 12px 15px;
                font-size: 14px;
                line-height: 1.5;
            }
            
            /* 选项样式优化 */
            .form-select option {
                padding: 12px;
                font-size: 16px;
            }
            
            /* 禁用状态样式优化 */
            select:disabled {
                opacity: 0.7;
                background-color: #f8f9fa;
            }
            
            /* 点击状态优化 */
            .form-select:focus {
                border-color: #3498db;
                box-shadow: none;
            }
            
            /* 添加触摸反馈 */
            .form-select:active {
                background-color: #f8f9fa;
            }
            
            /* iOS设备样式优化 */
            @supports (-webkit-touch-callout: none) {
                .form-select,
                .form-control {
                    font-size: 16px;  /* 防止iOS缩放 */
                }
            }
        }
        
        /* 下拉框激活状态动画 */
        .form-select:not(:disabled) {
            transition: all 0.3s ease;
        }
        
        .form-select:not(:disabled):hover {
            border-color: #3498db;
            cursor: pointer;
        }
        
        /* 添加选择提示图标 */
        .select-wrapper {
            position: relative;
        }
        
        .select-wrapper::after {
            content: '';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        /* 禁用状态按钮样式 */
        .btn-primary:disabled,
        .btn-secondary:disabled {
            background: #bdc3c7;
            color: #95a5a6;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
            opacity: 0.8;
        }
        
        /* 已满状态按钮样式 */
        .btn-secondary:disabled {
            background: #95a5a6;
            border-color: #95a5a6;
        }
        
        /* 禁用状态悬停效果 */
        .btn-primary:disabled:hover {
            background: #95a5a6;
            transform: none;
            box-shadow: none;
        }
        
        /* 添加按钮文字样式 */
        .btn-primary:disabled .submit-text {
            color: #fff;
        }

        #enrollmentTitle {
            transition: all 0.3s ease;
            position: relative;
        }

        #enrollmentTitle:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #3498db;
            border-radius: 3px;
        }


/*补充*/
@media (max-width:767px) {
	.container{width:100%;}
	
}