跳转到内容
打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

.aec-container {

   display: flex;
   gap: 10px;
   width: 100%;
   box-sizing: border-box;
   margin-top: 10px;
   height: auto;

}

.aec-1 {

   background-color: rgba(57, 197, 187, 0.1);
   backdrop-filter: blur(10px);
   flex: 4;
   border-radius: 10px;
   padding: 15px;
   box-sizing: border-box;
   border: 1px solid rgba(0, 0, 0, 0.05);

}

.aec-2 {

   background-color: rgba(0, 255, 183, 0.1);
   backdrop-filter: blur(10px);
   flex: 2;
   border-radius: 10px;
   padding: 15px;
   box-sizing: border-box;
   border: 1px solid rgba(0, 0, 0, 0.05);

}

.aec-text {

   font-size: 15px;

}

.aec-title {

   font-weight: bold;
   margin-bottom: 10px;
   font-size: 1.2em;

}

@media (max-width: 768px) {

   .aec-container {
       flex-direction: column-reverse;
       height: auto;
   }
   
   .aec-left, .aec-right {
       width: 100%;
       min-height: 180px;
   }
   .aec-title {
       font-size: 16px;
   }
   .aec-text {
       font-size: 14px;
   }

}