@charset "utf-8";
/* 通用部分 */
/* 检测高DPI屏幕 */
@media (min-resolution: 1.5dppx) {
  /* 高DPI环境下的样式 */
  body {
    zoom: 0.75; /* 调整字体大小 */
  }
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei";
    line-height: 1;
}

a {
    color: #005bac;
    text-decoration: none;
    transition: all 0.3s ease;
}

li {
    list-style: none;
}

a:hover {
    color: #1793ff;
}

a:active {
    color: #004683;
}

button {
    outline: none;
}

body {
    background-color: #f3f7fa;
    overflow: hidden auto;
}

.must::before {
    content: '*';
    display: inline-block;
    margin-right: 6px;
    color: #ea5a5a;
}

.padding-top-20 {
    padding-top: 20px;
}

.color-black {
    color: #333!important;
}

input[type="submit"] {
    outline: none;
    border: none;
    cursor: pointer;
}

.btn-fill-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    flex-grow: 1;
    height: 44px;
    border-radius: 4px;
    background-image: linear-gradient( 90deg, rgb(0,135,255) 0%, rgb(0,91,172) 100%);
    font-size: 18px;
    color: rgb(255, 255, 255);
}

.btn-fill-blue:hover {
    color: #fff;
    background-image: linear-gradient( 90deg, rgb(33, 152, 255) 0%, rgb(26, 105, 173) 100%);
}

.btn-fill-blue:active {
    color: #fff;
    background-image: linear-gradient( 90deg, rgb(0, 105, 197) 0%, rgb(0, 75, 141) 100%);
}
/* /通用部分 */

/* 图片查看器 */
.viewer-container {
    z-index: 999999 !important;
}

.viewer-reset,
.viewer-prev,
.viewer-play,
.viewer-large,
.viewer-next,
.viewer-navbar {
    display: none !important;
}

.viewer-close {
    z-index: 999999
}

/* /图片查看器 */

/* 日期插件 */
.layui-laydate-header * {
    line-height: 30px;
}
/* /日期插件 */

/* 头部 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 4.2%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px 0px rgba(94, 94, 94, 0.5);
    position: relative;
    z-index: 100;
}

header .left {
    display: flex;
    align-items: center;
}

header .left .system-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

header .left .system-name .logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    color: rgb(68, 68, 68);
    font-weight: bold;
}

header .left .system-name .logo::before {
    content: '';
    display: inline-block;
    width: 46px;
    height: 46px;
    margin-right: 10px;
    background: url(../img/logo.png);
}
  
header .left .system-name .pingtai {
    margin-left: -4px;
    color: rgb(136, 136, 136);
    transform: scale(0.95);
}

header .left ul {
    display: flex;
    margin-left: 55px;
}

header .left ul li {
    margin: 0 55px;
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 1440px) {
    header .left ul li {
        margin: 0 40px;
    }
}

header .left ul li.active::after {
    content: '';
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    background-color: rgb(0, 91, 172);
    position: absolute;
    bottom: -15px;
    left: 0;
}

header .left ul li a {
    font-size: 22px;
    color: rgb(68, 68, 68);
}

header .left ul li a:hover,
header .left ul li.active a {
    color: rgb(0, 91, 172);
}

header .right .toLogin {
    font-size: 22px;
    color: rgb(68, 68, 68);
}
/* /头部 */

main {
    min-height: calc(100vh - 100px - 30px - 180px);
}

/* 尾部 */
footer {
    width: 100%;
    background-color: #dbdbdb;;
}

footer .contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 11.72%;
    background-color: rgb(0, 91, 172);
}

footer .contact span {
    display: flex;
    align-items: center;
    font-size: 28px;
    color: rgb(255, 255, 255);
    font-weight: bold;
}

footer .contact span::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 24px;
    background: url(../img/icon-ring-up.png);
}

footer .info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: rgb(0, 91, 172);
    padding-top: 30px;
    padding-bottom: 20px;
}

footer .info .text1 {
    width: 100%;
    text-align: center;
    font-size: 32px;
    color: #FFFFFF;
}

