* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Mis';
    src: url('./../font/Mis-sbo.woff')format('woff');
}
@font-face {
    font-family: 'Mis-d';
    src: url('./../font/Mis-sbo-n.woff')format('woff');
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Mis-d';
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.wb-ba {
    word-break: break-all;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: rgba(144, 146, 152, 0.3);
}
::-webkit-scrollbar-track-piece {
    background-color: transparent;
}

.d-fx {
    display: flex;
}
.fx-1 {
    flex: 1;
}
.fx-ai-c {
    align-items: center;
}
.fx-jc-c {
    justify-content: center;
}
.fx-jc-sb {
    justify-content: space-between;
}
.fx-jc-fe {
    justify-content: flex-end;
}
.fw-b {
    font-weight: 800;
}
.fs-i {
    font-style: italic;
}
.mb-36 {
    margin-bottom: .36rem;
}
.mb-2 {
    margin-bottom: .2rem;
}
.mr-1 {
    margin-right: .1rem;
}
.ww-wb{
    word-wrap: break-word;
    word-break: break-all;
}

.pt-15 {
    padding-top: 15px;
}

.hidebox {
    display: none!important;
}


body {
    background: #fff;
}

/* btn ----  start */
.ly-btn {
    display: inline-flex;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #000;
    line-height: 40px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 3px;
}
.ly-btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.ly-btn.ly-btn-disabled {
    background: #f9f9f9;
    color: #e8e8e8;
    border: 1px solid #e8e8e8;
    cursor: not-allowed;
}
.ly-btn.ly-btn-purple {
    background: #0079d4;
    color: #fff;
    border: 1px solid #0062ab;
}
.ly-btn.ly-btn-purple:hover {
    background: rgba(0, 70, 122, .8);
}
.ly-btn.ly-btn-red {
    background: #f0143e;
    color: #fff;
    border: 1px solid #f0143e;
}
.ly-btn.ly-btn-red:hover {
    background: rgba(240, 20, 62, .8);
}
/* btn ----  end */

.fixed-tip-model {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 99999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fixed-tip-model .ftm-main {
    width: 80%;
    max-width: 400px;
    background: #fff;
    border-radius: 10px;
}
.fixed-tip-model .ftm-main .content {
    padding: 30px 0;
    /* height: 150px; */
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}
.fixed-tip-model .ftm-main .content .mic {
    margin-left: 10px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.fixed-tip-model .ftm-main .content .txt {
    flex: 1;
    padding: 0 15px;
}
.fixed-tip-model .ftm-main .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58px;
    padding: 5px 0;
}
.fixed-tip-model .ftm-main .footer span {
    display: flex;
    flex: 1;
    justify-content: center;
    font-size: 18px;
    line-height: 1em;
    color: #007AFF;
    cursor: pointer;
}

.fixed-tip-model .ftm-main .footer span:nth-child(2) {
    border-left: 1px solid #ddd;
}

.fixed-form-model {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fixed-form-model .ffm-main {
    width: 80%;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
}
.fixed-form-model .ffm-main .form-warp {
    padding: 30px;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
}
.fixed-form-model .ffm-main .form-warp .w-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}
.fixed-form-model .ffm-main .form-warp .w-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 28px;
    gap: 2px;
    position: relative;
}
.fixed-form-model .ffm-main .form-warp .w-item label {
    width: 100%;
    padding-left: 2px;
}
.fixed-form-model .ffm-main .form-warp .w-item label .ls {
    margin-left: 10px;
    color: #999;
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box {
    flex: 1;
    padding-top: 10px;
    position: relative;
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .bmodel {
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 15px;
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .etip {
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 16px;
    color: #f00;
}
.fixed-form-model .ffm-main .form-warp .w-item .iconbox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    top: 0;
    gap: 15px;
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tiptextbox {
    font-size: 14px;
    padding-top: 8px;
    color: #999;
}
.fixed-form-model .ffm-main .form-warp .w-item .ps-witem .bmodel .input-b {
    max-width: 240px;
}
.fixed-form-model .ffm-main .form-warp .w-item .ps-witem .tiptextbox {
    color: #f00;
    font-size: 16px;
    flex: 1;
}

.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tip-upload {
    padding-top: 10px;
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tip-upload .tup {
    display: flex;
    gap: 10px;
    margin-bottom: 7px;
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tip-upload a {
    flex: 1;
    word-wrap: break-word;
    word-break:break-all;
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tip-upload .del-upload-file {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    padding-top: 4px;
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tip-upload .del-upload-file::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #f00;
    position: absolute;
    left: 0;
    top: 12px;
    transform: rotate(-45deg);
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tip-upload .del-upload-file::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #f00;
    position: absolute;
    left: 0;
    top: 12px;
    transform: rotate(45deg);
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tip-upload .del-upload-file:hover::before {
    background: rgba(255, 0, 0, .5);
}
.fixed-form-model .ffm-main .form-warp .w-item .wi-box .tip-upload .del-upload-file:hover::after {
    background: rgba(255, 0, 0, .5);
}
.fixed-form-model .ffm-main .form-warp .w-item .input-b {
    display: block;
    width: 100%;
    flex: 1;
    padding: 0 10px;
    /* border-bottom: 1px solid #dfdfdf; */
    border-bottom: 1px solid #17A7E0;
}
.fixed-form-model .ffm-main .form-warp .w-item .input-b input {
    width: 100%;
    border: 0;
    outline: none;
}
.fixed-form-model .ffm-main .form-warp .w-item .textarea-b {
    display: block;
    width: 100%;
    flex: 1;
    padding: 0 10px;
    /* border-bottom: 1px solid #dfdfdf; */
    border-bottom: 1px solid #17A7E0;
    position: relative;
}
.fixed-form-model .ffm-main .form-warp .w-item .active-it-b {
    border-bottom: 1px solid #8FE017!important;
}
.fixed-form-model .ffm-main .form-warp .w-item .textarea-b .it-placeholder {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    font-size: 14px;
    color: #AAAAAA;
    padding: 0 10px;
    z-index: 9999991;
}
.fixed-form-model .ffm-main .form-warp .w-item .textarea-b textarea {
    width: 100%;
    border: 0;
    outline: none;
    resize: none;
    position: relative;
    background: none;
    z-index: 9999992;
}
.fixed-form-model .ffm-main .form-warp .w-item .select-b {
    width: 100%;
    flex: 1;
    max-width: 400px;
}
.fixed-form-model .ffm-main .form-warp .tooltip {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    /*padding-top: 10px;*/
    text-align: center;
    /* background-color: #0079d4; */
    background: url(../images/paste.png) no-repeat center center;
    background-size: contain;
    border-radius: 100%;
    color: white;
}
.fixed-form-model .ffm-main .form-warp .tooltip::after {
    content: "!";
    font-size: 22px;
}
.fixed-form-model .ffm-main .form-warp .i-paste {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/paste.png) no-repeat center center;
    background-size: contain;
}
.fixed-form-model .ffm-main .form-warp .i-upload {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/upload.png) no-repeat center center;
    background-size: contain;
}
.fixed-form-model .ffm-main .form-warp .i-upload input {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
}


.fixed-form-model .ffm-main .footer-warp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58px;
    padding: 5px 0;
}
.fixed-form-model .ffm-main .footer-warp span {
    display: flex;
    flex: 1;
    justify-content: center;
    font-size: 18px;
    line-height: 1em;
    color: #007AFF;
    cursor: pointer;
}
.fixed-form-model .ffm-main .footer-warp span:hover {
    color: #f00;
}
.fixed-form-model .ffm-main .footer-warp span:nth-child(2) {
    border-left: 1px solid #ddd;
}

/* 鐩掑瓙 */
.layout-container {
    font-size: 0;
}
.outer-container {
    height: 100vh;
}
.inner-container {
    display: flex;
    min-height: calc(100vh - 1.26rem);
}
.layout-header {
    height: 100px;
    background: #fff;
    border-bottom: 1px solid #E6E6E6;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
}
.layout-left {
    background: #fff;
    width: 320px;
    height: 100%;
    overflow: auto;
    border-right: 1px solid #E6E6E6;
}
.layout-content {
    background: #fff;
    flex: 1;
    padding: 20px;
}

/* 澶� */
.layout-header .main {
    width: 1500px;
    height: 100%;
    margin: 0 auto;
}
.layout-header .main .logo {
}
.layout-header .main .logo img {
    width: 70px;
    height: 70px;
}

/* 宸� */
.layout-left ul {
    padding: 10px 0;
}
.layout-left ul li a {
    display: flex;
    align-items: center;
    height: 76px;
    line-height: 76px;
    font-size: 20px;
    font-weight: 400;
    color: #242331;
    padding: 0 25px;
    gap: 20px;
}
.layout-left ul li a .icon {
    width: 32px;
    height: 32px;
}
.layout-left ul li a .icon.s1 {
    background: url('./../images/s1.png') no-repeat center center;
    background-size: contain;
}

.layout-left ul li a:hover, .layout-left ul li a.active {
    background: #EDF4FB;
}

.layout-left ul li a span {
    height: 100%;
    overflow: hidden;
}

/* 鐧诲綍 */
.login-warp {
    width: 500px;
    margin: 1.5rem auto .5rem auto;
}
.login-warp .title {
    color: #242331;
    text-align: center;
    font-size: 48px;
    margin-bottom: .7rem;
}
.login-warp .form {
    margin-bottom: 24px;
}
.login-warp .form .m-item {
    width: 100%;
    height: 56px;
    margin-bottom: 25px;
}
.login-warp .form .m-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    background: #007AFF;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
}
.login-warp .form .m-btn span:hover {
    background: rgba(0, 122, 255, .9);
}
.login-warp .other .abtn {
    font-size: .18rem;
    color: #007AFF;
    cursor: pointer;
}
.login-warp .other .abtn:hover {
    text-decoration: underline;
}

.login-warp .errortext {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.login-warp .errortext .ei {
    display: block;
    width: 30px;
    height: 30px;
    background: url(./../images/gth.png) no-repeat center center;
    background-size: contain;
}
.login-warp .errortext span {
    color: #ff271d;
    font-size: 18px;
}
.login-warp .text {
    font-size: .28rem;
    line-height: 1.4em;
    color: #999;
    text-align: center;
}

/* urp */
.uyp-warp {
    padding: .3rem .5rem;
    width: 100%;
    max-width: 1400px;
}
.uyp-warp .title {
    color: #242331;
    text-align: center;
    font-size: .48rem;
    margin-bottom: 30px;
}
.uyp-warp .title .tx {
    text-align: center;
    font-size: 18px;
    line-height: 2em;
    color: #f00;
}
.uyp-warp .info {
    margin-bottom: .3rem;
    position: relative;
    padding-bottom: 100px;
}
.uyp-warp .info .otext {
    text-align: center;
    font-size: 18px;
    line-height: 2em;
    color: #f00;
}
.uyp-warp .info .oright {
    position: absolute;
    right: 0;
    top: 0;
}
.uyp-warp .info .oright p {
    text-align: right;
    font-size: .18rem;
    margin-bottom: .1rem;
}
.uyp-warp .operate {
    margin-bottom: .2rem;
}
.uyp-warp .operate .or, .uyp-warp .operate .ol {
    display: inline-flex;
    gap: .15rem;
}

.uyp-warp .table {
    font-size: .2rem;
}
.uyp-warp .table table {
    width: 100%;
    border: .016rem solid #eee;
    border-collapse: collapse;
}
.uyp-warp .table table td {
    padding: .2rem .15rem;
    border: .016rem solid #eee;
}
.uyp-warp .table table .w-300 {
    width: 3rem;
    max-width: 300px;
}
.uyp-warp .table .td-cz {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.uyp-warp .table .td-d {
    position: relative;
    color: #ccc;
}
.uyp-warp .table .td-d .dr {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #f00;
}
.uyp-warp .table table .tr-disabled td {
    color: #ccc!important;
    background: #fafafa;
}
.uyp-warp .content {
    background: #eee;
    padding: .5rem .3rem;
    border-radius: 3px;
}
.uyp-warp .content p {
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: .15rem;
    color: #666;
}
.uyp-warp .content .fw-b {
    color: #000;
}
.uyp-warp .content .dimg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .3rem;
}
.uyp-warp .content .dimg .gi {
    flex: 1;
}

.uyp-warp .choose-box {
    padding: .3rem 0;
}
.uyp-warp .choose-box .cb-title {
    font-size: 32px;
    color: #292421;
    margin-bottom: .3rem;
}
.uyp-warp .choose-box .cb-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: .5rem;
}
.uyp-warp .choose-box .cb-list .titem {
    flex: 1;
    max-width: 370px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border: 4px solid #000;
    border-radius: 16px;
    padding: 16px 10px;
    cursor: pointer;
}
.uyp-warp .choose-box .cb-list .titem:hover, .uyp-warp .choose-box .cb-list .titem.active {
    border: 4px solid #3EA6FF;
}
.uyp-warp .choose-box .cb-list .titem .iicon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}
.uyp-warp .choose-box .cb-list .titem .iinfo {
    flex: 1;
}
.uyp-warp .choose-box .cb-list .titem .iinfo .t1 {
    font-size: 32px;
    color: #000;
    font-weight: bolder;
}
.uyp-warp .choose-box .cb-list .titem .iinfo .t2 {
    font-size: 20px;
    line-height: 1.4em;
    color: #000;
}
.uyp-warp .choose-box .cb-list .titem .icheckbox {
    border: 3px solid #292421;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}
.uyp-warp .choose-box .cb-list .titem.active .icheckbox {
    border: 3px solid #3EA6FF;
    position: relative;
}
.uyp-warp .choose-box .cb-list .titem.active .icheckbox:after {
    content: '';
    background: url(./../images/ic.png) no-repeat center center;
    background-size: contain;
    width: 18px;
    height: 14px;
    position: absolute;
    left: 4px;
    top: 5px;
}

.uyp-warp .payment-box {
    padding: .3rem 0;
}
.uyp-warp .payment-box .cb-title {
    font-size: 32px;
    color: #292421;
    margin-bottom: 30px;
}
.uyp-warp .payment-box .cb-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 80px;
}
.uyp-warp .payment-box .cb-list .titem {
    cursor: pointer;
    max-width: 180px;
}
.uyp-warp .payment-box .cb-list .titem .iicon {
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px auto;
}
.uyp-warp .payment-box .cb-list .titem .itxt {
    color: #292421;
    font-size: 24px;
    font-weight: bolder;
    line-height: 1.4em;
    text-align: center;
}

.content-remotely {
    padding: 0 0 1rem 0;
}
.content-remotely .title {
    font-weight: 700;
    font-size: .48rem;
    text-align: center;
    margin-bottom: .3rem;
    color: #000;
}
.content-remotely .text {
    font-size: .28rem;
    line-height: 1.4em;
    color: #999;
    text-align: center;
}
.content-remotely .inputbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.content-remotely .inputbox .ib {
    width: 70px;
    height: 100px;
    line-height: 100px;
    padding: 8px;
    border: 1px solid #000;
    border-radius: 10px;
    background: #ecedf1;
}
.content-remotely .inputbox .ib input {
    display: block;
    width: 100%;
    height: 100%;
    font-size: .38rem;
    border: 0;
    background: none;
    text-align: center;
    outline: none;
}
.content-remotely .errortext {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.content-remotely .errortext .ei {
    display: block;
    width: 30px;
    height: 30px;
    background: url(./../images/gth.png) no-repeat center center;
    background-size: contain;
}
.content-remotely .errortext span {
    color: #ff271d;
    font-size: 18px;
}
.content-remotely .btnbox {
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-remotely .btnbox .btn {
    width: 2.4rem;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: .34rem;
    color: #fff;
    border-radius: 8px;
    background: #3478f6;
    cursor: pointer;
    letter-spacing: 2px;
    position: relative;
}
.content-remotely .btnbox .btn::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid #fff;  /* 鍙充晶杈圭嚎 */
    border-bottom: 2px solid #fff; /* 搴曢儴杈圭嚎 */
    transform: rotate(-45deg);     /* 鏃嬭浆45搴﹀彉鎴� > */
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -8px;
}

.popup-modal-tip {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-modal-tip .pcontent {
    width: 80%;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
}
.popup-modal-tip .pcontent .tmain {
    padding: 30px 40px;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    color: #1B1F26;
}
.popup-modal-tip .pcontent .tmain .tt {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.popup-modal-tip .pcontent .tmain .tt i {
    width: 44px;
    height: 44px;
    background: url(./../images/season.png) no-repeat center center;
    background-size: contain;
}
.popup-modal-tip .pcontent .tmain .t1 {
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.4em;
}
.popup-modal-tip .pcontent .tmain .t3 {
    font-size: 20px;
    margin: 25px 0;
    letter-spacing: 1px;
    line-height: 1.4em;
}
.popup-modal-tip .pcontent .tmain .t2 {
    font-size: 16px;
    line-height: 1.5em;
}
.popup-modal-tip .pcontent .tfooter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 58px;
    padding: 5px 0;
    position: relative;
}
.popup-modal-tip .pcontent .tfooter span {
    display: flex;
    flex: 1;
    justify-content: center;
    font-size: 18px;
    line-height: 1em;
    color: #007AFF;
    cursor: pointer;
}
.popup-modal-tip .pcontent .tfooter span:hover {
    color: #f00;
}
.popup-modal-tip .pcontent .tfooter span:nth-child(2) {
    border-left: 1px solid #ddd;
}

.popup-modal-tip .pcontent .tfooter .cd {
    position: absolute;
    right: 30px;
    top: 10px;
    width: 38px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6em;
    border-radius: 16px;
    border: 2px solid #3EA6FF;
    color: #292421;
    font-weight: 700;
}

.fixed-loading-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999999999;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 环形加载器 */
  }
  .fixed-loading-mask .loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .fixed-loading-mask .circular {
    width: 42px;
    height: 42px;
    animation: loading-rotate 2s linear infinite;
  }
  .fixed-loading-mask .circular .path {
    animation: loading-dash 1.5s ease-in-out infinite;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 2;
    stroke: #409EFF;
    stroke-linecap: round;
  }
  .fixed-loading-mask .loading-text {
    font-size: 14px;
    color: #409EFF;
    letter-spacing: 2px;
  }

@media screen and (max-width: 1450px) {
    .layout-header .main {
        width: 100%;
        padding: 0 .5rem;
    }
    .uyp-warp .info {
        min-height: 150px;
    }
}
@media screen and (max-width: 1230px) {
    .uyp-warp .info {
        padding-bottom: 20px;
    }
    .uyp-warp .info .oright {
        width: 100%;
        position:inherit;
    }
}
@media screen and (max-width: 1208px) {
    .ly-btn {
        padding: 0 .15rem;
        line-height: .6rem;
        font-size: .3rem;
    }
    .uyp-warp .table {
        font-size: .32rem;
    }
    .login-warp .other .abtn {
        font-size: .24rem;
    }
    .uyp-warp .info .oright p {
        font-size: .28rem;
        margin-bottom: .2rem;
    }

    .uyp-warp .choose-box .cb-list .titem {
        gap: .25rem;
    }
    .uyp-warp .choose-box .cb-list .titem .iicon {
        width: .6rem;
        height: .6rem;
    }
    .uyp-warp .choose-box .cb-list .titem .iinfo .t1 {
        font-size: .4rem;
    }
    .uyp-warp .choose-box .cb-list .titem .iinfo .t2 {
        font-size: .24rem;
    }
}

@media screen and (max-width: 1000px) {
    .uyp-warp .payment-box .cb-list .titem .iicon {
        width: 10rem;
        height: 10rem;
        max-width: 160px;
        max-height: 160px;
        margin: 0 auto .2rem auto;
    }
    .uyp-warp .payment-box .cb-list .titem .itxt {
        font-size: .4rem;
    }
}

@media screen and (max-width: 785px) {
    .layout-header {
        height: 70px;
    }
    .layout-header .main .logo img {
        width: 40px;
        height: 40px;
    }
    .ly-btn {
        padding: 0 .15rem;
        line-height: .48rem;
        font-size: .24rem;
    }
    .uyp-warp {
        padding: 0;
    }
    .uyp-warp .title {
        font-size: 28px;
        margin-bottom: 14px;
    }
    .uyp-warp .info {
        margin-bottom: 0;
    }
    .uyp-warp .info .otext {
        width: 100%;
        font-size: 16px;
        line-height: 1.6em;
        margin-bottom: 10px;
    }
    .uyp-warp .info .oright {
        width: 100%;
    }
    .uyp-warp .info .oright p {
        font-size: .24rem;
        margin-bottom: .18rem;
    }
    .uyp-warp .operate {
        flex-direction: column;
        gap: .2rem;
        margin-bottom: .4rem;
    }
    .uyp-warp .operate .or, .uyp-warp .operate .ol {
        flex-wrap: wrap;
        gap: .22rem;
        justify-content: center;
    }
    .uyp-warp .table {
        font-size: .22rem;
    }
    .uyp-warp .table table .w-300 {
        width: 1.5rem;
    }
    .login-warp {
        width: 100%;
        padding: 0 .2rem;
        margin: 1rem auto .5rem auto;
    }
    .login-warp .title {
        font-size: .48rem;
    }
    .login-warp .other .abtn {
        font-size: .2rem;
    }
    .login-warp .form .m-item {
        height: 42px;
    }
    .login-warp .form .m-btn span {
        height: 42px;
        font-size: 18px;
    }
    .uyp-warp .content p {
        font-size: 12px;
        margin-bottom: .22rem;
    }

    .fixed-form-model .ffm-main {
        width: 96%;
        max-height: 96%;
        overflow: auto;
    }
    .fixed-form-model .ffm-main .form-warp {
        padding: 30px 15px;
    }
    .layui-form-select dl {
        max-width: 100%;
    }
    .fixed-form-model .ffm-main .form-warp .w-item  {
        gap: 2px;
    }
    .fixed-form-model .ffm-main .form-warp .w-item .wi-box .bmodel {
        flex-direction: column;
        gap: 0;
    }
    .fixed-form-model .ffm-main .form-warp .w-item .ps-witem .bmodel {
        flex-direction: row;
        gap: 20px;
    }
    .fixed-form-model .ffm-main .form-warp .w-item .ps-witem .bmodel .input-b {
        max-width: 120px;
    }
    .fixed-form-model .ffm-main .form-warp .w-item .wi-box .iconbox {
        width: 100%;
        justify-content: flex-end;
    }

    .fixed-form-model .ffm-main .form-warp .w-item label {
        font-size: 16px;
        /* padding-top: 10px; */
    }
    .fixed-form-model .ffm-main .form-warp .i-upload {
        /* width: 24px;
        height: 24px; */
    }

    .content-remotely .title {
        padding: 0 .7rem;
        margin-bottom: .5rem;
    }
    .content-remotely .text {
        padding: 0 .7rem;
        font-size: .36rem;
        margin-bottom: .5rem;
    }
    .content-remotely .inputbox .ib {
        width: 50px;
        height: 80px;
        line-height: 80px;
        border-radius: 8px;
    }
    .content-remotely .inputbox .ib input {
        font-size: .48rem;
    }
    .content-remotely .btnbox .btn {
        width: 4.8rem;
        height: 66px;
        line-height: 66px;
        font-size: .48rem;
        border-radius: 8px;
    }
    .popup-modal-tip .pcontent {
        width: 94%;
    }
    .popup-modal-tip .pcontent .tmain {
        padding: 25px 20px;
    }
    .popup-modal-tip .pcontent .tmain .tt {
        margin-bottom: 20px;
        font-size: 22px;
    }
    .popup-modal-tip .pcontent .tmain .tt i {
        width: 36px;
        height: 36px;
    }
    .popup-modal-tip .pcontent .tmain .t1 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .popup-modal-tip .pcontent .tmain .t3 {
        font-size: 16px;
        margin: 20px 0 0 0;
    }
    .popup-modal-tip .pcontent .tmain .t2 {
        font-size: 15px;
    }

    .uyp-warp .choose-box .cb-list {
        flex-direction: column;
    }
    .uyp-warp .choose-box .cb-list .titem {
        width: 100%;
        max-width: initial;
    }
    .uyp-warp .choose-box .cb-list .titem .iicon {
        width: .8rem;
        height: .8rem;
    }
    .uyp-warp .choose-box .cb-list .titem .iinfo .t1 {
        font-size: .5rem;
    }
    .uyp-warp .choose-box .cb-list .titem .iinfo .t2 {
        font-size: .32rem;
    }

    .uyp-warp .payment-box .cb-list {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 20px;
    }
    .uyp-warp .payment-box .cb-list .titem {
        cursor: pointer;
        width: calc(50% - 10px);
        max-width: inherit;
    }
    .uyp-warp .payment-box .cb-list .titem .itxt {
        font-size: .4rem;
    }
}

.layui-form-radio {
    margin: 0 10px 0 0!important;
}

.fixed-form-model input::placeholder {
    font-size: 14px;
    color: #AAAAAA;
}

@keyframes loading-rotate {
    100% {
      transform: rotate(360deg);
    }
}

/* PPCP Modal Overlay */
.ppcp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: ppcpFadeIn 0.3s ease;
}

/* PPCP Modal Content */
.ppcp-modal-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 450px;
    overflow: hidden;
    animation: ppcpSlideUp 0.3s ease;
}

/* PPCP Modal Header */
.ppcp-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ppcp-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.ppcp-modal-close {
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.9;
    transition: opacity 0.2s;
    padding: 0 8px;
}

.ppcp-modal-close:hover {
    opacity: 1;
}

/* PPCP Modal Body */
.ppcp-modal-body {
    padding: 24px;
}

/* PPCP Form Styles */
.ppcp-form {
    width: 100%;
}

.ppcp-form-group {
    margin-bottom: 20px;
}

.ppcp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.ppcp-form-input {
    display: none; /* Hidden div for PPCP compatibility */
}

.ppcp-form-input-real {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f8f9fa;
    box-sizing: border-box;
}

.ppcp-form-input-real:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ppcp-form-input-real::placeholder {
    color: #95a5a6;
}

.ppcp-form-input-real.error {
    border-color: #e74c3c !important;
    background: #fff5f5;
}

.ppcp-error-msg {
    display: none;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

/* PPCP Form Actions */
.ppcp-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.ppcp-btn-submit {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.ppcp-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.ppcp-btn-submit:active {
    transform: translateY(0);
}

.ppcp-btn-cancel {
    flex: 1;
    padding: 14px 20px;
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.ppcp-btn-cancel:hover {
    background: #e9ecef;
    border-color: #cbd5e0;
    color: #333;
}

/* PPCP Animations */
@keyframes ppcpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ppcpSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* PPCP Responsive */
@media (max-width: 480px) {
    .ppcp-modal-content {
        width: 95%;
        margin: 20px;
    }
    .ppcp-modal-body {
        padding: 16px;
    }
    .ppcp-form-actions {
        flex-direction: column;
    }
}