/*!**************************************************************************************************!*\
  !*** css ./node_modules/_css-loader@7.1.1@css-loader/dist/cjs.js!./src/pages-pc/about/about.css ***!
  \**************************************************************************************************/
.about-header{
    width: 100%;
    height: 480px;
    /* min-height: 480px; */
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-header img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-header:hover img {
    transform: scale(1.05);
}

.div-header-col{
    display: flex;
    flex-direction: column;
    width: 1440px;
    color: #fff;
    z-index: 12;
    position: relative;
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.div-header-col h1{
    margin: 0;
    font-size: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.div-header-col span{
    font-weight: 400;
    font-size: 24px;
    margin-top: 12px;
    animation: fadeInUp 1s ease-out;
    opacity: 0.9;
}

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

.about-content{
    padding: 120px 0;
    background-color: #fff;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.item-col-space{
    height: 160px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(244, 248, 255, 0), rgba(244, 248, 255, 0.5), rgba(244, 248, 255, 0));
}

.about-content-item{
    width: 1280px;
    height: 360px;
    min-height: 360px;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
    border-radius: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-content-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.about-item-col{
    display: flex;
    width: 540px;
    min-width: 540px;
    flex-direction: column;
}

.about-item-title{
    color: rgba(0, 0, 0, 0.8);
    font-size: 48px;
    font-weight: 700;
    width: fit-content;
    margin: 0;
    border-bottom: 4px solid #48C6EF;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

.about-item-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg, #48C6EF 0%, #6f86d6 100%);
    transition: width 0.5s ease;
}

.about-content-item:hover .about-item-title::after {
    width: 100%;
}

.about-item-desc{
    margin-top: 36px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px; 
    line-height: 32px;
    transition: all 0.3s ease;
}

.about-content-item:hover .about-item-desc {
    color: rgba(0, 0, 0, 0.8);
}

.item-space{
    width: 100px;
    height: 100%;
}

.item-img{
    height: 100%;
    width: 640px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-content-item:hover .item-img {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-item-row{
    display: flex;
    align-items: center;
    font-weight: 400;
    margin-top: 18px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px; 
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.about-item-row p{
    display: none;
    margin: 8px 0 0 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.5s ease;
}

.about-item-row-link:hover p {
    display: block;
    max-height: 200px;
    margin-top: 8px;
}

.about-item-row-link{
    position: relative;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-item-row-link:hover{
    background-color: rgba(244, 248, 255, 1);
    color: #48C6EF;
    transform: translateX(10px);
}

.link-point{
    background: #48C6EF;
    border-radius: 50%;
    margin-right: 10px;
    height: 6px;
    width: 6px;
    transition: all 0.3s ease;
}

.about-item-row-link:hover .link-point {
    transform: scale(1.5);
}

.about-item-row img{
    height: 20px;
    width: 20px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.about-item-row:hover img {
    transform: scale(1.1);
}

/* 针对旗下产品部分的特殊样式 */
.about-content-item-map {
    background: #fff;
    overflow: visible;
    height: auto !important;
    min-height: auto !important;
    padding: 40px;
    margin-bottom: 30px;
}

.about-content-item-map .item-img {
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    max-height: 500px;
    width: 640px;
}

.about-content-item-map:hover .item-img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(72, 198, 239, 0.15);
}

.about-content-item-map .about-item-col {
    display: flex;
    flex-direction: column;
    width: 540px;
    min-width: 540px;
}

.about-content-item-map .about-item-title {
    color: rgba(0, 0, 0, 0.8);
    font-size: 36px;
    font-weight: 700;
    width: fit-content;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 10px;
    border-bottom: none;
}

.about-content-item-map .about-item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #48C6EF 0%, #6f86d6 100%);
    transition: width 0.5s ease;
}

.about-content-item-map:hover .about-item-title::after {
    width: 100%;
}

.about-content-item-map .about-item-row-link {
    position: relative;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #f9fbff;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-content-item-map .about-item-row-link:hover {
    background: rgba(72, 198, 239, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(72, 198, 239, 0.1);
    border-color: rgba(72, 198, 239, 0.2);
}

.about-content-item-map .about-item-row-link .link-point {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-right: 15px;
    background: #48C6EF;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.about-content-item-map .about-item-row-link:hover .link-point {
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(72, 198, 239, 0.5);
}

.about-content-item-map .about-item-row-link span {
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    flex: 1;
    transition: all 0.3s ease;
}

.about-content-item-map .about-item-row-link:hover span {
    color: #48C6EF;
}

.about-content-item-map .about-item-row-link p {
    width: 100%;
    margin-top: 12px;
    margin-left: 24px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 1.6;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding-right: 10px;
}

.about-content-item-map .about-item-row-link:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

@media screen and (max-width: 1280px) {
    .about-content-item-map {
        flex-direction: column-reverse;
        padding: 30px;
    }
    
    .about-content-item-map .about-item-col {
        width: 100%;
        min-width: 100%;
    }
    
    .about-content-item-map .item-img {
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .about-content-item-map {
        padding: 20px;
    }
    
    .about-content-item-map .about-item-row-link {
        padding: 12px 16px;
        margin-bottom: 12px;
    }
    
    .about-content-item-map .about-item-row-link span {
        font-size: 16px;
    }
    
    .about-content-item-map .about-item-row-link p {
        font-size: 13px;
        line-height: 1.5;
        margin-left: 15px;
    }
    
    .about-content-item-map .about-item-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

/*!*********************************************************************************************************!*\
  !*** css ./node_modules/_css-loader@7.1.1@css-loader/dist/cjs.js!./src/pages-pc/login/login-dialog.css ***!
  \*********************************************************************************************************/

.dialog-login-root {
    border-radius: 20px;
    background-color: #fff;
    width: 360px;
    height: 341px;
    display: flex;
    flex-direction: column;
}

.dialog-header {
    width: 100%;
    position: relative;
    height: 52px;
}

.dialog-close {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 20px;
    right: 32px;
    cursor: pointer;
}

.dialog-close img {
    width: 20px;
    height: 20px;
}

.dialog-login-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 264px;
    height: 38px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(238, 241, 245, 1);
}

.login-tab-item {
    display: flex;
    position: relative;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.login-tab-item-select {
    color: rgba(82, 153, 255, 1) !important;
}

.tab-item div {
    background: rgba(65, 176, 255, 1);
    width: 60px;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
}





.dialog-login-wx {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    justify-content: center;
    align-items: center;
}

.dialog-login-wx-tip {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.8);

}

.dialog-login-wx-code {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

.wx-loading-cover {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
}

.wx-loading-cover-refresh {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wx-loading-btn {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-dialog-code img {
    height: 100%;
    width: 100%;
}

.wx-dialog-tip {
    margin-top: 8px;
    font-weight: 400;
    font-size: 16px;
    z-index: 999;
    color: rgba(0, 0, 0, 0.8);
}

.dialog-login-wx-code img {
    width: 100%;
    height: 100%;
}




.dialog-login-email {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    width: 100%;
}

.dialog-login-input {
    flex: 1;
    height: 44px;
    min-height: 44px;
    width: calc(100% - 96px);
    font-size: 14px;
    margin: 0px 48px 20px 48px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dialog-login-input input {
    color: rgba(0, 0, 0, 0.8);
    flex: 1;
    height: 44px;
    min-height: 44px;
    font-size: 14px;
    border: none;
    outline: none;
    font-weight: 400;
    background: rgba(244, 248, 255, 1);

    border: 1px solid rgba(244, 248, 255, 1);
    border-radius: 6px;
    box-sizing: border-box;
    padding: 0 12px;
}

.dialog-login-input input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    border: none;
    outline: none;
}

.dialog-login-get-code {
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    top: 0;
    right: 16px;
    color: rgba(82, 153, 255, 1);

}

.dialog-login-get-code-disable {
    color: rgba(171, 183, 204, 1);
    background: rgba(242, 245, 249, 1);
}

.dialog-login-btn {
    margin: 0px 48px;

    background: linear-gradient(90deg, rgba(80, 118, 255, 0.2) 0%, rgba(44, 161, 255, 0.2) 100%);

    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    width: calc(100% - 96px);
    border-radius: 32px;
    cursor: pointer;
    opacity: 0.4;
}

.dialog-login-btn-enable {
    color: #fff;
    opacity: 1 !important;
    background: linear-gradient(90deg, #5076FF 0%, #2CA1FF 100%);
}

.dialog-login-btn-enable:hover {
    background: rgba(74, 138, 230, 1) !important;
}

.dialog-login-orther-type {
    display: flex;
    align-items: center;
    /* margin: 0px 56px 10px 56px; */
    width: calc(100% - 112px);
    position: absolute;
    min-height: 28px;
    left: 50%;
    bottom: 68px;
    transform: translate(-50%, 0);
}

.dialog-login-line {
    height: 1px;
    flex: 1;
    background-color: rgba(0, 0, 0, 0.05);
}

.dialog-login-orther-type span {
    color: rgba(153, 153, 153, 1);
    font-size: 14px;
    font-weight: 400;
    margin-left: 14px;
    margin-right: 14px;
}

.dialog-login-btn-qq {
    height: 38px;
    width: 38px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0);
}


/*!***************************************************************************************************************!*\
  !*** css ./node_modules/_css-loader@7.1.1@css-loader/dist/cjs.js!./src/pages-pc/login/email-merge-dialog.css ***!
  \***************************************************************************************************************/

.dialog-merge-root {
    border-radius: 20px;
    background-color: #fff;
    width: 400px;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }

  
.dialog-merge-msg{
    color: rgba(255, 54, 103, 1) !important;
}

.dialog-merge-item-col{
    display: flex;
    flex-direction: column;
    width: calc(100% - 64px);
    background: rgba(244, 248, 255, 1);
    border-radius: 8px;
    margin: 0 32px 20px 32px;
    padding: 4px 0;
}

.dialog-merge-item{
    display: flex;
    align-items: center;
    width: calc(100% - 40px);
    padding: 12px 0px;
    margin: 0 20px;
    border-bottom: 1px solid rgba(232, 235, 242, 1);
}

.merge-none-border{
    border-bottom: none !important;
}
.dialog-merge-item p{
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-weight: 400;
    width: 216px;
    margin: 0;
    max-width: 216px;
    line-height: 24px;
    text-align: left;
    word-wrap: break-word;      /* 旧版本浏览器支持 */
    overflow-wrap: break-word;  /* 标准属性 */
}

.current-email{
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    font-weight: 400;
    margin-left: 3px;
}
.dialog-merge-btn{
    font-size: 14px;
    font-weight: 400;
    padding: 4px 12px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 28px;
    white-space: nowrap;
    background: rgba(82, 153, 255, 1);
}

.dialog-merge-btn:hover{
    background: rgba(74, 138, 230, 1);
}

/* 响应式设计 */
@media screen and (max-width: 1440px) {
    .div-header-col {
        width: 90%;
        padding: 0 5%;
    }
    
    .about-content-item {
        width: 90%;
        padding: 20px 2.5%;
    }
}

@media screen and (max-width: 1280px) {
    .about-content-item {
        height: auto;
        min-height: auto;
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .about-content-item-map {
        flex-direction: column-reverse;
    }
    
    .about-item-col {
        width: 100%;
        min-width: 100%;
        margin-bottom: 30px;
    }
    
    .item-space {
        display: none;
    }
    
    .item-img {
        width: 100%;
        height: 300px;
    }
    
    .div-header-col h1 {
        font-size: 48px;
    }
    
    .div-header-col span {
        font-size: 20px;
    }
    
    .about-item-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .about-header {
        height: 360px;
    }
    
    .div-header-col h1 {
        font-size: 36px;
    }
    
    .div-header-col span {
        font-size: 16px;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    .item-col-space {
        height: 80px;
    }
    
    .about-item-title {
        font-size: 28px;
    }
    
    .about-item-desc {
        font-size: 14px;
        line-height: 24px;
        margin-top: 20px;
    }
    
    .about-content-item-map .about-item-row-link span {
        font-size: 16px;
    }
    
    .about-item-row {
        font-size: 14px;
    }
}

/* 兼容性优化 */
.about-content-item, 
.about-item-title, 
.item-img, 
.about-item-row-link,
.link-point {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-content-item:hover .about-item-title::after {
    width: 100%;
    -webkit-transition: width 0.5s ease;
    -moz-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

.about-header:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.about-content-item:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.about-content-item:hover .item-img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}

.about-item-row-link:hover {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}

.about-item-row-link:hover .link-point {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}

.about-item-row:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/* 打印优化 */
@media print {
    .about-header {
        height: auto;
        padding: 20px 0;
        background: #f4f8ff !important;
        box-shadow: none;
    }
    
    .about-header img {
        display: none;
    }
    
    .div-header-col {
        color: #000;
        text-shadow: none;
    }
    
    .about-content-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #eee;
    }
    
    .item-col-space {
        height: 40px;
    }
    
    .about-item-title::after {
        display: none;
    }
    
    .item-img {
        max-width: 300px;
    }
}

/* 产品分类标签样式 */
.product-category-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    gap: 15px;
}

.category-tab {
    padding: 8px 16px;
    border-radius: 20px;
    background-color: #f4f8ff;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-tab:hover {
    background-color: rgba(72, 198, 239, 0.1);
    color: #48C6EF;
    transform: translateY(-2px);
}

.category-tab.active-tab {
    background: linear-gradient(90deg, rgba(72, 198, 239, 0.1) 0%, rgba(111, 134, 214, 0.1) 100%);
    color: #48C6EF;
    border: 1px solid rgba(72, 198, 239, 0.3);
    font-weight: 600;
}

.product-list-container {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
    /* 自定义滚动条样式 */
    scrollbar-width: thin;
    scrollbar-color: rgba(72, 198, 239, 0.3) rgba(0, 0, 0, 0.05);
}

.product-list-container::-webkit-scrollbar {
    width: 6px;
}

.product-list-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.product-list-container::-webkit-scrollbar-thumb {
    background: rgba(72, 198, 239, 0.3);
    border-radius: 10px;
}

.product-list-container::-webkit-scrollbar-thumb:hover {
    background: rgba(72, 198, 239, 0.5);
}

.loading-products {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
}

/* 响应式样式调整 */
@media screen and (max-width: 1280px) {
    .product-category-tabs {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .product-category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .product-list-container {
        max-height: 400px;
    }
}
