
* {
    padding: 0;
    margin: 0;
    font-family: "microsoft yahei";
}

body {
    background: #f1f1f1;
}

a, img {
    border: none;
}

a {
    text-decoration: none;
}

ul, li {
    list-style: none;
}

table, table tr, table td {
    border-collapse: collapse;
}
/* 头部 */
.header-box{
    height: 75px;
    background: #FFFFFF;
}
.header-box .header-content{
    height: 75px;
    display: flex;
    align-items: center;
}

.header-box .website-name{
    display: flex;
}

.header-box .website-name .logo{
    width: 60px;
    height: 60px;
    background: url("../images/logo.png") no-repeat;
    background-size: 100% 100%;
    margin-right:7px;
}
.header-box .website-name .text-wrap .title{
    /*width: 218px;*/
    height: 28px;
    background: #004CA0;
    text-align: center;
    line-height: 28px;
    color: #FFFFFF;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 2px;
    text-align: center;
}
.header-box .website-name .text-wrap .sub-title{
    font-size: 24px;
    color: #004CA0;
    line-height: 30px;
}
.header-box .header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-box .header-right .header-right-ul {
    display: flex;
    align-items: center;
    margin: 0;
}
.header-box .header-right .header-right-ul li {
    margin-left: 16px;
    cursor :pointer;
    display: flex;
    align-items: center;
}
.header-right-img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.header-right-text {
    font-size: 16px;
}
.text-wrap-w {
  width: 1000px;
  margin: 0 auto;
  color: red;
  font-size: 16px;
  font-weight: 800;
}
.content{
    min-height: calc(100vh - 155px);
    background: #E7F0FB url("../images/body-bg.png") top center no-repeat;
    background-size: cover; /* 覆盖整个元素 */
    background-position: center; /* 居中显示 */
    background-repeat: no-repeat; /* 不重复 */
}
/* 底部 */
.footer-box {
    height: 80px;
    background: #1E2C45;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 10px;
}

.footer-box .friend-link {
    font-size: 14px;
    color: #FFFFFF;
    /* line-height: 28px; */
    margin-bottom: 2px;
}

.footer-box .friend-link > a {
    text-decoration: underline;
    margin-right: 15px;
    color: #FFFFFF;
}

.footer-box .container > p {
    font-size: 12px;
    color: #FFFFFF;
    line-height: 20px;
    margin: 0;
}

.footer-box .container > p .text {
    color: #FFFFFF;
    margin-left: 10px;
    margin-right: 10px;
}

.container {
    width: 1070px;
    margin: 0 auto;
}
.login-wrap{
    width: 1070px;
    height: 460px;
    background: url("../images/login-bg.png") no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    padding-top: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-wrap .login-box{
    float: right;
    margin-right: 16px;
    width: 390px;
    height: 430px;
    background: #FFFFFF;
    border-radius: 16px 8px 8px 16px;
}
/* 登录框加图片 */
.login-content{
    width: 335px;
    margin: 0 auto;
}
.login-wrap .login-box .login-title{
    color: #333333;
    font-size: 28px;
    padding-top: 16px;
    margin-bottom: 20px;
}
.login-wrap .login-box .form-list li{
    position: relative;
    height: 52px;
    width: 100%;
    margin-bottom: 20px;
}
.login-wrap .login-box .form-list .form-item{
    position: relative;
    height: 52px;
    width: 100%;
}

.login-wrap .login-box .form-list .form-item .code-img {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 96px;
    height: 42px;
    cursor: pointer;
}

.login-wrap .login-box .form-list .form-item .code-img>img{
    display: block;
    width: 100%;
    height: 100%;
}
/* 登录框 */
.login-wrap .login-box .form-list .form-item .icon-wrap{
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
}

.login-wrap .login-box .form-list .form-item .icon-wrap.icon-user{
    background: url("../images/icon-user.png") no-repeat;
    background-size: 100% 100%;
}

.login-wrap .login-box .form-list .form-item .icon-wrap.icon-code{
    background: url("../images/icon-code.png") no-repeat;
    background-size: 100% 100%;
}

.login-wrap .login-box .form-list .form-item .icon-wrap.icon-password{
    background: url("../images/icon-password.png") no-repeat;
    background-size: 100% 100%;
}

.login-wrap .login-box .form-list .form-item .input-text{
    border: 0;
    border-bottom: 1px solid #D1D4D8;
    font-size: 18px;
    height: 52px;
    box-sizing: border-box;
    width: 100%;
    padding-left: 40px;
}

.login-wrap .login-box .form-list .form-item .input-text::placeholder{
    color:#999999;
}

.login-wrap .login-box .form-list .form-item .input-text:focus{
    outline: none;
    border-bottom: 1px solid #D1D4D8;
}

.login-wrap .login-box .form-tool .check{
    color: #999999;
    font-size: 14px;
    margin-bottom: 18px;
}

.login-wrap .login-box .form-tool .check .icon-check{
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    background: url("../images/icon-check-default.png") no-repeat;
    background-size: 100% 100%;
    margin-top: -3px;
    margin-right: 3px;
    appearance: none;
    -webkit-appearance: none;
}

.login-wrap .login-box .form-tool .check .icon-check.active,
.login-wrap .login-box .form-tool .check .icon-check:checked{
    background: url("../images/icon-check-active.png") no-repeat;
    background-size: 100% 100%;
}

.login-wrap .login-box .form-tool .check>a{
    color: #326DF3;
    font-size: 14px;
}

.login-wrap .login-box .login-btn{
    display: block;
    width: 335px;
    height: 50px;
    background: #004CA0;
    border-radius: 4px;
    text-align: center;
    line-height: 48px;
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 12px;
}

.login-wrap .login-box .login-btn:hover{
    opacity: 0.9;
}

.login-wrap .login-box .other-login{
    text-align: center;
    color: red;
    font-size: 16px;
    font-weight: 800;
}

.login-wrap .login-box .other-login>a{
    color:#326DF3;
    font-size: 16px;
    text-decoration: underline;
}
/* 代报人员模块框 */
.modal-body-db {
    font-size:18px;
    font-weight: 500;
}
.modal-body-db-ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-body-db-ul a {
    width:178px;
    height: 160px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.modal-body-db-ul a li {
    background-color: #fcfafa;
    text-align: center;
    list-style-type: none;
    padding-top: 15px;
    height: 100%;
}
.modal-body-db-ul a li img {
    width: 64px;
    height: 64px;
}
.modal-body-db-ul a li p {
    margin: 0;
    margin-top: 15px;
}
/* 技术支持模特框 */
.modal-body-jszc {
    font-size:18px;
    font-weight: 500;
    display: flex;
    justify-content: space-evenly;
}
.jszc_div {
    width: 31%;
    margin:0 1%;
}
.jszc_div img {
    width: 100%;
}
.jszc_btn {
    width: 150px;
    height: 36px;
    position: absolute;
    top: 71%;
    left: 50%;
    transform: translate(-50%, -50%); /* 向左和向上移动元素自身宽高的50% */
    background-image: linear-gradient(180deg, #62C6DA 0%, #34BC84 100%);
    box-shadow: 0px 6px 4px 0px rgba(0,0,0,0.09);
    border-radius: 5px;
    border: none;
    color: #ffffff;   
}