.loginContent {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 50px;
}
.loginIcon {
    background-color: #F5F7FA;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
}
/* 标题 */
.title {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
.title .line {
    background-color: #B2B7C0;
    width: 2px;
    height: 25px;
    margin: 0 15px;
}
.title .rightTitle {
    margin-left: 0 !important;
    height: 34px;
    color: black;
    font-size: 22px;
}
/* 输入框区域 */
.contentItem {
    padding: 0 20px;
}
.myInput {
    height: 38px;
    line-height: 1.3;
    border: 1px solid #eee;
    background-color: #fff;
    color: rgba(0,0,0,.85);
    border-radius: 2px;
    display: block;
    width: 100%;
    padding-left: 10px;
    outline: none;
}
.myBtn {
    display: inline-block;
    vertical-align: middle;
    height: 38px;
    line-height: 38px;
    border: 1px solid transparent;
    padding: 0 18px;
    background-color: #009688;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}
.phoneInput {
    display: flex;
    border: 1px solid #CECECE;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px 0;
}
.veriCode {
    display: flex;
}

.veriCode .left {
    display: flex;
    border: 1px solid #CECECE;
    border-radius: 5px;
    overflow: hidden;
    flex-grow: 1;
}
.veriCode .right {
    flex-shrink: 0;
    margin-left: 10px;
}
.checkboxContent {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.loginBtn {
    margin-top: 20px;
}
.loginBtn>div {
    width: 100%;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
}
.agreement {
    margin-bottom: 30px;
    text-align: center;
    margin-top: 25px;
}
.noSend {
    cursor: no-drop;
    color: #ccc;
}

#msgInfo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,.6);
    color: white;
    padding: 11px 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 2px;
    z-index: 10000;
    display: none;
}

.checkboxContent label {
    font-weight: normal;
}
/* 隐藏复选框 */
input[type='checkbox'] {
    /*隐藏掉原先实际的 checkbox 框，之所以没用 display:none; 这种简单直接的方式，是因为这种方法会把它从键盘 tab 键切换焦点的队列中完全删除*/
    position: absolute;
    clip: rect(0,0,0,0);
}
  /* 模拟复选框 */
  /* 未选中时的样式 */
input[type='checkbox']+label::before {
    content: '\a0';        /*填充内容：不换行空格*/
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    border: 1px solid #d2d2d2;
    line-height: 16px;
    background-color: #fff;
    text-align: center;
}

/* 选中时的样式 */
input[type='checkbox']:checked+label::before {
    content: '\2713';           /*对号的 Unicode字符*/
    color: white;              /*对号的颜色*/
    background: #5FB878;    /*对号的背景颜色*/
}
input[type='checkbox']:checked+label {
    color: red;
}