.main-content {
    padding: 0;
}

.contact-point img {
    width: 100%;
}

.contact-list {
    padding: 80px 0;
}

.contact-list .content {
    display: flex;
    flex-wrap: wrap;
}

.contact-list .content .item {
    width: 25%;
    padding: 20px;
    text-align: center;
}

.contact-list .content .item .icon {
    text-align: center;
}

.contact-list .content .item img {
    width: 50px;
}

.contact-list .content .item .label {
    font-size: 26px;
    line-height: 1.25;
    color: #333333;
    font-weight: bold;
    text-align: center;
}

.contact-list .content .item .text {
    margin-top: 22px;
    font-size: 18px;
    color: #666666;
}

.service {
    background-color: #FFF;
    position: relative;
}

.service::before {
    content: '';
    position: absolute;
    top: -45%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ededed;
    display: block;
}

.service .content {
    background-color: #222222;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 54px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service .content::before, .service .content::after {
    content: '';
    display: block;
}

.service .content .title {
    font-size: 30px;
    line-height: 1.75;
    color: #ffffff;
    font-weight: bold;
}

.service .content .tel .label {
    font-size: 20px;
    line-height: 1.25;
    color: #FFF;
    font-weight: bold;
}

.service .content .tel .number {
    margin-top: 27px;
    font-size: 24px;
    line-height: 1.75;
    color: #fff;
}

.service .content .qrcode {
    width: 133px;
}

.company-info {
    padding: 80px;
    background-color: #FFF;
}

.company-info .content {
    display: flex;
}

.company-info .content > div {
    width: 50%;
}

.company-info .name {
    font-size: 40px;
    font-weight: bold;
}

.company-info .en-name {
    font-size: 30px;
    font-weight: bold;
}

.company-info .phone {
    font-size: 48px;
    color: var(--primary-color);
    font-family: fantasy;
    margin: 20px 0 30px 0;
}

.company-info .right {
    justify-items: center;
}

.company-info .right .title {
    font-size: 34px;
    font-weight: bold;
    width: 490px;
}

.company-info .qrcode {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.company-info .qrcode .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.company-info .qrcode .item img {
    width: 150px;
    height: 150px;
    margin-bottom: 5px;
}

.address-list {
    background-image: url('../images/contact-bg.png');
    background-size: 100% 100%;
    padding: 80px 0;
}

.address-list .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.address-list .item {
    padding: 30px;
    background-color: #FFF;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s;
}

.address-list .item .label {
    font-size: 30px;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 10px;
}

.address-list .item .details {
    font-size: 18px;
    line-height: 1.5;
}

.address-list .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(229, 42, 56, 0.23);
}

.message {
    background-color: #FFF;
    padding: 80px 0;
}

.message .title {
    font-size: 40px;
    text-align: center;
    font-weight: bold;
}

.message form {
    margin-top: 30px;
    display: flex;
    /*justify-content: center;*/
    gap: 20px;
    flex-wrap: wrap;
}

.message .form-item {
    width: 32.3%;
}

.message .form-item.textarea-item {
    width: 100%;
}

.message .form-item input {
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
    background-color: #f6f6f6;
    border: none;
    border-radius: 10px;
}

.message .form-item textarea {
    width: 100%;
    font-size: 18px;
    padding: 20px 30px;
    background-color: #f6f6f6;
    border: none;
    border-radius: 10px;
}

.message .form-bottom {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.message .form-bottom img {
    border-radius: 10px;
}

.message .form-bottom input[name=vcode] {
    font-size: 18px;
    text-align: center;
    border: none;
    border-radius: 10px;
    background-color: #f6f6f6;
}

.message .form-bottom .submit {
    font-size: 18px;
    color: #FFF;
    padding: 0 70px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: var(--primary-color);
}

@media screen and (max-width: 1440px) {
    .address-list .content {
        padding: 0 40px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .company-info {
        padding: 20px 10px;
    }
    
    .company-info .content {
        flex-direction: column;
    }
    
    .company-info .content > div {
        width: 100%;
    }
    
    .company-info .name {
        font-size: 28px;
    }
    
    .company-info .en-name {
        font-size: 24px;
    }
    
    .company-info .phone {
        font-size: 40px;
    }
    
    .company-info .right {
        margin-top: 20px;
        justify-items: unset;
    }
    
    .company-info .right .title {
        font-size: 28px;
        width: auto;
    }
    
    .company-info .qrcode {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }
    
    .address-list {
        padding: 40px 0;
    }
    
    .address-list .content {
        padding: 0;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    
    .address-list .item {
        padding: 10px;
    }
    
    .address-list .item .label {
        font-size: 20px;
    }
    
    .address-list .item .details {
        font-size: 16px;
    }
}
