@import "https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css";



.basic {
  font-family: Helvetica, Tahoma, Arial, FangSong, "Microsoft YaHei", Simsun, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  box-sizing: border-box;
  text-overflow: ellipsis;
  text-decoration: none;
}

.basic:hover {
  overflow: visible;
}

.fixmargin {
  margin-top:-50px;
}





/**字体**/

.basic .act {
  font-size: 2em;
  font-family: Helvetica, Tahoma, Arial, STXingkai, FangSong, "Microsoft YaHei", Simsun, sans-serif;
  color: blue;
  text-align: center;
  display: block;
}

.basic .sys1 {
  font-size: 1.8em;
  font-family: Helvetica, Tahoma, Arial, STKaiTi, FangSong, "Microsoft YaHei", Simsun, sans-serif;
  color: red;
}

.basic .sys2 {
  font-size: 1.3em;
  font-family: Helvetica, Tahoma, Arial, STKaiTi, FangSong, "Microsoft YaHei", Simsun, sans-serif;
  color: red;
}

.basic .vip {
  color: red;
}

.basic .info {
  color: blue;
}

.basic .bonus {
  color: orange;
}

.basic .detail {
  color: gray;
}

.basic .adds {
  color: silver;
}

.basic .small {
  font-size: 0.9em;
}

.basic .big {
  font-size: 1.1em;
  font-weight: bolder;
}





/**布局**/

.basic .block {
  display: block;
}

.basic .inline {
  display: inline-block;
}

.basic .origin {
  max-width: 100%;
  max-height: 100%;
}

.basic .max {
  width: 100%;
}

.basic .syspicalt {
  height: 50px;
}

.basic .syspic1 {
  height: 100px;
}

.basic .syspic2 {
  height: 200px;
}

.basic .syspic3 {
  height: 300px;
}

.basic .scale11 {
  transform: scale(1.1);
}

.basic .center {
  text-align: center;
  vertical-align: middle;
  margin: auto;
}

.basic .centerin {
  text-align: center;
  vertical-align: middle;
}

.basic .centerout {
  margin: auto;
}

.basic .round {
  border-radius: 4px;
}





/**mygrid**/

.mygrid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  height: fit-content;
  justify-items: center;
  align-items: center;
}

.grid2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid7 {
  grid-template-columns: repeat(7, 1fr);
}

.mygrid .item {
  display: block;
  background: rgba(75, 90, 120, 0.2);
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}

.mygrid .item:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mygrid .item p {
  background: rgba(75, 90, 120, 0.2);
  color: white;
  text-align: center;
  vertical-align: middle
}

.mygrid .item .front {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.mygrid .item:hover .front {
  transform: scale(0);
  opacity: 0;
}

.mygrid .item .back {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
}

.mygrid .item:hover .back {
  transform: scale(1);
  opacity: 1;
}





/**重复列表横排**/

.mylist {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: block;
  text-align: center;
  width: 100%;
}

.mylist:after {
  content: '';
  clear: both;
}

.mylist li {
  font-size: inherit;
  font-weight: inherit;
  display: inline-block width:fit-content;
  display: inline-block;
  margin: 20px;
}





/**固有标签**/

/**彩虹标题+镇楼+截止时间**/

#title {
  font-size: 18px;
  font-family: KaiTi, "Microsoft YaHei", Simsun, sans-serif;
  text-align: center;
}

#title .p1 {
  font-style: italic;
  color: magenta;
  text-align: left;
}

#title .p2 {
  color: green;
  text-align: right;
}

#title .rainbowtext {
  font-size: 2.2em;
  text-align: center;
}





/**宣传链接**/
.basic a {
  color:inherit;
}

.link {
  font-weight: bold;
  text-align: center;
  color: plum;
  margin: 30px;
}

.link a {
  font-weight: normal;
  color: mediumSlateBlue;
  text-decoration: none;
}

.link a:hover {
  font-weight: bold;
  text-decoration: underline;
}

.isDisabled,
.isDisabled a {
  color: hsla(0, 0%, 50%, 0.6);
  cursor: not-allowed;
}





/**特效**/

/**彩虹**/

