/* =====================================
   PRODUCT LIST PAGE
   1rem = 10px
===================================== */
.prolist_page{
    width:100%;
    overflow:hidden;
    padding-top: 11rem;
}
.prolist_container{
    width:165rem;
    margin:0 auto;
}
/* =====================================
   通用标题
===================================== */
.prolist_section_title{
    margin-bottom:6rem;
}
.prolist_section_title h2{
    font-size:3rem;
    line-height:1.25;
    font-weight:bold;
    color:#111;
}
.prolist_section_title h2 span{
    color:#145be8;
}
.prolist_section_title p{
    width:65rem;
    margin-top:2rem;
    font-size:1.6rem;
    line-height:1.8;
    color:#666;
}
/* =====================================
   Banner
===================================== */
.prolist_banner{
    height:44rem;
    background:#f7f9fc;
    display:flex;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 2rem;
}
.prolist_banner_content{
    width:75rem;
}
.prolist_banner_label{
    font-size:1.3rem;
    letter-spacing:.1rem;
    margin-bottom:7rem;
}
.prolist_banner_label a{
    color: #8b96a5;
    font-weight: 400;
}
.prolist_banner_label span{
    color: #8b96a5;
}
.prolist_banner_label strong{
    color: #1b2738;
    font-weight: 500;
}
.prolist_banner h1{
    font-size:6rem;
    line-height:1.2;
    font-weight:700;
    margin-bottom:2.5rem;
}
.prolist_banner h1 span{
    color:#145be8;
}
.prolist_banner p{
    width:65rem;
    font-size:1.8rem;
    line-height:1.8;
    color:#666;
}
/* =====================================
   产品主体
===================================== */
.prolist_products_area{
    padding:10rem 0;
}
.prolist_products_wrap{
    display:flex;
    gap:5rem;
    align-items:flex-start;
}
/* =====================================
   左侧系列
===================================== */
.prolist_sidebar{
    width:32rem;
    flex:none;
}
.prolist_sidebar_title{
    font-size:2.8rem;
    font-weight:600;
    margin-bottom:3rem;
}
.prolist_series_list{
    border-right:.1rem solid #e5e5e5;
    padding-right:3rem;
}
.prolist_series_item{
    height:7.5rem;
    display:flex;
    align-items:center;
    position:relative;
    padding:0 2rem;
    text-decoration:none;
    color:#222;
    transition:.3s;
    background:#f3f7ff;
}
.prolist_series_item span{
    width:4rem;
    font-size:1.3rem;
    color:#999;
}
.prolist_series_item strong{
    font-size:1.8rem;
    font-weight:600;
}
.prolist_series_item i{
    position:absolute;
    right:-3.1rem;
    width:.3rem;
    height:0;
    background:#145be8;
    transition:.3s;
}
/* 当前系列 */
.prolist_series_item.current{
    background:#f3f7ff;
    color:#145be8;
}
.prolist_series_item.current span{
    color:#145be8;
}
.prolist_series_item.current i{
    height:100%;
}
.prolist_series_item:hover{
    background:#f3f7ff;
}