footer .info .text2 {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 16px;
}

footer .info span {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: rgb(255, 255, 255);
    /* font-weight: bold; */
    margin-top: 16px;
}

footer .info span::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 16px;
    background: url(../img/icon-ring-up.png);
    background-size: contain;
}

footer .contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 48px;
    background-color: rgb(255, 255, 255);
    font-size: 24px;
    color: rgb(51, 51, 51);
    font-weight: bold;
}
  
footer .contact a:hover {
    background-color: rgb(224, 224, 224);
}
  
footer .contact a:active {
    background-color: rgb(192, 192, 192);
}

footer .copy-right {
    min-height: 100px;
    padding: 16px 0;
    text-align: center;
    font-size: 18px;
    color: rgb(118, 118, 118);
}

footer .copy-right a,
footer .copy-right p {
    display: inline-block;
    margin: 12px 16px;
}

footer .copy-right a:nth-child(n + 3) {
    margin: 4px 100px;
    color: rgb(118, 118, 118);
}
/* /尾部 */

/* 对话通通 */
.fixed-right {
    position: fixed;
    bottom: 10%;
    right: 0;
    z-index: 999;
    transform: translateY(-50%);
}

.fixed-right li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 8px 0 0 8px;
    background-color: rgb(156, 208, 255);
    font-size: 16px;
    color: rgb(0, 91, 172);
}

.fixed-right li a:hover {
    background-color: rgb(173, 217, 255);
}

.fixed-right li a:active {
    background-color: rgb(127, 195, 255);
}

.fixed-right li a.icon-dhtt::before {
    content: '';
    display: inline-block;
    width: 43px;
    height: 39px;
    margin-bottom: 6px;
    background: url(../img/icon-dhtt.png);
}
/* /对话通通 */

/* 步骤模块 */
.step-box {
    display: flex;
    justify-content: space-between;
    width: 58.2%;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

.module.pay .step-box {
    width: 73.33%;
}

.step-box::before {
    content: '';
    display: inline-block;
    width: calc(100% - 40px - 40px);
    height: 16px;
    background-color: rgb(222, 222, 222);
    position: absolute;
    left: 50px;
    bottom: 50px;
}

.step-box div {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
}

.step-box div .name {
    color: rgb(153, 153, 153);
}

.step-box div.active .name {
    color: rgb(51, 51, 51);
}

.step-box div .num {
    position: relative;
    margin-top: 12px;
}

.step-box div .num span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgb(204, 204, 204);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    color: rgb(170, 170, 170);
    position: relative;
    z-index: 10;
}

.step-box div.active .num span {
    border-color: rgb(255, 255, 255);
    background-color: rgb(0, 91, 172);
    color: #fff;
}

.step-box div.finish .num span {
    border-color: rgb(0, 91, 172);
}

.step-box div.finish:nth-child(n + 2) .num::before,
.step-box div.active:nth-child(n + 2) .num::before {
    content: '';
    width: calc((100vw * 0.3943 - 80px) / 2);
    height: 16px;
    background-color: #005bac;
    position: absolute;
    right: 20px;
    bottom: 10px;
    z-index: 8;
}

.step-box div.finish .num span::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: url(../img/gou.png) no-repeat center center, #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
}
/* /步骤模块 */


/* 模块盒子 */
.module {
    width: 67.75%;
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
}

.module.pay {
    width: 78.83%;
}

.module .module-title {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    font-size: 22px;
    color: rgb(85, 85, 85);
    background-image: linear-gradient(0deg, rgb(247,248,251) 0%, rgb(253,255,255) 50%, rgb(255,255,255) 100%);
}

.module .module-title.register::before {
    content: '';
    display: inline-block;
    width: 31px;
    height: 32px;
    margin-right: 12px;
    background: url(../img/icon-register.png);
}

.module .module-title.pay::before {
    content: '';
    display: inline-block;
    width: 31px;
    height: 32px;
    margin-right: 12px;
    background: url(../img/icon-pay.png);
}
/* /模块盒子 */