@charset "utf-8";


.main-nav .contact_item a:after {
    transform: scale(1);
    opacity: 1;
}
.header-actions .lang-switch a:hover {
    color: inherit !important;
    opacity: 1;
}
.contact_pg01 .container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact_pg01 .img{
    width: 50%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}
.contact_pg01 .content{
    width: 50%;
    padding-left: 60px;
    box-sizing: border-box;
}
.contact_pg01 .content .texts{
    margin-top: 35px;
}
.contact_pg01 .content .item{
    margin-top: 30px;
    display: flex;
    align-items: center;
}
.contact_pg01 .content .item:first-child{
    margin-top: 0;
}
.contact_pg01 .content .item_tit{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_pg01 .content .item_tit img{
    max-width: 22px;
}
.contact_pg01 .content .item_text{
    padding-left: 15px;
    box-sizing: border-box;
    width: calc(100% - 40px);
}
.contact_pg02{
    background: url(../img/inner/contact_bg02.jpg) no-repeat center/cover;
}
.contact_pg02 .lists{
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px 75px;
    box-sizing: border-box;
}
.contact_pg02 .form-box{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact_pg02 .item {
    width: 32%;
    margin-bottom: 35px;
    margin-right: 2%;
}
.contact_pg02 .item:nth-child(3n) {
    margin-right: 0;
}
.contact_pg02 .item .tit{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}
.contact_pg02 .item .tit::after {
    content: "*";
    display: block;
    color: red;
    font-weight: 600;
    margin-left: 5px;
    display: none;
}
.contact_pg02 .item input{
    width: 100%;
    height: 56px;
    line-height: 56px;
    color: #666;
    outline: none;
    padding: 0 15px;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 10px;
    border: 1px solid #E2E3E9;
}
.contact_pg02 .item:last-child{
    width: 100%;
    margin-right: 0;
}
.contact_pg02 textarea {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border: none;
    outline: none;
    color: #666;
    height: 145px;
    border-radius: 10px;
    border: 1px solid #E2E3E9;
}
.contact_pg02 .sub-btn {
    width: 175px;
    height: 52px;
    border: 1px solid #E5E5E5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 20px auto 0;
    background: #1976d2;
    border-radius: 10px;
}
.contact_pg02 .sub-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #B21623;
    transition: all .4s;
    z-index: -1;
}
.layui-form-danger+.layui-form-select .layui-input, .layui-form-danger:focus{
    border-color: #B21623;
    box-shadow: none!important;
}
.contact_pg02 .item.active .tit::after{
    display: block;
}
@media only screen and (max-width:768px) {
    .contact_pg01 .content{
        width: 100%;
        padding-left: 0;
        box-sizing: border-box;
        margin-top: 30px;
    }
    .contact_pg01 .content .texts {
        margin-top: 25px;
    }
    .contact_pg01 .content .item {
        margin-top: 15px;
    }
    .contact_pg01 .content .item_tit{
        width: 35px;
        height: 35px;
    }
    .contact_pg01 .content .item_tit img {
        max-width: 16px;
    }
    .contact_pg01 .content .item_text{
        width: calc(100% - 35px);
    }
    .contact_pg01 .img{
        width: 100%;
        border-radius: 10px;
    }
    .contact_pg02 .lists{
        padding: 25px 15px;
    }
    .contact_pg02 .item {
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .contact_pg02 .item:last-child{
        margin-bottom: 0;
    }
    .contact_pg02 .sub-btn{
        width: 50%;
    }
}