@import "style.css";
@import "ugstyle.css";

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: #ffffff;
}

.container .header-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background-color: rgba(0, 0, 0, 0.18);
    color: #ffffff;
    z-index: 1;
}

.container .header-box .set-language {
    font-family: 'Alp Ekran', serif;
}

.container .header-box .logo {
    width: fit-content;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.container .header-box .logo img {
    width: 70px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .header-box .logo .company-info {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    line-height: unset;
    color: #f5f5f5;
}

.container .header-box .logo .company-info .label {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.container .header-box .navigator-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 35px;
}

.container .header-box .navigator-box nav {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
}

.container .header-box .navigator-box nav a:not(:last-child)::after {
    content: '|'; /* 分隔符 */
    margin-left: 16px; /* 分隔符与链接的距离 */
    color: #f1f1f1; /* 分隔符的颜色 */
}

.container .header-box .navigator-box nav a:hover {
    opacity: 0.6;
}

.container .header-box .navigator-box .btn-item {
    padding: 6px 15px;
    font-size: 14px;
    background-color: #03c700;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}

.container .header-box .navigator-box .btn-item:active {
    opacity: 0.8;
}

.container .top-banner {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -60px;
}

.container .top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .top-banner .text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    padding: 0 25px;
}
.container .top-banner .text .label{
    font-size: 44px;
    line-height: 50px;
    font-weight: bold;
    margin-bottom: 8px;
}

.about-us {
    background-color: #ffffff;
    padding: 60px 0;
    color: #333;
}

.about-us .container {
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    max-width: 45%;
}

.company-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

.about-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.about-text h2 {
    font-size: 22px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-text ul {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
    color: #555;
}

.about-text ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.about-text ul li::before {
    content: "•";
    color: #007bff;
    margin-right: 10px;
}

.services {
    background-color: #ffffff;
    padding: 60px 0;
    color: #333;
}

.services .container {
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.contact-us {
    background-color: #ffffff;
    padding: 60px 0;
    color: #333;
}

.contact-us .container {
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.contact-us .section-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.contact-us .contact-info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-us .contact-details {
    flex: 1;
    text-align: left;
}

.contact-us .contact-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-us .contact-details p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.contact-us .contact-details .no-link {
    color: inherit; /* 去掉邮箱链接颜色 */
    text-decoration: none;
}

.contact-us .contact-map {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us .contact-map img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.contact-us .message-form {
    margin-top: 20px;
}

.contact-us .message-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-us .message-form .form-group {
    margin-bottom: 20px;
}

.contact-us .message-form .form-group label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.contact-us .message-form .form-group input{
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

.contact-us .message-form .form-group textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
}

.contact-us .message-form button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.contact-us .message-form button:hover {
    background-color: #0056b3;
}

.container .footer-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #292929;
    color: #ffffff;
    padding: 40px 50px;
}

.container .footer-box .company-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #5c5c5c;
    flex-wrap: wrap;
}

.container .footer-box .company-info .left-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
}

.container .footer-box .company-info .left-box .logo {
    width: 128px;
    height: auto;
    object-fit: contain;
}

.container .footer-box .company-info .center-box {
    display: flex;
    column-gap: 40px;
    margin-left: auto;
    margin-right: 50px;
}

.container .footer-box .company-info h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 2px;
}

.container .footer-box .company-info .contact-info p {
    font-size: 12px;
    color: #bcbcba;
}

.container .footer-box .company-info .navigation h3 {
    font-size: 16px;
    color: #ffffff;
}

.container .footer-box .company-info .navigation ul {
    list-style-type: none;
    padding: 0;
    font-size: 10px;
}

.container .footer-box .company-info .navigation ul li a {
    color: #bcbcba;
    text-decoration: none;
    font-size: 12px;
}

.container .footer-box .company-info .navigation ul li a:hover {
    text-decoration: underline;
}

.container .footer-box .company-info .right-box {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.container .footer-box .company-info .right-box img {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container .footer-box .copy-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-top: 1px solid #5c5c5c;
    padding-top: 30px;
    color: #bcbcba;
}

.container .footer-box .copy-info a {
    color: #bcbcba;
    text-decoration: none;
    margin: 0 5px;
}

.container .footer-box .copy-info a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .container .header-box .logo .company-info{
        display: none;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image, .about-text {
        max-width: 100%;
    }

    .contact-us .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-us .contact-details,
    .contact-us .contact-map {
        flex: none;
        width: 100%;
        margin-bottom: 40px;
    }

    .contact-us .contact-map img {
        width: 100%;
        max-width: 350px;
    }

    .contact-us .message-form {
        margin-top: 40px;
    }
}

@media (max-width: 1080px) {
    .container .header-box{
        padding: 0 2%;
    }
}
