html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

#app {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.product-main {
	flex: 1;
	overflow: auto;
}

.contact-list {
    width: 100%;
    background: black;
    min-height: calc(100vh - 290px);
    padding-bottom: 50px;
}

/* 新增样式类 */
.contact-title-container {
    text-align: center;
    padding-top: 67px;
    margin-bottom: 49px;
}

.contact-title-img {
    width: 229px;
    height: 55px;
}

.contact-items-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: min(22px, 2vw);
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.contact-items-container::-webkit-scrollbar {
    display: none;
}

.contact-item-title2-center {
    align-items: center !important;
}

.contact-wechat-qr {
    width: 220px;
}

.contact-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.contact-arrow-container {
    margin-right: 30px;
}

.contact-divider {
    width: 300px;
    background: rgba(173, 181, 189, 1);
    height: 1px;
    margin: 20px 0;
}

.contact-customer-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.contact-arrow-icon {
    width: 16px;
    height: 16px;
    margin-right: 30px;
}

/* 原有样式类 */
.contact-item-bg {
    flex: 0 1 368px;
    max-width: calc(100% - 40px);
    min-width: 300px;
    height: 420px;
    background: rgba(22, 22, 22, 1);
    color: #ffffff;
    padding-top: 20px;
    padding-left: 32px;
    text-align: center;
    box-sizing: border-box;
}

.contact-item-title1 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
}

.contact-item-title2 {
    margin: 20px 0 10px;
    font-size: 18px;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.contact-item-title3 {
    color: rgba(173, 181, 189, 1);
    font-size: 14px;
}