Spaces:
Sleeping
Sleeping
File size: 4,216 Bytes
5aacdfe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | css="""
button[class*="btn"] {
all: unset; /* 移除所有样式 */
display: inline-block; /* 确保按钮仍然是块元素 */
padding: 10px 20px; /* 添加一些基本的填充 */
border: none; /* 去掉边框 */
background: none; /* 去掉背景 */
color: inherit; /* 继承颜色 */
cursor: pointer; /* 使按钮有点击手感 */
width: 150px;
height: 30px;
border-radius: 5px !important;
text-align: center;
}
.icon-buttons {
display: none;
}
.img label{
display: none;
}
.title {
font-size: 80px !important;
font-weight: bolder;
margin-top: 50px;
}
.title_msg1 {
font-size: 60px !important;
margin-top: 10px;
font-weight: bolder;
}
.title_msg2 {
font-weight: bolder;
}
.title_img img {
border-radius: 0px !important;
cursor: default;
}
.title_img {
border-radius: 0px !important;
}
.eg_title h1{
font-size: 50px !important;
font-weight: bolder;
margin-top: 120px !important;
}
.eg_msg {
font-weight: bolder;
margin-left: 10px;
margin-top: -5px;
margin-bottom: 5px;
}
.eg_img {
width: 80%; /* 调整图片大小 */
padding: 0;
display: block;
margin: 0 auto; /* 图片居中 */
border: 2px solid rgb(234, 234, 234) !important;
transition: border-color 0.5s ease, border-width 0.5s ease;
background-size: cover !important;
background-position: center !important;
background-repeat: no-repeat !important;
padding-bottom: 169% !important;
}
.eg_img:hover {
border-color: rgb(117, 209, 255) !important; /* 悬停时边框颜色 */
border-width: 2px !important; /* 悬停时边框粗细 */
}
.eg1 {
background-image: url('https://buyanghc.github.io/eg1.jpg') !important;
}
.eg2 {
background-image: url('https://buyanghc.github.io/eg2.jpg') !important;
}
.eg3 {
background-image: url('https://buyanghc.github.io/eg3.jpg') !important;
}
.eg_img_msg {
text-align: center; /* 文本居中 */
margin-top: 10px;
}
.example_imgs {
display: flex;
gap: 60px; /* 调整列之间的间距 */
margin-bottom: 120px;
width: 100%;
}
.col {
height: 100%;
}
.work_title h1{
font-size: 50px !important;
font-weight: bolder;
text-align: left;
}
.btn-container {
display: flex;
justify-content: flex-end; /* 按钮容器中的内容右对齐 */
gap: 45px; /* 按钮之间的间距 */
}
.btn {
width: 150px;
height: 45px;
border: 2px solid rgb(40, 40, 40);
transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease !important;
border-radius: 5px;
}
.btn_run {
color: white !important;
background-color: rgb(40, 40, 40) !important;
}
.btn_reset {
background-color: rgb(234, 234, 234) !important;
}
.btn:hover{
color: white !important;
background-color: rgb(117, 209, 255) !important;
border: white !important;
}
.work_head{
margin-bottom: 20px;
}
.work2{
margin-top: 40px;
margin-bottom: 300px;
display: flex;
justify-content: center; /* 垂直方向居中 */
align-items: center;
}
.work_msg{
margin-bottom: 10px;
margin-top: -10px
}
.image_show{
width: 80%;
height: calc(100vw * 0.48);
}
.point{
all: unset;
width: 60px;
height: auto;
border-radius: 0px !important;
cursor: default !important;
border: none !important;
}
.change_btn{
width: 45px !important;
height: 45px !important;
border-radius: 50% !important;
background-color: rgb(234, 234, 234) !important;
padding: 0 !important;
margin: 0 !important;
}
"""
|