
/**/

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active,
.indicator:hover {
    background-color: white;
}

/*介绍*/
.introduce-container {
    width: 100%;
    height: 1000px;
    background-color: #ffffff;
}

.introduce-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 90px 0;
    /*border:  1px solid #f1132d;*/
}

.title-image {
    text-align: left;
    margin-bottom: 20px;
}

.title-image img {
    /* 标题图片样式 */
    /*max-width: 100%;*/
    /*height: auto;*/
    width: 448px;
    height: 72px;
}

.introduce-main {
    display: flex;
    /*align-items: center;*/
    /*justify-content: center;*/
    gap: 30px; /* 左右两部分间距 */
}

.introduce-text {
    flex: 1; /* 左侧文字占据剩余空间 */
    /*padding: 50px;*/
    margin-top: 50px;
    margin-right: 20px;
}

.introduce-pic {
    /*flex: 0 0 40%; !* 右侧图片占据40%宽度 *!*/
    /*/300px;*/
    margin-right: -150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.introduce-pic img {
    /*max-width: 100%;*/
    /*height: auto;*/
    width: 1126px;
    height: 718px;
}

/*门店*/
.store-container {
    width: 100%;
    /*height: 1000px;*/
    height: auto;
    background-color: #f5f9fa;
}

.store-content {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*justify-content: center;*/
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 90px 0;
    /*border: 1px solid #f1132d;*/
}

.store-title {
    /* 标题图片样式 */
    margin-bottom: 30px;
}

.store-title img {
    max-width: 100%;
    height: auto;
}

.store-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* 门店间距 */
}

.store-item {
    flex: 0 0 calc(33.333% - 50px); /* 一行3个，减去gap的影响 */
    /* 门店项样式 */
    padding: 30px;
    box-sizing: border-box;
    background-color: #ffffff;
}

.store-image img {
    width: 100%;
    height: auto;
}

.store-name,
.store-address,
.store-phone {
    /* 各行文本样式 */
    margin: 10px 0;
}

.store-name{
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

.store-address {
    font-size: 16px;
    color: #999999;
}

.store-phone {
    font-size: 16px;
    color: #999999;
}

.store-address {
    position: relative;
}

.store-address a {
    margin-left: 10px;
}

