
iframe {
    border: none
}

html {
    height: 100%;
    font-size: 14px
}

body {
    height: 100%;
    font: 1 1em/1.0 'Microsoft Yahei','PingFang SC',Avenir,'Segoe UI','Hiragino Sans GB',STHeiti,'Microsoft Sans Serif','WenQuanYi Micro Hei',sans-serif
}

a {
    color: #0a0a0a;
    text-decoration: none
}

input {
    appearance: none;
    padding: 0;
    margin: 0;
    min-width: 0
}

input::-ms-clear {
    display: none
}

input:focus {
    outline: 0
}

textarea:focus {
    outline: 0
}

input[type="number"] {
    -moz-appearance: textfield
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    appearance: none
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.clearfix {
    *zoom: 1
}

textarea {
    font: 400 1em/1.8 'Microsoft Yahei','PingFang SC',Avenir,'Segoe UI',STHeiti,'Microsoft Sans Serif',sans-serif
}

textarea::-webkit-input-placeholder {
    color: #757575;
}

textarea:-moz-placeholder {
    color: #757575;
}

textarea::-moz-placeholder {
    color: #757575;
}

textarea::-ms-input-placeholder {
    color: #757575;
}

.fl {
    float: left
}

.fr {
    float: right
}

h1, h2, h3, h4, h5 {
    font-size: 100%;
    font-weight: 400
}

.item {
    text-align: center
}
li {
    list-style-type: none;
}

.box {
    width: 400px;
    height: 260px;
    position: fixed;
    z-index: 3000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 30vh auto 0;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.6);
    display: none
}

.box .hd {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    background-color: #05ccb7;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.box .hd .txt1 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 5px
}

.box .hd .txt2 {
    font-size: 18px;
    color: #ffffff;
    font-weight: normal
}

.box .hd .txt2 span {
    font-size: 18px;
    color: #ffffff;
    font-weight: normal
}


.box .bd {
    width: 100%;
    background: #FFFFFF;
    height: 60px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.box .bd ul li {
    float: left;
    width: 33%;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    text-align: center
}

.box .bd ul li.box-item {
    border-left: 1px solid #e5e6e7
}

.box .bd ul li.box-item:hover .box-layer {
    display: block;
}

.box .bd ul li img {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    margin-right: 10px
}

.box .box-layer {
    width: 400px;
    height: 200px;
    position: absolute;
    bottom: -197px;
    left: -1px;
    z-index: 0;
    display: none
}

.box .box-tel {
    width: 400px;
    background: #fff;
    background-size: 100% 100%;
    padding: 20px 0 16px;
    border: 1px solid #eae7e7;
    border-radius: 2px;
    margin-top: 10px;
}

.box .box-layer input {
    border: 1px solid #05ccb7;
    width: 200px;
    height: 34px;
    margin: auto;
    color: #666666;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 10px;
    margin-right: 10px;
    text-indent: 10px
}

.box .box-layer button {
    width: 130px;
    height: 36px;
    margin: auto;
    text-align: center;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    background: #05ccb7;
    border: none;
    margin-bottom: 20px;
    cursor: pointer
}

.box .box-layer p {
    line-height: 2;
    font-size: 12px;
    text-align: center
}

.box .box-layer .tip {
    color: #327BFD
}
/*右侧导航 - 高端大气风格*/
.pc-nav {
    width: 72px;
    position: fixed;
    bottom: 520px;
    right: 12px;
    padding: 0;
    z-index: 9999;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
    animation: nav-breathe 5s ease-in-out infinite;
}

/* 导航整体呼吸动效 */
@keyframes nav-breathe {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
    }
    50% {
        transform: translateY(-5px);
        filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
    }
}

.pc-nav li {
    width: 100%;
    height: 82px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    animation: btn-pulse 4s ease-in-out infinite;
}

/* 按钮脉冲动效 - 依次延迟 */
.pc-nav li:nth-child(1) {
    animation-delay: 0s;
}

    .pc-nav li:nth-child(2) {
    animation-delay: 0.5s;
}

    .pc-nav li:nth-child(3) {
    animation-delay: 1s;
}

@keyframes btn-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: inherit;
    }
    25% {
        transform: scale(1.03);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.02);
    }
}

/* 悬停时暂停自动动画 */
.pc-nav:hover {
    animation-play-state: paused;
}

.pc-nav li:hover {
    animation-play-state: paused;
}

/* 第一个按钮 - 在线电话 */
.pc-nav li:first-child {
    background: linear-gradient(145deg, #1a73e8 0%, #0d47a1 100%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.35);
}

/* 第二个按钮 - 获取报价 */
.pc-nav li:nth-child(2) {
    background: linear-gradient(145deg, #00bfa5 0%, #00796b 100%);
    box-shadow: 0 4px 15px rgba(0, 191, 165, 0.35);
}

/* 第三个按钮 - 在线沟通 */
.pc-nav li:last-child {
    background: linear-gradient(145deg, #ff6f00 0%, #e65100 100%);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.35);
}

/* 光泽扫过效果 */
.pc-nav li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.pc-nav li:hover::before {
    left: 100%;
}

/* 悬停效果 */
.pc-nav li:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.12);
}

.pc-nav li:first-child:hover {
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.5);
}

