:root {
  --blue: #063D83;
}

.contact-content {
    margin: 20px 0;
}
.contact-type {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 30px 0 50px;
    background-color: #f8f8f8;
}

.contact-type .dt {
    width: 415px;
}
.contact-type .dt img {
    width: 100%;
}

.contact-type .desc {
    display: flex;
    flex-direction: column;
    padding: 20px  30px;
    justify-content: flex-start;
}
.contact-type .desc .title {
    font-size: 18px;
}
.contact-type .desc .desc-item {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
}
.contact-type .desc .contact-type-fs {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.contact-type .desc .contact-type-fs .item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.contact-type .desc .contact-type-fs .item img {
    width: 20px;
    margin-right: 10px;
}

.contact-type .desc .contact-type-fs .item span {
    font-size: 14px;
    color: #333;
}

.contact-person {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	padding: 30px 0;
}
.contact-person .item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 30%;
    padding: 20px;
    border: 2px solid #f8f8f8;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.contact-person .item img {
    width: 80px;
    height: 110px;
}
.contact-person .item .desc {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.contact-person .item .desc .desc-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}
.contact-person .item .desc .desc-item p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.contact-person .item .desc .desc-item img{
    width: 15px;
    height: auto;
    margin-right: 5px;
}
.contact-person .item::after {
    content: '';
    width: 30%;
}
.contact-person .pick {
    width: 30%;
    border: 1px solid transparent;
    overflow: hidden;
}

.contact-form-container .contact-form {
    padding-top: 30px;
}
.contact-form-container .item {
    margin-bottom: 10px;
}
.contact-form-container .item input,
.contact-form-container .item textarea{
    width: 100%;
    border-radius: 1px;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}
.contact-form-container .item:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-form-container .item:nth-child(1) input {
    width: 49%;
}

.contact-form-container .contact-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 100px;
}
.contact-form-container .contact-form-btn button {
    width: 120px;
    border-radius: 1px;
    background-color: var(--blue);
    border: 1px solid var(--blue);
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    box-sizing: border-box;
    cursor: pointer;
}
@media (max-width: 1280px) {
    
}

@media (max-width: 980px) {

}

@media (max-width: 780px) {
    .contact-form-container .contact-form {
        padding: 10px;
    }
    .contact-type {
        /*padding: 10px;*/
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-type .dt {
        width: 100%;
    }
    .contact-person {
        padding: 10px;
        flex-direction: column;
        justify-content: flex-start;
    }
    .contact-person .item {
        width: 100%;
        padding: 10px;
        margin-bottom:10px;
    }
}
