/*-----初始化-----*/
html,
body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: #000;
  font: normal 16px/140% "PMingLiU", Arial, Helvetica;
  background: #fff;
  background-size: 100% 3px;
  box-sizing: border-box;
}

div,
p,
span,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
input,
table,
td,
th,
img {
  margin: 0;
  padding: 0;
  line-height: 140%;
  border: none;
}

ul,
ol {
  list-style: none;
}

a {
  display: block;
  line-height: 140%;
  text-decoration: none;
}

img {
  display: block;
  border: none;
}

select {
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}

select::-ms-expand {
  display: none;
}


/*-----base-----*/
.wrapper {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  height: 100vh;
}

.pagesize {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

h2 {
  margin: 0 0 25px 0;
  vertical-align: middle;
  color: #000;
  font-size: 26px;
  font-weight: bold;
}

.account h2 {
  font-size: 30px;
}

h2::before {
  display: inline-block;
  content: "";
  width: 4px;
  height: 26px;
  margin: -5px 15px 0 0;
  vertical-align: middle;
  background: #ff0198;
  box-sizing: border-box;
}

.account h2 ::before {
  height: 30px;
}

input[type="text"] {
  flex: 1 1 auto;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  line-height: 35px;
  color: #999;
  font-size: 15px;
  background: #fff;
  /* box-shadow: inset 0 2px 3px rgb(0 0 0 / 20%); */
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1rem;
}

input[type="text"]:focus {
  color: #333;
  outline: none;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  opacity: 0;
}

input[type="checkbox"]+span,
input[type="radio"]+span {
  flex: 0 0 auto;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
  line-height: 25px;
  vertical-align: text-top;
  background: #fff;
  border: 1px solid #e41913;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
  top: -3px;
}

input[type="checkbox"]:checked+span {
  background: #e41913 url(../image/icon_checkbox.png) no-repeat center center;
  background-size: 100% auto;
}

.checkbox {
  text-align: center;
  color: #e41913;
  font-weight: bold;
}

.checkbox label {
  cursor: pointer;
}

/*-----header-----*/
header {
  flex: 0 0 auto;
  background-color: #fff;
  box-shadow: 0 3px 30px rgb(0 0 0 / 10%), 0 4px 17px rgb(0 0 0 / 10%);
  z-index: 2;
  position: relative;
}

header .pagesize {
  padding: 23px;
  width: 100%;
  max-width: 100%;
}

header::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  width: 100%;
  height: 5px;
  background-color: #7acb00;
}

header .logo {
  display: inline-block;
  vertical-align: middle;
}

header .logo a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 150px;
  height: 41px;
  background: url(../image/logo.svg) no-repeat center center;
  background-size: 100% auto;
}

.btn_signout {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
}

.btn_signout:hover {
  opacity: .8;
}

.btn_signout a {
  display: block;
  width: 100%;
  height: calc(100% + 5px);
  padding: 8.5px 0;
  text-align: center;
  color: #000;
  background: #7acb00;
  box-sizing: border-box;
  padding-top: 18px;
  font-weight: bold;
}


.btn_signout a::before {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  margin: 0 auto 8.5px auto;
  background: url(../image/icon_signout.png) no-repeat center center;
  background-size: 100% auto;
}

/* .btn_signout a:hover {
  opacity: 0.8;
} */


/*-----breadcrumb-----*/
.breadcrumb {
  background: transparent;
  min-height: 60px;
}

.breadcrumb ul {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.breadcrumb ul li {
  position: relative;
  display: inline-block;
  padding: 15px 0px;
  vertical-align: middle;
}

.breadcrumb ul li+li::before {
  content: ">";
  margin: 0 5px;
}

.breadcrumb ul li a {
  color: #000;
  font-size: 1.125rem;
  letter-spacing: 1px;
  display: inline-block;
}

.breadcrumb ul li.index a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 24px;
  height: 24px;
  background: url(../image/icon_home.png) no-repeat center center;
  background-size: 100% auto;
}

.breadcrumb ul li.index::before {
  display: none;
}

.breadcrumb ul li:last-child a {
  cursor: default;
}


@media screen and (max-width: 767px) {

  /*-----base-----*/
  .pagesize {
    width: 100%;
    padding: 15px;
  }


  /*-----header-----*/
  .btn_signout {
    width: 90px;
  }

  .breadcrumb {
    min-height: 40px;
  }


  /* in*/
  h2 {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .breadcrumb ul li a {
    font-size: 1rem;
  }

  input[type="checkbox"]+span,
  input[type="radio"]+span {
    margin-right: 5px;
  }

}