跳转到内容
打開/關閉選單
打開/關閉外觀設定選單
打開/關閉個人選單
尚未登入
若您做出任何編輯,會公開您的 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;
   }

}