p {
  margin-bottom: 1rem;
}

a {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
  color: #000;
}

a:hover {
  color: #ff6100;
}

br._m {
  display: none;
}

br._pc {
  display: block;
}

.bold {
  font-weight: bold;
}

.warn {
  color: #FF0000;
}

#app #container {
  max-width: 1100px;
  width: 100%;
  margin: 30px auto 50px auto;
}

#app #container h5 {
  margin-bottom: 53px;
}

#app #container .content_wrap {
  padding: 50px;
  background-color: #F7F4EF;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#app .title {
  font-size: 44px;
  font-weight: normal;
  text-align: center;
  line-height: 1.31818;
}

@media (min-width: 768px) and (max-width: 1366px) {
  #app .title {
    font-size: 3.38462vw;
  }
}

#app .inner {
  font-size: 24px;
  line-height: 1.28571;
}

#app .note {
  font-size: 14px;
  line-height: 1.28571;
}

#app .des {
  font-size: 34px;
  line-height: 1.35294;
}

#app .btn {
  display: inline-block;
  font-weight: normal;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5em 1em;
  font-size: 16px;
  border-radius: 0.25em;
  background: #FF6100;
  background: -webkit-gradient(linear, left top, right top, from(#FF8D07), to(#FF6800));
  background: linear-gradient(to right, #FF8D07 0%, #FF6800 100%);
  color: #fff;
  font-size: 24px;
  border-radius: 10000px;
  cursor: pointer;
  margin: 0 auto;
  display: block;
}

#app .btn.blue {
  background: #9B9A96;
  background-color: #9B9A96;
}

#app .close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  cursor: pointer;
}

#app .close:hover {
  opacity: 1;
}

#app .slick_wrap {
  position: relative;
  width: 64%;
  margin: 0 auto;
}

#app .slick_wrap .slick {
  width: 100%;
  height: auto;
}

#app .slick_wrap .slick .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

#app .slick_wrap .slick .slick-dots li {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 10px;
}

#app .slick_wrap .slick .slick-dots li button {
  display: none;
}

#app .slick_wrap .slick .slick-dots li.slick-active {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

#app .slick_wrap > img {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  width: 33px;
  z-index: 1;
  cursor: pointer;
}

#app .slick_wrap .slick-next {
  right: -60px;
}

#app .slick_wrap .slick-prev {
  left: -60px;
}

@media (max-width: 768px) {
  #app .slick_wrap {
    width: 81.65468%;
  }
  #app .slick_wrap .slick .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
  #app .slick_wrap .slick .slick-dots li {
    width: 10px;
    height: 10px;
  }
  #app .slick_wrap .slick .slick-dots li button {
    display: none;
  }
  #app .slick_wrap .slick .slick-dots li.slick-active {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  #app .slick_wrap > img {
    width: 10px;
    z-index: 1;
  }
  #app .slick_wrap .slick-next {
    right: -20px;
  }
  #app .slick_wrap .slick-prev {
    left: -20px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  z-index: 1;
  display: block;
  z-index: 100000;
}

.popup .mask {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.popup .mask .popup_wrap {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 100px 0;
  max-width: 800px;
  width: 88.88889%;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 65px 60px 65px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.popup .mask .popup_wrap .close {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  right: 20px;
  top: 20px;
}

.popup .mask .popup_wrap .title {
  color: #FF6700;
}

@media (max-width: 768px) {
  .popup .mask .popup_wrap {
    margin: 50px 0;
    padding: 45px 10px;
  }
  .popup .mask .popup_wrap .title {
    font-size: 24px;
    line-height: 1.32143;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  br._m {
    display: block;
  }
  br._pc {
    display: none;
  }
  #app #container {
    margin: 28px auto 50px auto;
  }
  #app #container .content_wrap {
    width: 88.88889%;
    margin: 0 auto 50px auto;
    padding: 30px 20px;
  }
  #app .title {
    font-size: 24px;
    line-height: 1.32143;
    margin-bottom: 40px;
  }
  #app .inner {
    font-size: 18px;
    line-height: 1.28571;
  }
  #app .note {
    font-size: 12px;
    line-height: 1.28571;
  }
  #app .des {
    font-size: 24px;
    line-height: 1.33333;
  }
  #app .btn {
    font-size: 18px;
  }
}

#banner_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  overflow: hidden;
}

#banner_wrap > #banner {
  width: 100%;
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#banner_wrap > #banner img {
  height: 278px;
  width: auto;
}

#banner_wrap > div:last-child {
  width: 100%;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 50px auto 0 auto;
}

#banner_wrap .status-bar {
  width: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#banner_wrap .status-bar p {
  margin-bottom: 0;
}

#banner_wrap .status-bar > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#banner_wrap .status-bar > div:first-child > div:nth-child(2) {
  margin: 0 15px;
}

#banner_wrap .status-bar > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#banner_wrap .status-bar > div > div img {
  width: 20px;
  margin-right: 10px;
}

#banner_wrap .status-bar > div > a img {
  width: 25px;
}

#banner_wrap .status-bar.logout {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

