body {
    font-family: "microsoft sans serif";
    font-size: 15px;
    font-weight: normal;
    color: #444;
    margin: 0px;
    padding: 0px;
    background: #fff;
}

p, form, h1, h2, h3, h4, h5, h6, input, dl, dd, table, td, input, ul, li {
    margin: 0px;
    padding: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal
}

ul, ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

img {
    border: none;
}

li {
    list-style: none
}

a {
    color: #666;
    text-decoration: none;
    -webkit-transition: all ease-in-out 30ms;
    transition: all ease-in-out 30ms;
    font-weight: normal;
}

a:hover {
    color: #4395ff;
}

.clear {
    clear: both;
    height: 0;
}

input, button {
    outline: none;
    border: none;
}

input::-webkit-input-placeholder {
    color: #999 !important;
}

input::-moz-placeholder {
    color: #999 !important;
}

input:-moz-placeholder {
    color: #999 !important;
}

input:-ms-input-placeholder {
    color: #999 !important;
}

.inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.header .inner {
    min-height: 110px;
    display: flex;
}

/*logo*/
.header .logo {
    width: 90px;
    margin-top: 20px;
    margin-right: 65rem;
    display: flex;
}

.header .logo img {
    width: 100%;
}

/*导航*/
.header nav {
    height: 110px;
    display: flex;
    position: relative;
    z-index: 1;
}

.header nav ul li {
    width: 70px;
    font-size: 16px;
    font-weight: 400;
    line-height: 110px;
    text-align: center;
    margin-right: 5rem;
    float: left;
    position: relative;
}

.header nav ul li a {
    height: 110px;
    display: inline-block;
    color: #000;
}

.header nav ul li a i {
    width: 22px;
    height: 1px;
    display: block;
    background-color: #0184FF;
    margin: -35px auto;
}

.header nav ul li a:hover {
    color: rgb(0, 112, 218);
}

.header nav ul li ul {
    position: absolute;
    width: 120px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    top: 75px;
    left: -25px;
    padding: 5px 0px;
    display: none;
}

.header nav ul li:hover ul {
    display: block;
}

.header nav ul li ul li {
    width: auto;
    float: none;
    margin-right: 0px;
    line-height: 26px;
}

.header nav ul li ul li a {
    font-size: 12px;
    color: #666;
    text-align: center;
    height: 26px;
    line-height: 26px;
}

.header nav ul li ul li a:hover {
    width: 100px;
    height: 26px;
    line-height: 26px;
    background: rgba(10, 136, 255, 0.1);
    border-radius: 2px;
    color: #0070DA;
    text-align: center;
    display: inline-block;
}

/*注册*/
.header .logon {
    width: 100px;
    height: 34px;
    background: linear-gradient(90deg, rgba(59, 102, 206, 1.00) 0%, rgba(52, 182, 216, 1.00) 100%);
    box-shadow: 0px 4px 16px rgba(0, 112, 218, 0.28);
    border-radius: 2px;
    font-size: 14px;
    color: #FFF;
    font-weight: 400;
    padding: 0 22px;
    line-height: 34px;
    margin-top: 37px;
    display: flex;
}

.header .logon:hover {
    /*transform: translate3d(0, 1px, 0);*/
    transition: all .2s;
    transform: scale(1.1);
}

.banner {
    position: relative;
}

/*登录*/
.forget {
    top: 6rem !important;
    height: 410px !important;
    display: none;
}

.login, .forget {
    width: 322px;
    height: 348px;
    padding: 0 35px;
    background: rgba(255, 255, 255, 0.77);
    backdrop-filter: blur(5px);
    border-radius: 7px;
    float: right;
    top: 15rem;
    right: 25rem;
    position: absolute;
}

@media (max-width: 1680px) {
    .login {
        top: 5rem !important;
    }

    .forget {
        top: 2rem !important;
    }
}

/*注册弹窗*/
.modal-header {
    border: none;
    padding-bottom: 0px;
}

.modal-body {
    padding-top: 0px !important;
    padding-left: 35px !important;
    padding-right: 0px !important;
}