/* =====================================
   SUB SERIES DROPDOWN
===================================== */
.prolist_series_group{
    border-bottom:.1rem solid #eee;
}
.prolist_sub_series{
    padding:0 2rem 2rem 6rem;
    display:none;
}
/* 默认展开 */
.prolist_series_group.open 
.prolist_sub_series{
    display:block;
}
.prolist_sub_series a{
    display:block;
    padding:1.2rem 0;
    font-size:1.5rem;
    color:#666;
    text-decoration:none;
    transition:.3s;
}
.prolist_sub_series a:hover{
    color:#145be8;
    transform:translateX(.5rem);
}
.prolist_sub_series a.current{
    color:#145be8;
    font-weight:600;
}
/* =====================================
   子栏目当前链接
===================================== */
.prolist_sub_series a.current{
    color:#145be8;
    font-weight:600;
    position:relative;
}
/* 左侧蓝色小点 */
.prolist_sub_series a.current::before{
    content:"";
    position:absolute;
    left:-1.8rem;
    top:50%;
    width:.6rem;
    height:.6rem;
    background:#145be8;
    border-radius:50%;
    transform:translateY(-50%);
}
/* 当前链接底部微弱强调 */
.prolist_sub_series a.current::after{
    content:"";
    position:absolute;
    left:0;
    bottom:.8rem;
    width:100%;
    height:.1rem;
    background:#145be8;
    opacity:.3;
}
/* =====================================
   右侧区域
===================================== */
.prolist_right{
    flex:1;
    min-width:0;
}
/* =====================================
   FILTER
===================================== */
.prolist_filter{
    border-radius: 1rem;
    padding: 2rem 2rem;
    margin-bottom: 5rem;
    border: 0.1rem solid rgb(131 182 255 / 18%);
    outline: .1rem solid rgb(134 183 254 / 18%);
}
.prolist_filter_head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:3rem;
}
.prolist_filter_head h2{
    font-size:2.8rem;
    font-weight:600;
}
.prolist_filter_head span{
    font-size:1.6rem;
    color:#666;
}
.prolist_filter_group{
    display: flex;
    padding: 1.8rem 2rem;
    flex-direction: column;
    align-items: flex-start;
}
.prolist_filter_name{
    width: 18rem;
    flex: none;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.prolist_filter_options{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
}
.prolist_filter_options a{
    height: 3.8rem;
    padding: 0 1rem;
    border-radius: 0.5rem;
    border: .1rem solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #555;
    cursor: pointer;
    transition: .3s;
}
.prolist_filter_options a:hover,
.prolist_filter_options a.active{
    background:#145be8;
    border-color:#145be8;
    color:#fff;
}
.prolist_filterwd{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
/* =====================================
   PRODUCT HEAD
===================================== */
.prolist_product_head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:3rem;
}
.prolist_product_head h3{
    font-size:3rem;
    font-weight:600;
}
/* =====================================
   PRODUCT LIST
===================================== */
.prolist_product_list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:3rem;
}
/* 产品卡片 */
.prolist_product_item{
    display:block;
    text-decoration:none;
    color:#111;
    background:#fff;
    border:.1rem solid #eee;
    border-radius:1.5rem;
    overflow:hidden;
    transition:.5s;
    opacity:0;
    transform:translateY(4rem);
}
.prolist_product_item.show{
    opacity:1;
    transform:translateY(0);
}
.prolist_product_item:hover{
    transform:translateY(-1rem);
    box-shadow:0 2rem 5rem rgba(0,0,0,.08);
}
/* 产品图片 */
.prolist_product_image{
    height:40rem;
    background:#f7f9fc;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.prolist_product_image img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
    transition:.5s;
}
.prolist_product_item:hover 
.prolist_product_image img{
    transform:scale(1.08);
}
/* 产品信息 */
.prolist_product_info{
    padding:3rem;
}
.prolist_product_info h3{
    font-size:2.2rem;
    margin-bottom:2rem;
}
.prolist_product_info p{
    font-size:1.5rem;
    color:#666;
    margin-bottom:2.5rem;
}
/* 参数 */
.prolist_product_data{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
    padding-bottom:2.5rem;
    border-bottom:.1rem solid #eee;
}
.prolist_product_data div{
    text-align:center;
}
.prolist_product_data span{
    display:block;
    font-size:1.2rem;
    color:#999;
    margin-bottom:.8rem;
}
.prolist_product_data strong{
    font-size:1.6rem;
    font-weight:600;
}
/* 查看按钮 */
.prolist_product_more{
    padding-top:2rem;
    font-size:1.5rem;
    color:#145be8;
    transition:.3s;
}
.prolist_product_item:hover 
.prolist_product_more{
    transform:translateX(.5rem);
}
/* =====================================
   LOAD MORE
===================================== */
.prolist_loadmore{
    margin: 6rem auto 0;
    padding: 0 5rem;
    border-radius: 3rem;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    transition: .3s;
}
.prolist_loadmore .pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.prolist_loadmore .pagination li{
    
}
.prolist_loadmore .pagination li a{
    padding: 0.7rem 2rem;
    border: 1px solid #c5c5c5;
    border-radius: 0.5rem;
    transition: .3s;
}
.prolist_loadmore .pagination li.active{
    
}
.prolist_loadmore .pagination li.active a{
    border: none;
    transition: 0s;
}
.prolist_loadmore .pagination li a:hover{
    background-color: #145be8;
    color: white;
    border: 1px solid #145be8;
}
.prolist_loadmore .pagination li.active a:hover{
    background-color: #fff;
    color: #145be8;
    border:none;
}
/* =====================================
   WHY CHOOSE CMG
===================================== */
.prolist_choose{
    padding:3rem 0;
    background-color: #f3f7ff;
}
.prolist_choose_list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:3rem;
}
.prolist_choose_item{
    padding: 2rem 2rem;
    background: #fff;
    border-radius: 1.5rem;
    transition: .5s;
    opacity: 0;
    transform: translateY(4rem);
    display: flex;
    align-items: center;
    flex-direction: row;
    border: 0.1rem solid rgb(131 182 255 / 18%);
    gap: 2rem;
}
.prolist_choose_item.show{
    opacity:1;
    transform:translateY(0);
}
.prolist_choose_item:hover{
    transform:translateY(-1rem);
}
.prolist_choose_icon{
    border: 0.1rem solid rgb(131 182 255 / 18%);
    padding: 2rem;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 32%, #ffffff 0%, #fcfdff 48%, #f5f9ff 72%, #edf4ff 100%);
    box-shadow: inset 0 .15rem .3rem rgba(255, 255, 255, .95), inset 0 -.25rem .6rem rgba(124, 168, 255, .10), 0 .2rem .5rem rgba(36, 98, 255, .04), 0 .8rem 2rem rgba(36, 98, 255, .08);
}
.prolist_choose_icon img{
    width: 8rem;
    object-fit: contain;
}
.prolist_choose_item h3{
    font-size:2.2rem;
    margin-bottom:1.5rem;
}
.prolist_choose_item p{
    font-size:1.3rem;
    line-height:1.8;
    color:#666;
}
/* =====================================
   APPLICATION
===================================== */
.prolist_application{
    padding:3rem 0;
}
.prolist_application_list{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:3rem;
}
.prolist_application_item{
    position:relative;
    height:27rem;
    overflow:hidden;
    border-radius:1.5rem;
    opacity:0;
    transform:translateY(4rem);
    transition:.7s;
}
.prolist_application_item.show{
    opacity:1;
    transform:translateY(0);
}
.prolist_application_image{
    width:100%;
    height:100%;
}
.prolist_application_image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.prolist_application_item:hover 
.prolist_application_image img{
    transform:scale(1.08);
}
.prolist_application_text{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    color: #2c2c2c;
    background: rgb(255 255 255 / 71%);
    backdrop-filter: blur(1rem);
}
.prolist_application_text h3{
    font-size:1.8rem;
    margin-bottom:1rem;
}
.prolist_application_text p{
    font-size: 1.4rem;
    line-height: 1.6;
    color: #5a5a5a;
}
/* =====================================
   DOWNLOAD CENTER
===================================== */
.prolist_download{
    padding:8rem 0;
    background-color: #f3f7ff;
}
.prolist_download_wrap{
    display:flex;
    gap:8rem;
    align-items:flex-start;
}
.prolist_download_intro{
    width:28rem;
    flex:none;
}
.prolist_download_intro h2{
    font-size:2.5rem;
    line-height:1.3;
    margin-bottom:2rem;
}
.prolist_download_intro h2 span{
    color:#145be8;
}
.prolist_download_intro p{
    font-size:1.4rem;
    color:#666;
    line-height:1.8;
    margin-bottom:3rem;
}
.prolist_download_intro a{
    display: inline-flex;
    height: 5rem;
    align-items: center;
    border-radius: 3rem;
    color: #145be8;
    text-decoration: none;
    font-size: 1.5rem;
}
.prolist_download_intro a span{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #145be8;
    flex-shrink: 0;
    margin-left: 1rem;
    font-weight: bold;
    transition: 0.4s;
}
.prolist_download_intro a:hover span{
    margin-left: 2.5rem;
}
.prolist_download_list{
    flex:1;
    display:flex;
    flex-direction: row;
    gap:3rem;
}
.prolist_download_item{
    height: 16rem;
    padding: 0 2rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    border: .1rem solid #eee;
    border-radius: 1.5rem;
    text-decoration: none;
    color: #111;
    transition: .4s;
    opacity: 0;
    transform: translateX(4rem);
}
.prolist_download_item.show{
    opacity:1;
    transform:translateX(0);
}
.prolist_download_item:hover{
    box-shadow:0 2rem 5rem rgba(0,0,0,.08);
}
.prolist_download_icon{
    width:12rem;
    height:12rem;
}
.prolist_download_icon img{
    width:100%;
    height:100%;
}
.prolist_download_info{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 9rem;
}
.prolist_download_info h3{
    font-size: 1.8rem;
}
.prolist_download_info span{
    font-size:1.3rem;
    color:#999;
}
.prolist_download_btn{
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    position: absolute;
    right: -0.5rem;
    bottom: 2rem;
    transition: .4s;
    border: .1rem solid rgb(131 182 255 / 18%);
    outline: .1rem solid rgb(134 183 254 / 18%);
}
.prolist_download_btn img{
    width: 50%;
}
.prolist_download_btn .prolist_download_btn_img1{
    
}
.prolist_download_btn .prolist_download_btn_img2{
    display: none;
}
.prolist_download_item:hover .prolist_download_btn{
    background-color: #145be8;
}
.prolist_download_item:hover .prolist_download_btn_img2{
    display: block;
}
.prolist_download_item:hover .prolist_download_btn_img1{
    display: none;
}
/* =====================================
   CONTACT
===================================== */
.prolist_contact{
    padding:12rem 0 15rem;
}
.prolist_contact_wrap{
    display:flex;
    gap:8rem;
    align-items:center;
    background:#f7f9fc;
    border-radius:2rem;
    padding:8rem;
}
.prolist_contact_left{
    width:55rem;
    flex:none;
    opacity:0;
    transform:translateX(-4rem);
    transition:.8s;
}
.prolist_contact_left.show{
    opacity:1;
    transform:translateX(0);
}
.prolist_contact_left h2{
    font-size:4.8rem;
    line-height:1.3;
    margin-bottom:2rem;
}
.prolist_contact_left h2 span{
    color:#145be8;
}
.prolist_contact_left p{
    font-size:1.7rem;
    color:#666;
    line-height:1.8;
    margin-bottom:4rem;
}
.prolist_contact_features{
    display:flex;
    gap:3rem;
}
.prolist_contact_features div{
    font-size:1.4rem;
    color:#666;
}
.prolist_contact_features strong{
    display:block;
    font-size:3rem;
    color:#145be8;
    margin-bottom:.5rem;
}
/* =====================================
   CONTACT FORM
===================================== */
.prolist_contact_form{
    flex:1;
    opacity:0;
    transform:translateX(4rem);
    transition:.8s .2s;
}
.prolist_contact_form.show{
    opacity:1;
    transform:translateX(0);
}
.prolist_contact_form form{
    display:flex;
    flex-direction:column;
    gap:2rem;
}
.prolist_form_row{
    display:flex;
    gap:2rem;
}
.prolist_contact_form input{
    width:100%;
    height:5.5rem;
    border:.1rem solid #ddd;
    border-radius:.8rem;
    background:#fff;
    padding:0 2rem;
    font-size:1.5rem;
    outline:none;
}
.prolist_contact_form textarea{
    width:100%;
    height:16rem;
    resize:none;
    border:.1rem solid #ddd;
    border-radius:.8rem;
    padding:2rem;
    font-size:1.5rem;
    outline:none;
}
.prolist_contact_form input:focus,
.prolist_contact_form textarea:focus{
    border-color:#145be8;
}
.prolist_contact_form button{
    width:20rem;
    height:5.5rem;
    border:none;
    border-radius:3rem;
    background:#145be8;
    color:#fff;
    font-size:1.6rem;
    cursor:pointer;
    transition:.3s;
}
.prolist_contact_form button:hover{
    background:#0d46b8;
}
/* =====================================
   COMMON SCROLL ANIMATION
===================================== */
.prolist_title,
.prolist_banner_content,
.prolist_section_title{
    opacity:0;
    transform:translateY(4rem);
    transition:.8s;
}
.prolist_title.show,
.prolist_banner_content.show,
.prolist_section_title.show{
    opacity:1;
    transform:translateY(0);
}
/* =====================================
   PRODUCT SERIES ANIMATION
===================================== */
.prolist_series_item{
    opacity:0;
    transform:translateX(-3rem);
    transition:.6s;
}
.prolist_series_item.show{
    opacity:1;
    transform:translateX(0);
}
/* =====================================
   FILTER ANIMATION
===================================== */
.prolist_filter{
    opacity:0;
    transform:translateY(3rem);
    transition:.8s;
}
.prolist_filter.show{
    opacity:1;
    transform:translateY(0);
}
/* =====================================
   PRODUCT HEAD ANIMATION
===================================== */
.prolist_product_head{
    opacity:0;
    transform:translateY(3rem);
    transition:.7s;
}
.prolist_product_head.show{
    opacity:1;
    transform:translateY(0);
}
/* =====================================
   PRODUCT DELAY
===================================== */
.prolist_product_item:nth-child(1){
    transition-delay:.05s;
}
.prolist_product_item:nth-child(2){
    transition-delay:.1s;
}
.prolist_product_item:nth-child(3){
    transition-delay:.15s;
}
.prolist_product_item:nth-child(4){
    transition-delay:.2s;
}
.prolist_product_item:nth-child(5){
    transition-delay:.25s;
}
.prolist_product_item:nth-child(6){
    transition-delay:.3s;
}
.prolist_filter.is-loading,
.prolist_product_list.is-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s ease;
}