/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input, button, select, textarea {
    outline: none;
    font-family: inherit;
}

/* 基础样式 */
body {
    font-family: "Microsoft YaHei", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f7fa;
}

a {
    color: #409eff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #66b1ff;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 头部样式 */
.header {
    width: 1190px;
    height: 75px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    float: left;
    margin-top: 10px;
}

.header-message {
    float: right;
    margin-right: 110px;
    line-height: 75px;
    font-size: 14px;
}

.header-message a {
    margin: 0 5px;
    display: inline-block;
}

a.plogin {
    color: #409eff;
    font-weight: 500;
}

a.plogin:hover {
    color: #66b1ff;
}

/* 底部样式 */
.footer {
    width: 1190px;
    margin: 40px auto;
    padding-top: 30px;
    border-top: 1px solid #e4e7ed;
}

.footer-msg {
    text-align: center;
    color: #606266;
    font-size: 12px;
    line-height: 25px;
}

.footer-msg a {
    display: inline-block;
    color: #606266;
    font-size: 12px;
    margin: 0 5px;
}

.footer-msg a:hover {
    color: #409eff;
}

.footer-msg b {
    font-weight: normal;
}

.footer p {
    text-align: center;
    font-size: 12px;
    line-height: 25px;
    color: #909399;
}

/* 组件样式 */
.normal {
    font-size: 14px;
    color: #606266;
    display: inline-block;
}

a.normal:hover {
    color: #409eff;
}

/* 输入框样式 */
.frameInput {
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: 1px solid #dcdfe6;
    background-color: #fff;
    text-indent: 12px;
    color: #303133;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.frameInput:focus {
    border-color: #409eff;
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

/* 按钮样式 */
.frameBtn {
    width: 100%;
    height: 40px;
    display: block;
    background-color: #409eff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.frameBtn:hover {
    background-color: #66b1ff;
}

.frameBtn:active {
    background-color: #3a8ee6;
}

/* 表单样式 */
.inputcon {
    margin-top: 20px;
}

.inputcon p, .inputcon label {
    display: inline-block;
    width: 200px;
    text-align: right;
    line-height: 40px;
    font-size: 14px;
    vertical-align: top;
    color: #606266;
}

.inputcon input {
    width: 240px;
    display: inline-block;
    vertical-align: bottom;
    background-color: #fff;
}

.inputcon b {
    color: #f56c6c;
    margin-right: 3px;
}

.inputcon span {
    line-height: 38px;
    color: #f56c6c;
    margin-left: 10px;
    display: inline-block;
    font-size: 12px;
}

.tip {
    color: #909399;
    font-size: 12px;
    margin-top: 10px;
    text-indent: 205px;
}

.quhao {
    display: inline-block;
    vertical-align: bottom;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    overflow: hidden;
}

.quhao div {
    display: block;
    float: left;
    width: 50px;
    height: 40px;
    border-right: 1px solid #dcdfe6;
    line-height: 40px;
    text-align: center;
    color: #606266;
    background-color: #f5f7fa;
}

input.regPhone {
    border: none;
    line-height: 40px;
    height: 40px;
    text-indent: 12px;
    width: 190px;
}

input.yzm {
    width: 100px;
    background-color: #fff;
}

.subBtn {
    display: block;
    width: 100px;
    height: 40px;
    border-radius: 4px;
    background-color: #409eff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.subBtn:hover {
    background-color: #66b1ff;
}

.subBtn:active {
    background-color: #3a8ee6;
}

.dltip {
    line-height: 35px;
    color: #606266;
    font-size: 14px;
    text-indent: 110px;
}

.dltip span {
    font-weight: 500;
    margin-right: 10px;
    color: #303133;
}
