body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

body {
    background: #f1f1f1;
    max-width: 100vw;
    overflow-x: hidden;
    text-align: center;
    color: #383838;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #383838;
}

img {
    border: none;
}

@font-face {
    font-family: 'HarmonyOS';
    src: url('/font-family/HarmonyOS_Sans_SC_Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'HarmonyOS-light';
    src: url('/font-family/HarmonyOS_Sans_SC_Light.ttf') format('truetype');
}

@font-face {
    font-family: 'HarmonyOS-Bold';
    src: url('/font-family/HarmonyOS_Sans_SC_Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'HarmonyOS-Regular';
    src: url('/font-family/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
}


#bottom {
    position: relative;
    top: 0vw;
}

.middle {
    margin-top: 3.05vw;
}

.banner {
    width: 100vw;
}

.banner img {
    width: 100vw;
    display: block;
}

/* 导航栏样式 */
.middle .nav {
    background-color: #2924FF;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 7vw;
    position: relative;
    top: 0;
    width: 100vw;
    z-index: 1;
}

.middle .nav a {
    color: white;
    padding: 0.9vw 0;
    text-decoration: none;
    font-family: 'HarmonyOS-Regular';
    font-size: 0.8vw;
    letter-spacing: 0.05vw;
}

.middle .nav a.active {
    content: '';
    border-bottom: 0.15vw solid white;
    padding-bottom: 0vw;
}


/* 吸顶样式 */
.sticky {
    position: fixed !important;
    top: 3vw !important;
    width: 100vwimportant;
}

/* 内容区域样式 */
section {
    color: #fff;
    display: flex;
    flex-direction: column;
}

section img {
    text-align: start;
}

.back {
    background-image: url('/img/2025全国伙伴大会背景.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
}

#intro {
    display: flex;
    flex-direction: column;
    height: 23vw;
    padding: 0 30vw;
}

#intro img {
    margin-top: 6vw;
    margin-bottom: 3vw;
    width: 12vw;
}

#intro .introduce {
    border: 0.02vw solid #fff;
    background-color: #2924FF;
    padding: 2vw;
    font-family: 'HarmonyOS-light';
    font-size: 0.95vw;
    letter-spacing: 0.05vw;
    text-align: justify;
    line-height: 1.5vw;
    text-indent: 2em;
}

#schedule {
    height: 113vw;
    padding: 0 30vw;
}

#schedule > img:nth-of-type(1) {
    width: 9.8vw;
    margin-bottom: 3vw;
    margin-top: 5vw;
}

#schedule img:nth-child(2) {
    margin-bottom: 2vw;
}

#schedule img:nth-child(2),
#schedule img:nth-child(3) {
    width: 39.5vw;
}


#time-place {
    height: 35vw;
    padding: 0 30vw;
}

#time-place img:nth-of-type(1) {
    width: 11.2vw;
    margin-top: 2vw;
}

#time-place img:nth-of-type(2) {
    padding: 0 1.6vw;
    width: 36.9vw;
}

#time-place .box span {
    font-size: 0.7vw;
}

#time-place .box {
    font-family: 'HarmonyOS-Regular';
    display: flex;
    font-size: 0.9vw;
    gap: 4vw;
    margin: 3vw 0 2vw 0;
    padding: 0 1.6vw;
    letter-spacing: 0.01vw;
}

#time-place .box .time {
    text-align: start;
}

#time-place .box .place {
    text-align: start;
}

#review {
    height: 40vw;
}

#review > img:nth-of-type(1) {
    width: 16vw;
    padding: 0 30vw;
    margin-top: 3vw;
    margin-bottom: 3vw;
}

.scroll-container {
    width: 100vw;
    overflow: hidden;
}

.scroll-wrapper {
    display: flex;
    white-space: nowrap;
    animation: scroll 300s linear infinite;
}

.scroll-wrapper img {
    width: auto;
    height: 25vw;
    margin-right: 0vw;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-1000%);
    }
}

.scroll-container:hover .scroll-wrapper {
    animation-play-state: paused;
}