*{padding:0;margin:0}ul li{list-style:none}a{text-decoration:none}input{outline:none}input:focus{outline:none}html,body{height:100%;overflow-y:hidden;overflow-x:auto}#app{font-family:"Avenir",Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#2c3e50;height:100%}.custom-loading .el-icon-loading{color:#44b034 !important;font-size:50px}.custom-loading .el-loading-text{color:#44b034 !important;font-size:24px !important}.header{background-color:#fff;height:88px;display:flex;align-items:center;justify-content:center;width:100%}.header .head_main{width:1200px;height:88px;display:flex;align-items:center;justify-content:space-between}.header .head_main .logo{color:#666;font-size:30px;font-weight:bold;width:200px}.header .head_main .nav{width:450px;margin-left:100px;height:72px;display:flex;align-items:center;justify-content:space-between}.header .head_main .nav div{font-size:16px;color:#000;width:72px;height:72px;display:flex;align-items:center;justify-content:center;cursor:pointer}.header .head_main .nav .active{border-bottom:2px solid #b60005}.header .head_main .nav div:hover{border-bottom:2px solid #b60005}.header .head_main .activity{display:flex;align-items:center}.header .head_main .activity span{font-size:18px;color:red;text-shadow:#ffe933 1px 0 0,#ffe933 0 1px 0,#ffe933 -1px 0 0,#ffe933 0 -1px 0}.header .head_main .activity i{color:red;font-size:24px;margin:0 5px}.header .head_main .operation{width:100%;display:flex;flex-direction:row-reverse;align-items:center;background-color:rgba(0,0,0,0);box-shadow:none}.header .head_main .operation .login{margin-left:20px;display:flex;align-items:center;font-size:14px;color:#4d4d4d;cursor:pointer}.header .head_main .operation .group{width:32px;height:32px;display:flex;align-items:center;justify-content:center;margin-right:10px}.el-main{padding:0 !important;width:100%}@keyframes blink{0%{opacity:1}20%{opacity:.5}50%{opacity:.8}80%{opacity:.6}100%{opacity:1}}@keyframes shake{0%{transform:translate(0, 0)}10%{transform:translate(-3px, 3px)}20%{transform:translate(3px, -3px)}30%{transform:translate(-2px, 2px)}40%{transform:translate(2px, -2px)}50%{transform:translate(0, 0)}60%{transform:translate(-3px, 3px)}70%{transform:translate(3px, -3px)}80%{transform:translate(-2px, 2px)}90%{transform:translate(2px, -2px)}100%{transform:translate(0, 0)}}.notice{position:relative;text-align:center;padding:5px 0;line-height:1.8;font-size:14px;color:#b60005 !important;background-color:#fff;border-radius:4px;width:80%}.notice .close-btn{position:absolute;top:5px;right:-38px;font-size:16px;color:#888;cursor:pointer;font-weight:bold}.notice .close-btn:hover{color:#555}.diagonal-shake{animation-name:shake;animation-duration:.8s;animation-iteration-count:1;animation-timing-function:ease-in-out}#app .el-container{display:flex;flex-direction:column;align-items:center;width:100%;height:100%}.footer{width:100%;height:216px;overflow:hidden;background-color:#14679f}.footer-content{width:1440px;margin:0 auto;padding-top:20px;display:flex;justify-content:space-between}.footer-content .content-nav{display:flex;justify-content:space-around}.footer-content .content-nav li{display:flex;flex-direction:column;padding:0 20px;align-items:flex-start}.footer-content .content-nav li p{font-size:20px;color:#d4edff;padding:10px 0}.footer-content .content-nav li span{color:#f7f7f7;font-weight:300;padding:5px 0}.footer-content img{width:170px;height:170px;padding:10px}.footer .copyright{height:30px;background:#125688}.footer .copyright span{color:#fff;line-height:30px}.el-message{top:100px !important}div ::-webkit-scrollbar{width:10px !important;height:10px !important}div ::-webkit-scrollbar-track{box-shadow:0px 1px 3px #ccced2 inset !important;background-color:#ccced2 !important}div ::-webkit-scrollbar-thumb{box-shadow:0px 1px 3px #c1c1c1 inset !important;background-color:#c1c1c1 !important}body ::-webkit-scrollbar{width:16px !important;height:16px !important}body ::-webkit-scrollbar-track{box-shadow:0px 1px 3px #ccced2 inset !important;background-color:#ccced2 !important}body ::-webkit-scrollbar-thumb{box-shadow:0px 1px 3px #c1c1c1 inset !important;background-color:#c1c1c1 !important}.nav .el-dropdown-link{cursor:pointer;color:#000;display:flex;align-items:center}.nav .el-icon-arrow-down{margin-left:5px}

.back-to-top[data-v-a7256364] {
  position: fixed;
  right: 2rem;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.back-to-top.show[data-v-a7256364] {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.rocket[data-v-a7256364] {
  width: 40px;
  height: 40px;
  background-color: #42b983; /* Vue绿色 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(66, 185, 131, 0.3);
  transition: all 0.3s ease;
  transform: rotate(0deg);
}
.rocket[data-v-a7256364]:hover {
  background-color: #359e75;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(66, 185, 131, 0.4);
}
.rocket.flying[data-v-a7256364] {
  animation: fly-a7256364 0.8s ease-out forwards,spin-a7256364 0.5s linear;
}

/* 火箭飞行动画 */
@keyframes fly-a7256364 {
0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}
50% {
    opacity: 0.8;
}
100% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
}
}

/* 火箭旋转动画 */
@keyframes spin-a7256364 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

