.app { background: white; // min-height: 100vh; width: 100vw; display: flex; flex-direction: column; overflow-x: hidden; } #iframe-header { width: 100%; border: none; /* 设置初始高度为0,之后通过JS动态调整 */ min-height: 265px; min-width: 1200px; position: relative; overflow: hidden; background-image: url("./header-bg.png"); background-repeat: no-repeat; background-size: cover; & > * { overflow: hidden; } .top-row { color: white; margin-top: -2px; line-height: 30px; background: rgba(0, 0, 0, 0.2); font-size: 12px; .divider { padding: 0 10px; color: #ccc; } .text-link { cursor: pointer; &:hover { text-decoration: underline; } } .top-row-content { display: flex; flex-direction: row; justify-content: space-between; .top-row-left { display: flex; flex-direction: row; align-items: center; } .top-row-right { display: flex; flex-direction: row; align-items: center; } } } .second-row { padding: 13px 0 20px; width: 1200px; margin: 0 auto; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; .gov-logo { width: 198px; height: 47px; cursor: pointer; background: url(./gov_logo.png) no-repeat; background-size: 100%; position: relative; } .divider { margin: 5px 19px 0 20px; width: 1px; height: 37px; background-color: #fff; opacity: 0.3; } .logo { width: 198px; height: 47px; cursor: pointer; background: url(./logo0925.svg) no-repeat; background-size: 100%; position: relative; } .region-box { display: flex; flex-direction: row; align-items: center; .position-logo { width: 20px; height: 20px; background: url("./icon-areaL.png") no-repeat; background-size: contain; } .province { margin-left: 5px; color: white; } .city { margin-left: 5px; border: 1px solid #f1f1f1; background: #f1f1f1; color: black; border-radius: 4px; padding: 0 10px; font-size: 14px; } } } .third-row { padding-top: 4px; box-sizing: border-box; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.2); .tab-list { display: flex; flex-direction: row; width: 1200px; margin: 0 auto; } .tab-item { font-size: 15px; min-width: 40px; padding: 5px 10px 10px 10px; color: white; cursor: pointer; border-bottom: 4px solid rgba(255,255,255,0); transition: all 0.2s ease-in; &.active,&:hover { border-bottom: 4px solid rgba(255,255,255,0.6); } } } .page-title-row { padding-top: 40px; width: 1200px; margin: 0 auto; display: flex; flex-direction: row; align-items: center; .position-logo { width: 30px; height: 30px; background: url("./weizhitu.png") no-repeat; background-size: contain; } .page-title { margin-left: 10px; font-size: 24px; color: #666; } } } #iframe-footer { width: 100%; border: none; /* 设置初始高度为0,之后通过JS动态调整 */ height: fit-content; min-height: 360px; position: relative; overflow: hidden; } @media (max-width: 1365px) { #iframe-footer { min-height: 600px; } } #app .container { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 20px; height: 0; flex: 1; position: relative; .toast { position: absolute; left: 50%; transform: translateX(-50%); top: -40px; z-index: 999; width: 330px; background-color: #ffffff; box-shadow: 0 0 4px #d9d9d9; padding: 5px 10px; border-radius: 20px; font-size: 15px; text-align: center; color: #ffffff; opacity: 0; transition: all 0.3s ease-in; &.show { opacity: 1; top: 50px; } &.success { background-color: #00cf4a; box-shadow: 0 0 4px #069338; } &.error { background-color: #F44336; box-shadow: 0 0 4px #ff3a3a; } } } #app .form-wrap { width: 100%; max-width: 80vw; height: 0; min-height: 500px; flex: 1; .notice-box { padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #f1f1f1; border-radius: 2px; .title { font-size: 18px; padding: 10px; width: 100%; text-align: center; } .content { height: 400px; overflow-y: auto; width: 100%; font-size: 18px; border-top: 1px solid #f1f1f1; border-bottom: 1px solid #f1f1f1; } .region-list { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 10px; margin: 0 auto; .region-item { width: 180px; height: 50px; cursor: pointer; border-radius: 8px; background: rgba(240, 240, 240, 1); border: 1px solid rgba(230, 230, 230, 1); position: relative; padding-left: 55px; margin: 20px 10px; &.enable { .text { color: rgba(30, 118, 239, 1); } border-radius: 8px; background: rgba(245, 249, 255, 1); border: 1px solid rgba(196, 221, 255, 1); } .text { line-height: 50px; font-size: 14px; } .region-bg { width: 50px; height: 70px; position: absolute; left: 0; bottom: 0; object-position: bottom; object-fit: contain; } } } .action { padding: 20px 0; display: flex; flex-direction: column; align-items: center; width: 100%; user-select: none; .checkbox { display: flex; flex-direction: row; align-items: center; input[type="checkbox"] { transform: scale(1.5); /* 放大复选框的大小 */ margin-right: 10px; /* 添加一些右边距 */ cursor: pointer; } input[type="checkbox"]:checked + label { color: #4269db; /* 当复选框被选中时,划掉标签文本 */ cursor: pointer; } .text { font-size: 14px; } } } } .webview { width: 100%; min-height: 500px; iframe { width: 100%; min-height: 1000px; border: none; } } .result-box { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 400px; padding: 20px; .success-logo { background-image: url("./success.png"); background-size: contain; background-repeat: no-repeat; width: 340px; height: 232px; overflow: hidden; margin-left: 20px; } .title { font-size: 24px; padding: 20px 0; } .desc { font-size: 14px; } } } #app .button { margin-top: 10px; width: 200px; color: white; font-size: 14px; background: #4269db; border-radius: 4px; text-align: center; line-height: 28px; height: 28px; cursor: pointer; &:hover { opacity: 0.8; } &:active { opacity: 0.6; } &.disabled { background: #f1f1f1; color: rgba(0,0,0,.25); cursor: not-allowed; } &.is-white { background: white; color: rgb(42, 130, 228); border: 1px solid #cfcfcf; } } #app .submit-button { width: 100%; color: white; background: rgb(42, 130, 228); border: none; border-radius: 2px; opacity: 1; cursor: pointer; height: 36px; margin-top: 10px; &:hover { opacity: 0.8; } &:disabled { opacity: 0.5; } &.fixed { position: absolute; bottom: 40px; margin-top: 40px; width: calc(100% - 40px); } &.is-white { background: white; color: rgb(42, 130, 228); border: 1px solid #cfcfcf; } } #app .step-box { display: flex; flex-direction: row; align-items: center; width: 100%; max-width: calc(464px * 2 + 20px); margin-bottom: 20px; .step-item { display: flex; flex-direction: row; justify-content: center; align-items: center; flex: 1; position: relative; &:last-child { width: 80px; flex: none; } .content { display: flex; flex-direction: column; justify-content: center; align-items: center; min-width: 80px; } &.active { .number { color: white; background: #4269db; border: 1px solid #4269db; } .text { color: #4269db; } } .divider { width: 100%; background: #eaebef; height: 2px; margin-bottom: 30px; &.active { background: #4269db; } } .number { width: 24px; height: 24px; padding: 12px; background: white; border: 1px solid rgba(0,0,0,.25); margin-bottom: 10px; border-radius: 50%; text-align: center; line-height: 24px; color: rgba(0,0,0,.25); font-size: 24px; font-weight: 400; } .text { font-size: 16px; color: rgba(0,0,0,.25); } } } #app .policy { padding: 20px; font-size: 14px; min-height: 150px; position: relative; justify-content: flex-start; align-items: flex-start; width: 100%;display: flex; } #app .policy .dot-item { display: flex; flex-direction: row; align-items: center; width: fit-content; color: rgba(0, 0, 0, 1); text-decoration: none; } #app .policy .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(30, 118, 239, 1); display: inline-block; margin-right: 10px; } #app .policy .phone-box { position: absolute; right: 20px; display: flex; flex-direction: column; .phone-item { cursor: pointer; } }