/* ......................................................hearder */
body{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-image: url(./images/body-background.png);
    /* background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; */ 
    height: auto;
    font-size: 16px;
    background-color: rgba(240, 240, 240, 0.35);
    /* position: relative; */
}
header {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100vw;
    max-width: 480px;
    top: 0;
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(134, 134, 134, 0.418);
    z-index: 1;
    /* background-color: aqua; */
    /* border: 1px solid red; */
    



}
.nav-area {
    display: flex;
    flex-direction: row;
    min-width: 320px;
    height: 50px;
    justify-content: space-between;
    /* background-color: aqua; */
    align-items: center;
    padding: 0 5px;
    background-color: white;
    

}
.nav-area > a {
    /* width: 100%; */
    /* background-color: rgb(233, 124, 0); */
}
.nav-left{
    /* padding-top: 4px;
    width: 40px; */
    /* background-color: blueviolet; */
}
.nav-right{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    /* height: 100px; */
    padding: 0 10px;
    /* gap: 18px; */
    /* background-color: blue; */
    max-width: 480px;
}
.nav-right-words{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* width: auto; */
    /* font-size: 20px; */

}
#nav-toggle{
    padding-top: 8px;
    cursor: pointer;
    /* position: relative; */
}
#nav-switch{
    display: none;
}
#nav-toggle > img{
    width: 40px;
}
.drawer {
    position: fixed;
    width: 100vw;
    inset: 0 0 0 -110%;
    background-color: white;
    box-shadow: -1px 1px 0px 0px rgba(128, 128, 128, 0.247);
    /* padding: 20px; */
    top:0px;
    right: 0px;
    transition: all 0.3s ease;
    z-index: 5;
}
.drawer ul{
    list-style: none;
    padding: 10px;
    margin: 0px;
    font-size: 18px;
}
.drawer li+li{
    margin-top: 16px;
}
.drawer a {
    text-decoration: none;
    color: rgb(128, 128, 128,0.9);
    /* width: 100vw; */
    /* border-bottom: 1px solid #000000; */
}
.close-btn{
    top:10px;
    right: 10px;
    position:absolute;
    cursor: pointer;
}
#nav-switch:checked ~ .drawer{
    inset: 0 0 0 0;
    /* z-index: -1; */
}

/* .......................................................banner */
.logobg{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    /* background-color: white; */
    /* border-top:1px solid rgba(187, 185, 185, 0.3) ; */
} 

/* 第一部分 轮播图部分 */
.slides {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100vw;
    /* height: 600px; */
    overflow: hidden;
    z-index: 0;
    max-width: 480px;
    /* background-color: rgb(63, 63, 63); */
    /* border: 2px solid red; */
}

.slide-item {
    display: none;
}

.active {
    display: block;
    
}


.slide-item-box {
    /* width: 100%;  */
    height: 100%;
    box-sizing: border-box;
    /* background-color: blue; */

}

.slide-item-box-blister {
    height:425px;
    width: 340px;
    background-image:url(/images/Banner/480x600px_blistetPackagingMachine.jpg) ;
    background-repeat:no-repeat;
    background-position: center;
    background-size: contain;
    /* background-color: rgb(54, 54, 54); */
    /* border: 2px solid blue; */
    
}

.slide-item-box-countingmachine {
    height:425px;
    width: 340px;
    background-image:url(/images/Banner/480x600px_countingMachine.jpg) ;
    background-repeat:no-repeat;
    background-position: center;
    background-size: contain;
    /* background-color: rgb(177, 27, 27); */
    
}

.slide-item-box-tabletpress {
    height:425px;
    width: 340px;
    background-image:url(/images/Banner/480x600px_tabletPressMachine.jpg) ;
    background-repeat:no-repeat;
    background-position: center;
    background-size: contain;
    /* background-color: rgb(11, 125, 218); */
    
}
.change-button {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    font-size: 32px;
    background-color: rgb(130, 251, 255);
    /* opacity: 0.5; */
    cursor: pointer;
    border-radius: 5px;
    color: white;
    z-index: 1;
    /* all:unset;
    display: inline-block;
    padding: 18px 10px;
    background-color: aliceblue;
    border-radius: 5px; */
    /* transform: background-color, .2s; */

}

.prev-button {
    left: 20px;
}

.next-button {
    right: 20px;
}

.dot {
    all: unset;
    position: absolute;
    width: 10px;
    height: 10px;
    /* border: 1px solid black; */
    border-radius: 5px;
    top:95%;
    cursor: pointer;
    background-color: #3f3f3f;
    z-index: 3;
}

.dot-1 {
    transform: translateX(-150%);
}

.dot-3 {
    transform: translateX(150%);
}

