<template>
<view class="center">
<view class="loader">
<view></view>
</view>
</view>
</template>
<script>
</script>
<style>
/* 设置整个页面的背景颜色为深灰色 */
body {
background-color: #333;
}
/* 将元素水平居中 */
.center {
display: flex;
justify-content: center;
margin-top: 300px;
}
/* 设置加载器样式 */
.loader {
position: relative;
width: 150px;
height: 150px;
background: transparent; /* 设置背景为透明 */
border-radius: 50%; /* 设置圆角边框半径为50% */
box-shadow: 25px 25px 75px rgba(0, 0, 0, 0.55); /* 添加盒子阴影效果 */
border: 1px solid #333; /* 设置边框为1px宽的黑色实线 */
display: flex;
align-