.pc-nav li:nth-child(2):hover {
    box-shadow: 0 12px 32px rgba(0, 191, 165, 0.5);
}

.pc-nav li:last-child:hover {
    box-shadow: 0 12px 32px rgba(255, 111, 0, 0.5);
}

.pc-nav li:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pc-nav li:focus {
    outline: none;
}

/* 图标样式 */
.pc-nav li img {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.pc-nav li:hover img {
    transform: scale(1.15) rotate(-5deg);
}

/* 文字样式 */
.pc-nav li p {
    text-align: center;
    color: #FFFFFF;
    font-size: 13px;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: none;
    transition: all 0.3s ease;
}

.pc-nav li:hover p {
    letter-spacing: 2px;
}

.pc-nav li.pc-item:hover .pc-layer {
    display: block;
}

.pc-nav li .pc-tel {
    height: 210px;
    width: 150px;
    background-size: 100% 100%;
    background: #fff;
    box-shadow: 0px 0px 10px #cecccc;
    padding: 20px;
    position: absolute;
    right: 13px;
}

/*.pc-nav li .pc-layer {*/
/*    height: 210px;*/
/*    width: 200px;*/
/*    background: #fff;*/
/*    position: absolute;*/
/*    top: 85px;*/
/*    left: -192px;*/
/*    display: none;*/
/*    z-index: -1;*/
/*}*/

.pc-nav li .pc-tel input, .mobile-chat input {
    width: 100%;
    height: 33px;
    border: 1px solid #05ccb7;
    font-size: 14px;
    outline: none;
    border-radius: 10px;
    margin-bottom: 15px;
    text-indent: 10px;
    padding-bottom:0px;
}

.pc-nav li .pc-tel button, .mobile-chat button {
    width: 100%;
    height: 35px;
    border: 1px solid #05ccb7;
    background: #05ccb7;
    color: #FFFFFF;
    font-size: 14px;
    outline: none;
    border-radius: 4px;
    margin-bottom: 20px;
    cursor: pointer
}

.pc-nav li .pc-tel p, .mobile-chat p {
    color: #333333;
    font-size: 12px;
    text-align: left;
    line-height: 1.6
}

.pc-nav li .pc-tel .tip, .mobile-chat .tip {
    color: red;
    display: none
}

.pc-nav li .pc-tel p span, .mobile-chat p span {
    color: #05ccb7
}

.footer {
    height: 136px
}

.yongs-bottom {
    width: 100%;
    height: 120px;
    background: rgba(0,0,0,.7);
    position: fixed;
    z-index: 14;
    left: 0;
    bottom: -130px;
    transition: all .4s;
    bottom: 0;
    display:none;
}

.yongs-bottom .layout-yongs {
    margin: 0 auto;
    width: 1240px;
    position: relative
}

.yongs-bottom .left {
    position: relative;
    width: 30%;
    padding-left: 40px;
    display: block;
    padding: 0px 0 30px;
}

.yongs-bottom .left p {
    text-align: center;
    font-style: italic;
    font-size: 26px;
    font-weight: 700;
    color: #FFD500;
}


.yongs-bottom .right {
    width: 60%;
    padding-right: 100px;
    margin-top: 36px;
}

.yongs-bottom .right input {
    height: 42px;
    line-height: 42px;
    border: 1px solid #747474;
    background: transparent;
    border-radius: 24px;
    margin-right: 20px;
    width: 300px;
    text-indent: 1em;
    color: #f5f5f5;
}

.yongs-bottom .right a {
    display: inline-block;
    width: 190px;
    height: 46px;
    line-height: 46px;
    font-size: 20px;
    font-weight: bold;
    background: #FFD500;
    border-radius: 24px;
    color: #443902;
    font-weight: bold;
    text-align: center;
    vertical-align: bottom
}

.yongs-bottom .right input::-webkit-input-placeholder {
    color: #e5e2e2;
}

.yongs-bottom .service {
    position: absolute;
    right: 110px;
    bottom: 10px;
    width: 180px;
}


.mobile-chat {
    padding: 20px;
}

.pc-message {
    padding: 20px 16px;
    width: 325px;
    position: relative
}

.pc-message .close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    background: url("https://ruoyi.ysxxhb.com/img/close.png") no-repeat;
    z-index: 9999;
    cursor: pointer;
}

.pc-message h1 {
    font-size: 16px;
    width: 93%;
    margin: 10px auto;
    color: rgb(74 72 72);
    padding-bottom: 10px;
}

