@charset "UTF-8";
* {
  box-sizing: border-box;
  font-family: "微軟正黑體", "Microsoft JhengHei";
}

body {
  overflow-x: hidden;
  font-size: 100%;
  margin: 0px;
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

blockquote {
  padding: 5px;
  color: rgb(50, 50, 50);
  background-color: rgb(250, 250, 250);
  border-left: 10px solid rgb(200, 200, 200);
}

.center {
  display: block;
  margin: auto;
  clear: both;
  text-align: center;
}

.clear-both {
  clear: both;
}

.warning {
  color: red;
}

.hide {
  display: none;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.pointer {
  cursor: pointer;
}

.canNotEmpty:before {
  color: red;
  content: "*";
}

.line-through {
  text-decoration: line-through;
}

.full-width {
  display: inline-block;
  padding: 10px;
  margin: 0px;
  width: calc(100% - 20px);
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.three-forth-width {
  display: inline-block;
  padding: 10px;
  margin: 0px;
  width: calc(100% - 20px);
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
@media only screen and (min-width: 375px) {
  .three-forth-width {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 768px) {
  .three-forth-width {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 1024px) {
  .three-forth-width {
    width: calc(75% - 20px);
  }
}

.half-width {
  display: inline-block;
  padding: 10px;
  margin: 0px;
  width: calc(100% - 20px);
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
@media only screen and (min-width: 375px) {
  .half-width {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 768px) {
  .half-width {
    width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 1024px) {
  .half-width {
    width: calc(50% - 20px);
  }
}

.quad-width {
  display: inline-block;
  padding: 10px;
  margin: 0px;
  width: calc(100% - 20px);
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
@media only screen and (min-width: 375px) {
  .quad-width {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 768px) {
  .quad-width {
    width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 1024px) {
  .quad-width {
    width: calc(25% - 20px);
  }
}

.one-third-width {
  display: inline-block;
  padding: 10px;
  margin: 0px;
  width: calc(100% - 20px);
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
@media only screen and (min-width: 375px) {
  .one-third-width {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 768px) {
  .one-third-width {
    width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 1024px) {
  .one-third-width {
    width: calc(33% - 20px);
  }
}

.top-icon {
  position: relative;
  top: 0px;
  left: 0px;
  padding: 0px;
  margin: 12px 0px 7px 5px;
  display: inline-block;
  height: 40px;
}
@media only screen and (min-width: 1024px) {
  .top-icon {
    left: 50px;
  }
}

.top-title {
  position: relative;
  left: 0px;
  top: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 1.25em;
  color: rgb(0, 0, 0);
}
@media only screen and (min-width: 1024px) {
  .top-title {
    left: 50px;
    margin-top: 29px;
    margin-bottom: 27px;
  }
}

.search-button {
  display: inline-block;
  margin: 5px;
}
.search-button input {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 15px;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.search-button .search-icon {
  position: relative;
  left: -34px;
  top: 5px;
  display: inline-block;
  width: 25px;
  height: 25px;
  padding: 0px;
  cursor: pointer;
}

.menu-button {
  position: absolute;
  top: 15px;
  left: 20px;
  display: inline-block;
  padding: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .menu-button {
    left: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .menu-button {
    left: 50px;
  }
}

.fb-icon {
  position: absolute;
  top: 15px;
  right: 30px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 20px 20px 25px;
}
@media only screen and (min-width: 768px) {
  .fb-icon {
    margin-right: 50px;
    right: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .fb-icon {
    width: 30px;
    height: 30px;
    margin-top: 5px;
    right: 70px;
  }
}

.search-bar {
  position: absolute;
  top: 15px;
  right: 0px;
  margin: 5px 10px 20px 0px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .search-bar {
    top: 15px;
    right: 0px;
    margin: 5px 50px 20px 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .search-bar {
    top: 15px;
    right: 0px;
    margin: 5px 50px 20px 0px;
  }
}
.search-bar .search-icon {
  width: 30px;
  height: 30px;
}
.search-bar .search-field {
  display: none;
  position: relative;
  color: #1a5d9e;
  top: -10px;
  left: 5px;
}
.search-bar .search-field .search-input {
  font-size: 1em;
  border: none;
  padding: 5px;
  margin: 0px 5px;
  width: 0px;
}
.search-bar .search-field .search-input::-webkit-input-placeholder {
  color: #9b9b9b;
}
.search-bar .search-field .search-input::-moz-placeholder {
  color: #9b9b9b;
}
.search-bar .search-field .search-input::-ms-input-placeholder {
  color: #9b9b9b;
}
.search-bar .search-overlay {
  position: relative;
  padding-top: 20px;
  position: fixed;
  top: -60px;
  left: 130px;
  height: 60px;
  width: calc(100% - 50px);
  background-color: #ffffff;
  color: #1a5d9e;
}
.search-bar .search-overlay .input-container {
  display: inline-block;
  position: relative;
  top: -10px;
  left: 5px;
}
.search-bar .search-overlay .search-input {
  font-size: 1em;
  border: none;
  padding: 5px;
  margin: 0px 5px;
  position: relative;
  width: 120px;
}
.search-bar .search-overlay .search-input::-webkit-input-placeholder {
  color: #9b9b9b;
}
.search-bar .search-overlay .search-input::-moz-placeholder {
  color: #9b9b9b;
}
.search-bar .search-overlay .search-input::-ms-input-placeholder {
  color: #9b9b9b;
}

.user-icon {
  display: inline-block;
  position: relative;
  width: 30px;
  margin-right: 5px;
}
.user-icon img {
  position: absolute;
  top: -22px;
  left: 0px;
  width: 30px;
  height: 30px;
}

.topbar {
  width: 100%;
  display: none;
  background-color: #ffffff;
}
.topbar ul {
  position: absolute;
  right: 175px;
  display: none;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
@media only screen and (min-width: 768px) {
  .topbar ul {
    display: inline-block;
  }
}
.topbar ul li {
  padding: 25px 25px;
  display: inline-block;
  font-weight: bold;
}
.topbar ul li.event-pack-bt {
  display: none;
}
.topbar ul li a {
  text-decoration: none;
  color: #1a5d9e;
  font-size: 1em;
}
.topbar ul li a:hover {
  cursor: pointer;
  color: #fcc06a;
}
.topbar ul li a.enhance {
  color: #fcc06a;
}
.topbar ul li a.enhance:hover {
  color: #1a5d9e;
}
.topbar ul li .outline {
  padding: 2px 10px;
  border: 1px solid #1a5d9e;
  border-radius: 3px;
}
@media only screen and (min-width: 768px) {
  .topbar {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .topbar {
    display: inline-block;
  }
}

.fixbar {
  z-index: 4;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  display: block;
  background-color: #ffffff;
  display: none;
}
.fixbar ul {
  position: absolute;
  right: 175px;
  display: none;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
@media only screen and (min-width: 768px) {
  .fixbar ul {
    display: inline-block;
  }
}
.fixbar ul li {
  padding: 25px 25px;
  display: inline-block;
  font-weight: bold;
}
.fixbar ul li.event-pack-bt {
  display: none;
}
.fixbar ul li a {
  text-decoration: none;
  color: #1a5d9e;
  font-size: 1em;
}
.fixbar ul li a:hover {
  cursor: pointer;
  color: #fcc06a;
}
.fixbar ul li a.enhance {
  color: #fcc06a;
}
.fixbar ul li a.enhance:hover {
  color: #1a5d9e;
}
.fixbar ul li .outline {
  padding: 2px 10px;
  border: 1px solid #1a5d9e;
  border-radius: 3px;
}
@media only screen and (min-width: 768px) {
  .fixbar {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .fixbar {
    display: block;
  }
}

.fixbar-mobile {
  z-index: 4;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  display: block;
  background-color: #ffffff;
  border-bottom: 1px solid #d4d4d4;
}
@media only screen and (min-width: 1024px) {
  .fixbar-mobile {
    display: none;
  }
}
.fixbar-mobile ul {
  width: 100%;
  list-style-type: none;
  margin: 0px;
  padding: 0px 10px;
  display: none;
}
.fixbar-mobile ul li {
  display: inline-block;
  padding: 20px;
}
.fixbar-mobile ul li.event-pack-bt {
  display: none;
}
.fixbar-mobile ul li:first-of-type {
  padding-top: 10px;
}
.fixbar-mobile ul li:last-of-type {
  border-bottom: none;
}
.fixbar-mobile ul li a {
  text-decoration: none;
  font-size: 1em;
  color: black;
  font-weight: bold;
  font-size: 1em;
}
.fixbar-mobile ul li a:hover {
  cursor: pointer;
  color: #fcc06a;
}
.fixbar-mobile ul li a.enhance {
  color: #fcc06a;
}
.fixbar-mobile ul li a.enhance:hover {
  color: #1a5d9e;
}

.bar-padding {
  height: 58px;
  display: block;
}

.announce {
  position: fixed;
  top: 50px;
  right: 10px;
  width: 250px;
  height: 100px;
  z-index: 5;
}

.announce-text {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 230px;
  height: 80px;
  z-index: 6;
}

.theme {
  position: relative;
  height: 335px;
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
}
@media only screen and (min-width: 768px) {
  .theme {
    height: 450px;
  }
}
.theme .title-container {
  position: relative;
  top: 50px;
  margin: auto;
  max-width: 100%;
  height: calc(100% - 150px);
  text-align: center;
  padding: 0px 30px;
}
@media only screen and (min-width: 768px) {
  .theme .title-container {
    top: 100px;
  }
}
.theme .title-container .title {
  font-size: 1.5em;
  letter-spacing: 10px;
  text-align: left;
  line-height: 1.3em;
  padding-top: 0px;
  padding-bottom: 3px;
  margin: 0px;
  font-weight: bold;
}
@media only screen and (min-width: 375px) {
  .theme .title-container .title {
    font-size: 1.7em;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .theme .title-container .title {
    font-size: 2.5em;
    text-align: center;
  }
}
.theme .title-container .inline-title {
  display: inline-block;
  font-size: 3.2em;
  line-height: 1.3em;
  padding-top: 0px;
  padding-bottom: 3px;
  padding-right: 5px;
  margin: 0px;
  font-weight: bold;
}
@media only screen and (min-width: 1024px) {
  .theme .title-container .inline-title {
    font-size: 3.5em;
  }
}
.theme .title-container .sub-title {
  font-size: 1.4em;
  line-height: 1.5em;
  padding: 0px;
  margin: 0px;
}
.theme .title-container .bold-title {
  font-size: 1.4em;
  padding-bottom: 3px;
  margin: 0px;
  font-weight: bold;
}
.theme .title-container .wide-space {
  font-size: 1em;
  padding: 0px;
  letter-spacing: 12px;
  margin: 0px;
}
.theme .title-container .read-more {
  display: none;
  width: 300px;
  max-width: 100%;
  text-decoration: none;
  color: #1a5d9e;
  padding: 10px;
  margin: 30px auto 0px auto;
  font-size: 1.3em;
  font-weight: bold;
  background-color: #ffffff;
  box-shadow: 0px 9px 2.6px 0.4px rgba(6, 0, 1, 0.44);
}
@media only screen and (min-width: 375px) {
  .theme .title-container .read-more {
    display: block;
  }
}

.category-title {
  font-size: 2em;
  color: #1a5d9e;
  font-weight: bold;
  padding: 0px;
  margin-top: 60px;
}
.category-title .bottom-line {
  width: 900px;
  max-width: calc(100% - 40px);
  padding-top: 20px;
  margin: 0px auto 15px auto;
  border-bottom: 2px solid #1a5d9e;
}

.grad-bg {
  background-image: linear-gradient(to top, #a1bdd7, #ffffff);
  padding-bottom: 30px;
}

.load-button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  width: 320px;
  border: none;
  color: #1a5d9e;
  font-size: 1.5em;
  font-weight: bold;
  max-width: calc(100% - 20px);
  margin: 30px auto;
  padding: 19px;
  background-color: white;
  box-shadow: 0px 10px 12.1px 0.9px rgba(6, 0, 1, 0.15);
}
.load-button:hover {
  border-color: #f5a623;
}
.load-button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.load-button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.load-button.disable {
  color: #d4d4d4;
}
@media only screen and (min-width: 768px) {
  .load-button {
    width: 335px;
  }
}
@media only screen and (min-width: 1024px) {
  .load-button {
    width: 350px;
  }
}

.white-bt {
  display: block;
  width: 210px;
  max-width: calc(100% - 20px);
  margin: 20px auto;
  cursor: pointer;
  padding: 10px 20px;
  color: #1a5d9e;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #ffffff;
  box-shadow: 0px 10px 12.1px 0.9px rgba(6, 0, 1, 0.15);
}
@media only screen and (min-width: 768px) {
  .white-bt {
    width: 320px;
  }
}

.link-bt {
  background-color: #1a5d9e;
  cursor: pointer;
  color: white;
  padding: 10px 20px;
  margin: 10px;
  width: 210px;
  font-size: 1.2em;
  max-width: calc(100% - 20px);
  display: inline-block;
}
.link-bt:hover {
  color: #fcc06a;
}
@media only screen and (min-width: 768px) {
  .link-bt {
    width: 320px;
  }
}

.bg-pc {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
@media only screen and (min-width: 768px) {
  .bg-pc {
    display: block;
  }
}

.bg-mobile {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media only screen and (min-width: 768px) {
  .bg-mobile {
    display: none;
  }
}

.segment {
  position: relative;
  width: 100%;
  padding: 0px;
}
@media only screen and (min-width: 768px) {
  .segment {
    padding: 48px 20px;
  }
}
.segment.pad {
  padding: 48px 20px;
}
.segment .bg-image {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.segment .left-fix {
  object-position: 0% 50%;
}
.segment .right-fix {
  object-position: 100% 50%;
}
@media only screen and (min-width: 768px) {
  .segment .right-fix {
    object-position: 50% 50%;
  }
}
.segment .text-block {
  position: relative;
  width: 1170px;
  margin: auto;
  max-width: 100%;
  background-color: #f5f5f6;
  padding: 20px 20px 60px 20px;
  line-height: 1.8em;
  box-shadow: 0px 16px 23.2px 5.8px rgba(6, 0, 1, 0.46);
  color: #1a5d9e;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .segment .text-block {
    padding: 64px;
    max-width: calc(100% - 20px);
    background-color: white;
  }
}
.segment .text-block .title {
  font-size: 2em;
  font-weight: bold;
  color: #1a5d9e;
  margin-bottom: 20px;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .segment .text-block .title {
    margin-top: 0px;
    margin-bottom: 40px;
  }
}
.segment .text-block .remark {
  font-size: 1.5em;
  color: #7fa7ce;
}
.segment .text-block hr {
  border-top: 1px solid #7fa7ce;
}
.segment .text-block .sub-title {
  margin-top: 30px;
  color: #1a5d9e;
  font-weight: bold;
  font-size: 1.5em;
}
.segment .right-half-block {
  position: relative;
  margin: auto;
  width: 400px;
  max-width: 100%;
  z-index: 3;
  text-align: center;
  color: #1a5d9e;
  font-weight: bold;
  line-height: 1.8em;
}
@media only screen and (min-width: 768px) {
  .segment .right-half-block {
    margin-left: auto;
    margin-right: 0;
    width: 50%;
    color: #676666;
  }
}
.segment .right-half-block .center-box {
  width: 400px;
  max-width: 100%;
  margin: auto;
}
.segment .right-half-block .title {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 2.5em;
  line-height: 1.2em;
  color: #1a5d9e;
}
@media only screen and (min-width: 768px) {
  .segment .right-half-block .title {
    margin-bottom: 50px;
  }
}
.segment .right-half-block .remark {
  font-size: 1.5em;
  color: #000000;
  padding-bottom: 20px;
  border-bottom: 2px solid #1a5d9e;
}
@media only screen and (min-width: 768px) {
  .segment .right-half-block .remark {
    margin-bottom: 50px;
    border-bottom: none;
  }
}
.segment .right-half-block .desc {
  margin-top: 50px;
  margin-bottom: 50px;
}
.segment .contact-block {
  text-align: center;
}
.segment .contact-block .title {
  margin: 32px auto;
  font-size: 1.5em;
  color: #1a5d9e;
}
.segment .contact-block input {
  padding: 10px;
  text-align: center;
  width: 490px;
  max-width: calc(100% - 20px);
  margin: 0px 10px;
  border: solid 0.9px #626262;
  font-size: 1.1em;
}
.segment .contact-block .subscribe-bt {
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 2px #1a5d9e;
  font-weight: bold;
  color: #1a5d9e;
  padding: 10px 20px;
  margin: 20px auto;
  width: 250px;
  max-width: 100%;
  cursor: pointer;
}
.segment .contact-block .large-text {
  font-weight: bold;
  font-size: 2em;
  color: black;
  margin: 40px auto 20px auto;
}

.footer {
  position: relative;
  margin-top: 0px;
  padding: 0px 10px;
  width: 100%;
  background-color: #1a5d9e;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .footer {
    height: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer {
    height: 60px;
  }
}
.footer .contact-info {
  display: block;
  margin: auto;
  padding: 0px 30px 20px 30px;
  font-size: 0.9em;
}
@media only screen and (min-width: 768px) {
  .footer .contact-info {
    position: absolute;
    left: 20px;
    display: inline-block;
    text-align: left;
    padding: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .contact-info {
    position: absolute;
    left: 20px;
    display: inline-block;
    text-align: left;
    padding: 10px;
  }
}
.footer ul {
  padding: 20px;
  display: block;
  margin: auto;
  list-style-type: none;
}
@media only screen and (min-width: 768px) {
  .footer ul {
    position: absolute;
    right: 20px;
    padding: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer ul {
    position: absolute;
    right: 20px;
    padding: 0px;
  }
}
.footer ul li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 10px 0px 10px;
}
@media only screen and (min-width: 768px) {
  .footer ul li {
    margin: 10px 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer ul li {
    margin: 10px 20px;
  }
}
.footer ul li a {
  color: #ffffff;
  text-decoration: none;
}
.footer ul li a:hover {
  color: #f5a623;
}
.footer ul img {
  position: relative;
  top: 10px;
  width: 30px;
  height: 30px;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.message-panel {
  position: relative;
  padding: 20px;
  z-index: 5;
  position: fixed;
  left: -100%;
  top: 50%;
  width: 90%;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.95);
  color: rgb(50, 50, 50);
  box-shadow: 0px 0px 10px black;
  max-height: 80%;
  overflow-y: auto;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.message-panel .close-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}
.message-panel .close-icon:hover {
  color: white;
  background-color: rgb(50, 50, 50);
}
.message-panel div {
  padding: 10px;
}
.message-panel .dropdown-container {
  display: none;
  position: relative;
  top: -10px;
  left: -10px;
  margin: 0px auto;
  width: 350px;
  max-width: 100%;
}
.message-panel .panel-bt, .message-panel .facebook-button, .message-panel .google-button, .message-panel .ok-button {
  color: white;
  margin: 10px auto;
  max-width: 350px;
  cursor: pointer;
}
.message-panel .ok-button {
  background-color: #4a4a4a;
  color: white;
  cursor: pointer;
}
.message-panel .ok-button:hover {
  background-color: #999999;
}
.message-panel input {
  font-size: 1.2em;
  padding: 10px;
  border: 1px solid black;
  width: 350px;
  max-width: 100%;
}
.message-panel textarea {
  font-size: 1.2em;
  padding: 10px;
  border: 1px solid black;
  width: 350px;
  height: 200px;
  max-width: 100%;
}
.message-panel .google-button {
  background-color: rgb(250, 50, 50);
}
.message-panel .google-button:hover {
  background-color: rgb(200, 50, 50);
}
.message-panel .facebook-button {
  background-color: rgb(50, 50, 250);
}
.message-panel .facebook-button:hover {
  background-color: rgb(50, 50, 200);
}

.input-panel {
  position: relative;
  padding: 20px;
  z-index: 5;
  position: fixed;
  left: -100%;
  top: 50%;
  width: 90%;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.95);
  color: rgb(50, 50, 50);
  box-shadow: 0px 0px 10px black;
  max-height: 80%;
  overflow-y: auto;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.input-panel .close-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}
.input-panel .close-icon:hover {
  color: white;
  background-color: rgb(50, 50, 50);
}
.input-panel div {
  padding: 10px;
}
.input-panel .dropdown-container {
  display: none;
  position: relative;
  top: -10px;
  left: -10px;
  margin: 0px auto;
  width: 350px;
  max-width: 100%;
}
.input-panel .panel-bt, .input-panel .ok-button, .input-panel .message-panel .google-button, .message-panel .input-panel .google-button, .input-panel .message-panel .facebook-button, .message-panel .input-panel .facebook-button {
  color: white;
  margin: 10px auto;
  max-width: 350px;
  cursor: pointer;
}
.input-panel .ok-button {
  background-color: #4a4a4a;
  color: white;
  cursor: pointer;
}
.input-panel .ok-button:hover {
  background-color: #999999;
}
.input-panel .panel-title {
  padding: 5px;
  font-size: 1.2em;
  font-weight: bold;
}
.input-panel .input-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px;
}
.input-panel .input-item input {
  padding: 5px;
  margin: 0px 5px;
}
.input-panel .input-item .action-bt {
  border-radius: 3px;
  border: 1px solid #555555;
  background-color: white;
  color: #555555;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
}
.input-panel .input-item .action-bt:hover {
  border: 1px solid #888888;
  color: #888888;
}

.register-panel {
  position: relative;
  padding: 20px;
  z-index: 5;
  position: fixed;
  left: -100%;
  top: 50%;
  width: 90%;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.95);
  color: rgb(50, 50, 50);
  box-shadow: 0px 0px 10px black;
  max-height: 80%;
  overflow-y: auto;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: left;
}
.register-panel .close-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}
.register-panel .close-icon:hover {
  color: white;
  background-color: rgb(50, 50, 50);
}
.register-panel div {
  padding: 10px;
}
.register-panel .dropdown-container {
  display: none;
  position: relative;
  top: -10px;
  left: -10px;
  margin: 0px auto;
  width: 350px;
  max-width: 100%;
}
.register-panel .panel-bt, .register-panel .ok-button, .register-panel .message-panel .google-button, .message-panel .register-panel .google-button, .register-panel .message-panel .facebook-button, .message-panel .register-panel .facebook-button {
  color: white;
  margin: 10px auto;
  max-width: 350px;
  cursor: pointer;
}
.register-panel .ok-button {
  background-color: #4a4a4a;
  color: white;
  cursor: pointer;
}
.register-panel .ok-button:hover {
  background-color: #999999;
}
.register-panel .block {
  background-color: white;
  border: 1px solid black;
}
.register-panel input {
  margin: 5px;
  padding: 5px;
  border: 1px solid black;
  width: 100%;
}
.register-panel input[type=checkbox] {
  position: relative;
  top: 2px;
  width: 16px;
  height: 16px;
}
.register-panel .ticket-info {
  margin: 10px;
  padding: 0px 10px;
  border: 1px solid rgb(50, 50, 50);
}
.register-panel .combo-input {
  display: inline-block;
  width: 100px;
  max-width: 100%;
  padding: 0px;
}
.register-panel .combo-input input {
  margin: 0px;
}

.login-page {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow-y: auto;
}
.login-page .login-bg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 74, 74, 0.7);
}
.login-page input {
  margin: 5px 10px;
  width: calc(100% - 20px);
  padding: 10px;
  border-radius: 2px;
  border: solid 1px #979797;
}
.login-page .category {
  text-align: center;
  padding-bottom: 10px;
}
.login-page .category .cat-title {
  padding: 10px;
  background-color: white;
  color: black;
  position: relative;
  top: 20px;
}
.login-page .label {
  text-align: left;
  margin: 0px 10px;
  font-size: 1em;
}
.login-page .password-bt {
  width: calc(100% - 20px);
  margin: 15px 10px;
  height: 40px;
  color: #007aff;
  border-radius: 2px;
  background-color: #ffffff;
  border: solid 1px #007aff;
  padding: 9px;
  cursor: pointer;
}
.login-page .password-bt:hover {
  border: solid 1px #f5a623;
  color: #f5a623;
}
.login-page img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: contain;
}
.login-page .hover-bright {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
}
.login-page .hover-bright:hover {
  opacity: 0.1;
}
.login-page .login-box {
  position: relative;
  top: 60px;
  width: 444px;
  max-width: 100%;
  margin: auto;
  background-color: white;
  color: black;
  border-radius: 8px;
  padding: 20px 40px;
  text-align: center;
  opacity: 1;
  -webkit-transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, opcacity 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, opcacity 0.3s ease;
}
.login-page .login-box .close-bt {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.login-page .login-box .close-bt img {
  width: 100%;
  height: 100%;
}
.login-page .login-box.close {
  opacity: 0;
  top: 200px;
  width: 200px;
  height: 200px;
}
.login-page .login-box .login-button-google {
  position: relative;
  color: white;
  width: calc(100% - 20px);
  height: 60px;
  margin: 20px 10px;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0px 1px 2px rgb(100, 100, 100);
  background-color: #dc4e41;
}
.login-page .login-box .login-button-facebook {
  position: relative;
  color: white;
  width: calc(100% - 20px);
  height: 60px;
  margin: 20px 10px;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0px 1px 2px rgb(100, 100, 100);
  background-color: #3b579d;
}
.login-page .login-box .reset-bt {
  font-size: 0.75em;
  color: #9b9b9b;
  position: relative;
  top: 5px;
  float: right;
  cursor: pointer;
}
.login-page .login-box .reset-bt:hover {
  color: #f5a623;
}
.login-page .login-box .signup-bt {
  color: #9b9b9b;
  cursor: pointer;
}
.login-page .login-box .signup-bt:hover {
  color: #f5a623;
}
.login-page .signup-box {
  position: relative;
  top: 60px;
  width: 444px;
  max-width: 100%;
  margin: auto;
  background-color: white;
  color: black;
  border-radius: 8px;
  padding: 20px 40px;
  text-align: center;
  opacity: 1;
  -webkit-transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, opcacity 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, opcacity 0.3s ease;
  display: none;
}
.login-page .signup-box .close-bt {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.login-page .signup-box .close-bt img {
  width: 100%;
  height: 100%;
}
.login-page .signup-box .signup-button-google {
  position: relative;
  display: inline-block;
  color: white;
  width: calc(50% - 20px);
  height: 60px;
  cursor: pointer;
  position: relative;
  margin-top: 17px;
  border-radius: 3px;
  box-shadow: 0px 1px 2px rgb(100, 100, 100);
  background-color: #dc4e41;
  left: -15px;
}
.login-page .signup-box .signup-button-facebook {
  position: relative;
  display: inline-block;
  color: white;
  width: calc(50% - 20px);
  height: 60px;
  cursor: pointer;
  position: relative;
  margin-top: 17px;
  border-radius: 3px;
  box-shadow: 0px 1px 2px rgb(100, 100, 100);
  background-color: #3b579d;
  right: -15px;
}
.login-page .reset-box {
  position: relative;
  top: 60px;
  width: 444px;
  max-width: 100%;
  margin: auto;
  background-color: white;
  color: black;
  border-radius: 8px;
  padding: 20px 40px;
  text-align: center;
  opacity: 1;
  -webkit-transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, opcacity 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, opcacity 0.3s ease;
  display: none;
}
.login-page .reset-box .close-bt {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.login-page .reset-box .close-bt img {
  width: 100%;
  height: 100%;
}
.login-page .reset-box .box-title {
  font-size: 1.5em;
  text-align: center;
  color: #4a4a4a;
  margin-top: 20px;
  margin-bottom: 10px;
}
.login-page .reset-box .box-desc {
  color: #9b9b9b;
  margin-bottom: 30px;
}
.login-page .reset-box .password-bt {
  margin-top: 30px;
}

.cart {
  padding-bottom: 50px;
}
.cart #statusBar {
  width: 400px;
  height: 150px;
  max-width: 100%;
  margin: auto;
}
.cart .scroll-tab-container {
  overflow-x: hidden;
  width: 1024px;
  max-width: 100%;
  margin: auto;
}
.cart .scroll-tab-container .tab-slider {
  position: relative;
  top: 0px;
  left: 0px;
  white-space: nowrap;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.cart .scroll-tab-container .scroll-tab {
  vertical-align: top;
  display: inline-block;
  width: 100%;
}
.cart .scroll-tab-container .scroll-bt {
  display: inline-block;
  width: 150px;
  max-width: 100%;
  padding: 10px;
  margin: 10px;
  text-align: center;
  cursor: pointer;
  background-color: #1b5d9e;
  color: white;
}
.cart .scroll-tab-container .scroll-bt:hover {
  background-color: #2378CC;
}
.cart .info-row {
  width: 600px;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.cart .info-row .info-item {
  margin: 20px 40px;
  flex-grow: 1;
}
.cart .info-row .info-item .info-label {
  text-align: left;
}
.cart .info-row .info-item input {
  width: 100%;
}
.cart .user-info .cat-title {
  font-size: 1.5em;
  margin: 40px auto 0px auto;
}
.cart .user-info .sub-title {
  font-size: 1.2em;
  margin: 40px auto 0px auto;
}
.cart .scrollX {
  overflow-x: auto;
  padding: 5px;
}
.cart .center-p {
  white-space: normal;
  text-align: left;
  line-height: 1.5em;
  margin: auto;
  max-width: 600px;
  padding: 20px 10px;
}
.cart .pad-space {
  white-space: normal;
  padding: 20px 10px;
}
.cart table {
  width: 100%;
  border-collapse: collapse;
}
.cart table th {
  padding: 10px;
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(200, 200, 200);
}
.cart table td {
  padding: 5px 10px;
}
.cart table .align-left {
  text-align: left;
}
.cart table tr:nth-child(even) {
  background-color: #f2f2f2;
}
.cart table select {
  padding: 3px 10px;
}
.cart table .select-num {
  width: 60px;
  padding: 3px 10px;
}
.cart .text-enhance {
  padding: 0px 5px;
  color: #f5a623;
}
.cart .button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 5px 10px;
}
.cart .button:hover {
  border-color: #f5a623;
}
.cart .button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.cart .button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.cart .button.disable {
  color: #d4d4d4;
}
.cart input {
  margin: 5px;
  padding: 5px;
  border: 1px solid black;
  width: 150px;
}
.cart input[type=checkbox] {
  position: relative;
  top: 2px;
  width: 16px;
  height: 16px;
}
.cart .mustFill {
  box-shadow: 0 0 12.5px 0.5px rgba(169, 0, 0, 0.42);
}
.cart .mustWarning {
  position: absolute;
  text-align: left;
  width: 100px;
  margin: 0px 10px;
  color: red;
  font-size: 0.8em;
}

.cart-button {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 23px;
  z-index: 10;
}
.cart-button .cart-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.cart-button .cart-icon:hover {
  border: 1px solid yellow;
}
.cart-button .cart-item-num {
  font-size: 0.75em;
  text-align: center;
  width: 25px;
  height: 25px;
  padding: 3px;
  border-radius: 15px;
  position: absolute;
  top: -10px;
  right: 3px;
  background-color: red;
  color: white;
}

.cart-form {
  width: 800px;
  max-width: 100%;
  margin: auto;
  white-space: normal;
  text-align: left;
}

.order .option-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.order .option-container select {
  padding: 5px;
  margin: 10px;
}
.order .option-container .reload-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.order .button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
  width: 90px;
  height: 40px;
}
.order .button:hover {
  border-color: #f5a623;
}
.order .button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.order .button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.order .button.disable {
  color: #d4d4d4;
}
.order .button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
}
.order .scrollX {
  overflow-x: auto;
}
.order table {
  min-width: calc(100% - 10px);
  border-collapse: collapse;
}
.order table th {
  padding: 10px;
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(200, 200, 200);
  min-width: 100px;
}
.order table td {
  padding: 5px 10px;
}
.order table tr:nth-child(even) {
  background-color: #f2f2f2;
}
.order .search {
  padding: 10px 0px 20px 0px;
}
.order .search input {
  padding: 5px 10px;
}
.order .search .search-bt {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 5px 10px;
}
.order .search .search-bt:hover {
  border-color: #f5a623;
}
.order .search .search-bt.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.order .search .search-bt.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.order .search .search-bt.disable {
  color: #d4d4d4;
}
.order .popup-panel {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: rgba(50, 50, 50, 0.8);
  z-index: 10;
  overflow-x: hidden;
  overflow-y: hidden;
}
.order .popup-panel .popup-title {
  font-size: 1.5em;
  text-align: center;
  margin: 20px;
}
.order .popup-panel .popup-area {
  max-height: 100%;
  overflow-y: auto;
  position: relative;
  background-color: #eeeeee;
  border-radius: 5px;
  width: 800px;
  max-width: 100%;
  margin: auto;
  padding: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.order .popup-panel .popup-area .input-item {
  margin: 10px;
}
.order .popup-panel .popup-area .input-label {
  font-size: 1.2em;
  display: inline-block;
}
.order .popup-panel .popup-area input {
  padding: 5px;
}
.order .popup-panel .popup-area .close-bt {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2em;
  cursor: pointer;
  padding: 5px 10px;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 5px;
}
.order .popup-panel .popup-area .close-bt:hover {
  color: #888888;
  border: 1px solid #888888;
}
.order .popup-panel .popup-area .submit-bt {
  display: inline-block;
  background-color: #333333;
  color: white;
  border-radius: 3px;
  padding: 5px 10px;
  margin: 10px;
  cursor: pointer;
}

.fb-banner-side {
  width: 300px;
  margin: 10px auto;
}
@media only screen and (min-width: 1024px) {
  .fb-banner-side {
    display: inline-block;
    position: fixed;
    right: 10px;
    top: 100px;
  }
}

.fb-bt-container {
  display: inline-block;
  position: relative;
  top: 3px;
}

.line-bt-container {
  display: inline-block;
  position: relative;
  top: 8px;
}

.content-container {
  max-width: 1130px;
  margin: auto;
  padding: 0px;
  clear: both;
}

.edit-html-container {
  display: inline-block;
  padding: 0px;
  margin: 0px;
  width: 100%;
}

.anchor-link {
  display: inline-block;
  color: #000000;
  font-size: 1.25em;
}
@media only screen and (min-width: 768px) {
  .anchor-link {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .anchor-link {
    display: none;
  }
}
.anchor-link a {
  color: #0a60ff;
}

.edit-container {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 10px;
  padding: 0px 2px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  background-color: white;
}
.edit-container img {
  width: 30px;
  height: 30px;
}
.edit-container:hover {
  border: 1px solid #f5a623;
}

.edit {
  border: 2px solid red;
}

.remove-container {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 5px 10px;
  margin: 10px;
  cursor: pointer;
  background-color: #d4d4d4;
  color: rgb(0, 0, 0);
}
.remove-container:hover {
  border: 1px solid #f5a623;
}

.fix-box {
  position: relative;
  display: inline-block;
  width: 320px;
  height: 350px;
  max-width: calc(100% - 20px);
  vertical-align: top;
  box-shadow: 0 16px 23.2px 5.8px rgba(6, 0, 1, 0.46);
  margin: 25px 10px;
}
@media only screen and (min-width: 768px) {
  .fix-box {
    width: 335px;
    height: 400px;
  }
}
@media only screen and (min-width: 1024px) {
  .fix-box {
    width: 350px;
    height: 378px;
  }
}
.fix-box .article-info {
  position: relative;
  text-align: justify;
  background-color: #ffffff;
  height: 100%;
  width: 100%;
}
.fix-box .article-info .thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .fix-box .article-info .thumb {
    height: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .fix-box .article-info .thumb {
    height: 200px;
  }
}
.fix-box .article-info .title {
  max-width: calc(100% - 40px);
  width: 216px;
  height: 50px;
  font-size: 18px;
  color: #000000;
  margin: 15px 20px 15px 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 1024px) {
  .fix-box .article-info .title {
    width: 252px;
  }
}
.fix-box .article-info .desc {
  max-width: calc(100% - 40px);
  width: 268px;
  height: 51px;
  font-size: 12px;
  color: #4a4a4a;
  padding: 0px 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 768px) {
  .fix-box .article-info .desc {
    width: 280px;
  }
}
@media only screen and (min-width: 1024px) {
  .fix-box .article-info .desc {
    width: 292px;
  }
}
.fix-box .article-info .mark-icon {
  position: absolute;
  top: 171px;
  right: 23px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .fix-box .article-info .mark-icon {
    top: 225px;
    right: 23px;
  }
}
@media only screen and (min-width: 1024px) {
  .fix-box .article-info .mark-icon {
    top: 221px;
    right: 23px;
  }
}
.fix-box .article-info .read-more {
  font-size: 12px;
  position: absolute;
  bottom: 22px;
  right: 72px;
  color: #007aff;
}
@media only screen and (min-width: 768px) {
  .fix-box .article-info .read-more {
    bottom: 21px;
    right: 75px;
  }
}
@media only screen and (min-width: 1024px) {
  .fix-box .article-info .read-more {
    bottom: 15px;
    right: 78px;
  }
}
.fix-box .article-info .read-more:hover {
  color: #f5a623;
}
.fix-box .event-info {
  position: relative;
  text-align: justify;
  background-color: #ffffff;
  height: 100%;
  width: 100%;
}
.fix-box .event-info .thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .fix-box .event-info .thumb {
    height: 180px;
  }
}
@media only screen and (min-width: 1024px) {
  .fix-box .event-info .thumb {
    height: 180px;
  }
}
.fix-box .event-info .title {
  max-width: calc(100% - 40px);
  width: 280px;
  height: 50px;
  font-size: 18px;
  color: #000000;
  margin: 15px 20px 8px 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 768px) {
  .fix-box .event-info .title {
    width: 298px;
  }
}
@media only screen and (min-width: 1024px) {
  .fix-box .event-info .title {
    width: 298px;
  }
}
.fix-box .event-info .desc {
  max-width: 100%;
  width: 328px;
  height: 51px;
  font-size: 12px;
  color: #4a4a4a;
  padding: 0px 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fix-box .event-info .desc.close {
  color: #9b9b9b;
}
.fix-box .event-info .date {
  margin: 0px 10px 15px 20px;
  display: inline-block;
  width: 176px;
  font-size: 12px;
}
.fix-box .event-info .date.close {
  color: #9b9b9b;
}
.fix-box .event-info .read-more {
  font-size: 12px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  color: #007aff;
}
@media only screen and (min-width: 768px) {
  .fix-box .event-info .read-more {
    bottom: 21px;
    right: 18px;
  }
}
@media only screen and (min-width: 1024px) {
  .fix-box .event-info .read-more {
    bottom: 15px;
    right: 32px;
  }
}
.fix-box .event-info .read-more:hover {
  color: #f5a623;
}
.fix-box .event-info .read-more.close {
  color: #9b9b9b;
}
.fix-box .event-info .close {
  display: inline-block;
  font-size: 12px;
  color: #d0021b;
}

.user-box {
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 250px;
  margin: 20px 25px;
}
@media only screen and (min-width: 1024px) {
  .user-box {
    width: 300px;
  }
}
.user-box.outline {
  border: 1px solid rgb(200, 200, 200);
}
.user-box .thumb {
  width: 200px;
  height: 200px;
  margin: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  object-fit: cover;
}
.user-box .name {
  color: #000000;
  font-size: 24px;
  padding: 20px;
}
.user-box .desc {
  color: #9b9b9b;
  font-size: 18px;
  width: 250px;
}
@media only screen and (min-width: 1024px) {
  .user-box .desc {
    width: 300px;
  }
}

.content-box {
  position: relative;
  padding: 0px 0px 10px 0px;
  height: 250px;
  margin: 10px;
}
@media only screen and (min-width: 768px) {
  .content-box {
    height: 350px;
  }
}
@media only screen and (min-width: 1024px) {
  .content-box {
    height: 350px;
  }
}
.content-box .thumb {
  object-fit: cover;
  width: calc(100% - 20px);
  height: 70%;
  margin: 0px 10px;
}
@media only screen and (min-width: 768px) {
  .content-box .thumb {
    margin: 0px;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .content-box .thumb {
    margin: 0px;
    width: 100%;
  }
}
.content-box .info {
  line-height: 1.5em;
  padding: 5px 10px;
  margin: 0px 10px;
  width: calc(100% - 20px);
  height: 30%;
  font-size: 1.2em;
  color: rgb(50, 50, 50);
  background-color: rgb(250, 250, 250);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 768px) {
  .content-box .info {
    margin: 0px;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .content-box .info {
    margin: 0px;
    width: 100%;
  }
}
.content-box .sub-info {
  font-size: 0.8em;
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: rgb(255, 255, 255);
  background-color: rgba(50, 50, 50, 0.95);
  padding: 10px 0px 15px 0px;
  margin: 0px 10px;
  width: calc(100% - 20px);
}
@media only screen and (min-width: 768px) {
  .content-box .sub-info {
    margin: 0px;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .content-box .sub-info {
    margin: 0px;
    width: 100%;
  }
}
.content-box .sub-info .mark {
  display: inline-block;
  color: rgb(255, 100, 0);
  padding: 0px 10px;
}
.content-box .desc {
  line-height: 1.7em;
  padding: 5px 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin: 0px 10px;
  width: calc(100% - 20px);
  height: 0%;
  color: rgb(255, 255, 255);
  background-color: rgba(50, 50, 50, 0.95);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
@media only screen and (min-width: 768px) {
  .content-box .desc {
    margin: 0px;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .content-box .desc {
    margin: 0px;
    width: 100%;
  }
}

.dropdown-content {
  position: absolute;
  left: 0px;
  display: none;
  color: rgb(50, 50, 50);
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-content ul {
  margin: 5px;
  padding: 0px 5px;
  list-style-type: none;
  text-align: left;
}
.dropdown-content ul li {
  padding-left: 5px;
  display: block;
  cursor: pointer;
}
.dropdown-content ul li:hover {
  background-color: rgb(200, 200, 200);
}
.dropdown-content ul li .user-icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-top: 5px;
  margin-right: 10px;
}

.full-input {
  padding: 5px;
  clear: both;
  width: 100%;
}
.full-input label {
  padding: 5px 0px;
  float: left;
}
.full-input span {
  display: block;
  overflow: hidden;
  padding: 0 10px;
}
.full-input input[type=checkbox] {
  width: 20px;
  height: 20px;
  position: relative;
  top: 3px;
}

.small-info {
  display: inline;
  padding: 5px;
  font-size: 1em;
  color: #9b9b9b;
}
.small-info.date {
  position: absolute;
  right: 0px;
  top: 0px;
}
@media only screen and (min-width: 768px) {
  .small-info.date {
    position: static;
  }
}
@media only screen and (min-width: 1024px) {
  .small-info.date {
    position: static;
  }
}
.small-info a {
  text-decoration: none;
  color: rgb(50, 50, 50);
}
.small-info a:hover {
  color: rgb(200, 200, 200);
}
.small-info a {
  color: #9b9b9b;
}
.small-info a:hover {
  color: #000000;
}

.content-title {
  font-size: 2em;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #4a4a4a;
}
@media only screen and (min-width: 768px) {
  .content-title {
    margin-top: 39px;
    margin-bottom: 46px;
  }
}
@media only screen and (min-width: 1024px) {
  .content-title {
    margin-top: 39px;
    margin-bottom: 46px;
  }
}

.info-container {
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .info-container {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .info-container {
    margin-bottom: 40px;
  }
}
.info-container .event-align-R {
  display: inline-block;
  position: absolute;
  right: 0px;
  padding: 10px 0px;
}
@media only screen and (min-width: 768px) {
  .info-container .event-align-R {
    padding: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .info-container .event-align-R {
    padding: 0px;
  }
}
.info-container .article-align-R {
  display: block;
  position: absolute;
  right: 0px;
  padding: 10px 0px;
}
@media only screen and (min-width: 768px) {
  .info-container .article-align-R {
    display: inline-block;
    padding: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .info-container .article-align-R {
    display: inline-block;
    padding: 0px;
  }
}
.info-container .mark-icon {
  width: 25px;
  height: 25px;
  margin: 0px 10px;
  cursor: pointer;
}

.seperate-line {
  max-width: 100%;
  margin: auto;
  width: 320px;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .seperate-line {
    width: 432px;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .seperate-line {
    width: 418px;
    margin-top: 40px;
  }
}

.keyword-container {
  padding: 20px;
}

.fb-share {
  position: relative;
  background-color: #9b9b9b;
  padding: 2px 7px;
  margin-left: 30px;
  bottom: 5px;
}
.fb-share a {
  text-decoration: none;
  color: white;
}

.contact-us {
  position: relative;
  height: 450px;
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
}
.contact-us img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}
.contact-us .contact-container {
  position: relative;
  top: -400px;
  margin: auto;
  width: 600px;
  max-width: 100%;
  height: calc(100% - 150px);
  text-align: left;
  padding: 0px 20px;
}
.contact-us .contact-container .title {
  font-size: 1.5em;
  padding-top: 0px;
  padding-bottom: 3px;
  margin: 0px;
  font-weight: bold;
}
.contact-us .contact-container .title .bottom-line {
  padding-top: 20px;
  margin: 0px auto 15px auto;
  width: 48px;
  border-bottom: 1px solid #ffffff;
}
.contact-us .contact-container hr {
  color: white;
}
.contact-us .contact-container input[type=email] {
  width: 500px;
  max-width: 100%;
  margin: 5px 0px;
  padding: 5px;
  margin: 10px 0px;
}
.contact-us .contact-container textarea {
  width: 500px;
  height: 150px;
  max-width: 100%;
  margin: 5px 0px;
  padding: 5px;
}
.contact-us .contact-container .submit-bt {
  padding: 5px 10px;
  display: inline-block;
  background-color: #f5a623;
  color: rgb(50, 50, 50);
  border-radius: 5px;
  width: 250px;
  max-width: 100%;
}
.contact-us .contact-container .submit-bt:hover {
  background-color: #f8c958;
}

.article {
  max-width: calc(100% - 20px);
  padding: 10px;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .article {
    max-width: 740px;
  }
}
@media only screen and (min-width: 1024px) {
  .article {
    max-width: 770px;
  }
}
.article p {
  font-size: 1.125em;
  padding: 0px;
  margin: 0px;
}
.article p, .article h1, .article h2, .article h3, .article h4, .article h5, .article h6 {
  line-height: 1.67em;
}
.article textarea {
  resize: none;
  height: 100px;
}
.article .button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 5px 10px;
  margin: 10px 0px;
}
.article .button:hover {
  border-color: #f5a623;
}
.article .button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.article .button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.article .button.disable {
  color: #d4d4d4;
}
.article .article-info {
  display: block;
  padding: 0px;
}
.article .article-info a {
  text-decoration: none;
  color: rgb(50, 50, 50);
}
.article .article-info a:hover {
  color: rgb(200, 200, 200);
}
.article img {
  max-width: 100%;
  height: auto;
}
.article iframe {
  max-width: 100%;
}

.event {
  max-width: calc(100% - 20px);
  padding: 10px;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .event {
    max-width: 740px;
  }
}
@media only screen and (min-width: 1024px) {
  .event {
    max-width: 770px;
  }
}
.event p {
  font-size: 1.125em;
}
.event p, .event h1, .event h2, .event h3, .event h4, .event h5, .event h6 {
  line-height: 1.67em;
}
.event textarea {
  resize: none;
  height: 130px;
}
.event .button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 5px 10px;
  margin: 10px 0px;
}
.event .button:hover {
  border-color: #f5a623;
}
.event .button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.event .button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.event .button.disable {
  color: #d4d4d4;
}
.event .small-button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 5px;
  margin: 5px 0px;
}
.event .small-button:hover {
  border-color: #f5a623;
}
.event .small-button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.event .small-button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.event .small-button.disable {
  color: #d4d4d4;
}
.event .sub-title {
  text-align: center;
  margin: 20px 0px;
  padding: 19px;
  font-size: 1em;
  border-radius: 3px;
  color: #ffffff;
  background-color: #549de5;
}
.event .event-info {
  display: block;
  padding: 0px;
  font-size: 1.125em;
  line-height: 1.67em;
}
.event .event-info a {
  text-decoration: none;
  color: rgb(50, 50, 50);
}
.event .event-info a:hover {
  color: rgb(200, 200, 200);
}
.event .info-title {
  color: #898989;
}
.event .donate-large-container {
  margin: auto;
  display: none;
}
@media only screen and (min-width: 768px) {
  .event .donate-large-container {
    display: table;
  }
}
@media only screen and (min-width: 1024px) {
  .event .donate-large-container {
    display: table;
  }
}
.event .donate-small-container {
  display: block;
}
@media only screen and (min-width: 768px) {
  .event .donate-small-container {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .event .donate-small-container {
    display: none;
  }
}
.event .donate-info {
  display: block;
  width: 300px;
  margin: auto;
  font-size: 1.125em;
  color: #000000;
}
@media only screen and (min-width: 768px) {
  .event .donate-info {
    display: inline-block;
    width: 300px;
  }
}
@media only screen and (min-width: 1024px) {
  .event .donate-info {
    display: inline-block;
    width: 400px;
  }
}
.event .donate-bt-container {
  display: block;
  width: 300px;
}
@media only screen and (min-width: 768px) {
  .event .donate-bt-container {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .event .donate-bt-container {
    display: inline-block;
    width: 350px;
  }
}
.event .donate-bt-container a {
  display: block;
}
.event .donate-bt {
  display: block;
  margin: auto;
  width: 164px;
  height: 60px;
}
.event .donate-bt:hover {
  border: 1px solid #f5a623;
}
.event .keyword-tag {
  margin-top: 20px;
  margin-bottom: 50px;
  display: inline-block;
}
.event .keyword-tag a {
  color: #000000;
}
.event .keyword-tag a:hover {
  color: #f5a623;
}
.event .toggle-bt {
  display: inline-block;
  margin: 10px;
  box-shadow: 5px 5px 5px rgb(200, 200, 200);
}
.event img {
  max-width: 100%;
  height: auto;
}
.event iframe {
  max-width: 100%;
}
.event .change-button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  height: 40px;
}
.event .change-button:hover {
  border-color: #f5a623;
}
.event .change-button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.event .change-button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.event .change-button.disable {
  color: #d4d4d4;
}
.event .half-button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  display: none;
  margin: 5px;
  padding: 10px;
  width: calc(50% - 15px);
  height: 40px;
}
.event .half-button:hover {
  border-color: #f5a623;
}
.event .half-button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.event .half-button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.event .half-button.disable {
  color: #d4d4d4;
}
.event .guest-box {
  display: inline-block;
  margin: 0px 10px;
  padding: 10px 0px;
  width: calc(100% - 30px);
}
@media only screen and (min-width: 375px) {
  .event .guest-box {
    width: calc(100% - 30px);
  }
}
@media only screen and (min-width: 768px) {
  .event .guest-box {
    width: calc(50% - 30px);
  }
}
@media only screen and (min-width: 1024px) {
  .event .guest-box {
    width: calc(25% - 30px);
  }
}
.event .level-container {
  text-align: left;
  padding: 0px 5px;
}
.event .level-select {
  margin: 5px 10px;
  padding: 5px;
  height: 30px;
}
.event .location-edit .editor {
  padding: 5px;
}
.event .location-edit input {
  padding: 5px;
}
.event .map-loc {
  position: relative;
  top: 3px;
  left: 5px;
  width: 14px;
  height: 20px;
  margin-right: 10px;
}
.event .disable {
  cursor: default;
  background-color: rgb(200, 200, 200);
  color: rgb(150, 150, 150);
}
.event .disable:hover {
  background-color: rgb(200, 200, 200);
}
.event #editLocation {
  width: 300px;
  max-width: 100%;
}
.event #ticketRemark {
  width: 400px;
  max-width: 100%;
}
.event table {
  display: inline-block;
}
.event table select {
  padding: 5px;
  height: 30px;
}
.event table input {
  padding: 5px;
  height: 30px;
  min-width: 50px;
}
.event table input[type=checkbox] {
  width: 30px;
  height: 30px;
  padding: 5px;
}
.event .edit-item {
  font-size: 1.2em;
  background: rgb(250, 250, 250);
  color: rgb(50, 50, 50);
}
.event .edit-item .column {
  padding: 10px 5px;
  display: inline-block;
}
.event .edit-item:nth-child(even) {
  background: rgb(230, 230, 230);
}
.event .edit-item .close-bt {
  margin: 5px 0px;
  padding: 5px 10px;
  display: inline-block;
  color: red;
}
.event .edit-item .close-bt:hover {
  background-color: rgb(200, 200, 200);
}
.event .edit-item .edit-bt {
  vertical-align: middle;
  margin: 0px;
  display: inline-block;
  color: red;
}
.event .edit-item .edit-bt:hover {
  background-color: rgb(200, 200, 200);
}
.event .edit-item .edit-bt img {
  width: 30px;
  height: 30px;
}
.event .edit-item.edit {
  border: 2px solid red;
}
.event .item {
  margin: 10px;
  padding: 10px;
  background-color: rgb(250, 250, 250);
}
.event .item:nth-child(even) {
  background: rgb(230, 230, 230);
}
.event .item .column {
  display: inline-block;
  padding: 10px 5px;
}
.event .item .toggle-time {
  padding: 5px 10px;
  cursor: pointer;
  color: rgb(255, 255, 255);
  background-color: rgb(100, 100, 100);
}
.event .item .toggle-time:hover {
  background-color: rgb(150, 150, 150);
}
.event .register-container {
  overflow-x: auto;
}
.event .register-container table {
  table-layout: auto;
}
.event .register-container table th {
  white-space: nowrap;
  padding: 5px;
}
.event .register-container table td {
  padding: 0px 10px;
  white-space: nowrap;
}
.event .register-container table tr {
  background-color: rgb(250, 250, 250);
}
.event .register-container table tr:nth-child(even) {
  background: rgb(230, 230, 230);
}
.event .payment-info {
  width: 600px;
  max-width: calc(100% - 20px);
  margin: auto;
}
.event .payment-info .block {
  margin: 20px;
  padding: 10px;
  background-color: white;
  border: 1px solid black;
}
.event .payment-info .info {
  margin: 10px;
}
.event .payment-info input {
  margin: 5px;
  padding: 5px;
  width: calc(100% - 10px);
}

.eventPack {
  max-width: calc(100% - 20px);
  padding: 10px;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .eventPack {
    max-width: 740px;
  }
}
@media only screen and (min-width: 1024px) {
  .eventPack {
    max-width: 770px;
  }
}
.eventPack .content {
  max-width: 768px;
  margin: auto;
}
.eventPack p, .eventPack h1, .eventPack h2, .eventPack h3, .eventPack h4, .eventPack h5, .eventPack h6 {
  line-height: 1.5em;
}
.eventPack textarea {
  resize: none;
  height: 130px;
}
.eventPack .edit-input {
  padding: 5px;
}
.eventPack .sub-title {
  text-align: center;
  margin: 20px 0px;
  padding: 19px;
  font-size: 1em;
  border-radius: 3px;
  color: #ffffff;
  background-color: #549de5;
}
.eventPack .button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 5px 10px;
  margin: 5px;
}
.eventPack .button:hover {
  border-color: #f5a623;
}
.eventPack .button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.eventPack .button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.eventPack .button.disable {
  color: #d4d4d4;
}
.eventPack .button.selected {
  border: 1px solid #f5a623;
}
.eventPack .button.disabled {
  background-color: rgb(150, 150, 150);
  color: rgb(255, 255, 255);
}
.eventPack .button.disabled:hover {
  background-color: rgb(150, 150, 150);
}
.eventPack img {
  max-width: 100%;
  height: auto;
}
.eventPack iframe {
  max-width: 100%;
}
.eventPack .group {
  position: relative;
  margin: 10px;
  padding: 10px;
  border: 1px solid rgb(150, 150, 150);
}
.eventPack .group .remove-container {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 5px 10px;
  margin: 10px;
  cursor: pointer;
  background-color: #d4d4d4;
  color: rgb(0, 0, 0);
}
.eventPack .group .remove-container:hover {
  background-color: #f5a623;
}
.eventPack .group .icon-container {
  position: absolute;
  top: 10px;
  right: 50px;
}
.eventPack .group .icon-container .group-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.eventPack .group .icon-container .group-icon:hover {
  border: 1px solid gray;
}
.eventPack .group .event-item {
  position: relative;
  display: block;
  background: rgb(250, 250, 250);
}
.eventPack .group .event-item:nth-child(even) {
  background: rgb(230, 230, 230);
}
.eventPack .group .event-item .event-title {
  display: inline-block;
  font-weight: bold;
  padding: 5px 10px;
}
.eventPack .group .event-item .toggle-show-content {
  display: inline-block;
}
.eventPack .group .event-item .close-bt {
  margin: 5px 0px;
  padding: 5px 10px;
  display: inline-block;
  color: red;
}
.eventPack .group .event-item .close-bt:hover {
  background-color: rgb(200, 200, 200);
}
.eventPack .event-segment {
  margin: 0px 10px;
  padding: 10px;
  background: rgb(250, 250, 250);
}
.eventPack .event-segment:nth-of-type(even) {
  background: rgb(230, 230, 230);
}
.eventPack .ticket-type {
  display: inline-block;
  margin: 5px 10px;
  padding: 5px;
  background-color: rgb(25, 25, 25);
  color: white;
  font-size: 1.2em;
}
.eventPack .ticket-group {
  margin: 0px 10px;
  padding: 5px 10px;
  background: rgb(250, 250, 250);
}
.eventPack .ticket-group:nth-child(even) {
  background: rgb(230, 230, 230);
}
.eventPack .ticket-group .column {
  margin: 5px;
  padding: 5px 0px 0px 0px;
  text-align: center;
  display: inline-block;
  background-color: rgb(200, 200, 200);
}
.eventPack .ticket-group .select-date {
  margin: 10px;
  padding: 5px;
}

.account .user-info {
  width: 320px;
  margin: 20px auto;
}
@media only screen and (min-width: 768px) {
  .account .user-info {
    width: 700px;
    margin: 50px auto;
  }
}
@media only screen and (min-width: 1024px) {
  .account .user-info {
    width: 770px;
    margin: 50px auto;
  }
}
.account .user-info .photo-block {
  display: block;
  width: 250px;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .account .user-info .photo-block {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .account .user-info .photo-block {
    display: inline-block;
  }
}
.account .user-info .photo-block .photo {
  width: 250px;
  height: 250px;
  background-color: white;
  object-fit: cover;
}
.account .user-info .photo-block .upload-bt {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 14px;
  width: 100%;
  font-size: 1em;
  border-radius: 3px;
  border: solid 1px #4a4a4a;
  margin-top: 15px;
}
.account .user-info .photo-block .upload-bt:hover {
  border-color: #f5a623;
}
.account .user-info .photo-block .upload-bt.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.account .user-info .photo-block .upload-bt.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.account .user-info .photo-block .upload-bt.disable {
  color: #d4d4d4;
}
.account .user-info .info-block {
  position: relative;
  width: 320px;
  margin-left: 0px;
  vertical-align: top;
  display: inline-block;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .account .user-info .info-block {
    width: 390px;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .account .user-info .info-block {
    width: 450px;
    margin-left: 60px;
  }
}
.account .user-info .info-block .input-container {
  margin-top: 16px;
  font-size: 1em;
  color: black;
}
.account .user-info .info-block .info-input {
  width: 320px;
  font-size: 1em;
  height: 40px;
  margin: 0px;
  padding-left: 20px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #4a4a4a;
  border: solid 1px #e6e9ee;
}
@media only screen and (min-width: 768px) {
  .account .user-info .info-block .info-input {
    width: 390px;
  }
}
@media only screen and (min-width: 1024px) {
  .account .user-info .info-block .info-input {
    width: 450px;
  }
}
.account .user-info .info-block .checkbox-container {
  margin: 37px 0px;
}
.account .user-info .info-block .save-bt {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  display: block;
  width: 250px;
  margin: 10px auto;
  padding: 14px;
  border-radius: 3px;
  border: solid 1px #4a4a4a;
}
.account .user-info .info-block .save-bt:hover {
  border-color: #f5a623;
}
.account .user-info .info-block .save-bt.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.account .user-info .info-block .save-bt.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.account .user-info .info-block .save-bt.disable {
  color: #d4d4d4;
}
@media only screen and (min-width: 768px) {
  .account .user-info .info-block .save-bt {
    position: absolute;
    left: 0px;
    width: 180px;
    margin: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .account .user-info .info-block .save-bt {
    position: absolute;
    left: 0px;
    width: 195px;
    margin: 0px;
  }
}
.account .user-info .info-block .logout-bt {
  display: block;
  cursor: pointer;
  text-align: center;
  width: 250px;
  margin: 10px auto;
  padding: 14px;
  border-radius: 3px;
  background-color: #d4d4d4;
}
@media only screen and (min-width: 768px) {
  .account .user-info .info-block .logout-bt {
    width: 180px;
    position: absolute;
    right: 0px;
    margin: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .account .user-info .info-block .logout-bt {
    width: 195px;
    position: absolute;
    right: 0px;
    margin: 0px;
  }
}
.account .user-info .info-block .logout-bt:hover {
  border: solid 1px #f5a623;
}
.account .func-bar {
  margin-bottom: 30px;
}
.account .func-bar .func-icon {
  position: relative;
  top: 8px;
  width: 30px;
  height: 30px;
}
.account .user-record {
  background-color: white;
}
.account .user-record .record-container {
  margin: auto;
  max-width: 1130px;
}
.account .user-record .record-container .record-title {
  text-align: center;
  font-size: 1.5em;
  padding-top: 65px;
}
.account .user-record .record-container .record-title .bottom-line {
  padding-top: 20px;
  margin: 0px auto 15px auto;
  width: 48px;
  border-bottom: 1px solid #4a4a4a;
}
.account .user-record .record-container .no-record {
  text-align: center;
  font-size: 1.125em;
  padding-bottom: 35px;
  padding-top: 85px;
}
.account .user-record .record-container .no-record:last-of-type {
  padding-bottom: 100px;
}
.account .info-box {
  display: inline-block;
  padding: 0px 15px 15px 15px;
  margin: 0px 10px;
  width: calc(100% - 30px);
  text-align: left;
}
@media only screen and (min-width: 375px) {
  .account .info-box {
    width: calc(100% - 30px);
  }
}
@media only screen and (min-width: 768px) {
  .account .info-box {
    width: calc(50% - 30px);
  }
}
@media only screen and (min-width: 1024px) {
  .account .info-box {
    width: calc(25% - 30px);
  }
}
.account .info-box .photo {
  object-fit: cover;
  width: 100%;
  height: 250px;
}
.account .info-box .change-button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  height: 40px;
}
.account .info-box .change-button:hover {
  border-color: #f5a623;
}
.account .info-box .change-button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.account .info-box .change-button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.account .info-box .change-button.disable {
  color: #d4d4d4;
}
.account .info-box textarea {
  font-size: 1.2em;
  padding: 10px;
  resize: none;
  width: 100%;
  height: 250px;
}
.account .info-box input {
  width: 100%;
  padding: 5px 5px;
  margin: 10px 0px;
}
.account .anchor-button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
  width: 90px;
  height: 40px;
}
.account .anchor-button:hover {
  border-color: #f5a623;
}
.account .anchor-button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.account .anchor-button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.account .anchor-button.disable {
  color: #d4d4d4;
}
.account .anchor-button.selected {
  border: 1px solid #f5a623;
}
.account input[type=checkbox] {
  margin: 10px;
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.account .title {
  padding: 0px;
  font-size: 1.25em;
  display: inline-block;
}
.account .select-container {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 10px;
}
.account .select-container select {
  float: right;
}
.account .blacklist-container {
  padding-bottom: 20px;
}
.account .count-container {
  display: inline-block;
  position: relative;
}
.account .item-count {
  font-size: 0.8em;
  text-align: center;
  padding: 5px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: none;
  position: absolute;
  top: 0px;
  right: -10px;
  background-color: red;
  color: white;
}

.login {
  text-align: center;
}
.login form {
  display: inline-block;
  width: calc(100% - 20px);
  margin: 10px;
  padding: 10px;
  border: 1px solid rgb(50, 50, 50);
}
@media only screen and (min-width: 375px) {
  .login form {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 768px) {
  .login form {
    width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 1024px) {
  .login form {
    width: calc(50% - 20px);
  }
}
.login input {
  padding: 10px;
  width: 350px;
  max-width: 100%;
}
.login p {
  margin: 10px;
}
.login .button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 10px;
  margin: 10px;
  width: 100px;
  height: 40px;
}
.login .button:hover {
  border-color: #f5a623;
}
.login .button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.login .button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.login .button.disable {
  color: #d4d4d4;
}
.login .button.selected {
  background-color: #f5a623;
}
.login .text-bt {
  font-size: 0.8em;
  display: inline-block;
  color: rgb(50, 50, 100);
  cursor: pointer;
}
.login .text-bt:hover {
  color: rgb(150, 150, 150);
}

.admin .title {
  padding-bottom: 30px;
}
.admin .func-bar {
  margin-bottom: 30px;
}
.admin .func-bar .func-icon {
  position: relative;
  top: 8px;
  width: 30px;
  height: 30px;
}
.admin .func-block {
  background-color: white;
}
.admin .func-block .func-container {
  margin: auto;
  max-width: 1130px;
}
.admin .func-block .func-container .func-title {
  text-align: center;
  font-size: 1.5em;
  padding-top: 65px;
}
.admin .func-block .func-container .func-title .bottom-line {
  padding-top: 20px;
  margin: 0px auto 15px auto;
  width: 48px;
  border-bottom: 1px solid #4a4a4a;
}
.admin .func-block .func-container .no-record {
  text-align: center;
  font-size: 1.125em;
  padding-bottom: 35px;
  padding-top: 85px;
}
.admin .func-block .func-container .no-record:last-of-type {
  padding-bottom: 100px;
}
.admin .discount-edit select {
  margin: 10px;
  padding: 5px 10px;
}
.admin .discount-edit .column {
  display: inline-block;
}
.admin .discount-edit .column input[type=number] {
  width: 80px;
  padding: 5px;
  margin: 10px;
}
.admin .discount-edit .column input[type=text] {
  padding: 10px;
  margin: 10px;
  width: 200px;
}
.admin input[type=checkbox] {
  margin: 10px;
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.admin .select-container {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 10px;
}
.admin .select-container select {
  float: right;
}
.admin .blacklist-container {
  padding-bottom: 20px;
}
.admin .anchor-button {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  border-radius: 3px;
  border: solid 1px #d4d4d4;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
  width: 90px;
  height: 40px;
}
.admin .anchor-button:hover {
  border-color: #f5a623;
}
.admin .anchor-button.enhance {
  background-color: rgb(50, 50, 50);
  color: rgb(255, 255, 255);
  border: none;
}
.admin .anchor-button.enhance:hover {
  background-color: rgb(100, 100, 100);
}
.admin .anchor-button.disable {
  color: #d4d4d4;
}
.admin .anchor-button.selected {
  border: 1px solid #f5a623;
}

.issue-hackathon {
  background-color: #f5f5f6;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon {
    background-color: white;
  }
}
.issue-hackathon .hackathon-head {
  position: relative;
  height: 335px;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .hackathon-head {
    height: 450px;
  }
}
.issue-hackathon .hackathon-head .title-container {
  color: white;
  position: relative;
  top: 70px;
  margin: auto;
  max-width: 100%;
  text-align: center;
  padding: 0px;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .hackathon-head .title-container {
    top: 150px;
  }
}
.issue-hackathon .hackathon-head .title-container .title {
  font-size: 1.5em;
  letter-spacing: 10px;
  text-align: center;
  line-height: 1.3em;
  padding-top: 20px;
  margin: 0px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .hackathon-head .title-container .title {
    font-size: 2.5em;
  }
}
.issue-hackathon .hackathon-head .title-container .title .anim-item {
  padding: 5px 0px;
  width: 10em;
  overflow: hidden;
}
.issue-hackathon .hackathon-head .title-container .title .anim-item .anim-text {
  position: relative;
  font-size: 1em;
  line-height: 1.1em;
  vertical-align: text-top;
  text-align: center;
  font-weight: normal;
  top: 100%;
}
.issue-hackathon .hackathon-head .read-more {
  max-width: 100%;
  text-decoration: none;
  color: #1a5d9e;
  padding: 10px 50px;
  font-size: 1.3em;
  font-weight: bold;
  background-color: #ffffff;
  box-shadow: 0px 9px 2.6px 0.4px rgba(6, 0, 1, 0.44);
}
.issue-hackathon .hackathon-intro {
  position: relative;
  padding: 10px;
  background-color: #f5f5f6;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .hackathon-intro {
    background-color: transparent;
  }
}
.issue-hackathon .hackathon-intro .bg-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 0% 50%;
}
.issue-hackathon .hackathon-intro .intro-block {
  position: relative;
  width: 500px;
  max-width: calc(100% - 20px);
  margin: 50px auto 30px 10px;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 11.3px 11.3px 23.2px 5.8px rgba(6, 0, 1, 0.46);
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .hackathon-intro .intro-block {
    margin: 50px auto 30px 80px;
    padding: 40px;
  }
}
.issue-hackathon .block-title {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  color: #134a80;
  margin: 20px 0px;
}
@media only screen and (min-width: 375px) {
  .issue-hackathon .block-title {
    font-size: 1.8em;
  }
}
.issue-hackathon .block-desc {
  color: #134a80;
  padding: 0px;
  text-align: left;
}
.issue-hackathon .block-desc a {
  color: #1a5dff;
  font-weight: bold;
}
.issue-hackathon .half-block {
  display: block;
  width: 360px;
  max-width: 100%;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .half-block {
    display: inline-block;
  }
}
.issue-hackathon .half-block.wide-show {
  display: none;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .half-block.wide-show {
    display: inline-block;
  }
}
.issue-hackathon .half-block.wide-hide {
  display: block;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .half-block.wide-hide {
    display: none;
  }
}
.issue-hackathon .intro-block {
  padding: 20px;
  background-color: #f5f5f6;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .intro-block {
    background-color: transparent;
  }
}
.issue-hackathon .block-icon {
  display: block;
  width: 200px;
  height: 200px;
  max-width: calc(100% - 20px);
  margin: auto;
  object-fit: contain;
}
.issue-hackathon .vision {
  margin: 0px 0px 100px 0px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 11.3px 11.3px 23.2px 5.8px rgba(6, 0, 1, 0.46);
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .vision {
    margin: 30px 30px 100px 30px;
    padding: 40px 20px 40px 20px;
  }
}
.issue-hackathon .vision .vision-title {
  color: #1a5d9e;
  font-size: 2em;
  font-weight: bold;
  margin: 0px auto 30px auto;
}
.issue-hackathon .vision .vision-desc {
  color: #134a80;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .vision .vision-desc {
    font-size: 1.2em;
  }
}
.issue-hackathon .vision .call-block {
  margin: 20px;
}
.issue-hackathon .vision .vision-call {
  color: #1a5d9e;
  font-size: 1.5em;
  font-weight: bold;
}
.issue-hackathon .vision .vision-remark {
  color: #1a5d9e;
  font-size: 1.2em;
  font-weight: bold;
  padding-bottom: 50px;
}
.issue-hackathon .slide {
  position: relative;
  width: 100%;
  margin: auto;
}
.issue-hackathon .feedback-block {
  width: 800px;
  max-width: calc(100% - 20px);
  margin: 10px auto 30px auto;
  padding: 20px;
  background-color: white;
  box-shadow: 11.3px 11.3px 23.2px 5.8px rgba(6, 0, 1, 0.46);
  text-align: center;
}
.issue-hackathon .feedback-block .msg {
  color: #1a5d9e;
  font-size: 16px;
  margin-bottom: 20px;
}
.issue-hackathon .feedback-block .name {
  color: #1a5d9e;
  font-weight: bold;
  font-size: 1.2em;
}
.issue-hackathon .partner {
  width: 700px;
  max-width: 100%;
  margin: auto;
  padding: 20px 10px;
}
.issue-hackathon .partner .desc {
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  color: #1a5d9e;
}
.issue-hackathon .partner .logo {
  margin: 10px;
  display: inline-block;
  width: 150px;
  max-width: calc(100% - 20px);
}
.issue-hackathon .white-block {
  background-color: white;
  padding: 40px 0px;
}
.issue-hackathon .call-for-action {
  background-color: white;
  padding-top: 30px;
  margin: 40px auto;
}
.issue-hackathon .call-for-action .action-title {
  color: #1a5d9e;
  font-size: 2em;
  font-weight: bold;
  margin: 30px auto 20px auto;
}
.issue-hackathon .call-for-action .action-content {
  color: #1a5d9e;
  font-size: 1em;
  margin: 20px auto;
}
.issue-hackathon .call-for-action .call-block {
  margin: 20px;
}
.issue-hackathon .call-for-action .action-call {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .call-for-action .action-call {
    color: #1a5d9e;
  }
}
.issue-hackathon .call-for-action .action-remark {
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .issue-hackathon .call-for-action .action-remark {
    color: #1a5d9e;
  }
}
.issue-hackathon .call-for-action input {
  padding: 10px;
  text-align: center;
  width: 490px;
  max-width: calc(100% - 20px);
  margin: 0px 10px;
  border: solid 0.9px #626262;
  font-size: 1.1em;
}
.issue-hackathon .call-for-action .subscribe-bt {
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 2px #1a5d9e;
  font-weight: bold;
  color: #1a5d9e;
  padding: 10px 20px;
  margin: 20px auto;
  width: 250px;
  max-width: 100%;
  cursor: pointer;
}
.issue-hackathon .logo-bar {
  height: 100px;
  white-space: nowrap;
  overflow: visible;
  position: relative;
  left: 0px;
}
.issue-hackathon .logo-bar .logo {
  height: 100%;
  object-fit: contain;
  margin: 0px 25px 0px 25px;
}

.about-page {
  background-color: #f5f4f5;
}
.about-page .about-head {
  position: relative;
  height: 335px;
}
@media only screen and (min-width: 768px) {
  .about-page .about-head {
    height: 450px;
  }
}
.about-page .about-head .title-container {
  color: white;
  position: relative;
  top: 100px;
  margin: auto;
  max-width: 100%;
  text-align: center;
  padding: 0px;
}
.about-page .about-head .title-container .title {
  font-size: 3em;
  letter-spacing: 10px;
  text-indent: 10px;
  text-align: center;
  line-height: 1.3em;
  padding-top: 0px;
  padding-bottom: 30px;
  margin: 0px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .about-page .about-head .title-container .title {
    font-size: 5em;
    letter-spacing: 40px;
    text-indent: 40px;
  }
}
.about-page .about-head .title-container .desc {
  font-size: 1.5em;
}
.about-page .intro-block {
  position: relative;
  background-color: #ade2e3;
  padding: 40px 0px;
}
.about-page .intro-block .gray-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 300px;
  background-color: #f5f4f5;
}
.about-page .intro-block .focus-block {
  position: relative;
  width: 800px;
  max-width: calc(100% - 40px);
  padding: 20px;
  margin: 60px auto 0px auto;
  background-color: #f5f4f5;
  box-shadow: 11.3px 11.3px 23.2px 5.8px rgba(6, 0, 1, 0.46);
  text-align: center;
  color: #555555;
}
.about-page .intro-block .focus-block .title {
  padding: 30px 20px 20px 20px;
  color: #909191;
  font-size: 2em;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .about-page .intro-block .focus-block .title {
    padding: 40px;
  }
}
.about-page .intro-block .focus-block .bottom-line {
  width: 900px;
  max-width: calc(100% - 40px);
  margin: auto;
  border: solid 1px #909191;
}
.about-page .intro-block .focus-block .desc {
  color: #909191;
  font-size: 1em;
  margin: 30px auto 20px auto;
}
@media only screen and (min-width: 768px) {
  .about-page .intro-block .focus-block .desc {
    margin: 20px;
  }
}
.about-page .intro-block .focus-block .enhance {
  color: #2e94a2;
  font-size: 1.5em;
  padding: 20px 20px 40px 20px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .about-page .intro-block .focus-block .enhance {
    padding: 60px;
  }
}
.about-page .intro-block .text-block {
  width: 800px;
  margin: auto;
  max-width: calc(100% - 20px);
  padding: 20px;
  text-align: left;
  line-height: 1.7em;
}
@media only screen and (min-width: 768px) {
  .about-page .intro-block .text-block {
    text-align: center;
    padding: 40px;
  }
}
.about-page .intro-block .text-block p {
  margin: 40px auto;
}
.about-page .action-block {
  width: 800px;
  margin: auto;
  max-width: calc(100% - 20px);
  background-color: #f5f4f5;
  padding: 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .about-page .action-block {
    padding: 40px;
  }
}
.about-page .action-block .action-title {
  color: #2e94a2;
  font-size: 1.2em;
  font-weight: bold;
  margin: 60px auto 20px auto;
}
@media only screen and (min-width: 768px) {
  .about-page .action-block .action-title {
    font-size: 1.5em;
  }
}
.about-page .action-block .bottom-line {
  width: 900px;
  max-width: calc(100% - 40px);
  margin: auto;
  border-bottom: solid 2px #111111;
}
.about-page .action-block .action-desc {
  color: #555555;
  font-size: 1em;
  margin: 20px auto;
}
.about-page .cooperate-block {
  background-image: linear-gradient(to top, #acd6dc, #f5f4f5);
  padding-bottom: 50px;
}
.about-page .cooperate-block .wanted-block {
  color: #ffffff;
  width: 800px;
  max-width: calc(100% - 20px);
  margin: auto;
  padding: 20px;
  background-color: #984c84;
  box-shadow: 6.4px 6.4px 2.6px 0.4px rgba(6, 0, 1, 0.43);
}
@media only screen and (min-width: 768px) {
  .about-page .cooperate-block .wanted-block {
    padding: 40px;
  }
}
.about-page .cooperate-block .wanted-block img {
  display: block;
  width: 150px;
  height: 150px;
  margin: auto;
}
.about-page .cooperate-block .wanted-block .title {
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}
.about-page .cooperate-block .wanted-block .desc {
  width: 500px;
  max-width: 100%;
  margin: auto;
  font-size: 1em;
  text-align: left;
}
.about-page .cooperate-block .wanted-block .desc p {
  margin: 20px auto 40px auto;
}
.about-page .cooperate-block .wanted-block .button {
  width: 200px;
  max-width: 100%;
  margin: auto;
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: 7.1px 7.1px 12.1px 0.9px rgba(6, 0, 1, 0.15);
  text-align: center;
  padding: 10px;
  color: #555555;
}

.contact-page {
  width: 350px;
  max-width: 100%;
  margin: auto;
  padding: 20px;
  color: black;
}
.contact-page .contact-head {
  display: block;
  width: 180px;
  margin: auto;
}
.contact-page .title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 10px auto;
}
.contact-page .label {
  margin-top: 10px;
}
.contact-page input {
  width: 100%;
  padding: 5px;
}
.contact-page select {
  width: 100%;
  padding: 5px;
}
.contact-page textarea {
  width: 100%;
  height: 140px;
  resize: none;
  padding: 5px;
}
.contact-page .button {
  text-align: center;
  width: 100%;
  background-color: #1a5d9e;
  color: white;
  cursor: pointer;
  padding: 10px 20px;
  margin-top: 10px;
}
.contact-page .button:hover {
  color: #fcc06a;
}
.contact-page .confirm-panel {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 50, 50, 0.8);
  z-index: 5;
}
.contact-page .confirm-panel .confirm-box {
  text-align: center;
  position: fixed;
  width: 500px;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 120px);
  left: 50%;
  top: 100px;
  padding: 20px;
  background-color: white;
  overflow-y: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.contact-page .confirm-panel .confirm-box .confirm-title {
  margin: 0px auto;
  font-size: 2em;
}
.contact-page .confirm-panel .confirm-box .confirm-text {
  width: 300px;
  max-width: calc(100% - 20px);
  margin: auto;
  text-align: left;
}
.contact-page .confirm-panel .confirm-box .confirm-text .enhance {
  font-weight: bold;
}
.contact-page .confirm-panel .confirm-box .line-qrcode {
  width: 150px;
  max-width: calc(100% - 20px);
}
.contact-page .confirm-panel .confirm-box .line-add-friend {
  width: 200px;
  height: 60px;
  margin: 20px auto;
  display: none;
}
.contact-page .confirm-panel .confirm-box .button {
  background-color: #1a5d9e;
  width: 250px;
  max-width: calc(100% - 20px);
  color: white;
  cursor: pointer;
  text-align: center;
  margin: 0px auto;
  padding: 10px 20px;
}
.contact-page .confirm-panel .confirm-box .modify-bt {
  display: inline-block;
  cursor: pointer;
  width: 100px;
  border-radius: 3px;
  background-color: #1a5d9e;
  text-align: center;
  margin: 5px;
  padding: 10px 20px;
  color: #ffffff;
}
.contact-page .confirm-panel .confirm-box .ok-bt {
  display: inline-block;
  cursor: pointer;
  width: 100px;
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 2px #1a5d9e;
  text-align: center;
  margin: 5px;
  padding: 10px 20px;
  color: #1a5d9e;
}

.methodology {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
.methodology .cover {
  width: 100%;
  height: 300px;
}
@media only screen and (min-width: 1024px) {
  .methodology .cover {
    width: 50%;
    height: 550px;
  }
}
.methodology .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.methodology .input-form {
  max-width: 100%;
  margin: auto;
}

.cooperate-page {
  background-color: #f6f6f6;
}
@media only screen and (min-width: 768px) {
  .cooperate-page {
    background-color: white;
  }
}
.cooperate-page ol {
  margin: 0px;
}
.cooperate-page .paragraph {
  margin: 30px 0px;
  line-height: 1.7em;
}
.cooperate-page .head-gradient {
  width: 100%;
  height: 335px;
  background-image: linear-gradient(300deg, #28dcf1, #4dbaff);
  color: white;
  text-align: center;
  font-size: 1.8em;
  padding: 100px 20px;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .head-gradient {
    height: 450px;
    font-size: 3em;
    padding: 150px 50px;
  }
}
.cooperate-page .intro-block {
  position: relative;
  width: 100%;
  color: black;
  padding: 20px;
  margin-bottom: 4px;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .intro-block {
    padding: 50px;
  }
}
.cooperate-page .intro-block .mask-right {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  width: 100%;
  height: 100%;
}
.cooperate-page .intro-block .mask-left {
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  width: 100%;
  height: 100%;
}
.cooperate-page .intro-block .title {
  font-size: 2em;
  font-weight: bold;
}
.cooperate-page .intro-block .desc {
  font-size: 1em;
}
.cooperate-page .intro-block .text-right {
  position: relative;
  width: 600px;
  max-width: 100%;
  margin: 0px;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .intro-block .text-right {
    margin: 50px 20px 50px auto;
  }
}
.cooperate-page .intro-block .text-left {
  position: relative;
  width: 600px;
  max-width: 100%;
  margin: 0px;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .intro-block .text-left {
    margin: 50px auto 50px 20px;
  }
}
.cooperate-page .title {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  padding-top: 50px;
  padding-bottom: 10px;
}
.cooperate-page .bottom-line {
  width: 900px;
  max-width: calc(100% - 40px);
  border-bottom: 1px solid black;
  margin: auto;
}
.cooperate-page .cooperate-block {
  color: black;
  padding: 10px;
}
.cooperate-page .cooperate-block .loading-bar-mobile {
  display: block;
  width: calc(100% - 20px);
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .cooperate-block .loading-bar-mobile {
    display: none;
  }
}
.cooperate-page .cooperate-block .loading-bar-pc {
  display: none;
  width: calc(100% - 20px);
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .cooperate-block .loading-bar-pc {
    display: block;
  }
}
.cooperate-page .cooperate-block .target-container {
  width: 800px;
  max-width: 100%;
  margin: auto;
}
.cooperate-page .cooperate-block .half-button {
  display: inline-block;
  width: calc(50% - 20px);
  background-color: #ffffff;
  box-shadow: 0.5px 3px 9.3px 0.7px rgba(6, 0, 1, 0.24);
  margin: 30px 10px;
  padding: 20px 10px;
  cursor: pointer;
  vertical-align: top;
}
.cooperate-page .cooperate-block .half-button .bt-text {
  text-align: center;
  font-size: 1.5em;
  height: 70px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .cooperate-block .half-button .bt-text {
    font-size: 2em;
    padding: 20px;
  }
}
.cooperate-page .cooperate-block .half-button img {
  display: block;
  width: 200px;
  max-width: 50%;
  margin: auto;
}
.cooperate-page .cooperate-block .item {
  width: 600px;
  max-width: calc(100% - 20px);
  margin: auto;
}
.cooperate-page .cooperate-block .item img {
  width: 200px;
  height: 200px;
  display: block;
  margin: auto;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .cooperate-block .item img {
    display: inline-block;
  }
}
.cooperate-page .cooperate-block .item .title-container {
  padding: 20px;
  display: block;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .cooperate-block .item .title-container {
    display: inline-block;
  }
}
.cooperate-page .cooperate-block .item .title {
  font-size: 2em;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .cooperate-block .item .title {
    text-align: left;
  }
}
.cooperate-page .cooperate-block .item .target {
  font-size: 1.2em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .cooperate-block .item .target {
    text-align: left;
  }
}
.cooperate-page .partner {
  width: 700px;
  max-width: 100%;
  margin: auto;
  padding: 10px 10px 30px 10px;
}
.cooperate-page .partner .desc {
  width: 600px;
  max-width: 100%;
  padding: 30px;
  margin: auto;
  text-align: center;
}
.cooperate-page .partner .logo {
  margin: 10px;
  display: inline-block;
  width: 150px;
  max-width: calc(100% - 20px);
}
.cooperate-page .action-block {
  background-image: linear-gradient(120deg, #28dcf1, #4dbaff);
  text-align: center;
  padding: 80px 20px 40px 20px;
  font-weight: bold;
}
.cooperate-page .action-block .desc {
  color: #002535;
  font-size: 1.5em;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .action-block .desc {
    font-size: 2em;
  }
}
.cooperate-page .action-block .button {
  font-size: 1.2em;
  background-color: #ffffff;
  box-shadow: 1.7px 9.8px 12.1px 0.9px rgba(6, 0, 1, 0.15);
  width: 250px;
  max-width: calc(100% - 20px);
  color: #1a5d9e;
  margin: 40px auto;
  padding: 10px 30px;
}
@media only screen and (min-width: 768px) {
  .cooperate-page .action-block .button {
    font-size: 1.5em;
  }
}

.hackathon-detail .theme {
  position: relative;
  overflow: hidden;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 500px;
}
.hackathon-detail .theme .theme-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.hackathon-detail .theme .title-container {
  position: absolute;
  top: 70px;
  left: 0px;
  max-width: 100%;
  width: 560px;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #002e44;
}
@media only screen and (min-width: 375px) {
  .hackathon-detail .theme .title-container {
    top: 120px;
    left: 70px;
    max-width: calc(100% - 70px);
  }
}
.hackathon-detail .theme .title-container .title {
  font-size: 3em;
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .theme .title-container .title {
    font-size: 4em;
  }
}
.hackathon-detail .theme .title-container .mid-title {
  font-size: 2em;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .theme .title-container .mid-title {
    font-size: 3em;
  }
}
.hackathon-detail .theme .title-container .desc {
  font-size: 1em;
  text-align: left;
  margin: 25px 0px 40px 0px;
}
.hackathon-detail .theme .title-container .bt-container {
  display: flex;
  flex-wrap: wrap;
}
.hackathon-detail .theme .title-container .bt-container .bt {
  width: 180px;
  background-color: #1a5d9e;
  color: white;
  padding: 10px 20px;
  margin: 0px 30px 20px 0px;
  cursor: pointer;
}
.hackathon-detail .hide-in-pc {
  display: block;
}
@media only screen and (min-width: 375px) {
  .hackathon-detail .hide-in-pc {
    display: none;
  }
}
.hackathon-detail .hide-in-mobile {
  display: none;
}
@media only screen and (min-width: 375px) {
  .hackathon-detail .hide-in-mobile {
    display: block;
  }
}
.hackathon-detail .show-in-mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .show-in-mobile {
    display: none;
  }
}
.hackathon-detail .show-in-pad {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .show-in-pad {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .show-in-pad {
    display: none;
  }
}
.hackathon-detail .show-in-pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .show-in-pc {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .show-in-pc {
    display: block;
  }
}
.hackathon-detail .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 45px auto 56px auto;
}
.hackathon-detail .card-container .card {
  width: 315px;
  margin: 25px 10px;
  color: #002e44;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .card-container .card {
    width: 330px;
    margin: 25px 2px;
  }
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .card-container .card {
    width: 500px;
    margin: 25px 2px;
  }
}
.hackathon-detail .card-container .card a {
  color: #002e44;
}
.hackathon-detail .card-container .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .card-container .card img {
    height: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .card-container .card img {
    height: 320px;
  }
}
.hackathon-detail .card-container .card .title {
  font-size: 1.5em;
  text-align: left;
  margin: 10px 10px 15px 10px;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .card-container .card .title {
    font-size: 1.75em;
    margin: 25px 30px 15px 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .card-container .card .title {
    font-size: 1.75em;
    margin: 25px 0px 15px 50px;
  }
}
.hackathon-detail .card-container .card .desc {
  font-size: 1.5em;
  text-align: left;
  margin: 0px 10px 0px 10px;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .card-container .card .desc {
    margin: 0px 30px 0px 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .card-container .card .desc {
    margin: 0px 0px 0px 50px;
  }
}
.hackathon-detail .section-title {
  font-size: 2em;
  text-align: center;
  margin: 30px auto;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .section-title {
    font-size: 2.5em;
  }
}
.hackathon-detail .case-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hackathon-detail .case-container .case {
  color: black;
  width: 300px;
  max-width: 100%;
  margin: 20px;
}
.hackathon-detail .case-container .case img {
  width: 100%;
}
.hackathon-detail .case-container .case .title {
  padding: 10px;
  font-size: 1.5em;
  text-align: center;
}
.hackathon-detail .case-container .case .desc {
  padding: 5px;
  font-size: 1em;
  text-align: center;
}
.hackathon-detail .logo-bar {
  height: 100px;
  white-space: nowrap;
  overflow: visible;
  position: relative;
  left: 0px;
  margin: 30px auto 60px auto;
}
.hackathon-detail .logo-bar .logo {
  height: 100%;
  object-fit: contain;
  margin: 0px 25px 0px 25px;
}
.hackathon-detail .contact-box {
  margin: 30px auto 100px auto;
}
.hackathon-detail .contact-box .title {
  font-size: 2em;
  text-align: center;
  margin: 20px;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .contact-box .title {
    font-size: 2.5em;
  }
}
.hackathon-detail .contact-box .desc {
  text-align: center;
  font-size: 1em;
  padding: 15px;
}
.hackathon-detail .contact-box .action-bt {
  width: 180px;
  background-color: #1a5d9e;
  color: white;
  padding: 10px 20px;
  margin: 30px auto;
  cursor: pointer;
  text-align: center;
}
.hackathon-detail .contact-box .action-bt a {
  color: white;
}
.hackathon-detail .intro-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 50px auto;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .intro-box {
    margin: 60px auto;
  }
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .intro-box {
    margin: 75px auto;
  }
}
.hackathon-detail .intro-box .intro-text {
  padding: 0px 10px 35px 10px;
  width: 420px;
  max-width: 100%;
}
.hackathon-detail .intro-box .desc {
  margin: 10px;
}
.hackathon-detail .intro-box .flowchart {
  width: 550px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0px 10px;
}
.hackathon-detail .project-flow {
  width: 330px;
  max-width: 100%;
  margin: 60px auto;
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .project-flow {
    width: 640px;
  }
}
@media only screen and (min-width: 1024px) {
  .hackathon-detail .project-flow {
    width: 1080px;
  }
}
.hackathon-detail .project-flow img {
  width: 100%;
}
.hackathon-detail .item-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 1080px;
  max-width: 100%;
  margin: auto;
}
.hackathon-detail .item-container .item {
  width: calc(33% - 20px);
  margin: 20px 10px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .hackathon-detail .item-container .item {
    width: calc(33% - 80px);
    margin: 30px 40px;
  }
}
.hackathon-detail .item-container .item .icon {
  width: 100%;
  max-width: 160px;
  margin: auto;
}
.hackathon-detail .item-container .item .text {
  font-size: 1em;
  margin: 10px auto;
  text-align: center;
}
.hackathon-detail .center-p {
  margin: auto;
  padding: 10px;
  max-width: 600px;
}
.hackathon-detail .benefit-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 1080px;
  max-width: 100%;
  margin: auto;
}
.hackathon-detail .benefit-container .benefit {
  width: 330px;
  max-width: 100%;
  margin-bottom: 40px;
}
.hackathon-detail .benefit-container .benefit img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.hackathon-detail .benefit-container .benefit .title {
  font-size: 1.75em;
  text-align: center;
  padding: 10px 20px;
}
.hackathon-detail .benefit-container .benefit .desc {
  font-size: 1em;
  text-align: center;
  padding: 10px 20px;
}

.online-course-admin {
  width: 1024px;
  max-width: 100%;
  margin: auto;
  padding: 10px;
}
.online-course-admin .bt-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px;
}
.online-course-admin .bt-container .bt {
  color: black;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
}
.online-course-admin .bt-container .bt:hover {
  border: 1px solid #f5a623;
}
.online-course-admin .bt-container input {
  padding: 5px;
  margin: 5px;
}

.online-course-edit {
  position: relative;
  width: 835px;
  max-width: 100%;
  margin: auto;
  padding: 10px;
}
.online-course-edit .input-block {
  margin: 10px;
  padding: 10px;
}
.online-course-edit .input-block .input-label {
  margin: 10px 0px;
}
.online-course-edit .input-block input[type=text] {
  padding: 5px;
  width: 100%;
  max-width: 100%;
}
.online-course-edit .input-block textarea {
  padding: 5px;
  width: 100%;
  height: 150px;
  resize: none;
}
.online-course-edit .attr-block {
  padding: 10px;
}
.online-course-edit .attr-block .attr {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0px;
}
.online-course-edit .attr-block .attr .label {
  margin: auto 10px;
}
.online-course-edit .sub-title {
  display: inline-block;
  font-size: 1.2em;
  margin: 10px;
}
.online-course-edit .func-bt {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  background-color: #333333;
  color: #ffffff;
  cursor: pointer;
  border-radius: 3px;
}
.online-course-edit .submit-bt {
  display: inline-block;
  padding: 5px 20px;
  margin: 10px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #333333;
  color: #333333;
  cursor: pointer;
  border-radius: 3px;
}
.online-course-edit .html-editor {
  margin: 10px auto;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 5px;
}
.online-course-edit .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  cursor: pointer;
  margin: auto 10px;
}
.online-course-edit .item-list {
  background-color: #f8f8f8;
  padding: 20px 10px;
  margin: 10px;
}
.online-course-edit .item-list .multi-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.online-course-edit .item-list .multi-column .item {
  width: 300px;
}
.online-course-edit .item-list .item {
  font-size: 1.2em;
  padding: 5px;
  margin: 10px;
  max-width: 100%;
}
.online-course-edit .item-list .sub-chapter {
  padding: 10px;
  margin: 10px;
  background-color: #ffffff;
  border-radius: 3px;
}
.online-course-edit .item-list .sub-chapter .sub-chapter-content {
  padding: 10px;
}
.online-course-edit .item-list .no-item {
  color: #888888;
  text-align: center;
  font-size: 1.2em;
  margin: 40px auto;
}
.online-course-edit .item-list .more-item {
  width: calc(100% - 20px);
  text-align: center;
  padding: 10px;
  margin: 10px;
  cursor: pointer;
  color: #333333;
  background-color: white;
  box-shadow: 5px 5px 20px #eeeeee;
}
.online-course-edit .item-list .more-item:hover {
  color: #888888;
}
.online-course-edit .item-list input[type=checkbox] {
  width: 15px;
  height: 15px;
}

.popup-panel {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10;
}
.popup-panel .close-bt {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2em;
  cursor: pointer;
  padding: 5px 10px;
  color: #333333;
}
.popup-panel .close-bt:hover {
  color: #FF8888;
}
.popup-panel .input-area {
  position: relative;
  width: 800px;
  border-radius: 5px;
  max-width: 100%;
  margin: 20px auto;
  padding: 30px 10px;
  background-color: #eeeeee;
  color: black;
}
.popup-panel .input-area input[type=text] {
  padding: 5px;
  max-width: 100%;
}

.course-margin {
  margin: 50px auto;
}

.course-block {
  position: relative;
  display: block;
  box-shadow: 0px 11px 49px 2px rgba(51, 17, 33, 0.14);
  width: 835px;
  max-width: calc(100% - 20px);
  margin: 0px auto;
  padding: 10px;
  border-radius: 4px;
}
@media only screen and (min-width: 768px) {
  .course-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.course-block.open {
  box-shadow: 0px 11px 49px 2px rgba(51, 17, 33, 0.14);
  border-bottom: 0.5px solid #111b33;
}
.course-block .number-icon {
  position: absolute;
  left: -10px;
  top: 25px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  background-color: white;
  border: 1px solid #1a5d9e;
  color: #1a5d9e;
  font-size: 0.8em;
}
.course-block .info {
  flex-grow: 1;
  margin: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .course-block .info {
    margin: auto 40px;
  }
}
.course-block .info .hide-in-mobile {
  display: none;
}
@media only screen and (min-width: 768px) {
  .course-block .info .hide-in-mobile {
    display: inline-block;
  }
}
.course-block .info .course-title {
  margin: 10px 0px;
  font-size: 1.5em;
  min-height: 1.5em;
}
.course-block .info .course-desc {
  white-space: pre-wrap;
  margin: 10px 0px;
  font-size: 1em;
  line-height: 1.5em;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .course-block .info .course-desc {
    height: 4.5em;
  }
}
.course-block .info .arrow {
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  object-fit: contain;
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  cursor: pointer;
}
.course-block .info .arrow.open {
  transform: rotate(90deg);
}
.course-block .info .progress-bar {
  display: inline-block;
  width: 74px;
  height: 8px;
  border-radius: 4px;
  margin: 0px;
  background-color: #ccd4b7;
}
@media only screen and (min-width: 768px) {
  .course-block .info .progress-bar {
    margin: 0px 5px 0px 30px;
  }
}
.course-block .info .progress-bar .progress {
  border-radius: 4px;
  width: 0%;
  height: 100%;
  background-image: linear-gradient(to right, #9cc632, #5f8600);
}
.course-block .info .progress-info {
  margin: 0px 35px 0px 0px;
}
.course-block .action {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
@media only screen and (min-width: 1024px) {
  .course-block .action {
    flex-direction: column;
  }
}
.course-block .action .solid-bt {
  width: 150px;
  background-color: #1a5d9e;
  cursor: pointer;
  color: white;
  padding: 10px 20px;
  max-width: calc(100% - 80px);
  margin: 10px 60px 10px 20px;
  text-align: center;
}
.course-block .action .solid-bt.hide-in-mobile {
  display: none;
}
@media only screen and (min-width: 768px) {
  .course-block .action .solid-bt.hide-in-mobile {
    display: block;
  }
}
.course-block .action .outline-bt {
  width: 150px;
  background-color: #ffffff;
  cursor: pointer;
  color: #1a5d9e;
  border: 2px solid #1a5d9e;
  border-radius: 5px;
  font-weight: bold;
  margin: 10px auto 35px auto;
  max-width: calc(100% - 20px);
  padding: 10px 20px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .course-block .action .outline-bt {
    max-width: calc(100% - 80px);
    margin: 10px 60px 10px 20px;
    padding: 10px 40px;
  }
}

.show-in-mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .show-in-mobile {
    display: none;
  }
}
.show-in-mobile .solid-bt {
  width: 150px;
  background-color: #1a5d9e;
  cursor: pointer;
  color: white;
  padding: 10px 20px;
  max-width: 100%;
  margin: 20px auto;
  text-align: center;
}

.chapter-block {
  display: block;
  width: 835px;
  max-width: calc(100% - 20px);
  margin: 0px auto;
  padding: 25px;
  box-shadow: 0px 11px 49px 2px rgba(51, 17, 33, 0.14);
}
@media only screen and (min-width: 768px) {
  .chapter-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
}
.chapter-block .content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px 20px;
  width: 150px;
}
.chapter-block .content .item {
  font-size: 1em;
  margin: 5px;
}
.chapter-block .content .check-icon {
  width: 20px;
  height: 20px;
  margin: 5px;
  object-fit: contain;
}

.online-project-admin {
  width: 1024px;
  max-width: 100%;
  margin: auto;
  padding: 10px;
}
.online-project-admin .bt-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px;
}
.online-project-admin .bt-container .bt {
  color: black;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
}
.online-project-admin .bt-container .bt:hover {
  border: 1px solid #f5a623;
}
.online-project-admin .bt-container input {
  padding: 5px;
  margin: 5px;
}

.online-project-edit {
  position: relative;
  width: 835px;
  max-width: 100%;
  margin: auto;
  padding: 10px;
}
.online-project-edit .input-block {
  margin: 10px;
  padding: 10px;
}
.online-project-edit .input-block .input-label {
  margin: 10px 0px;
}
.online-project-edit .input-block input[type=text] {
  padding: 5px;
  width: 100%;
  max-width: 100%;
}
.online-project-edit .input-block textarea {
  padding: 5px;
  width: 100%;
  height: 150px;
  resize: none;
}
.online-project-edit .attr-block {
  padding: 10px;
}
.online-project-edit .attr-block .attr {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0px;
}
.online-project-edit .attr-block .attr .label {
  margin: auto 10px;
}
.online-project-edit .sub-title {
  display: inline-block;
  font-size: 1.2em;
  margin: 10px;
}
.online-project-edit .func-bt {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  background-color: #333333;
  color: #ffffff;
  cursor: pointer;
  border-radius: 3px;
}
.online-project-edit .submit-bt {
  display: inline-block;
  padding: 5px 20px;
  margin: 10px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #333333;
  color: #333333;
  cursor: pointer;
  border-radius: 3px;
}
.online-project-edit .html-editor {
  margin: 10px auto;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 5px;
}
.online-project-edit .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  cursor: pointer;
  margin: auto 10px;
}
.online-project-edit .item-list {
  background-color: #f8f8f8;
  padding: 20px 10px;
  margin: 10px;
}
.online-project-edit .item-list .multi-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.online-project-edit .item-list .multi-column .item {
  width: 300px;
}
.online-project-edit .item-list .item {
  font-size: 1.2em;
  padding: 5px;
  margin: 10px;
  max-width: 100%;
}
.online-project-edit .item-list .sub-chapter {
  padding: 10px;
  margin: 10px;
  background-color: #ffffff;
  border-radius: 3px;
}
.online-project-edit .item-list .sub-chapter .sub-chapter-content {
  padding: 10px;
}
.online-project-edit .item-list .no-item {
  color: #888888;
  text-align: center;
  font-size: 1.2em;
  margin: 40px auto;
}
.online-project-edit .item-list .more-item {
  width: calc(100% - 20px);
  text-align: center;
  padding: 10px;
  margin: 10px;
  cursor: pointer;
  color: #333333;
  background-color: white;
  box-shadow: 5px 5px 20px #eeeeee;
}
.online-project-edit .item-list .more-item:hover {
  color: #888888;
}
.online-project-edit .item-list input[type=checkbox] {
  width: 15px;
  height: 15px;
}

.popup-panel {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10;
}
.popup-panel .close-bt {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2em;
  cursor: pointer;
  padding: 5px 10px;
  color: #333333;
}
.popup-panel .close-bt:hover {
  color: #FF8888;
}
.popup-panel .input-area {
  position: relative;
  width: 800px;
  border-radius: 5px;
  max-width: 100%;
  margin: 20px auto;
  padding: 30px 10px;
  background-color: #eeeeee;
  color: black;
}
.popup-panel .input-area input[type=text] {
  padding: 5px;
  max-width: 100%;
}

.action-block {
  width: 835px;
  margin: 30px auto 0px auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.action-block .solid-bt {
  background-color: #1a5d9e;
  cursor: pointer;
  color: white;
  padding: 5px 20px;
  max-width: calc(100% - 20px);
  margin: 10px;
  text-align: center;
}
.action-block .outline-bt {
  background-color: #ffffff;
  cursor: pointer;
  color: #1a5d9e;
  border: 2px solid #1a5d9e;
  border-radius: 5px;
  font-weight: bold;
  padding: 5px 20px;
  margin: 10px;
  max-width: calc(100% - 20px);
  text-align: center;
}

.project-block {
  display: block;
  width: 835px;
  height: auto;
  max-width: calc(100% - 20px);
  margin: 0px auto;
  padding: 0px;
  box-shadow: 0px 5px 10px 2px rgba(51, 17, 33, 0.14);
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
}
@media only screen and (min-width: 768px) {
  .project-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 200px;
  }
}
.project-block.open {
  box-shadow: 0px 2px 8.1px 0.9px rgba(51, 17, 33, 0.19);
}
.project-block .info {
  flex-grow: 1;
  margin: 0px;
  padding: 25px 20px 25px 20px;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .project-block .info {
    margin: auto 40px;
  }
}
.project-block .info .project-title {
  margin: 10px 0px;
  font-size: 1.5em;
  min-height: 1.5em;
}
.project-block .info .project-desc {
  white-space: pre-wrap;
  margin: 10px 0px;
  font-size: 1em;
  line-height: 1.5em;
  height: auto;
  display: none;
  max-height: 4.5em;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .project-block .info .project-desc {
    display: block;
    height: 4.5em;
  }
}
.project-block .thumbnail {
  flex: 0 0 300px;
  height: 100%;
  margin: 0px;
  padding: 0px;
  object-fit: cover;
  display: none;
}
@media only screen and (min-width: 768px) {
  .project-block .thumbnail {
    display: block;
  }
}

.arrow-bt {
  display: block;
  width: 60px;
  height: 44px;
  margin: auto;
  padding: 20px;
  position: relative;
  bottom: -10px;
  background-color: #1a5d9e;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .arrow-bt {
    display: none;
  }
}
.arrow-bt .arrow-img {
  display: block;
  margin: auto;
  width: 18px;
  height: 9px;
}
.arrow-bt .arrow-img.open {
  transform: rotate(180deg);
}

.project-container {
  margin: 35px auto;
}
.project-container .course-list {
  position: relative;
  width: 835px;
  max-width: calc(100% - 20px);
  margin: 0px auto;
  padding: 40px 0px 0px 0px;
  box-shadow: 0px 11px 49px 2px rgba(51, 17, 33, 0.14);
}
@inclide pad-width() {
  .project-container .course-list {
    padding: 40px;
  }
}
.project-container .course-list .close-bt {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .project-container .course-list .close-bt {
    display: block;
  }
}
.project-container .course-list .course {
  display: block;
  width: 100%;
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  .project-container .course-list .course {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.project-container .course-list .course .info {
  flex-grow: 1;
  margin: 0px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .project-container .course-list .course .info {
    margin: auto 40px;
  }
}
.project-container .course-list .course .info .course-title {
  margin: 10px 0px;
  font-size: 1.5em;
  min-height: 1.5em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .project-container .course-list .course .info .course-title {
    text-align: left;
    margin: 0px;
  }
}
.project-container .course-list .course .info .course-desc {
  white-space: pre-wrap;
  margin: 10px 0px;
  font-size: 1em;
  line-height: 1.5em;
  height: auto;
  display: none;
}
@media only screen and (min-width: 768px) {
  .project-container .course-list .course .info .course-desc {
    display: block;
    height: 4.5em;
  }
}
.project-container .course-list .course .action {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}
@media only screen and (min-width: 1024px) {
  .project-container .course-list .course .action {
    flex-direction: column;
  }
}
.project-container .course-list .course .action .solid-bt {
  width: 180px;
  background-color: #1a5d9e;
  cursor: pointer;
  color: white;
  padding: 10px 20px;
  max-width: calc(100% - 80px);
  margin: 10px 60px 10px 20px;
  text-align: center;
}
.project-container .course-list .course .action .outline-bt {
  width: 180px;
  background-color: #ffffff;
  cursor: pointer;
  color: #1a5d9e;
  border: 2px solid #1a5d9e;
  border-radius: 5px;
  font-weight: bold;
  padding: 10px 40px;
  margin: 10px auto 20px auto;
  max-width: calc(100% - 20px);
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .project-container .course-list .course .action .outline-bt {
    max-width: calc(100% - 80px);
    margin: 10px 60px 10px 20px;
  }
}

/*# sourceMappingURL=main.css.map */
