/* combined.css */
button, hr, input {
  overflow: visible;
}

audio, canvas, progress, video {
  display: inline-block;
}

progress, sub, sup {
  vertical-align: baseline;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

menu, article, aside, details, footer, header, nav, section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption, figure, main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {}

button, select {
  text-transform: none;
}

[type=submit],
[type=reset],
button,
html [type=button] {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

/*# sourceMappingURL=normalize.min.css.map */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Josefin Sans", sans-serif, serif;
}

/* background-color:#FDFDFD; 控制按钮背景颜色 */
button {
  cursor: pointer;
  background-color: #ffffff;
  border: none;
  padding: 0.4em 1em;
  color: #333; /* 按钮内文字颜色 */
  border-radius: 3px;
  transition: 0.3s ease;
}

/* 模态框 */
.modal {
  display: none; /* 默认隐藏 */
  position: fixed; /* 根据浏览器定位 */
  z-index: 1; /* 放在顶部 */
  left: 0;
  top: 0;
  width: 100%; /* 全宽 */
  height: 100%; /* 全高 */
  overflow: auto; /* 允许滚动 */
  background-color: rgba(0, 0, 0, 0.4); /* 背景色 */
}

/* 模态框内容 */
.modal-content {
  display: flex; /* 采用flexbox布局 */
  flex-direction: column; /* 垂直排列 */
  position: relative;
  background-color: #fefefe;
  margin: 15% auto; /* 距顶部15% 水平居中 */
  padding: 20px;
  border: 1px solid #888;
  width: 75%; /* 弹出框画布大小宽度80 */
  animation: topDown 0.4s; /* 自定义动画，从模态框内容上到下出现 */
  color: #9D9D9D; /* 添加这一行，设置模态框文本颜色 */
}

@keyframes topDown {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

/* 模态框头部 */
.modal-header {
  display: flex; /* 采用flexbox布局 */
  flex-direction: row; /* 水平布局 */
  align-items: center; /* 内容垂直居中 */
  justify-content: space-between;
}

/* 关闭X 样式 */
.close {
  color: red;
  font-size: 30px;
  font-weight: bold;
  /* 添加以下样式来实现居中 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  /* 修改为彩色 */
  border-top-color: #FF5733;
  -webkit-animation: spin 2s linear infinite;
  -ms-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  -o-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  /* 修改为彩色 */
  border-top-color: #33FF57;
  -webkit-animation: spin 3s linear infinite;
  -moz-animation: spin 3s linear infinite;
  -o-animation: spin 3s linear infinite;
  -ms-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  /* 修改为彩色 */
  border-top-color: #5733FF;
  -moz-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  -ms-animation: spin 1.5s linear infinite;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #2E9AFE; /* 背景色 原#1abc9c */
  z-index: 1000;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* 原版load_title是从上面飘出去，感觉太二了注销掉了，结束自动消失 */
.loaded #loader-wrapper {
  visibility: hidden;
  /*-webkit-transform: translateY(-100%);*/
  /*-ms-transform: translateY(-100%);*/
  /*transform: translateY(-100%);*/
  /*-webkit-transition: all .3s 1s ease-out;*/
  /*transition: all .3s 1s ease-out*/
}

.no-js #loader-wrapper {
  display: none;
}

.no-js h1 {
  color: #222;
}

#loader-wrapper #load_title {
  font-family: 'Open Sans';
  color: #FFF;
  font-size: 19px;
  width: 100%;
  text-align: center;
  z-index: 9999999999999;
  position: absolute;
  top: 60%;
  opacity: 1;
  line-height: 30px;
}

#loader-wrapper #load_title span {
  font-weight: normal;
  font-style: italic;
  font-size: 13px;
  color: #FFF;
  opacity: 0.5;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'lucida grande', 'lucida sans unicode', lucida, helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
  align-items: center;
  display: flex;
}

a {
  text-decoration: none;
}

#container {
  max-width: 400px;
  flex-basis: 100%;
  margin: 0 auto;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#container #hero-img {
  width: 100%;
  height: 200px;
  background: #007bff;
}

#container #profile-img {
  width: 160px;
  height: 160px;
  margin: -80px auto 0 auto;
  border: 6px solid #FFF;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(90, 90, 90, 0.3);
}

#container #profile-img img {
  width: 100%;
  background: #FFF;
  border-radius: 50%;
}

#container #content {
  text-align: center;
  width: 320px;
  margin: 0 auto;
  padding: 0 0 50px 0;
}

#container #content h1 {
  font-size: 29px;
  font-weight: 500;
  margin: 50px 0 0 0;
}

#container #content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
  margin: 15px 0 40px 0;
}

#container #content a {
  color: #CCC;
  font-size: 14px;
  margin: 0 10px;
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
}

#container #content a:hover {
  color: #007bff;
}

.btn {
  background: #1BA1E2;
  border: 0;
  border-radius: 2px;
  color: #FFFFFF !important;
  cursor: pointer;
  font-family: "Open Sans","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",Arial,Verdana,Tahoma,sans-serif;
  font-size: 14px;
  padding: 6px 10%;
}

.btn:hover,
.yanshibtn:hover {
  background: #9B59B6;
  border: 0;
  border-radius: 2px;
  color: #FFFFFF !important;
  cursor: pointer;
  font-family: "Open Sans","Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",Arial,Verdana,Tahoma,sans-serif;
  font-size: 14px;
  padding: 8px 10%;
}