x
1
2
<html>
3
<head>
4
<meta name="viewport" content="width=device-width, initial-scale=1">
5
<style>
6
* {
7
box-sizing: border-box
8
}
9
10
body {
11
font-family: Verdana, sans-serif;
12
margin: 0
13
}
14
15
.mySlides {
16
display: none
17
}
18
/* 轮播图容器 */
19
20
.slideshow-container {
21
max-width: 1000px;
22
position: relative;
23
margin: auto;
24
}