section .section_main {
    width: 1240px;
}

/* product */
.section_product  {
    padding-top:160px;
}


.section_product .section_tit {
    padding-bottom: 114px;
    margin-bottom: 60px;
    margin-left: 0;
    padding-left: 80px;
    border-bottom: 1px solid #efefef;   
    position:relative;
}
.section_tit span {
    left: 80px;
}
.section_product .product_totle {
    position: absolute;
    right: 0;
    bottom: 18px;
    height: 20px;
    font-size: 14px;
    color: #414141;
    line-height: 20px;
    text-align: right;
    display: flex;
}

.section_product .product_totle b.totle_title {
    font-weight:bold;
    color:#333
}
.section_product .product_totle b{
    color:#2245FF;
    font-weight:normal;
    padding:0 3px
}
section .section_main .section_content {
    display:grid;
}
section .section_main .product_list {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 60px 80px;
    margin-bottom: 60px;
}
section .section_main .list_item{
    display:grid;
    gap:20px;
    position: relative;
}

section .section_main .list_item .item_info {
    display: flex;
    line-height: 24px;
    gap: 12px;
    font-weight: bold;
    font-size: 16px;
}
section .section_main .item_info .item_icon {
    color: #2245FF;
    font-weight: normal;
    padding: 0 16px;
    background: rgba(34, 69 ,255 ,.1);
    border-radius: 30px;
}
section .section_main  .item_img {
    width: 360px;
    height: 360px;
    position:relative;
    overflow: hidden;
    cursor:pointer;
}
section .section_main  .item_img img {
    transition:all .5s;
}
section .section_main  .item_img:hover  img{
    transform:scale(1.05);
}

section .section_main  .item_img .item_product_img {
    position:absolute;
    max-height:82%;
    max-width:82%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%)
}
section .section_main .list_more {
    margin: 0 auto 60px;
}
section .list_more .show_more {
    color:#FCFCFE;
    font-size:15px;
    background:#2245FF;
    padding:12px 60px 12px 25px;
    border-radius:25px;
    position:relative;
    cursor:pointer;
}
section .list_more .show_more:after {
    content:'';
    background:url(../img/awards_more.png) center no-repeat;
    position:absolute;
    top:12px;
    right:26px;
    width:20px;
    height:20px;
}

/* model */
    
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 4; 
}



.modal-content {
  display: flex;
  align-items: center; 
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: left; 
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
}


.modal-content img {
  max-width: 50%; 
  max-height: 400px;
  width: auto; 
  height: auto; 
  margin-bottom: 20px; 
}
/* mobile */
@media screen and (max-width:700px){
    .section_product {
        padding-top:88px;
    }
    section .section_main {
        width:100%;
    }
    section .section_main .list_more {
        margin-bottom: 40px;
    }
    section .list_more .show_more {
        font-size: 10px;
        padding: 6px 36px 6px 10px;
    }
    section .list_more .show_more:after {
        width: 12px;
        height: 12px;
        right: 20px;
        top: 7px;
        background-size: 20px;
    }
        
    
    section.section_product .section_tit {
        padding-left: 34px;
        width: calc(100% - 32px );
        box-sizing: border-box;
        padding-bottom: 79px;
        border-bottom: 1px solid #EFEFEF;
        margin: 0 16px;
    }
    .section_product .section_tit {
        border:unset;
    }
    .section_tit span {
        left: 34px;
    }
    .section_product .product_totle {
        font-size:12px;
        bottom: 10px;
        line-height: 14px;
        height: 14px;
    }
    section .section_main .section_content {
        display: grid;
        padding: 14px 16px 0;
        box-sizing: content-box;
    }
    section .section_main .product_list {
        grid-template-columns:repeat(2,1fr);
        gap: 20px 12px;
        margin-bottom: 40px;
    }
    section .section_main .item_img {
        width:100%;
        height: auto;
    }
    
    section .section_main .item_img .item_product_img {
        max-height: 90%;
        overflow: hidden;
        max-width: 90%;
        width: 100%;
        height: 100%;
        text-align: center;
    }
    section .section_main .item_img .item_product_img img {
        max-height: 100%;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    section .section_main .list_item {
        gap:12px;
        color:#414141
    }
    section .section_main .list_item .item_info {
        text-align:center;
        display: block;
        font-size: 12px;
    }
    section .section_main .item_info .item_icon {
        position:absolute;
        top:6px;
        left:6px;
        border-radius:0;
        font-size: 11px;
        padding: 0 12px;
        font-weight:bold;
        line-height: 16px;
    }
}