.basic .rainboworigin {
  background: linear-gradient(to right, red 12%, orange 19%, yellow 22%, green, blue, indigo, violet, indigo, blue, green 78%, yellow 81%, orange 88%, red);
  -webkit-background-clip: text;
  color: transparent;
  width: fit-content;
  margin: auto;
}

.basic .rainbowtext {
  background: linear-gradient(to right, red, orange, green, blue, indigo, violet);
  -webkit-background-clip: text;
  color: transparent;
  width: fit-content;
  margin: auto;
}





/**任务卡box**/

.basic .mybox {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 100%;
  margin: 50px 5px;
  padding: 10px 20px;
  box-sizing: border-box;
  display: block;
}





/**注释半透明box**/

.basic .transbox {
  background: linear-gradient(to bottom, rgba(230, 230, 250, 0.6), rgba(230, 230, 250, 0.3));
  box-shadow: 0 0 10px rgba(100, 149, 237, 0.5);
  margin: 5px;
  padding: 5px;
}





/**按钮**/

.mybutton {
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0.5), rgba(220, 220, 220, 0.5));
  box-shadow: 0.5px 0.5px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 2px 10px;
  font-family: "Microsoft YaHei";
  text-align: center;
  display: inline-block;
  transition: background 0.5s ease;
}

.mybutton:first-of-type {
  margin-left: 1em;
}

.mybutton:hover {
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0.8), rgba(220, 220, 220, 0.8));
  cursor: pointer;
}





/**卡片**/

.basic .mycard {
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: 1px solid white;
  border-radius: 4px;
  width: fit-content;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  margin: auto;
}

.basic .cardpic {
  text-align: center;
  vertical-align: middle;
  margin: auto;
}

.basic .cardinfo {
  background: linear-gradient(to bottom, Orchid, MediumOrchid, DarkOrchid);
  border: 1px solid white;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: lighter;
  color: white;
  text-align: center;
}

.basic .mycard:hover {
  font-weight: inherit;
}





/**背景**/

.bg-gray2 {
  background: rgba(75, 90, 120, 0.2);
  color: white;
  text-shadow: 1px 1px 0.5em black;
}





/**Pokemon属性**/

.basic .pkmnum {
  background-color: gray;
  border: 1px solid black;
  border-radius: 1em;
  font-size: inherit;
  font-weight: inherit;
  padding: 0.2em 0.7em;
  color: white;
}

.basic .pkmnor {
  background: #a8a878;
  border: 1px solid #6d6d4e;
}

.basic .pkmfig {
  background: #c03028;
  border: 1px solid #7d1f1a;
}

.basic .pkmfly {
  background: #a890f0;
  border: 1px solid #6d5e9c;
}

.basic .pkmpoi {
  background: #a040a0;
  border: 1px solid #682a68;
}

.basic .pkmgro {
  background: #e0c068;
  border: 1px solid #927d44;
}

.basic .pkmroc {
  background: #b8a038;
  border: 1px solid #786824;
}

.basic .pkmbug {
  background: #a8b820;
  border: 1px solid #6d7815;
}

.basic .pkmgho {
  background: #705898;
  border: 1px solid #493963;
}

.basic .pkmste {
  background: #b8b8d0;
  border: 1px solid #787887;
}

.basic .pkmfir {
  background: #f08030;
  border: 1px solid #9c531f;
}

.basic .pkmwat {
  background: #6890f0;
  border: 1px solid #445e9c;
}

.basic .pkmgra {
  background: #78c850;
  border: 1px solid #4e8234;
}

.basic .pkmele {
  background: #f8d030;
  border: 1px solid #a1871f;
}

.basic .pkmpsy {
  background: #f85888;
  border: 1px solid #a13959;
}

.basic .pkmice {
  background: #98d8d8;
  border: 1px solid #638d8d;
}

.basic .pkmdra {
  background: #7038f8;
  border: 1px solid #4924a1;
}

.basic .pkmdar {
  background: #705848;
  border: 1px solid #49392f;
}

.basic .pkmfai {
  background: #ee99ac;
  border: 1px solid #9b6470;
}
