body {
    background: #FFF;
}

/* 去掉自动填充黄色背景 */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
input::placeholder {
    color: #bbb;
}

/* 企业完善信息自定义modal样式 */
.en-w-25 {
    width: 25%;
}
.en-w-18 {
    width: 18%;
}
.en-w-75 {
    width: 75%;
}
.inline-block {
    display: inline-block;
}
.en-w-offset-25 {
    margin-left: 25%;
}
.en-w-offset-18 {
    margin-left: 18%;
}
.en-modal-open {
    overflow: hidden;
}
.en-tip {
    font-size: 12px;
    color: #666666;
    /* margin-top: 8px; */
    display: inline-block;
}
.en-form-control.en-error {
    border: 1px solid red;
}
.en-modal-mask {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
    height: 100%;
    filter: alpha(opacity=50);
    z-index: 1000;
}
.en-modal-wrap {
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    /* overflow: hidden; */
}
.en-modal {
    font-family: "Monospaced Number", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    width: auto;
    margin: 0 auto;
    top: 100px;
    padding-bottom: 24px;
}
.en-modal {
    width: 595px;
}
.en-content {
    position: relative;
    background-color: #fff;
    border: 0;
    border-radius: 4px;
    background-clip: padding-box;
}
.en-modal .en-content {
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 60px 0;
}
.en-title {
    /* padding-top: 32px; */
    font-size: 22px;
    color: #166bc7;
    text-align: center;
}
.en-sub-title {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin-top: 8px;
}
.en-body {
    padding: 48px 50px 0;
}
.en-form-group {
    margin-bottom: 12px;
}
.en-form-group:after {
    content: '';
    clear: both;
    display: block;
}
.en-form-label,
.en-form-control {
    float: left;
}
.en-form-label {
    padding: 8px;
    text-align: right;
    padding-left: 0;
    color: rgba(0,0,0,0.87);
}
.en-form-label.required:before {
    content: '*';
    color: red;
}
.en-form-control {
    border: 1px solid #DDE0E2;
    border-radius: 2px;
    padding: 7px 10px;
    font-size: 14px;
    background: #FFF;
}
.en-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
.en-dropdown-btn {
    width: 100%;
    text-align: left;
    position: relative;
}
.en-dropdown-btn:before,
.en-dropdown-btn:after {
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    border-right: 5px solid transparent;
    border-bottom: 0;
    border-left: 5px solid transparent;
    position: absolute;
    right: 12px;
}
.en-dropdown-btn:before {
    border-bottom: 5px solid;
    top: 50%;
    margin-top: -5px;
}
.en-dropdown-btn:after {
    border-top: 5px solid;
    top: 50%;
    margin-top: 2px;
}
.en-dropdown-menu {
    position: absolute;
    left: 0;
    top: 40px;
    background: #FFFFFF;
    border: 1px solid rgba(120,130,140,0.13);
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.10);
    border-radius: 4px;
    padding: 5px 0;
    width: 100%;
    z-index: 99;
    /* height: 170px; */
    max-height: 180px;
    overflow-y: auto;
}
a.en-dropdown-item {
    display: block;
    font-size: 12px;
    color: rgba(0,0,0,0.87);
    line-height: 12px;
    padding: 8px 11px;
}
.en-dropdown-item:hover {
    background: #f7f7f7;
}
.en-btn-group {
    width: 100%;
    padding-top: 24px;
    text-align: center;
}
.en-btn {
    width: 76px;
    padding: 5px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #FFF;
    font-size: 14px;
    color: #323232;
    cursor: pointer;
}
.en-submit {
    background: #166bc7;
    border-color: #166bc7;
    color: #FFF;
}
.en-btn + .en-btn {
    margin-left: 12px;
}
.en-btn:hover {
    background: #f8f8f8;
}
.en-submit:hover {
    background-color: #3886cf;
    border-color: #3886cf;
    color: rgba(255, 255, 255, 1);
}

.en-form-control:-webkit-input-placeholder{
    color: #BBBBBB;;
}
