[v-cloak] {
    display: none;
}


/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4a6cf7;
    --primary-dark: #3a5ce5;
    --secondary: #6c757d;
    --accent: #ff6b6b;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --transition: all 0.3s ease;
}

body {
    background-color: #f5f7ff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}


/* 图片放大CSS */
.maximg-box {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.maximg-colse {
  position: absolute;
  right: 40px;
  top: 80px;
  width: 30px;
  height: 30px;
  z-index: 99999999999;
}
.maximg-content {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.maximg-btn {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 99999999999;
}
.maximg-img {
  width: 80%;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}
/* 图片放大CSS */