/* ================================================
   youquanyi_style.css - 公共样式
   头部、底部、导航、登录等公共组件样式
   ================================================ */

﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: white;
    min-width: 1360px;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;                  /* 使内容部分占满剩余空间 */
    background-color: #e8e8e8;
}

/* 底部样式 */
.yqy-footer {

    background-color: #434343;
    position: relative;
    padding: 40px 0 0;
    color: #fff;
    font-size: 14px;
    width:100%;
}

/*.yqy-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(110deg, #00a2ff, #00c7fd, #ffb800, #ff94fd);
    background-size: 200% 100%;
    animation: rainbow-border 10s linear infinite;
}*/

@keyframes rainbow-border {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.yqy-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 服务保障区域 */
.yqy-footer-service-section {
    padding: 30px 0;

    position: relative;
    border-radius: 10px;
    background: #4f4f4f;
}

.yqy-footer-service-list {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.yqy-footer-service-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: transform 0.3s ease;
}



.yqy-footer-service-item i {
    font-size: 32px;
    margin-right: 15px;
    color: #00d5ff;
    background: linear-gradient(to right, #00d5ff, #ddffae);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.yqy-footer-service-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.yqy-footer-service-info p {
    font-size: 14px;
    color: #999;
}

/* 底部导航 */
.yqy-footer-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #4e4e4e;
    position: relative;
}

.yqy-footer-nav-section {
    flex: 1;
    padding: 0 20px;
}

.yqy-footer-nav-section h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.yqy-footer-nav-section h4 i {
    font-size: 18px;
    margin-right: 10px;
    color: #ffffff;
}

.yqy-footer-nav-section:hover h4 i {
    transform: rotate(360deg);
}

.yqy-footer-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yqy-footer-nav-section ul li {
    margin-bottom: 10px;
}

.yqy-footer-nav-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.yqy-footer-nav-section ul li a i {
    font-size: 14px;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.yqy-footer-nav-section ul li a:hover {
    color: #1efdff;
}

.yqy-footer-social-links {
    display: flex;
    gap: 15px;
}

.yqy-footer-social-icon {

    align-items: center;
    padding: 8px 15px;
    background: #333;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;

}

.yqy-footer-social-icon i {
    font-size: 16px;
    margin-right: 8px;
}

.yqy-footer-social-icon:hover {

    color: #00ff48;
}

/* 二维码悬停效果样式 */
.yqy-footer-social-links {
    position: relative;
}

.yqy-footer-social-icon {

}

/* 二维码容器 */
.qr-code-container {
    position: absolute;
    top: 100%; /* 显示在下方 */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    min-width: 120px;
    text-align: center;
    pointer-events: none; /* 防止悬停时闪烁 */
}

/* 二维码图片样式 */
.qr-code-container img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

/* 二维码标题 */
.qr-code-container .qr-title {
    font-size: 12px;
    color: #333;
    margin-top: 5px;
    font-weight: 500;
}

/* 悬停时显示二维码 */
.yqy-footer-social-icon:hover .qr-code-container {
    opacity: 1;
    visibility: visible;
}
/* 小箭头 - 显示在二维码上方 */
.qr-code-container::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: white;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.1));
}

/* 版权信息 */
.yqy-footer-copyright-section {
    padding: 10px 0;
    text-align: center;
    color: #999;
    font-size: 12px;
    position: relative;
}

.yqy-footer-copyright-content {
    max-width: 1200px;
    margin: 0 auto;
}

.yqy-footer-copyright-text {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.yqy-footer-copyright-text i {
    font-size: 14px;
    margin-right: 8px;
}

.yqy-footer-icp-info {
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;     /* 保证不同 span 高度对齐 */
    justify-content: center;
    color: #999;
    flex-wrap: wrap;
}

.yqy-footer-icp-info span {
    display: flex;
    align-items: center;     /* 让图片和文字垂直居中 */
    margin: 0 5px;
    line-height: 1.4;        /* 统一行高，保证基线一致 */
}

.yqy-footer-icp-info img {
    width: 16px;
    height: 16px;            /* 固定高度，防止行高影响 */
    display: inline-block;
    margin-right: 4px;
}

.yqy-footer-icp-info a {
    color: #999;
    text-decoration: none;
    display: inline-flex;    /* 让图片和文字同一 flex 容器中 */
    align-items: center;     /* 在同一条线上 */
}

.yqy-footer-icp-info a:hover {
    color: #00c7fd;
}

.yqy-footer-copyright-notice {
    margin-top: 4px;
    font-size: 10px;
}

.yqy-footer-copyright-notice p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    color: #999;
}