/*注册&登录标题*/
.login .title, .modal-body .title, .forget .title {
    text-align: center;
    color: rgb(1, 132, 255);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.login-form .form-group.form-bk, .logon-form .form-group.form-bk, .forget-form .form-group.form-bk {
    width: 250px;
    height: 40px;
    line-height: 40px;
    background-color: #F2F4F9;
    border-radius: 3px;
    margin-bottom: 40px;
}

.login-form .form-group.form-bk .control-label, .logon-form .form-group.form-bk .control-label, .forget-form .form-group.form-bk .control-label {
    width: 18px;
    text-align: center;
    margin-left: 10px;
    margin-right: 5px;
}

.login-form .form-group.form-bk input[type='text'], .logon-form .form-group.form-bk input[type='text'], .forget-form .form-group.form-bk input[type='text'] {
    width: 212px;
    height: 18px;
    border-left: 1px solid #DDE0EB;
    padding-left: 10px;
    background: none;
}

.login-form .form-group.form-bk input[type='password'], .logon-form .form-group.form-bk input[type='password'], .forget-form .form-group.form-bk input[type='password'] {
    width: 212px;
    height: 18px;
    border-left: 1px solid #DDE0EB;
    padding-left: 10px;
    background: none;
}

.login-form .login-btn, .logon-form .register-btn, .forget-form .changepwd-btn {
    width: 249.23px;
    height: 38.83px;
    line-height: 38.83px;
    text-align: center;
    color: #FFF;
    letter-spacing: 3px;
    background: rgb(1, 132, 255);
    border-radius: 3px;
}

/*记住密码*/
.form-group.form-remember {
    width: 80px;
    float: left;
    margin-left: 7px;
    position: relative;
}

.form-group.form-remember input[type='checkbox'] {
    width: 14px;
    height: 14px;
    -webkit-appearance: none;
    background: #FFF;
    border: 1px solid #D8DBE6;
    border-radius: 2px;
    position: absolute;
    top: -1px;
}

.form-group.form-remember input[type='checkbox']:checked {
    background: #0184FF url(../img/check.png) no-repeat center;
    background-size: 100%;
    border: 1px solid #0184FF;
}

.form-group.form-remember .control-label {
    color: rgb(153, 153, 153);
    font-weight: normal;
    margin-left: 20px;
}

/*找回密码*/
.login-form .form-group.form-retrieve {
    width: 65px;
    float: right;
    margin-right: 5px;
}

.login-form .form-group.form-retrieve .control-label {
    font-weight: normal;
}

.login-form .form-group.form-retrieve .control-label a {
    color: #999;
}

.login-form .form-group.form-retrieve .control-label a:hover {
    color: rgb(1, 132, 255);
}

/*注册系统*/
.modal.in .modal-dialog {
    margin-top: 15rem;
}

.modal-content {
    border-radius: 7px;
}

.logon-form .form-group {
    width: 50%;
    margin-right: 20px;
    float: left;
}

.logon-form .form-group:nth-child(2n) {
    margin-right: 0px;
}

.logon-form .form-group .control-label {
    position: relative;
    color: rgb(153, 153, 153);
    font-weight: normal;
}

.logon-form .form-group .control-label i {
    width: 1px;
    height: 18px;
    display: block;
    float: left;
    background-color: #DDE0EB;
    position: absolute;
    top: 11px;
    left: 26px;
}

.logon-form .form-group select {
    width: 195px;
    height: 40px;
    padding-left: 10px;
    border: none;
    color: #999;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../img/select_arrow.png) no-repeat scroll right center transparent !important;
    vertical-align: middle;
    margin-left: 2px;
}

.logon-form .form-group.form-registered {
    width: 135px;
    float: right;
}

.logon-form .register-btn {
    margin-top: 10px;
    margin-left: 135px;
}

/*手机验证码获取按钮*/
.logon-form .form-group.form-code input[type='text'], .forget-form .form-group.form-code input[type='text'] {
    width: 165px;
}

.logon-form .form-group.form-code a, .forget-form .form-group.form-code a {
    color: #999;
}

.logon-form .form-group.form-code a:hover, .forget-form .form-group.form-code a:hover {
    color: rgb(1, 132, 255);
}

/*想起密码，立即登录*/
.form-recall .control-label {
    font-weight: normal;
    color: #999;
    float: right;
    margin-right: 5px;
}

.form-recall {
    overflow: hidden;
}

.form-recall .control-label a {
    color: #4395ff;
}

/*主营业务*/
.main-business {
    margin-top: 65px;
    margin-bottom: 65px;
}

.main-business .inner {
    display: flex;
}

.main-business .business {
    height: 148px;
    padding: 24px 35px;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    display: flex;
    margin-right: 40px;
    border: 1px solid #FFF;
}

.main-business .business:hover {
    border: 1px solid #4395ff;
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    transition: all .6s;
}

.main-business .business:last-child {
    margin-right: 0px;
}

.main-business .business .icon {
    width: 80px;
    height: 95px;
    margin-top: 4px;
}

.main-business .business .description {
    margin-left: 12px;
}

.main-business .business .description b {
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.main-business .business .description b a {
    color: #000;
    font-size: 20px;
}

.main-business .business .description b a:hover {
    color: #4395ff;
}

.main-business .business .description p {
    font-size: 14px;
    color: rgb(153, 153, 153);
    line-height: 21px;
    margin-top: 5px;
}

/*底部*/
.footer {
    padding-top: 50px;
    height: 205px;
    background: #38405F;
    display: flex;
}

.footer .inner {
    display: flex;
}

.footer .f-nav {
    padding: 0 35px;
}

.footer .f-nav b {
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 12px;
    display: inline-block;
}

.footer .f-nav b a {
    color: #FFF;
}

.footer .f-nav p {
    line-height: 24px;
}

.footer .f-nav p a {
    color: rgba(255, 255, 255, 0.85);
}

.footer .logo {
    margin-top: 10px;
    margin-left: 77rem;
    display: flex;
}

/*预配舱单*/
.main-manifest {
    height: 900px;
    background: url("../img/manifest.png") no-repeat bottom center;
}

/*公司介绍*/
.main-company {
    margin-top: 30px;
}

.main-company p {
    display: flex;
    margin-bottom: 5px;
}

.main-company span {
    width: 22px;
    height: 22px;
    border-radius: 22px;
    display: block;
    text-align: center;
    color: #FFF;
    margin-right: 12px;
}

.main-company .q {
    background: rgb(238, 73, 92);
}

.main-company .a {
    background: rgb(0, 87, 247);
}

/*充值开票*/
.main-bill {
    margin-bottom: 60px;
}

.main-bill p {
    line-height: 22px;
    margin-left: 30px;
}

.main-bill p span {
    width: 90px;
    display: block;
    float: left;
}

/*帮助文档*/
.main-help {
    margin-bottom: 60px;
}

.main-help .download-pdf {
    width: 1160px;
    border-bottom: 1px dashed rgb(189, 189, 189);
    display: flex;
    padding-bottom: 15px;
    margin: 20px auto;
    line-height: 24px;
}

.main-help .download-pdf img {
    margin-left: 1rem;
    margin-right: 1rem;
}

.main-help .download-pdf .down-btn {
    color: #4395FF;
    float: right;
    flex: 1;
    text-align: right;
    display: block;
}

.agreement {
    margin: 0 auto;
    padding: 50px 0;
}

.agreement h2.title {
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.agreement b {
    margin: 10px 5px 0px 0;
    display: inline-block;
}

.agreement p {
    line-height: 25px;
}

.agreement p a {
    color: #4395ff;
    text-decoration: underline;
}

.agreement p.underline {
    text-decoration-line: underline;
    font-size: 16px;
    font-weight: bold;
}

.agreement p.margin-bottom {
    margin-bottom: 30px;
}

.has-feedback {
    position: relative;
}

.help-block {
    display: block;
    position: absolute;
    left: 38px;
    z-index: 99;
    line-height: 15px !important;
}

.help-block:nth-of-type(2) {
    top: 33px;
}

.form-control-feedback {
    top: 2px !important;
}