.dot-light {
    background-color: #dfdfdf;
}
/* 轮播图部分 */
/* 第二部分 why choose us */
.PartTwo {
    display: flex;
    flex-direction: column;
    /* justify-content:center ; */
    /* margin-top: 100px; */
    width: 340px;
    /* height: 600px; */
    background-color: rgb(255, 255, 255);
}
.PartTwo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 200px;
    padding: 60px 0 30px;
    gap: 0.2em;
    font-size: 26px;
    font-weight: 900;
    color: white;
    background-color: #38C5BA;

}

.PartTwo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    top: -100px;

}
.PartTwo-card-top {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.PartTwo-card-bottom {
    display: flex;
    flex-direction: row;
    gap: 10px;

}

.Parttwo-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    border-radius: 3px;
    padding: 10px 0px 10px;
    width: 150px;
    height: 230px;
    gap: 0.5em;
    background-color: rgb(208, 255, 214);
    box-shadow: -1px 0.5px 4px 0px rgb(79, 126, 86);
}




/* 第二部分 why choose us */

/* 产品盒子 */
.homepage-product {
    width: 340px;
    /* height: 600px; */
    /* max-width: 480px; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    /* border: 1px solid red; */
    /* background-color: aqua; */

}

.homepage-product span {
    position: relative;;
    left: 15px;

}


.homepage-product-topbox {
    display: flex;
    justify-content: start;
    align-content: center;
    width: 100%;
    /* padding-left: 30px; */
    padding-top: 100px;
    /* border: 1px solid rgb(0, 255, 115); */

}


.rectangle_2 {
    margin-bottom: 40px;
}

.ProductGrid {
    display: grid;
    grid-template-columns: repeat(0,185px);
    grid-template-rows: repeat(0,280px);
    /* gap: 1px; */
    background-color: #f5f4f4;
    /* border: 1px solid #000000; */
    /* margin-bottom: 200px; */
}

.ProductGrid-item {
    border: 1px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    
}

.ProductGrid-item-title {
    font-weight: 900;
    font-size: 14px;
}

.ProductGrid-item > div >a {
    text-decoration: none;
    color: #38C5BA;
    font-size: 16px;
    font-weight: 900;

}

.ProductGrid-item-pic {
    padding-bottom: 15px;
}

.ProductGrid-item-1 {
    /* background-color: #3db7f0; */
}


.homepage-product-topbox span {
    font-weight: 900;
    font-size: 48px;
}

.homepage-product-bottom {
    /* width: 380px; */

}

.homepage-product-bottom-pic {
    /* width: 360px; */
    height: 360px;
    border: 1px solid #cacaca;
    background-clip: border-box;
    border-radius: 10px;
}

.homepage-product-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: start;
    font-size: 24px;
}

.homepage-product-bottom-content-title {
    font-weight: 900;
}

.homepage-product-bottom-content-inner {
    font-size: 18px;
    font-weight: 500;
    color: #888888;
    line-height: 27px;
}

.homepage-product-bottom-content-buttonbox {
    display: flex;
    flex-direction: row;
    /* width: 380px; */
    justify-content: start;
    gap: 20PX;

}
.homepage-product-bottom-content-buttonbox a{
    text-decoration: none;

}


.homepage-product-bottom-content-buttonbox-more {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    width: 80px;
    height: 40px;
    background-color: black;
    border-radius: 10px;
    gap: 20px;
}

.homepage-product-bottom-content-buttonbox-more a {
    color: white;
}

.homepage-product-bottom-content-buttonbox-contactus {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    width: 170px;
    height: 40px;
    background-color: #dfdfdf;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
}

.homepage-product-bottom-content-buttonbox-contactus:hover {
    /* color: rgb(255, 255, 255); */
    background-color: black;
}

.homepage-product-bottom-content-buttonbox-contactus a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: black;
    transition: all 0.6s ease-in-out;
}

.homepage-product-bottom-content-buttonbox-contactus a:hover {
    color: rgb(255, 255, 255);
}
/* 产品盒子 */

/* 主页公司信息 */
.homepage-company {
    position: relative;
    font-weight: 900;
    width: 340px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 620px;
    gap: 20px;
    padding-top: 30px;
    /* border: 1px solid red; */
    /* background-color: antiquewhite; */
     
}



.homepage-company-top {
    display: flex;
    width: 100%;
    padding-top: 100px;
    justify-content: start;
    font-size: 48px;
    font-weight: 900;
    /* background-color: antiquewhite; */
     
}

.homepage-company-top span {
    position: relative;;
    left: 10px;
}

.homepage-company-bottom {
    display: flex;
    flex-direction: column;
    /* width: 380px; */
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    gap: 20px;
}

.homepage-company-bottom-pic {
    /* display: flex;
    background-clip:border-box;
    background-image: url(/images/news-chuquwan_340_16x9_x1.png);
    background-position: center;
    background-size: contain;
    border-radius: 12px;
    width: 340px;
    height: 192px;
    box-shadow: -4px 4px 20px gray; */
}

