@charset "utf-8";
@font-face {
    font-family: 'HelveticaNeue';
    src: url(./font/Inter-Regular-9.otf);
}
@font-face {
    font-family: 'Inter';
    src: url(./font/Inter-VariableFont_opsz\,wght.ttf);
}
@font-face {
    font-family: 'poppins';
    src: url(./font/Poppins-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
}   
html,
body {
      font-family: Inter ,poppins,HelveticaNeue,Pingfang , Arial, sans-serif;;
  color: #000;
  height: 100%;
}
.content-company{
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.content-company h1{ 
    height: 0.72rem;
    font-weight: bold;
    font-size: 0.61rem;
    color: #000000;
    line-height: 0.71rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.content-company p{
    padding: 0 4rem;
    margin-top: 15px;
    font-weight: 500;
    font-size: 0.22rem;
    color: #191918;
    line-height: 0.3rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.content-company img{
margin-top: 0.56rem;
    width: 8.26rem;
    height: 6.11rem;
}
.content-team{
    margin-top: 0.69rem;
    padding: 0.9rem 0;
    background: #F5F5F6;
}
.content-team h2{
    height: 0.72rem;
    font-weight: bold;
    font-size: 0.61rem;
    color: #000000;
    line-height: 0.71rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.content-team p{
    margin-top: 0.1rem;
    font-size: 0.22rem;
    color: #191918;
    line-height: 0.3rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.team-items {
    display: flex;
    padding: 0.7rem 3.2rem 0;
        justify-content: space-between;
        flex-wrap: wrap;
}

.team-item {
    padding: 0.41rem;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    width: 3.73rem;
background: #FFFFFF;
border-radius: 12px 12px 12px 12px;
border: 1px solid #ECECEC;
}
.team-item img {
    width: 0.6rem;
    height: 0.6rem;
    object-fit: contain;
}

.team-item h4 {
    line-height: 40px;
    font-size: 0.28rem;
    font-weight: bold;
    color: #000000;
        margin-top: 0.1rem;
}

.team-item p {
    text-align: left;
   font-size: clamp(14px, 9px + 0.43vw, 18px);
    color: #191B22;
    line-height: 0.27rem;
}

.email-title{
height: 0.78rem;
font-weight: bold;
font-size: 0.32rem;
color: #343434;
padding: 0 6.5rem;
line-height: 0.38rem;
text-align: center;
font-style: normal;
text-transform: none;
}

.content-email {
    padding: 1.2rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-box {
    margin-top: 0.4rem;
    width: 7.5rem;
    height: 0.8rem;
    background: #FFFFFF;
    border-radius: 0.4rem;
    border: 1px solid #ECECEC;
    padding: 0 0 0 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-content {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.email-content img {
    width: 0.32rem;
    height: 0.32rem;
}

.email-content span {
    font-weight: 500;
    font-size: 0.24rem;
    color: #333;
}

.copy-btn { 
    font-weight: bold;
    width: 1.9rem;
    height:100%;
    background: #FC8A06;
    border-radius: 0.5rem;
    border: none;
    color: #191B22;
    font-size: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}
.toast {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 0.2rem;
    font-size: 0.16rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.toast.show {
    opacity: 1;
    visibility: visible;
}
.copy-btn:hover {
    background: #FF8533;
}

@media screen and (max-width: 1440px) {
    .team-item{
        width: 4rem;
    }
    .team-item p {
        text-align: left;
        font-size: 0.23rem;
        color: #191B22;
        line-height: 0.27rem;
    }
}

@media screen and (max-width: 980px) {
    .content-company p {
        padding: 0 2rem;
        font-size: 0.2rem;
    }
    .team-items {
        flex-direction: column;
        align-items: center;
    }
    .team-item {
        width: 100%;
        max-width: 5rem;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 750px) {
    .content-company h1 {
        font-size: 0.5rem;
    }
    .content-company p {
        padding: 0 1rem;
        font-size: 0.18rem;
    }
}