/* 意见反馈弹窗 */
#yjfk_dialog {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;  
    background-color: #000;  
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

#yjfk-container {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    margin: 0 auto;
    background-color: #fff;
    padding: 54px 80px;
}

.yjfk-title {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    line-height: 24px;   
    padding-bottom: 15px;
}

.yjfk-content {
    display: flex;
    flex-direction: column;
    color: #555;
}

.yjfk-content .content-detail {
    font-size: 14px;
    padding: 10px;
}

.yjfk-btn {
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
    width: 261px;
    height: 50px;
    background: #BE956B;
    color: #fff;
    font-size: 20px;
    border-radius: 2px 4px 4px 4px;
    padding: 14px 50px 15px;
    opacity: 0.5;
    text-align: center;
    pointer-events: none;
}

.yjfk-btn-active {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

/* 意见反馈表单内容区 */

#yjfk-boxwrap {
    margin: 20px auto 0;
    text-align: center;
}

.yjfk-header {
    margin: 0px 13px 35px;
    padding: 16px 0;
    border-bottom: 1px solid #E2E2E2;
    font-size: 16px;
    font-weight: bold;
    color: rgba(0,0,0,0.8);
    line-height: 24px;
}
/* 表单样式 */
.yjfk-body {
    border-bottom: 1px dashed #E2E2E2;
}

#yjfkForm {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.yjfk-form-item {
    position: relative;
    text-align: right;
    padding-bottom: 16px;
}

.yjfk-form-item:nth-child(odd) {
    padding-left: 58px;
    padding-right: 49px;
}
.yjfk-form-item:nth-child(even) {
    padding-right: 58px;
}
.yjfk-form-long-item {
    width: 100%;
    padding-right: 58px !important;
}
.yjfk-form-odd-item {
    padding-left: 58px;
    padding-right: 10px !important;
}

.yjfk-form-item input, textarea {
    width: 388px;
    height: 34px;
  font-family: "SourceHanSansCN-Regular";
    color: #555555;
    background: #FFFFFF;
    padding: 6px 10px;
    border-radius: 2px;
    padding-left: 5px;
    border: 1px solid #E0E0E0;
    vertical-align: middle;
}

textarea {
    vertical-align: top;
    width: 955px;
    height: 118px;
}

input::-webkit-input-placeholder {
    color: #CDCDCD;
}

textarea::-webkit-input-placeholder {
    font-size: 14px;
    vertical-align: top;
    color: #CDCDCD !important;
}

.yjfk-form-item .yjfk-label {
    display: inline-block;
    width: 123px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    color: #4A4A4A;
}

.yjfk-form-item .yjfk-label span {
    color: red;
}

.yjfk-form-item .errors {
    position: absolute;
    bottom: 0;
    margin-left: 132px;
    font-size: 12px;
}

.yjfk-code {
    display: inline-block;
    height: 34px;
    line-height: 34px;
    width: 101px;
    font-size: 14px;
    background: #FFFFFF;
    color: #BE956B;
    border-radius: 2px;
    border: 1px solid #BE956B;
    margin-left: 10px;
    text-align: center;
    vertical-align: bottom;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
}
.yjfk-code-active {
    opacity: 0.5;
    pointer-events: none;
}

#yjfkForm .submit {
    width: 100%;
    margin: 0 auto 49px;
    width: 261px;
    height: 50px;
    background: #BE956B;
    border-radius: 2px 4px 4px 4px;
    border: 1px solid #ccc;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
}

/* 底部 */
.yjfk-footer {
    display: flex;
    padding: 15px 0;
}

.yjfk-footer img {
    display: inline-block;
    vertical-align: bottom;
    width: 20px;
    height: 20px;
}

.yjfk-footer span  {
    color: #333;
    line-height: 20px;
}

.yjfk-footer .footer {
    margin-left: 60px;
}