#banner_wrap .status-bar.logout > div:first-child {
  margin-right: 20px;
}

#banner_wrap .main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#banner_wrap .main-title p {
  margin-bottom: 0;
}

#banner_wrap .main-title > div:first-child {
  width: 6px;
  height: 100%;
  background-color: #FF6700;
  margin-right: 50px;
}

#banner_wrap .main-title > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#banner_wrap .main-title > div:last-child img {
  width: 27px;
  margin-right: 15px;
}

@media (min-width: 768px) and (max-width: 1366px) {
  #banner_wrap #banner img {
    width: auto;
    height: 21.38462vw;
  }
  #banner_wrap > div:last-child {
    margin: 3.84615vw auto 0 auto;
    padding: 0 0.76923vw;
  }
  #banner_wrap .status-bar {
    width: 38.46154vw;
    margin-right: 0;
  }
  #banner_wrap .status-bar > div:first-child > div:nth-child(2) {
    margin: 0 1.15385vw;
  }
  #banner_wrap .status-bar > div > div img {
    width: 1.53846vw;
    margin-right: 0.76923vw;
  }
  #banner_wrap .status-bar > div > a img {
    width: 1.92308vw;
  }
  #banner_wrap .status-bar.logout > div:first-child {
    margin-right: 1.53846vw;
  }
  #banner_wrap .main-title {
    height: 3.84615vw;
  }
  #banner_wrap .main-title > div:first-child {
    width: 0.46154vw;
    margin-right: 3.84615vw;
  }
  #banner_wrap .main-title > div:last-child img {
    width: 2.07692vw;
    margin-right: 1.15385vw;
  }
}

@media (max-width: 768px) {
  #banner_wrap > #banner {
    margin-top: 60px;
    width: 100%;
  }
  #banner_wrap > #banner img {
    width: 100%;
    height: auto;
  }
  #banner_wrap > div:last-child {
    width: 88.88889%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 5.55556vw;
  }
  #banner_wrap .status-bar {
    position: relative;
    margin: 0 auto;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #banner_wrap .status-bar > div:first-child > div:nth-child(2) {
    margin: 0 0vw;
  }
  #banner_wrap .status-bar > div > div img {
    width: 3.88889vw;
    margin-right: 2.77778vw;
  }
  #banner_wrap .status-bar > div:last-child {
    cursor: pointer;
  }
  #banner_wrap .status-bar > div a img {
    width: 5.55556vw;
  }
  #banner_wrap .status-bar.logout > div:first-child {
    margin-right: 4.16667vw;
  }
  #banner_wrap .main-title {
    height: auto;
    padding-left: 0;
    margin: 8.33333vw auto 0 auto;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #banner_wrap .main-title > div:first-child {
    display: none;
  }
  #banner_wrap .main-title > div:last-child img {
    width: 7.5vw;
    margin-right: 4.16667vw;
  }
  #banner_wrap .main-title > div:last-child p {
    letter-spacing: 0.2em;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  height: 90px;
  z-index: 100;
}

nav #navSwitch {
  display: none;
}

nav .bar {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
}

nav .bar #nav-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
}

nav .bar #nav-left #nav-logo {
  width: 275px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .bar #nav-left #nav-btn {
  height: 38px;
  padding: 5px 25px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: all .5s;
  transition: all .5s;
  border-radius: 1000px;
  cursor: pointer;
}

nav .bar #nav-left #nav-btn p {
  color: #FF6700;
  margin-bottom: 0;
}

nav .bar #nav-left #nav-btn:hover {
  background: #FF6700;
}

nav .bar #nav-left #nav-btn:hover p {
  color: #fff;
}

nav .bar #nav-right {
  width: 290px;
  height: 90px;
  background-image: url(../img/nav-right-bg.png);
  background-size: 290px 90px;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .bar #nav-right > div {
  width: 85%;
  text-align: right;
  color: #000;
}

nav .bar #nav-right > div a {
  color: #000;
}

nav .bar #nav-right label {
  display: none;
}

nav .color-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
  width: 100%;
}

nav .m-nav-wrap {
  display: none;
}

