@import url('https://fonts.cdnfonts.com/css/harmonyos-sans');

.t-nav-item>ul>li:nth-child(3) .t-hover-ul li:first-child {
    display: flex;
}

.t-nav-item li.mactive,
.t-nav-item>ul>li:hover,
.t-hover-ul {
    background-color: #eb5c20!important;
}

.cwth-home-banner {
    width: 100%;
    height: 100vh;
    aspect-ratio: 16 / 9;
    z-index: -1;
    background-image: url('../img/home-banner.jpg');
    background-size: cover;
    background-position: bottom;
    align-items: center;
    flex-direction: column;
    display: flex;
}


.cwth-hb-slogan {
    top: 37.5%;
    row-gap: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    position: absolute;
}

.cwth-home-banner h2 {
    font-size: 80px;
    letter-spacing: 5px;
    line-height: 1;
    color: white;
}

.cwth-home-banner h6 {
    font-size: 36px;
    letter-spacing: 2.5px;
    color: white;
}

.cwth-home-content {
    row-gap: 60px;
    padding: 60px 120px;
    background-color: white;
    flex-direction: column;
    display: flex;
    position: relative;
}

.cwth-home-aboutus {
    width: 100%;
    border-radius: 20px;
    background-image: url(../img/home-aboutus-bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.cwth-home-aboutus-details {
    padding: 40px;
    width: 100%;
    height: 100%;
    max-width: 650px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.cwth-home-aboutus-details h3 {
    font-size: 36px;
    font-weight: 600;
    color: #df5924;
}

.cwth-home-aboutus-details h4 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 7px;
    color: #595757;
}

.cwth-home-aboutus-details p {
    line-height: 30px;
    color: #595757;
}

.cwth-home-aboutus-line {
    margin: 20px 0;
    width: 50px;
    height: 3px;
    background-color: #df5924;
}

.cwth-btn {
    margin-top: 20px;
    column-gap: 10px;
    padding: 10px 25px;
    border-radius: 10px;
    border: 1px solid #595757;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    display: flex;
}

.cwth-btn:hover {
    border: 1px solid transparent;
    background-color: #df5924;
    color: white;
}

.cwth-btn:hover span {
    color: white;
}

.cwth-btn:hover img {
    filter: brightness(0) invert(1);
}

.cwth-btn span {
    color: #595757;
}

.cwth-btn img {
    margin-top: 3px;
    width: 100%;
    max-width: 10px;
}

.cwth-home-area {
    width: 100%;
    column-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}

.cwth-home-area-item {
    width: 100%;
    height: 460px;
    border-radius: 15px;
    padding: 40px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.cwth-home-area-item img {
    margin-top: 5px;
    width: 100%;
    max-width: 13px;
    object-fit: cover;
}

.cwth-home-area-item::before {
    content: '';
    position: absolute;
    inset: 0;
    /* 覆盖整个父容器 */
    background-size: cover;
    background-position: top;
    /* 继承父级圆角 */
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    /* 置于底层 */
}

.cwth-home-area-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s ease;
    z-index: 0;
    pointer-events: none;
}

.cwth-home-area-item:has(.cwth-home-area-click:hover)::after {
    background: rgba(0, 0, 0, 0.25);
}

.cwth-home-area-item:first-child::before {
    background-image: url(../img/home-sz.jpg);
}

.cwth-home-area-item:last-child::before {
    background-image: url(../img/home-hk.jpg);
}

.cwth-home-area-item h5 {
    font-size: 26px;
    font-weight: 500;
    color: white;
    transition: all .3s ease-in-out;
}

.cwth-home-area-item h6 {
    font-size: 20px;
    font-weight: 400;
    color: white;
}

.cwth-home-area-click {
    column-gap: 10px;
    z-index: 1;
    align-items: center;
    flex-direction: row;
    display: flex;
    cursor: pointer;
    color: white;
}

.cwth-home-area-details {
    z-index: 1;
}

.cwth-home-area-click:hover img {
    animation: slideLeftRight .5s ease-in-out infinite alternate;
}

.cwth-home-area-item:has(.cwth-home-area-click:hover)::before {
    transform: scale(1.2);
}

@keyframes slideLeftRight {
    0% {
        transform: translateX(0px);
        scale: 1;
    }

    100% {
        transform: translateX(5px);
        scale: 1.3;
    }
}

.cwth-home-intro {
    padding: 80px 20px;
    border-radius: 15px;
    column-gap: 20px;
    background-image: url(../img/home-grey-watermark.png);
    background-size: cover;
    background-position: center;
    flex-direction: row;
    display: flex;
}

.cwth-home-intro-item img {
    margin-bottom: 15px;
    width: 100%;
    height: 70px;
    object-fit: contain;
}

.cwth-home-intro-item {
    width: 100%;
    align-items: center;
    flex-direction: column;
    display: flex;
}

.cwth-home-intro-item h4 {
    margin-bottom: 5px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #595757;
}

.cwth-home-intro-item h6 {
    font-size: 20px;
    letter-spacing: 3px;
    color: #595757;
}

.cwth-home-intro-line {
    width: 8px;
    height: 175px;
    background-color: grey;
}

.t-banner-profile-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/banner-profile.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-banner-sz-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/banner-sz-v2.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-banner-hk-bg {
    padding: 60px 100px;
    height: 400px;
    background-image: url('../img/banner-hk.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.t-profile-content {
    margin: 0;
    flex-direction: column;
    display: flex;
    position: relative;
}

.t-profile-top {
    margin: 0 auto;
    width: 100%;
    max-width: 1025px;
    z-index: 1;
    position: relative;
}

.t-profile-top h2 {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #595757;
    text-align: center;
}

.t-profile-top p {
    margin-bottom: 10px;
    text-indent: 2em;
}

.t-profile-1854 {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    position: relative;
}

.t-profile-item {
    flex-direction: column;
    display: flex;
}

.t-profile-map-img {
    margin-top: 10%;
    width: 100vw;
    z-index: 0;
    aspect-ratio: 16 / 9;
    background-image: url('../img/world-watermark.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
}

.t-profile-1854-img {
    margin: 40px 0;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.t-profile-bottom {
    z-index: 1;
    flex-direction: column;
    display: flex;
}

.t-profile-4-type {
    column-gap: 15px;
    flex-direction: row;
    display: flex;
}

.t-profile-4-type img {
    width: 100%;
    object-fit: cover;
}

.t-profile-b-item {
    flex-direction: column;
    display: flex;
}

.t-profile-b-content {
    height: 100%;
    padding: 40px 60px;
    row-gap: 30px;
    background-color: #eb5f1f;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    display: flex;
}

.t-profile-b-content h5 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
}

.t-profile-b-content p {
    line-height: 35px;
    color: white;
}

.t-profile-linebox {
    width: 100%;
    align-items: center;
    flex-direction: column;
    display: flex;
    position: relative;
}

.t-profile-line {
    width: 100%;
    height: 1.25px;
    background-color: white;
}

.t-profile-circle {
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: white;
    position: absolute;
}

.t-profile-hk-content,
.t-profile-sz-content {
    align-items: center;
    flex-direction: column;
    display: flex;
}

.t-profile-hk-content img,
.t-profile-sz-content img {
    margin-top: 40px;
    width: 100%;
}

.t-profile-sz-content p {
    margin: 0 auto;
    width: 100%;
    max-width: 1025px;
    line-height: 2;
    text-indent: 2em;
    font-size: 18px;
}

.t-profile-hk-content p {
    margin: 0 auto;
    width: 100%;
    max-width: 1025px;
    line-height: 2;
    text-indent: 2em;
    font-size: 18px;
}

.t-profile-title {
    margin-bottom: 40px;
    column-gap: 30px;
    flex-direction: row;
    display: flex;
}

.t-profile-title h2 {
    font-size: 28px;
    font-weight: 600;
}

.t-profile-title h2:first-child {
    color: #595757;
}

.t-profile-title h2:last-child {
    color: #eb5c20;
}

#NewsContentDiv {
    column-gap: 80px;
    grid-template-columns: auto 1.5fr;
    display: grid;
}

#NewsContentDiv img {
    width: 100%;
    max-width: 600px;
}

.t-news-details {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

#NewsContentDiv h6 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #595757;
}

.t-news-details b {
    font-weight: 600;
}

#NewsContentDiv p {
    line-height: 2;
    font-size: 18px;
    color: #595757;
}

.t-company-place-name {
    column-gap: 10px;
    flex-direction: row;
    display: flex;
}

.t-company-place-name h6 {
    font-weight: 500;
}

.t-company-address {
    color: #212529;
}

.t-company-address div:hover {
    color: #df5924;
    cursor: pointer;
}

.t-company-address {
    flex-direction: column;
    display: flex;
}

.t-company-address-row {
    margin-top: 10px;
    flex-direction: row;
    display: flex;
}

.t-company-address-value {
    flex-direction: column;
    display: flex;
}