.pc-message .title {
    font-size: 14px;
    width: 90%;
    margin: 10px auto;
    color: #f57979
}

.pc-message textarea {
    resize: none;
    width: 100%;
    height: 70px;
    outline: none;
    border: 1px solid #dad9d9;
    font-size: 12px;
    text-align: left;
    display: block;
    padding: 3px;
    border-radius: 3px;
    box-sizing: border-box;
}

.pc-message p {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 30px;
    box-sizing: border-box;
}


.pc-message p input {
    border: 1px solid #dad9d9;
    text-align: left;
    width: 100%;
    font-size: 12px;
    height: 34px;
    padding-left: 10px;
    border-radius: 3px;
    box-sizing: border-box;
}

.pc-message .btn {
    width: 90%;
    height: 42px;
    border-radius: 3px;
    color: #fff;
    display: block;
    margin: auto;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    background: #05ccb7;
    border: none;
    margin-bottom: 30px;
    margin-top: 40px;
    font-size: 15px;
}
.pc-phone {
    padding: 20px 16px;
    width: 325px;
    position: relative
}
.pc-phone .close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
    background: url("https://ruoyi.ysxxhb.com/img/close.png") no-repeat;
    z-index: 9999;
    cursor: pointer;
}
.pc-phone p input {
    border: 1px solid #dad9d9;
    text-align: left;
    width: 95%;
    font-size: 12px;
    height: 34px;
    padding-left: 10px;
    border-radius: 3px
}

.pc-phone .btn {
    width: 90%;
    height: 42px;
    border-radius: 3px;
    color: #fff;
    display: block;
    margin: auto;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    background: #05ccb7;
    border: none;
    margin-bottom: 20px;
    margin-top: 30px;
    font-size: 15px;
}
.pc-phone h1 {
    font-size: 19px;
    width: 25%;
    margin: 10px auto;
    color: rgb(74 72 72);
    padding-bottom: 10px;
}
.pc-phone p {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 20px
}
.pc {
    display: none;
    padding-bottom: 60px
}
.mobile {
    padding-bottom:60px
}
/* 屏幕宽度大于768px*/
@media (min-width: 768px) {
    .mobile {
        display: none;
    }

    .pc {
        display: block;
    }
    /* 双屏宽度大于768px*/
    /*.mobile-nav {*/
    /*    display: none;*/
    /*}*/
}

/* 屏幕宽度小于800px*/
@media (max-width:1706px) {
    .pc-nav, .box, .message, .yongs-bottom {
        display: none;
    }

    .footer {
        height: 0
    }
    /* 手机端底部导航 - 高端大气风格 */
    .mobile-nav {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 6px 0 10px;
        list-style: none;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: linear-gradient(180deg, rgba(30, 30, 40, 0.95) 0%, rgba(20, 20, 30, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 9999;
    }

    .mobile-nav li {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6px 0;
        cursor: pointer;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* 图标容器 */
    .mobile-nav li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
    }

    .mobile-nav li img {
        width: 24px;
        height: 24px;
        display: block;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        transition: all 0.3s ease;
    }

    .mobile-nav li p {
        font-size: 11px;
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 4px;
        font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    /* 第一个按钮 - 获取报价 */
    .mobile-nav li:nth-child(1) img {
        filter: drop-shadow(0 0 6px rgba(0, 191, 165, 0.5));
    }

    .mobile-nav li:nth-child(1):active p,
    .mobile-nav li:nth-child(1):active img {
        color: #00bfa5;
        filter: drop-shadow(0 0 8px rgba(0, 191, 165, 0.8));
    }

    /* 第二个按钮 - 在线沟通 */
    .mobile-nav li:nth-child(2) img {
        filter: drop-shadow(0 0 6px rgba(255, 111, 0, 0.5));
    }

    .mobile-nav li:nth-child(2):active p,
    .mobile-nav li:nth-child(2):active img {
        color: #ff6f00;
        filter: drop-shadow(0 0 8px rgba(255, 111, 0, 0.8));
    }

    /* 第三个按钮 - 免费电话 */
    .mobile-nav li:nth-child(3) img {
        filter: drop-shadow(0 0 6px rgba(26, 115, 232, 0.5));
    }

    .mobile-nav li:nth-child(3):active p,
    .mobile-nav li:nth-child(3):active img {
        color: #1a73e8;
        filter: drop-shadow(0 0 8px rgba(26, 115, 232, 0.8));
    }

    /* 点击反馈 */
    .mobile-nav li:active {
        transform: scale(0.92);
    }

    .mobile-nav li:active img {
        transform: scale(1.1);
    }

    .mobile-nav li:hover {
        outline: none;
    }

    .mobile-nav li:focus {
        outline: none;
    }

    .pc-message {
        width: auto;
    }
}
.copyright {
    color: #f8f8fd;
    text-align: center;
    font-size:12px;
}