@media (max-width: 768px) {
  nav {
    height: 60px;
  }
  nav .bar #nav-left {
    padding: 0 17px;
  }
  nav .bar #nav-left #nav-logo {
    width: 187px;
  }
  nav .bar #nav-left #nav-btn {
    display: none;
  }
  nav .bar #nav-right {
    width: 74px;
    height: 60px;
    background-image: url(../img/nav-right-bg-m.png);
    background-size: 74px 60px;
  }
  nav .bar #nav-right > div:first-child {
    display: none;
  }
  nav .bar #nav-right label {
    display: block;
    position: relative;
  }
  nav .bar #nav-right label .open {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 17px;
    left: 35px;
    cursor: pointer;
  }
  nav .bar #nav-right label .close {
    display: none;
  }
  nav .color-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
    width: 100%;
  }
  nav #navSwitch:checked ~ .m-nav-wrap {
    display: block;
  }
  nav #navSwitch:checked ~ .bar label .open {
    display: none;
  }
  nav #navSwitch:checked ~ .bar label .close {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    cursor: pointer;
    width: 18px;
    left: 35px;
  }
  nav .m-nav-wrap {
    width: 100vw;
    height: calc(100vh - 60px);
    background-color: #7E7E7E;
    padding-top: 60px;
  }
  nav .m-nav-wrap ul {
    margin-bottom: 15.55556vw;
  }
  nav .m-nav-wrap ul li {
    text-align: center;
    color: #fff;
    margin-bottom: 12.5vw;
  }
  nav .m-nav-wrap ul li .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 71.11111vw;
    height: 12.77778vw;
    background: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10000px;
    margin: 0 auto;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  nav .m-nav-wrap ul li .btn p {
    margin-bottom: 0;
  }
  nav .m-nav-wrap ul li .btn:hover {
    background: #FF6700;
    border: 1px solid #FF6700;
    text-decoration: none;
  }
  nav .m-nav-wrap ul li a {
    color: #fff;
  }
  nav .m-nav-wrap .share {
    text-align: center;
  }
  nav .m-nav-wrap .share p {
    position: relative;
    color: #fff;
    display: inline-block;
  }
  nav .m-nav-wrap .share p:after {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    content: '';
    width: 22.22222vw;
    height: 1px;
    background-color: #fff;
    -webkit-transform: translateX(-140%);
            transform: translateX(-140%);
  }
  nav .m-nav-wrap .share p:before {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    content: '';
    width: 22.22222vw;
    height: 1px;
    background-color: #fff;
    -webkit-transform: translateX(140%);
            transform: translateX(140%);
  }
  nav .m-nav-wrap .share .social-icon-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 16.66667vw;
    margin: 6.94444vw auto 0 auto;
  }
  nav .m-nav-wrap .share .social-icon-wrap a {
    display: block;
    width: 7.22222vw;
  }
}

#app + footer {
  width: 100%;
  padding: 20px 0;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 18px;
}

#app + footer a {
  color: #fff;
}

@media (max-width: 768px) {
  #app + footer {
    font-size: 12px;
  }
}

.form_wrap {
  max-width: 1100px;
  width: 100%;
  border-radius: 17px;
}

.form_wrap > div {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.form_wrap > div ul li {
  margin-bottom: 40px;
}

.form_wrap > div ul li:last-child {
  margin-bottom: 0;
}

.form_wrap > div ul li p {
  margin-bottom: 15px;
}

.form_wrap > div ul li p sup {
  color: #FF0000;
}

.form_wrap > div ul li select, .form_wrap > div ul li input[type="text"] {
  font-size: 24px;
  border-bottom: 1px solid #BBBBBB;
  width: 100%;
  color: rgba(64, 64, 64, 0.5);
}

.form_wrap > div ul li input[type="file"] {
  display: none;
}

.form_wrap > div ul li textarea {
  padding: 20px;
  font-size: 18px;
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16) inset;
          box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16) inset;
  width: 100%;
  height: 350px;
  background-color: #fff;
  resize: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form_wrap > div ul li .btn {
  width: 210px;
  background-color: #000;
  margin-top: 50px;
}

.form_wrap > div ul li > div {
  position: relative;
}

.form_wrap > div ul li > div:after {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0px 8px;
  border-color: #9B9B9B transparent transparent transparent;
  pointer-events: none;
}

@media (max-width: 768px) {
  .form_wrap {
    width: 100%;
  }
  .form_wrap input, .form_wrap select {
    font-size: 14px !important;
    height: 32px;
  }
}

._m {
  display: none;
}

._pc {
  display: block;
}

.bold {
  font-weight: bold;
}

.warn {
  color: #FF0000;
}

.grey {
  color: #9B9A96;
}

.org {
  color: #FF6700;
}

.__18 {
  font-size: 1rem;
}

.__20 {
  font-size: 1.11111rem;
}

.__22 {
  font-size: 1.22222rem;
}

.__24 {
  font-size: 1.33333rem;
}

._18 {
  font-size: 1rem;
}

._20 {
  font-size: 1.11111rem;
}

._22 {
  font-size: 1.22222rem;
}

._24 {
  font-size: 1.33333rem;
}

@media (min-width: 768px) and (max-width: 1366px) {
  ._18 {
    font-size: 1.38462vw;
  }
  ._20 {
    font-size: 1.53846vw;
  }
  ._22 {
    font-size: 1.69231vw;
  }
  ._24 {
    font-size: 1.84615vw;
  }
}

@media (max-width: 768px) {
  .m_10 {
    font-size: 2.77778vw;
  }
  .m_12 {
    font-size: 3.33333vw;
  }
  .m_14 {
    font-size: 3.88889vw;
  }
  .m_16 {
    font-size: 4.44444vw;
  }
  .m_18 {
    font-size: 5vw;
  }
  .m_20 {
    font-size: 5.55556vw;
  }
  .m_22 {
    font-size: 6.11111vw;
  }
  .m_24 {
    font-size: 6.66667vw;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  ._m {
    display: block;
  }
  ._pc {
    display: none;
  }
}
/*# sourceMappingURL=base.css.map */