
/* 联系我们 */


/* 表单 */

.x-message {
    background: linear-gradient(135deg, #8e9eab, #eef2f3);
    padding: .7rem 0;
}

.x-message .x-title {
    margin-bottom: .5rem;
}

.x-message .x-title span {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 2px;
}

.x-message form {
    background-color: #ffffff;
    padding: .5rem;
    border-radius: 20px;
    margin-top: .5rem;
}

.x-message form .sampleform {
    display: flex;
    flex-wrap: wrap;
}

.x-message form .sampleform .input {
    width: 33.33%;
    padding: .2rem;
}

.x-message form .sampleform .textareaInput {
    width: 100%;
}

.x-message form .sampleform .input p {
    color: #333333;
    font-weight: 600;
    /* font-size: .15rem; */
    margin-bottom: .15rem;
}

.x-message form .sampleform .input p i {
    color: #cb0631;
}

.x-message form .sampleform .input input,
.x-message form .sampleform .input textarea {
    width: 100%;
    padding: .1rem .2rem;
    border: 1px solid rgba(104, 126, 145, 0.3);
    border-radius: 10px;
    /* font-size: .13rem; */
}

.x-message form .sampleform .input input::placeholder {
    /* font-size: .13rem; */
    /* 设置placeholder字体大小 */
}

.x-message form .sampleform .input textarea {
    min-height: 1.5rem;
}

.x-message form .sampleform .btn {
    margin: .2rem auto 0;
}

.x-message form .sampleform .form-sub {
    background-color: #cb0631;
    color: #ffffff;
    padding: .1rem .5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    /* font-size: .15rem; */
    letter-spacing: 2px;
}

.x-message form .sampleform .form-sub svg {
    margin-left: .05rem;
    transition: all .3s ease-in-out;
}

.x-message form .sampleform .form-sub:hover svg {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .x-message form .sampleform .input {
        width: 100%;
    }
    .x-message form .sampleform .input p {
        /* font-size: .25rem; */
    }
    .x-message form .sampleform .input input::placeholder {
        /* font-size: .25rem; */
        /* 设置placeholder字体大小 */
    }
    .x-message form .sampleform .input input,
    .x-message form .sampleform .input textarea {
        /* font-size: .25rem; */
        padding: .2rem .3rem;
    }
    .x-message form .sampleform .form-sub {}
}


/* 标题 */

.c-title {
    padding: .5rem 0;
    background: #f9f9f9;
}

.c-title .container>h2 {
    background: url(/static/res/image/img_09.png) no-repeat center;
    background-position: 0 .1rem;
    padding-left: .7rem;
}


/* 用户盒子 */

.c-user {
    padding: .5rem 0 1rem;
    background: #f9f9f9;
}

.c-user-b {
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 25px;
    row-gap: 25px;
}

.c-user-b-c {
    /* background-color: #f6f6f6; */
    border-bottom: 20px;
    padding: .3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
}

.c-user-b-c:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 20px rgba(203, 6, 49, 0.15); */
}

.c-user-b-c-h {
    padding-bottom: .15rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-user-b-c-h>div {
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
    border: 1px solid #cb0631;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-user-b-c-h:after {
    /* content: "";
    display: block;
    width: 20%;
    height: 2px;
    background: #af1e28;
    z-index: 2;
    position: absolute;
    left: 0;
    bottom: -2px; */
}

.c-user-b-c-h h3 {
    font-weight: 800;
    margin-bottom: .05rem;
}

.c-user-b-c-h p {
    color: #cb0631;
    letter-spacing: .5px;
}

.c-user-b-c-c {
    padding: .25rem 0 0;
}

.c-user-b-c-c p {
    margin-bottom: .25rem;
    display: flex;
    align-items: center;
}

.c-user-b-c-c p svg {
    margin-right: .05rem;
}

.c-user-b-c-c p a {}

.c-user-b-c-c p a:hover {
    color: #cb0631;
    cursor: pointer;
}

.c-user-b-c-f {
    background-color: rgba(203, 6, 49, .05);
    padding: .08rem;
    line-height: 32px;
    border-left: 2px solid #cb0631;
    border-radius: 5px 0;
}

.c-user-b-c-wx {
    position: absolute;
    /* right: .2rem; */
    /* top: .3rem; */
    /* width: 100%;
    height: 100%; */
    left: 0;
    /* top: 0; */
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.c-user-b-c-wx div {
    text-align: center;
}

.c-user-b-c-wx img {
    width: 40%;
}

.c-user-b-c-h div:hover .c-user-b-c-wx {
    height: 100%;
}

@media (max-width: 991px) {
    .c-user-b {
        grid-template-columns: repeat(2, 1fr);
    }
    .c-user-b-c-h>div {
        width: .55rem;
        height: .55rem;
    }
}

@media (max-width: 767px) {
    .c-user-b {
        grid-template-columns: repeat(1, 1fr);
    }
    .c-user-b-c-h>div {
        width: .55rem;
        height: .55rem;
    }
    .c-title .container>div{
        padding-left: 1rem;
    }
}


/*社媒*/
.x-shemei{
    padding: 0rem 0 1.5rem!important;
    background: #f9f9f9;
}
.x-shemei-box{
    display: flex;
    margin-top: .5rem;
}
.x-shemei-box-le{
    width: 25%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding-top: 5vw;
    transition: all .3s;
    margin-right: .3rem ;
}
.abSheMeiLeft img {
    max-width: 40%;
    transition: all .3s;
}
.x-shemei-box-le .abSheMeiTitle{
   font-weight: 800;
    letter-spacing: 1px;
    margin-top: .55rem;
    margin-bottom: .15rem;
}
.x-shemei-box-le .abSheMeiinc{
   margin-bottom: .3rem;
}
.x-shemei-box-le:hover, .abSheMeiRightItem:hover {
    box-shadow: 0px 0.57292vw 1.97917vw 0px rgba(149, 149, 149, 0.25);
}
.x-shemei-box-le:hover .abSheMeiLeft img {
    max-width: 60%;
}

.x-shemei-box-ri{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.abSheMeiRightItem {
    width: 48.5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2vw;
    /*height: 14vw;*/
    display: flex;
    justify-content: space-between;
    padding: 2vw;
    transition: all .3s;
    align-items: center;
}
.abSheMeiRightItemInfo {
    width: 60%;
}
.abSheMeiRightItemImg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}
.abSheMeiTitle{
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: .2rem;
}
.abSheMeiinc{
    
}
.abSheMeiinc a{
    color: rgba(0, 0, 0, .6);
}
.abSheMeiRightItem:nth-child(3), .abSheMeiRightItem:nth-child(4) {
    margin-bottom: 0;
}


@media (max-width: 991px) {
   
}

@media (max-width: 767px) {
    .x-shemei-box,
    .x-shemei-box-ri{
        display:unset;
    }
    .x-shemei-box-le,
    .abSheMeiRightItem{
        width: 100%;
    }
    .x-shemei-box-le,
    .abSheMeiRightItem,
    .abSheMeiRightItem:nth-child(3), .abSheMeiRightItem:nth-child(4){
        padding: .5rem;
        margin-bottom: .3rem;
    }
}