.homepage-company-bottom-content {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 27px;
}

.homepage-company-bottom-content-title {

}

.homepage-company-bottom-content-inner {
    color: #999797;
    width: 340px;
    line-height: 1.2em;
}

/* .Company_dot_box {
    position: relative;
    background-color: #38C5BA;
} */

.Company-dot {
    all: unset;
    position: absolute;
    width: 10px;
    height: 10px;
    /* border: 1px solid black; */
    border-radius: 5px;
    top:95%;
    cursor: pointer;
    background-color: #666666;
    z-index: 0;
}

.Company-dot-light {
    background-color: #c2c0c0;
    /* border: 1px solid black; */
}

.dot-4 {
    transform: translateX(-600%);
}

.dot-5 {
    transform: translateX(-450%);
}
.dot-6 {
    transform: translateX(-300%);
}
.dot-7 {
    transform: translateX(-150%);
}
.dot-9 {
    transform: translateX(150%);
}
.dot-10 {
    transform: translateX(300%);
}
.dot-11 {
    transform: translateX(450%);
}
.dot-12 {
    transform: translateX(600%);
}
.dot-13 {
    transform: translateX(750%);
}



/* 主页公司信息 */

p {
    margin-top: 0;
    margin-bottom: 0;
}
main {
    display: flex;
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
}
.introduction {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 340px;
    /* border: 1px solid red; */
    text-indent: 2em;
}

.page-bottom {
    height: 70px;
}

/* .......................................................footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    /* justify-content: center; */
    /* background-color: rgb(255, 0, 0); */
    /* width: 100vw; */
    /* height: 70px; */
}
/* .nav-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100vw;
    height: 70px;
    position: fixed;
    background-color: white;
    bottom: 0px;
    border-top: 1px solid rgb(128, 128, 128,0.3); */
    /* margin-top:50px ; */
    /* z-index: 1; */
    /* max-width: 480px; */
/* } */
/* footer  a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: black;
    width: 100%;
} */
.footer-btn {
    width: 40px;
}

.footer-item {
    display: none;
}



.footer-top {
    display: flex;
    /* max-width: 480px; */
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:#F0F0F0;
    gap: 30px;
    padding-top: 30px;
    margin-top: 30px;

}


.footer-item {
    display: flex;
    gap: 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: aquamarine; */
    font-size: 16px;
    color: #292929;
    /* padding: 60px 30px; */
}

.footer-item a {
    text-align: center;
}

.site-navigation {
    width: 130px;
    /* background-color: aqua  ; */
}

.where-to-find-us {
    /* align-items: center; */
}

.footer-item a {
    color: #292929;
    transform: translate(color, .0.6s);
}
.footer-item a:hover {
    color: rgb(1, 127, 136);
}

.site-navigation-bottom {
    display: flex;
    flex-direction: column;
    /* justify-content: end; */
    align-items: center;
    gap: 5px;

}

.site-navigation-bottom span a {
    text-decoration: none;
}


.where-to-find-us-middle span a {
    text-decoration: none;
    /* cursor: pointer; */
}
.contact-us-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding-bottom: 50px;
}

.footer-top {
    width: 100vw;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red;  */

}
.footer-top .a {
    text-align: center;

} 


.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 20px;
    background-color: rgb(20, 20, 20);
    padding: 10px 0;
    color: white;
    width: 100%;
    /* border: 1px solid red; */
}


.contact-us-top > a {
    text-decoration: none;
}

.contact-us-bottom > a {
    text-decoration: none; 
}
/* 页脚 */



/* about us index */
.main_about_us {
    display: flex;
    /* width: 100%; */
    flex-direction: column;
    align-items: center;
    
}

.top_title {
    max-width: 480px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    align-items: start;
    width: 100vw;
    height: 100px;
    gap: 10px;
    /* padding-left: 30px; */
    padding-top: 20px;
    background-color: #F0F0F0;
}

.top_title_top {
    display: flex;
    font-size: 19px;
    font-weight: 900;
    color: #38C5BA;
    position: relative;
    left: 20px;

}

.top_title_buttom {
    display: flex;
    gap: 10px;
    /* display: flex; */
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    align-items: end;
    position: relative;
    left: 20px;

}

.top_title_buttom > a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    
}

.top_title_buttom > a:hover {
    color: #38C5BA;
    text-decoration: none;
    transition:all ease-in-out 0.3s;
    
}

