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


.update-content{
    width: 100%;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    background: rgba(244, 248, 255, 1);
    flex-direction: column;
}

.update-link-nav{
    margin: 40px 0;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    width: 1200px;
    min-width: 1200px;
}

.update-link-nav a{
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.update-link-nav a:hover {
    color: #48C6EF;
}

.update-link-nav img{
    height: 12px;
    width: 12px;
    margin: 0 8px;
}

.update-link-nav span{
    color: rgba(0, 0, 0, 0.4);
}


.update-content-row{
    display: flex;
    width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.update-content-left{
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

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

.last-update-group{
    display: flex;
    margin-bottom: 24px;
    align-items: center;
}

.last-update-group div{
    width: 8px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(90deg, #48C6EF 0%, #6f86d6 100%);
    margin-right: 12px;
}

.last-update-group h1{
    margin: 0;
    color: rgba(0, 0, 0, 0.8);
    font-size: 24px;
    font-weight: 700;
}


.update-article-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
    height: fit-content;
    padding: 0;
}

.update-article-item{
    display: flex;
    align-items: center;
    height: 60px;
    min-height: 60px;
    width: 100%;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.update-article-item:hover {
    background-color: rgba(72, 198, 239, 0.05);
}

.update-article-item:last-child {
    border-bottom: none;
}

.update-item-manual{
    color: #fff;
    margin-right: 16px;
    text-decoration: none;
    cursor: pointer;
    background: #48C6EF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.update-item-manual:hover{
    background: #3ab4dc;
}


.update-item-link{
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 500px;
}

.update-item-link:hover{
    color: #48C6EF;
}

.update-item-flex{
    flex: 1;
}

.update-item-date{
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
}



.update-content-right{
    width: 320px;
    display: flex;
    flex-direction: column;
    min-width: 320px;
}

.update-right-card{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.update-right-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.update-card-header{
    display: flex;
    align-items: center;
    width: 100%;
    height: 36px;
    margin-bottom: 10px;
}

.update-card-header span{
    font-size: 20px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.update-card-tab{
    display: flex;
    align-items: center;
    background: #f5f8ff;
    border-radius: 30px;
    padding: 3px;
}

.update-card-tab-item{
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 20px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    font-weight: 400;
    margin: 0 3px;
    padding: 0 8px;
    transition: all 0.3s ease;
}

.update-card-tab-item-select{
    color: #fff;
    background: #48C6EF;
    box-shadow: 0 4px 10px rgba(72, 198, 239, 0.3);
}

.update-card-line{
    width: 100%;
    height: 1px;
    margin: 16px 0;
    position: relative;
    display: flex;
    background: rgba(232, 235, 242, 1);
}

.update-card-line-light{
    height: 2px;
    width: 80px;
    background: #48C6EF;
    position: absolute;
    left: 0;
    top: -0.5px;
    border-radius: 2px;
}

.update-card-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.update-card-more{
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
    transition: color 0.3s ease;
}

.update-card-more:hover {
    color: #48C6EF;
}

.update-card-more img{
    height: 16px;
    width: 16px;
}

.update-card-item{
    margin-top: 16px;
    display: flex;
    width: 100%;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    height: 24px;
    min-height: 24px;
    transition: transform 0.3s ease;
}

.update-card-item:hover {
    transform: translateX(5px);
}

.update-card-item span{
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: color 0.3s ease;
}

.update-card-item:hover span {
    color: #48C6EF;
}


.update-card-item-num{
    height: 24px;
    width: 24px;
    min-width: 24px;
    margin-right: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.update-card-item:hover .update-card-item-num {
    transform: scale(1.1);
}

.update-card-item-num-1{
    background: linear-gradient(45deg, #FF7A7A, #ff5656);
    box-shadow: 0 4px 10px rgba(255, 122, 122, 0.3);
}

.update-card-item-num-2{
    background: linear-gradient(45deg, #FF9A7A, #ff7e50);
    box-shadow: 0 4px 10px rgba(255, 154, 122, 0.3);
}

.update-card-item-num-3{
    background: linear-gradient(45deg, #FFC47E, #ffa83c);
    box-shadow: 0 4px 10px rgba(255, 196, 126, 0.3);
}

/* 分页样式优化 */
.pagination{
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    margin-top: 20px;
}

.page-span-text{
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.page-btn{
    height: 36px;
    width: 36px;
    cursor: pointer;
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-btn:hover{
    background: rgba(72, 198, 239, 0.2);
}

.page-btn-disable img{
    opacity: 0.3;
}

.page-btn-disable:hover{
    cursor: default !important;
    background: none !important;
}

.page-btn img{
    height: 16px;
    width: 16px;
}

.page-pre-btn{
    margin-left: 12px;
}

.page-next-btn{
    margin-right: 12px;
}

.page-num-row{
    display: flex;
    align-items: center;
}

.page-num-btn{
    height: 36px;
    width: 36px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    margin-left: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.page-num-btn:hover{
    background: rgba(72, 198, 239, 0.2);
    color: #48C6EF;
}

.page-num-btn-select{
    background: rgba(72, 198, 239, 0.2);
    color: #48C6EF;
    font-weight: 600;
}

.page-num-btn-more{
    background: none;
    cursor: default;
    color: rgba(0, 0, 0, 0.7);
}

.page-num-btn-more:hover{
    background: none;
    color: rgba(0, 0, 0, 0.7);
}

.page-num-input{
    width: 50px;
    height: 36px;
    text-align: center;
    outline: none;
    border-radius: 8px;
    margin: 0 8px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.page-num-input:focus {
    border-color: #48C6EF;
    box-shadow: 0 0 0 2px rgba(72, 198, 239, 0.2);
}

/* 隐藏输入框上下箭头 */
.page-num-input::-webkit-inner-spin-button,
.page-num-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
 
/* 兼容Firefox */
.page-num-input[type=number] {
    -moz-appearance: textfield;
}

/*!*********************************************************************************************************!*\
  !*** 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);
}
/*!************************************************************************************************!*\
  !*** css ./node_modules/_css-loader@7.1.1@css-loader/dist/cjs.js!./src/pages-pc/base/page.css ***!
  \************************************************************************************************/

.pagination{
    height: 32px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.page-span-text{
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.page-btn{
    height: 32px;
    width: 32px;
    cursor: pointer;
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-btn:hover{
    background: rgba(65, 176, 255, 0.2);
}

.page-btn-disable img{
    transform: translateY(-480px); 
    filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 480px);
}

.page-btn-disable:hover{
    cursor: default !important;
    background: none !important;
}

.page-btn img{
    height: 16px;
    width: 16px;
}

.page-pre-btn{
    margin-left: 12px;
}

.page-next-btn{
    margin-right: 12px;
}

.page-num-row{
    display: flex;
    align-items: center;
}

.page-num-btn{
    height: 32px;
    width: 32px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    margin-left: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.page-num-btn:hover{
    background: rgba(65, 176, 255, 0.2);
    color: rgba(82, 153, 255, 1);
}

.page-num-btn-select{
    background: rgba(65, 176, 255, 0.2);
    color: rgba(82, 153, 255, 1);
}

.page-num-btn-more{
    background: none;
    cursor: default;
    color: rgba(0, 0, 0, 0.7);
}

.page-num-btn-more:hover{
    background: none;
    color: rgba(0, 0, 0, 0.7);
}

.page-num-input{
    width: 36px;
    height: 32px;
    text-align: center;
    outline: none;
    border-radius: 5px;
    margin: 0 8px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1)
}

/* 隐藏输入框上下箭头 */
.page-num-input::-webkit-inner-spin-button,
.page-num-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
 
/* 兼容Firefox */
.page-num-input[type=number] {
    -moz-appearance: textfield;
}

/* 推荐产品卡片样式优化 */
.recommended-products {
    margin-top: 10px;
}

.product-card {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 12px;
    background: #f9fbff;
    transition: all 0.3s ease;
}

.product-card:hover {
    background: rgba(72, 198, 239, 0.08);
    transform: translateX(5px);
}

.product-card:last-child {
    margin-bottom: 0;
}

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-right: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 4px;
}

.product-date {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

.product-download {
    background: linear-gradient(45deg, #48C6EF 0%, #6f86d6 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(72, 198, 239, 0.2);
}

.product-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(72, 198, 239, 0.3);
}

.product-download img {
    width: 14px;
    height: 14px;
    margin-right: 4px;
}