.yqy-footer-copyright-notice p i {
    margin-right: 8px;
}

.yqy-footer-copyright-notice a {
    color: #999;
    text-decoration: none;
}

.yqy-footer-copyright-notice a:hover {
    color: #00c7fd;
}

/* 客服悬浮按钮 */
.yqy-footer-customer-service-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.yqy-footer-service-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fd9800;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgb(253 121 0 / 30%);
    text-decoration: none;
    transition: all 0.3s;
}

.yqy-footer-service-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 15px rgb(253 0 0 / 40%);
}

.yqy-footer-service-button i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #ffffff;
}

.yqy-footer-service-button span {
    color: white;
    font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-list {
        flex-wrap: wrap;
    }

    .service-item {
        width: 50%;
        margin-bottom: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .nav-section {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .service-item {
        width: 100%;
    }

    .nav-section {
        width: 100%;
    }

    .customer-service-float {
        right: 10px;
        bottom: 10px;
    }
}

.layui-layer {
    border-radius: 5px!important;
    box-shadow: 3.483px 4.43px 18px 0 rgba(41,113,222,.2);
}
.layui-layer-title {
    border-radius: 5px 5px 0 0!important;
}
.youqyauny_head{
    background-color: #ffffff;
    /* background: linear-gradient(to top right, #ffffff 53%, #eaf2ff 89%);*/
}
/*顶部盒子*/
.youqyauny_head_top{
    margin: 0;
    width:100%;
    height:37px;
    background-color:#EFF0F1;
}
.youqyauny_head_top .head_top_box1{
    margin: auto;
    width:1360px;
}
.youqyauny_head_top .head_top_box1 .youqyauny_head_top_left{
    margin: auto;
    float: left;
    font-size:14px;
    display:flex;
    flex-wrap: wrap;
}
.youqyauny_head_top .head_top_box1 .youqyauny_head_top_left li{
    margin: auto;
    padding:5px;
    font-size:12px;
    color: #727272;
    text-align:center;
}
.youqyauny_head_top .head_top_box1 .youqyauny_head_top_right{
    float: right;
    display:flex;
    flex-wrap: wrap;
}
.youqyauny_head_top .head_top_box1 .youqyauny_head_top_right li{
    margin: auto;
    padding:5px;
    font-size:12px;
    color: #727272;
    text-align:center;
}
/*菜单固定*/
.youqyauny_head .head_top_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.2s ease;
    box-shadow: 0 5px 22px rgb(184 184 184 / 30%);
    background: linear-gradient(239deg, #ffffff, #ecfaff, #ffffff) !important;
    border-bottom: 1px solid #ededed;
    border-top: 1px solid #5daaff;
}

.youqyauny_head .head_top_fixed .hqy_top_nav li a {
    color: #000000!important;
    font-size: 15px!important;
}

.youqyauny_head .head_top_fixed .hqy_top_nav li span {
    background-color: rgb(194 194 194 / 0%) !important;
    color: #008ffa !important;
    border-left: 1px solid #f3f3f3;
}
.youqyauny_head .head_top_fixed .hqy_top_nav li a:hover {
    box-shadow: 3.483px 4.43px 8px 0 #bda9ff !important;
    transform: translateX(3px)!important;
    color: #ffffff!important;
    background-image: linear-gradient(to right, #00b1ff, #2e85ff, #9563ff) !important;
}

.youqyauny_head .head_top_fixed .hqy_top_nav .contact-trigger {
    color: #009688 !important;
    background: #ffffff !important;
    border: 1px solid #5fb878 !important;

}




/*顶部盒子结束*/

/*中间LOGO 搜索*/
.youqyauny_head .hqy_top {

    height: 100px;
    width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around; /* 子元素水平平均分布 */
    align-items: center;           /* 垂直居中 */

}
.youqyauny_head .hqy_top .hqy_logo {
    float: left;
    /* height: 65px; */
    width: 219px;
    /* margin-top: 14px; */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}
.youqyauny_head .hqy_top .hqy_logo img{
    width: 173px;
    /* height:65px; */
}


.youqyauny_head .hqy_top .top-right {
    margin: auto;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: right;
    width: 488px;
}
.youqyauny_head .hqy_top .top-right li{
    float: left;
    font-size: 14px;
    color: #ff5722;
    margin: 0px 0px 0 7px;
    /* padding: 20px 0 20px 0; */
}

.youqyauny_head .hqy_top .search_shop {
    margin: auto;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    border: 1px solid #dddddd;
    border-radius: 10px;
    width: 651px;
    min-width: 651px;
}

.form-group {
    position: relative;
}


.youqyauny_head .hqy_top .search_shop input{
    width: 531px;
    height: 46px;
    font-size: 14px;
    color: #625f5f;
    background-color: #ffffff;
    padding: 6px 7px;
    font-weight: 600;
    border-radius: 10px;
    border: 0px solid transparent !important;
}


/* 输入框样式 */
.input-field {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
}

/* 输入框获得焦点时，边框颜色变化 */
.youqyauny_head .hqy_top .search_shop input:focus {
    border-color: #007bff;
}

/* 标签样式，初始状态位于输入框内部 */
.floating-label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #aaa;
    pointer-events: none; /* 禁用标签点击 */
    transition: all 0.2s ease;
}

/* 当输入框被点击或有值时，标签上移 */
.youqyauny_head .hqy_top .search_shop input:focus + .floating-label,
.youqyauny_head .hqy_top .search_shop input:not(:placeholder-shown) + .floating-label {
    top: -2px;
    font-size: 14px;
    color: #f67206;
    background-color: #ffffff;
    padding:2px;
}

.youqyauny_head .hqy_top .search_shop input:hover {
    /* border: 1px solid #ff0000 !important; */
    /* border: 1px solid transparent; */
}

.youqyauny_head .hqy_top .search_shop button{
    height: 42px;
    /* font-size: 16px; */
    background-color: #1e9fff;
    border-radius: 0 10px 10px 0;
    border: 1px solid transparent;
}
/*导航*/
.youqyauny_head .youqyauny_com_navigation  {
    width: 100%;
    height: 51px;
    /* transition: 0.5s; */
}


.youqyauny_head .youqyauny_com_navigation>ul li a img {
    height: 12px;
    min-width: 30px;
    position: absolute;
    transform: translateX(-98%) translateY(41%);
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav {
    width:1360px;
    margin-right:auto;
    margin-left:auto;
    height:50px;
    position: relative;
    display: flex;
    align-items: center;
}
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav li {
    display:inline;

}
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav li span {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    width: 197px;
    height: 52px;
    line-height: 54px;
    padding-left: 28px;
    letter-spacing: 3px;
    cursor: pointer;
}
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav li a {
    display:inline-block;
    padding: 0 15px;
    height: 52px;
    line-height: 54px;
    color:#FFF;
    font-family:"\5FAE\8F6F\96C5\9ED1";
    font-size: 15px;
    transition: .3s;
    font-weight: 600;
}
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav li a:hover {
    /* background: #ffffff; */
    box-shadow: 3.483px 4.43px 8px 0 #4f4f4f;
    /* border-bottom: 2px solid #ffffff; */
    /* border-radius: 10px; */
    transform: translateX(3px);
    color: #ffffff;
    background-image: linear-gradient(to right, #ff0000, #ff0000, #d70808);
    /* box-shadow: 0.483px 4.43px 25px 0 #ffffff; */
}

/* 联系方式展示 - 菜单右侧 */
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-info-wrapper {
    margin-left: auto;
    /* height: 66px; */
    display: flex;
    align-items: center;
    /* padding: 0px 7px; */
    position: relative;
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15);
    /* backdrop-filter: blur(10px); */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-trigger:hover {
    background: rgb(0 0 0 / 30%);
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-trigger i {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-trigger span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 弹出层样式 */
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-popup {
    position: absolute;
    top: calc(100% + 8px);
    right: 8px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 15px;
    min-width: 168px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-info-wrapper:hover .contact-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 弹出层箭头 */
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .popup-arrow {
    position: absolute;
    top: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 -2px 3px rgba(0, 0, 0, 0.1));
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-popup-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 二维码区域 */
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-qrcode {
    text-align: center;
    padding: 7px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f5f5 100%);
    border-radius: 8px;
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-qrcode img {
    width: 130px;
    height: 130px;
    border-radius: 5px;
    /* border: 3px solid #ffffff; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    background: #ffffff;
    padding: 5px;
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .qrcode-tip {
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* 在线沟通按钮 */
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .contact-online {
    text-align: center;
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .online-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: linear-gradient(135deg, #ea6666 0%, #ff6600 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(234 102 115 / 30%);
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .online-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgb(234 102 102 / 40%);
    background: linear-gradient(135deg, #ff0000 0%, #ea6666 100%);
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .online-chat-btn i {
    font-size: 16px;
    animation: none;
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav .online-chat-btn span {
    letter-spacing: 0.5px;
}



/*位置导航*/
.head-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
    box-shadow: 8px 0px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    background-color: #fff;
}
.head-navigation .navigation-box {
    margin: 0 auto;
    display: flex;
    width: 1360px;
    text-align: center;
    padding: 11px 0 11px 0;
}
.head-navigation .navigation-box li{
    float:left;
    color: #6a6a6a;
}
.head-navigation .navigation-box li a:link{
    color: #535353;
}
.head-navigation .navigation-box li a:hover{
    color: #dc0e18;
}
.head-navigation .navigation-box li i{
    color: #b7b7b7;
    padding-right:5px;
    padding-left:2px;
    font-size: 12px;
}

/* 菜单 */
.hqy-menu-box {
    position: absolute;
    width: 100%;
    z-index: 999999;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.hqy-menu-content {
    background-color: #ffffff;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 10px 30px -10px rgb(0 0 0 / 20%);
    z-index: 999999;
    transition: all 0.3s ease;
    padding: 12px;
    /* border-radius: 8px; */
    display: none;
}
.hqy-sub-nav {
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0px 0 8px 0;
    width: 1360px;
    text-align: left;
    position: relative;
    margin-bottom: 5px;
    white-space: nowrap;        /* 不换行 */
    overflow-x: auto;           /* 横向滚动 */
    overflow-y: hidden;         /* 隐藏纵向 */
    -webkit-overflow-scrolling: touch;

    /* 隐藏滚动条 */
    scrollbar-width: none;      /* Firefox */
}
.hqy-sub-nav::-webkit-scrollbar {
    display: none;              /* Chrome、Safari */
}
.hqy-sub-nav > * {
    display: inline-block;
}

.hqy-sub-nav::before {
    display: none;
}

.hqy-sub-nav .nav-inner {
    width: 100%;
    position: relative;
}

.hqy-sub-nav div {
    margin: 0 3px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    font-size: 15px;
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.2s ease;
    position: relative;
    /* color: #333; */
    gap: 5px;
}

.hqy-sub-nav div::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 2px solid #909399;
    border-right: 2px solid #aeaeaf;
    transform: rotate(45deg);
    transition: all 0.2s ease;
    opacity: 0.5;

}

.hqy-sub-nav div.has-children::after {
    opacity: 1;
}

.hqy-sub-nav div.has-children:hover::after {
    border-color: #ffffff;
    transform: rotate(138deg);
    opacity: 1;
}

.hqy-sub-nav div:hover {
    background: #ff0000;
    color: #ffffff;
}

.hqy-now-nav {
    background: #db0000;
    color: #FFFFFF !important;
    box-shadow: 0 1px 4px rgba(110, 110, 110, 0.3);
}

.hqy-sub-top {
    height: 1px;
    background: #f0f0f0;
    margin: 5px 0;
    position: relative;
    width: 100%;
}

.hqy-sub-box {
    margin: 0 auto;
    display: flex;
    padding: 10px 0;
    transition: .2s;
    width: 1360px;
    gap: 4px;
}

.hqy-sub-level {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hqy-sub-level-2 {
    min-width: 165px;
    max-width: 177px;
    padding: 0px 10px 0 0;
    border-right: 1px solid #e9e9e9;
    background: #ffffff;
    /* background-image: linear-gradient(35deg, #e8ddff, #ffd3d3, #e5ffc3); */
}

.hqy-sub-level-3 {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 5px;
    padding: 0 5px;
}

.hqy-sub-content {
    width: 100%;
    position: relative;
    font-size: 14px;
    text-align: left;
    height: 37px;
    box-sizing: border-box;
    padding: 5px 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    background: #fff;
    border: 1px solid transparent;
}

.hqy-sub-content:hover {
    background: #fff5f5;
    color: #ff5722;
    border-color: #ffaaaa;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.hqy-sub-content img {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
}

.hqy-sub-content span {
    font-size: 14px;
    color: inherit;
    font-weight: 500;
}

.hqy-now-sub-content {
    /* background: #f5f7fa !important; */
    color: #ff5722 !important;
    border-color: #e4e7ed !important;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important; */
}

.hqy-sub-content-children::after {
    content: '';
    width: 4px;
    height: 4px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.hqy-sub-content:hover::after {
    transform: translateY(-50%) rotate(45deg) translate(1px, -1px);
    border-color: #2971de;
}

/* 分隔线 */
.hqy-sub-top {
    height: 1px;
    background: #f0f0f0;
    margin: 5px 0;
    position: relative;
    width: 100%;
}

.hqy-sub-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, #f0f0f0, transparent);
    z-index: -1;
}

.hqy-sub-top .nav-inner {
    width: 1360px;
    margin: 0 auto;
    position: relative;
}

/*登录按钮*/
.loginbtnok{
    background-color: #1486b9 !important;
    transition: .3s;
    height: 34px;
    font-size: 14px;
    border-radius: 15px;
    width: 100%;
}

/*注册按钮*/
.regsbtnok{
    background-color: #209600 !important;
    transition: .3s;
    height: 34px;
    font-size: 14px;
    border-radius: 15px;
    width: 100%;
}

/*底部样式*/
.yqy-buy-footer{ left: 0; bottom: 0; width: 100%; line-height: 25px; padding: 20px; text-align: center; box-sizing: border-box;color: #595959;}
.yqy-buy-footer span{padding: 0 5px;}
.yqy-buy-footer a{padding: 0 5px; color: rgba(0,0,0,.5);}
.yqy-buy-footer a:hover{color: rgba(0,0,0,1);}

/*
热门搜索*/
.hqy-search-shop {
    background-color: #ffffff;
    position: absolute;
    box-sizing: border-box;
    width: 653px;
    max-width: 716px;
    top: 49px;
    right: -120px;
    padding: 0px 15px 15px 15px;
    z-index: 9999999;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgb(158 158 158 / 30%);

}
.hqy-search-shop .search_top{
    margin: 5px;
    font-weight: 600;
    padding: 5px;
    color: #b3b3b3;

}
.hqy-search-shop .search_end{
    margin: 9px 0 0 0;
    border-top: 1px solid #f2f2f2;
    padding: 11px 0 0 8px;
    color: #2196F3;
    cursor: pointer;
}
.hqy-search-shop ul{
    overflow: hidden;
}
.hqy-search-shop ul li{

    float: left;
    padding: 8px;
    font-size: 14px;
    color: #6d6d6d;
    width: 190px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hqy-search-shop ul li:hover{
    background-color: #f5f5f5;
    border-radius: 8px;
    color: #000000;
}

.hqy-search-shop ul li span{
    display: flex;
    float: left;
    padding: 3px 8px 3px 8px;
    color: #ffffff;
    background-color: #cdcdcd;
    border-radius: 3px;
    font-size: 10px;
    margin-right: 5px;
}

.hqy-search-shop .search_history{
    overflow: hidden;
    margin: 5px 0;
    padding: 0 0;
    color: #837777;
}
.hqy-search-shop .search_history .search_history_top{
    margin: 5px;
    /* font-weight: 600; */
    padding: 5px;
    color: #7a7a7a;
}
.hqy-search-shop .search_history .search_history_top span{
    float:right;
    font-weight: 100;
    font-size: 12px;
    cursor: pointer;
}
.hqy-search-shop .search_history .search_history_top span:hover{
    color: #00b10f;
}
.hqy-search-shop .search_history span{
    padding-top: 5px;
}
.hqy-search-shop .search_history li{
    float: left;
    margin: 3px;
    padding: 5px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    border: 1px solid #dadada;
}
.hqy-search-shop .search_history li:hover{
    border: 1px solid #ff6b2c;
    background-color: #fff5ed;
    color: #ffffff;
}
.hqy-search-shop .search_history a{
    color: #292929;
}
.hqy-search-shop .search_history li:hover a {
    color: #ff6b2c; /* 设置 a 标签的文字颜色为白色 */
}

.layui-layer-ico16,.layui-layer-loading .layui-layer-loading2 {
    top: 2px!important;
    left: 1px!important;
    width: 60px!important;
    height: 60px!important;
}


.layui-layer-dialog .layui-layer-padding {
    color: #007ce9!important;
}

/*客服漂浮*/
.yqy-customer-service {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 57px;
    padding: 5px;
}
.yqy-customer-service .float-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 47px;
    height: 163px;
    background: linear-gradient(180deg, #ff3b3b 0%, #ffa45a 100%);
    padding: 2px;
    border-radius: 30px;
}
.yqy-customer-service .float-right .pls-floatbar-icon {
    width: 100%;
    display: block;
    border-radius: 50%;
}

.yqy-customer-service .float-right .pls-floatbar-button{
    position: relative;
    width: 47px;
    box-sizing: border-box;
    border-radius: 30px;
    box-shadow: 8px 8px 20px 0 rgb(0 0 0 / 10%);
    border: 1px solid #fb7f58;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    transition: all .3s ease-in-out;
    height: auto;
}
.yqy-customer-service .float-right .pls-floatbar-button .pls-floatbar-button-desc {
    display: block;
    text-align: center;
    width: 18px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
    color: white;
}

.yqy-footer-service{
    background-color: #f5f5f5;
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
}
.yqy-footer-service .yqy-footer-inner {
    font-size: 0;
    text-align: center;
    padding: 24px 36px;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1180px;
    border-bottom: 1px solid rgb(179 179 179 / 20%);
    -webkit-font-smoothing: antialiased;
}

.yqy-footer-service .yqy-footer-inner .yqy-footer-service-list {
    box-sizing: border-box;
    display: table;
    width: 100%;
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-list>li {
    display: table-cell;
    width: 25.5%;
    vertical-align: top;
    text-align: left;
    white-space: nowrap;
}

.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item {
    display: block;
    font-size: 16px;
    color: #5f5f5f;
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item:hover .icon {
    -webkit-animation: plsFooterEnter .3s steps(16) forwards;
    animation: plsFooterEnter .3s steps(16) forwards;
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    vertical-align: middle;
    margin-right: 4px;
    margin-left: -6px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    -webkit-animation: plsFooterLeave .3s steps(16) forwards;
    animation: plsFooterLeave .3s steps(16) forwards;
}

.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon-1 {
    background-image: url(/homestyle/style1/images/icons/ani-5day.8b4d6e68.png);
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon-2 {
    background-image: url(/homestyle/style1/images/icons/ani-free.a411eb94.png);
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon-3 {
    background-image: url(/homestyle/style1/images/icons/ani-service.a75411e0.png);
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon-4 {
    background-image: url(/homestyle/style1/images/icons/ani-time.c32429e2.png);
}

/*头部通知*/
.youqyauny_redheadsmsg{
    width: 100%;
    background-color: #646464;
    border-top: 3px solid #000000;
}
.youqyauny_redheadsmsg .redheadsmsgbox{
    height: 100%;
    width: 1360px;
    margin-right: auto;
    margin-left: auto;
    color: #ffffff;
    font-size: 16px;
    padding: 8px;
    line-height: 29px;
}

/*
会员登录后菜单*/
.display-drop-down {
    position: relative;
}
.drop-down {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    position: absolute;
    padding: 0px 12px 14px 0px;
    width: 409px;
    top: 86%;
    right: 0px;
    border-radius: 5px 0 5px 5px;
    z-index: 100000;
    font-size: 14px;
    /* transition: all 0.3s ease; */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top:3px;
    border-bottom: 1px solid #b1deff;
    border-right: 1px solid #b1deff;
    border-left: 1px solid #b1deff;
    border-left: 1px solid #b1deff;
    background-color: #f5faff;
}
.drop-down::before {
    content: "";
    display: block;
    width: 270px;
    border-top: 1px solid #b1deff;
    margin: 0px 0px 10px 3px;  /* 左对齐，去掉 auto */
    /* border-radius: 8px 0 0 0; */
}

.drop-down .dropdown-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px 15px 15px;
    /* border-bottom: 1px solid #d6eeff; */
}

.drop-down .dropdown-header-top .avatar-top {
    display: flex;
    align-items: center;
}

.drop-down .dropdown-header-top .avatar-top img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}


.drop-down .dropdown-header-top .avatar-top .username-top {
    font-weight: bold;
    color: #333;
}
.drop-down .dropdown-header-top .avatar-top .username-top span{
    font-weight: 500;
    font-size: 13px;
}

.drop-down .dropdown-header-top .avatar-top .username-top .money{
    color: #ff7000;
    border-bottom: 1px solid #ff7000;
    font-family: "\5FAE\8F6F\96C5\9ED1";
}
.drop-down .dropdown-header-top .avatar-top .username-top .level{
    color: #008ffa;
}

.drop-down .dropdown-header-top .logout-btn-top {
    background-color: #ff4d4f;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 13px;
    width: 60px;
}


.drop-down .dropdown-links-top {
    display: flex;
    padding: 8px 15px 8px 15px;
    gap: 15px;
    margin-left: 12px;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 2px solid #c0daed;
}

.drop-down .dropdown-links-top .link-column-top {
    flex: 1;
}

.drop-down .dropdown-links-top .link-column-top a {
    display: block;
    padding: 6px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
}
.drop-down .dropdown-links-top .link-column-top a i{
    font-size: 13px;
}

.drop-down .dropdown-links-top .link-column-top a:hover {
    color: #ff6200;
    font-weight: 600;
}

/* 鼠标经过时显示下拉菜单 */
.display-drop-down:hover .drop-down {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.display-drop-down .drop-down-trigger img{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
    /* margin-bottom: 0px; */
}


/*图片加载效果*/
img.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
}
img.lazy-loaded {
    opacity: 1;
}

 

#search_btn.active {
    background-color: #ff0000;
}

.yqy-btn {
    display: inline-block;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 30px rgb(158 158 158 / 30%);
}

/* 注册按钮 */
.register-btn {
    background: linear-gradient(239deg, #ffa84f, #ff5b02);
}
.register-btn:hover {
    box-shadow: 0 15px 18px rgb(255 131 107 / 30%);
    transform: translateY(-1px);
    color: #ffffff;
}

/* 登录按钮 */
.login-btn {
    background: linear-gradient(239deg, #1e9fff, #69befe);
}
.login-btn:hover {
    box-shadow: 0 10px 19px rgba(0, 114, 255, 0.3);
    transform: translateY(-1px);
    color: #ffffff;
}
.youqyauny_head .hqy_top .top-right .appdownload{
    border: 1px solid #c4e6ff;
    border-radius: 28px;
    padding: 5px 10px 5px 10px;
    font-size: 13px;
    background-color: #f9fcff;
    margin-right: 19px;
}
.youqyauny_head .hqy_top .top-right .appdownload a{
    color: #5db5ff;
}
.youqyauny_head .hqy_top .top-right .appdownload i{
    color: #57b7ff;
    font-size: 13px;
    margin-right: 3px;
}
.youqyauny_head .hqy_top .top-right .userinfo {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    border: 1px solid #b1deff;
    border-radius: 5px;
    padding: 9px 9px;
    background-color: #f5faff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.youqyauny_head .hqy_top .top-right .drop-down-trigger {
    flex: 1;                    /* 占满可用空间 */
    white-space: nowrap;        /* 不换行 */
    overflow: hidden;           /* 超出隐藏 */
    text-overflow: ellipsis;    /* 超出省略号 */
    /* margin-top: 3px; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.youqyauny_head .hqy_top .top-right .drop-down-trigger a{
    color: #57b7ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.box-shadow{
    box-shadow: 8px 0px 15px rgba(0, 0, 0, 0.08);
}