.top_title_buttom > div >a {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.top_title_buttom > div >a:hover {
    color: #38C5BA;
    text-decoration: none;
    transition:all ease-in-out 0.3s;
}

.main_about_us > .section_1 {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.main_about_us > .section_1 > p {
    text-indent: 1em;
    font-size: 16px;
    font-weight: 400;
    width: 95%;
    /* display: flex; */
    /* justify-content: space-around */
    letter-spacing: 0.01px;
    /* text-align: justify; */
    /* background-color: #38C5BA; */
}

.teampic {
    width: 95%;
}


.main_about_us > .section_2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* text-align: justify; */

}

.main_about_us > .section_2 > p {
    text-indent: 1em;
    font-size: 16px;
    font-weight: 400;
    width: 95%;
    letter-spacing: 0.01px;
    /* background-color: #38C5BA; */
}


.officepic {
    width: 95%;
}

.main_about_us > span {
    font-size: 16px;
    font-weight: 900;
    padding: 30px 0px 5px;
    border-bottom: 2px solid #38C5BA;
    margin-bottom: 30px;
}

.workshop_counting {
    width: 95%;
}

.workshop_press_machine {
    width: 95%;
}

.capsulefillingmachine {
    width: 95%;
}

.cartoningmachine {
    width: 95%;
}

.blisterpackingmachine {
    width: 95%;
}

.main_about_us > p {
    width: 95%;
    font-size: 16px;
    font-weight: 900;
    /* padding: 30px 0px 5px; */
    /* border-bottom: 2px solid #38C5BA; */
    /* margin-bottom: 30px; */
}

.Our_Advantage {
    /* width: 95%; */
    font-size: 36px;
    font-weight: 900;
    padding: 30px 0px 5px;

}

.Our_Advantage_title {
    padding-top: 30px;
    width: 95%;
    /* background-color: #38C5BA; */
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.3px;
    /* text-align: justify; */

}

.Our_Advantage_text {
    padding-top: 30px;
    width: 95%;
    /* background-color: #38C5BA; */
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.3px;
    /* text-indent: 2em; */
    /* text-align: justify; */

}

.light {
    padding: 30px 0px 0px;
}

.cup {
    padding: 30px 0px 0px;
}



/* products */


.products-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #d6faf7;
    width: 360px;
    height: 500px;
    border-radius: 10px;
    box-shadow: -2px 4px 8px #c4c4c4;
    margin-top: 20px;
}

.products-card-top {
    width: 360px;
    height: 360px;
}

.face {
    width: 360px;
    height: 360px;
    border-radius: 10px 10px 0 0;
}
.products-card-bottom {
    display: flex;
    flex-direction: column;
}

.products-card-bottom-title {
    font-size: 22px;
    font-weight: 900;
}

.products-card-bottom-content {
    font-size: 16px;
    font-weight: 900;
}

.products-card-bottom > div {
    text-align: center;
}




/* news    */

.news-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 370px;
    height: 200px;
    border-radius: 5px;
    margin-top: 20px;
    /* background-color: #e5f8f7; */
    background-color: #e4fffc;
    box-shadow: -2px 4px 8px #c4c4c4;
}

.news-card-67th {
 background-color: #f8f8f8;
}

.news-card > a {
    display: flex;
    text-decoration: none;
    color: #000000;
}

.news-card > a:hover {
    display: flex;
    text-decoration: none;
    font-size: 16px;
    /* font-weight: 500; */
    color: #53cac0;
    box-shadow: 2px 2px 20px 1px;
    transition: all ease-in-out 0.3s;
}

.news-card-left {
    width: 200px;
    height: 200PX;
    /* background-color: #e4fffc; */
    border-radius: 5px 0 0 5px;

}


.news-65th {
    background-image: url(/images/news-65xiamen_309x309_x1.jpg);
    background-size: cover;

}


.news-66th{
    background-image: url(/images/news-66chongqin_680x680_x1.jpg);
    background-size: cover;
    
}


.news-67th{
    background-image: url(/images/news-cover_768x768x1.jpg);
    background-size: cover;
    
}



.news-card-right {
    /* border-left: 1px solid black; */
    display: flex;
    /* background-color: #e4fffc; */
    border-radius: 0 5px 5px 0;

}

.news-card-right-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 140px;
    font-size: 14px;
    padding: 15px;
    
}

.news-card-right-top {
    font-size: 14px;
}

.news-card-right-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    
}




/* contact us */


.Contact-card {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    width: 370px;
    height: 200px;
    justify-content: center;
    /* padding: 30px 0px; */
    border-radius: 5px;
    margin-top: 20px;
    /* background-color: #e5f8f7; */
    background-color: #e4fffc;;
    box-shadow: -2px 4px 8px #c4c4c4;

}


.Contact-card-top {
    /* background-color: #38C5BA; */


}
.Contact-card-middle {
    font-size: 24px;
    font-weight: 900;
    /* background-color: #38C5BA; */

}

.Contact-card-bottom {
    font-size: 12px;
    font-weight: 900;
    text-align: center ;
    /* background-color: #38C5BA; */

}


.zw-01 {
    height:20px;
}




