/* Scss Document */
body,
html {
  height: 100%;
}

html {
  font-size: 20px;
  font-family: "Century Gothic", "Microsoft JhengHei";
  color: #3b3b3b;
  line-height: 1.3;
}

* {
  font-family: "Century Gothic", "Microsoft JhengHei";
}

a {
  color: #005bac;
  font-size: 0.7rem;
}
a:hover {
  color: #004e93;
}

input,
select {
  border: 1px solid #ddd;
}

select {
  padding: 0 5px;
}

input[type=text] {
  padding-left: 10px;
}

input[type=text],
select {
  height: 30px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  input[type=text],
select {
    height: 35px;
  }
}

input[type=checkbox],
input[type=radio] {
  width: 18px;
  height: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  width: 100%;
  resize: none;
  height: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  border: 1px solid #ddd;
}

.black_bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
}
.black_bg.active {
  display: block;
}

#menuBtn {
  display: none;
}
@media screen and (max-width: 1023px) {
  #menuBtn {
    display: block;
    width: 55px;
    height: 42px;
    position: fixed;
    top: 8px;
    right: 10px;
    z-index: 6;
  }
}
#menuBtn.menu-btn span {
  display: block;
  height: 4px;
  width: 40px;
  background: #3b3b3b;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin: 0;
  position: absolute;
  top: 10px;
  left: 8px;
}
@media screen and (max-width: 1023px) {
  #menuBtn.menu-btn span.line-2 {
    top: 19px;
  }
  #menuBtn.menu-btn span.line-3 {
    top: 28px;
  }
}
#menuBtn.menu-btn.active span.line-1 {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#menuBtn.menu-btn.active span.line-2 {
  opacity: 0;
}
#menuBtn.menu-btn.active span.line-3 {
  top: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

header {
  height: 80px;
  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;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: #fff;
  -webkit-box-shadow: 0 -1px 0 #ccc inset;
          box-shadow: 0 -1px 0 #ccc inset;
}
@media screen and (max-width: 1023px) {
  header {
    height: 60px;
    padding: 0px;
  }
}
header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header div h2 img {
  height: 60px;
  vertical-align: middle;
}
@media screen and (max-width: 1023px) {
  header div h2 img {
    height: 30px;
  }
}
header div h3 {
  font-weight: bolder;
  padding: 10px 0 10px 25px;
  margin: 0 0 0 25px;
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 1023px) {
  header div h3 {
    margin: 0;
    padding: 10px 0 10px 10px;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 1023px) {
  header p {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  header p.sp {
    display: block;
  }
}
header p a {
  font-size: 0.7rem;
  border-left: 1px solid #ccc;
  padding: 0 10px;
  color: #3b3b3b;
}
header p a:first-child {
  border: none;
}

footer {
  background: #2d2d2d;
  color: #e0e0e0;
  font-size: 0.7rem;
  padding: 20px 15px;
}
footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media screen and (max-width: 767px) {
  footer div {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer div a {
  color: #e0e0e0;
  border-right: 1px solid #e0e0e0;
  padding: 0 12px;
}
footer div a:last-child {
  border: none;
}
footer div a:hover {
  color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  footer div .con {
    padding: 15px 0 0 0;
    width: 100%;
    text-align: center;
  }
}
footer div .con span {
  padding: 0 0 0 15px;
}
footer div .con span i {
  margin: 0 5px 0 0;
}
footer .copy {
  color: #7f7f7f;
  padding: 20px 0 0 0;
  text-align: center;
  border-top: 1px solid #424242;
  margin: 20px 0 0 0;
}

.w400 {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .w400 {
    padding: 0 15px;
    max-width: 100%;
  }
}

.w1024 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .w1024 {
    padding: 0 15px;
  }
}

.Main {
  background: #f9faf9;
}
@media screen and (max-width: 767px) {
  .Main {
    padding: 60px 0 0 0;
  }
}
.Main .Box {
  background: url(../Images/Bg.png) center bottom repeat-x;
  /*padding: 75px 0 115px 0;*/
}
@media screen and (max-width: 767px) {
  .Main .Box {
    padding: 25px 0;
  }
}
.Main.Reg .Box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .Main.Reg .Box {
    padding: 45px 0 20px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.Main.Reg .Box .title {
  font-size: 0.75rem;
  text-align: center;
}
.Main.Reg .Box .title span {
  font-size: 0.9rem;
  display: block;
  padding: 0 0 15px 0;
  font-weight: bolder;
}
.Main.Reg .Box .identity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
  padding: 75px 0 0 0;
}
@media screen and (max-width: 767px) {
  .Main.Reg .Box .identity {
    padding: 45px 0 0 0;
  }
}
.Main.Reg .Box .identity.two li {
  width: 50%;
}
.Main.Reg .Box .identity li {
  position: relative;
  width: 33.3333%;
}
@media screen and (max-width: 767px) {
  .Main.Reg .Box .identity li {
    width: 100%;
    margin: 0 0 45px 0;
  }
}
.Main.Reg .Box .identity li a {
  font-weight: bolder;
}
.Main.Reg .Box .identity li a p {
  margin: 0 0 5px 0;
}
.Main.Reg .Box .identity li:after {
  content: "";
  position: absolute;
  background: #dddddd;
  width: 1px;
  height: 100px;
  right: 0;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .Main.Reg .Box .identity li:after {
    display: none;
  }
}
.Main.Reg .Box .identity li:last-child:after {
  display: none;
}
.Main.Reg .Box .identity .member a {
  color: #ff8a00;
}
.Main.Reg .Box .identity .landlord a {
  color: #00ac92;
}
.Main.Reg .Box .identity .agent:after {
  display: none;
}
.Main.Reg .Box .identity .agent a {
  color: #005bac;
}
.Main.Reg_in .Box {
  padding: 125px 0 115px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .Main.Reg_in .Box {
    padding: 105px 0 115px 0;
  }
}
@media screen and (max-width: 767px) {
  .Main.Reg_in .Box {
    padding: 45px 0;
  }
}
.Main.Reg_in .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 50px 0;
  color: #ff8a00;
}
.Main.Reg_in .title.t2 {
  color: #00ac92;
}
.Main.Reg_in .title.t3 {
  color: #005bac;
}
.Main.Reg_in .title img {
  width: 100px;
  margin: 0 15px 0 0;
}
.Main.Reg_in .title span {
  font-size: 0.9rem;
  font-weight: bolder;
}
.Main.Reg_in .step_tab {
  margin: 0 -4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  .Main.Reg_in .step_tab {
    margin: 0;
  }
}
.Main.Reg_in .step_tab.three li {
  width: 33.3333%;
}
.Main.Reg_in .step_tab.green li.focus {
  color: #00ac92;
  font-weight: bolder;
}
.Main.Reg_in .step_tab.green li.focus .num {
  background: #00ac92;
  color: #fff;
}
.Main.Reg_in .step_tab li {
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  color: #97999f;
}
.Main.Reg_in .step_tab li:last-child:after {
  display: none;
}
.Main.Reg_in .step_tab li:after {
  content: "";
  height: 2px;
  background: #ddd;
  width: 30px;
  position: absolute;
  right: -15px;
  top: 15px;
}
@media screen and (max-width: 767px) {
  .Main.Reg_in .step_tab li:after {
    width: 25px;
  }
}
.Main.Reg_in .step_tab li .num {
  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;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 auto 0.75rem auto;
}
.Main.Reg_in .form_box {
  margin: 0 auto;
}
.Main.Reg_in .form_box .name {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.Main.Reg_in .form_box .name input[type=text] {
  width: calc(35% - 25px);
}
.Main.Reg_in .form_box .name .input_box {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.Main.Reg_in .form_box .name .input_box p {
  position: relative;
  width: calc(50% - 3px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  border-radius: 3px;
}
.Main.Reg_in .form_box .name .input_box p input {
  opacity: 0;
  position: absolute;
}
.Main.Reg_in .form_box .name .input_box p input.green:checked ~ label {
  background: #00ac92;
  color: #fff;
}
.Main.Reg_in .form_box .name .input_box p input.blue:checked ~ label {
  background: #005bac;
  color: #fff;
}
.Main.Reg_in .form_box .name .input_box p input:checked ~ label {
  background: #ff8a00;
  color: #fff;
}
.Main.Reg_in .form_box .name .input_box p label {
  width: 100%;
  height: 30px;
  background: #ddd;
  border-radius: 3px;
  border: 1px solid #ddd;
  display: block;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
}
.Main.Reg_in .form_box .email,
.Main.Reg_in .form_box .phone {
  position: relative;
}
.Main.Reg_in .form_box .email a,
.Main.Reg_in .form_box .phone a {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ff8a00;
  color: #fff;
  padding: 6px 10px;
  border-radius: 3px;
  font-size: 0.7rem;
}
.Main.Reg_in .form_box .email a:hover,
.Main.Reg_in .form_box .phone a:hover {
  background: #e97e00;
}
.Main.Reg_in .form_box .email a.t2,
.Main.Reg_in .form_box .phone a.t2 {
  background: #00ac92;
}
.Main.Reg_in .form_box .email a.t2:hover,
.Main.Reg_in .form_box .phone a.t2:hover {
  background: #009b84;
}
.Main.Reg_in .form_box .email a.t3,
.Main.Reg_in .form_box .phone a.t3 {
  background: #005bac;
}
.Main.Reg_in .form_box .email a.t3:hover,
.Main.Reg_in .form_box .phone a.t3:hover {
  background: #004e93;
}
.Main.Reg_in .form_box .phone a {
  background: #00ac92;
}
.Main.Reg_in .form_box .phone a:hover {
  background: #009b84;
}
.Main.Reg_in .form_box .phone a.t3 {
  background: #005bac;
}
.Main.Reg_in .form_box .phone a.t3:hover {
  background: #004e93;
}
.Main.Reg_in .form_box .code {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.Main.Reg_in .form_box .code input[type=text] {
  width: 100px;
  background: #fff;
  border: 1px solid #ddd;
  margin: 0 15px 0 0;
  border-radius: 3px;
  text-align: center;
}
.Main.Reg_in .form_box .remind {
  font-size: 0.7rem;
  padding: 5px 0 0 5px;
  color: #ed3e3e;
}
.Main.Reg_in .form_box .ar_code {
  line-height: 1.5;
}
.Main.Reg_in .form_box .now_phone {
  font-weight: bolder;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.75rem;
}
.Main.Reg_in .form_box .now_phone p {
  width: 100%;
}
.Main.Reg_in .form_box .now_phone .phone_num {
  font-size: 1.5rem;
  padding: 0.75rem 0;
}
.Main.Reg_in .form_box .now_phone a {
  padding: 0.75rem;
  background: #eee;
  color: #aaa;
  border-radius: 3px;
  font-size: 0.75rem;
}
.Main.Reg_in .form_box .now_phone a.arr {
  background: #00ac92;
  color: #fff;
}
.Main.Reg_in .form_box .now_phone a span {
  color: #ed3e3e;
  padding: 0 0.25rem 0 0;
}
.Main.Reg_in .result_box {
  text-align: center;
  font-size: 0.75rem;
  padding: 2rem 0 0 0;
}
.Main.Reg_in .result_box .type {
  font-weight: bolder;
  font-size: 1.25rem;
  padding: calc(100px + 1rem) 0 1rem 0;
}
.Main.Reg_in .result_box .type.success {
  background: url(../Images/check.svg) no-repeat top center;
  background-size: 100px;
  color: #00ac92;
}
.Main.Reg_in .result_box a {
  text-decoration: underline;
  margin: 1rem 0 0 0;
  display: block;
}
.Main.Login .Box {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .Main.Login .Box {
    padding: 25px 10px;
  }
}
.Main.Login .Box .Login_box {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*background:rgba(#FFF,0.5);*/
  background: #fff;
  padding: 25px;
}
.Main.Login .Box .Login_box > div {
  padding: 0 0 0 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .Main.Login .Box .Login_box > div {
    width: 100%;
    padding: 15px 0 0 0;
  }
}
.Main.Login .Box .Login_box > div.left {
  width: 60%;
  padding: 0 25px 0 0;
}
@media screen and (max-width: 767px) {
  .Main.Login .Box .Login_box > div.left {
    width: 100%;
    padding: 0;
  }
}
.Main.Login .Box .Login_box > div img {
  width: 100%;
}
.Main.Login .Box .Login_box > div > p {
  text-align: right;
  padding: 0 0 10px 0;
}
.Main.In {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  padding: 80px 0 0 220px;
  min-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .Main.In {
    padding: 61px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .Main.In {
    height: auto;
  }
}
.Main.In .Menu {
  width: 220px;
  height: 100%;
  background: #333;
  position: fixed;
  left: 0;
  top: 80px;
}
@media screen and (max-width: 1023px) {
  .Main.In .Menu {
    left: -75%;
    top: 0;
    height: 100%;
    width: 75%;
    z-index: 5;
  }
}
.Main.In .Menu.active {
  -webkit-transition: left 0.3s ease-out;
  transition: left 0.3s ease-out;
  left: 0;
}
.Main.In .Menu > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #383838;
}
.Main.In .Menu > p a {
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  color: #fff;
  font-size: 0.7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}
.Main.In .Menu > p a:nth-child(2) {
  display: none;
}
@media screen and (max-width: 1023px) {
  .Main.In .Menu > p a:nth-child(2) {
    display: block;
  }
}
.Main.In .Menu > p img {
  width: 50px;
  vertical-align: bottom;
}
.Main.In .Menu > p span {
  padding: 0 0 0 15px;
}
.Main.In .Menu ul {
  height: calc(100vh - 90px - 80px);
  overflow: auto;
}
.Main.In .Menu ul::-webkit-scrollbar {
  border-radius: 4px;
  width: 8px;
  background: rgba(255, 255, 255, 0.2);
}
.Main.In .Menu ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 91, 172, 0.9);
}
.Main.In .Menu ul li > a {
  padding: 20px 20px 20px 25px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 0.8rem;
  position: relative;
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
}
.Main.In .Menu ul li > a:before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #005bac;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
.Main.In .Menu ul li > a:hover, .Main.In .Menu ul li > a.focus {
  background: #005bac;
}
.Main.In .Menu ul li > a:hover:before, .Main.In .Menu ul li > a.focus:before {
  opacity: 1;
}
.Main.In .Menu ul li > a:hover {
  background: #005bac;
}
.Main.In .Menu ul li > a > i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.6rem;
}
.Main.In .Menu ul li p {
  background: #474747;
  display: none;
}
.Main.In .Menu ul li p a {
  padding: 20px 20px 20px 25px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 0.75rem;
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
}
.Main.In .Menu ul li p a:hover {
  background: #5c5c5c;
}
.Main.In .Box {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .Main.In .Box {
    padding: 0;
  }
}

.login_type ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 1023px) {
  .login_type ul {
    margin: 0 0 2rem 0;
  }
}
.login_type ul li {
  width: 50%;
}
.login_type ul li.active a {
  background: rgba(151, 153, 159, 0.05);
  font-weight: bolder;
  -webkit-box-shadow: 0 -5px 0 0 #005bac inset;
          box-shadow: 0 -5px 0 0 #005bac inset;
}
@media screen and (max-width: 1023px) {
  .login_type ul li.active a {
    -webkit-box-shadow: 0 -3px 0 0 #005bac inset;
            box-shadow: 0 -3px 0 0 #005bac inset;
  }
}
.login_type ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(151, 153, 159, 0.3);
  color: #3b3b3b;
}
@media screen and (max-width: 1023px) {
  .login_type ul li a {
    height: 45px;
  }
}

.form_box {
  font-size: 0.75rem;
}
.form_box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px 0;
}
.form_box > div input[type=text], .form_box > div input[type=password] {
  background: no-repeat;
  border: none;
  border-bottom: 1px solid #dddddd;
  padding-left: 5px;
  padding-right: 5px;
  outline: none;
  height: 40px;
  width: 100%;
}
.form_box > div input[type=text]::-webkit-input-placeholder {
  font-size: 0.75rem;
  color: #9a9a9a;
}
.form_box > div input[type=text]::-moz-placeholder {
  font-size: 0.75rem;
  color: #9a9a9a;
}
.form_box > div input[type=text]:-ms-input-placeholder {
  font-size: 0.75rem;
  color: #9a9a9a;
}
.form_box > div input[type=text]::-ms-input-placeholder {
  font-size: 0.75rem;
  color: #9a9a9a;
}
.form_box > div input[type=text]::placeholder {
  font-size: 0.75rem;
  color: #9a9a9a;
}

.btn_box.flc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn_box.inblock .btn {
  display: inline-block;
  width: auto;
  margin: 0 5px;
}
.btn_box.hsmall .btn {
  height: 30px;
  line-height: 30px;
}
@media screen and (max-width: 1023px) {
  .btn_box.hsmall .btn {
    height: 35px;
    line-height: 35px;
    min-width: 90px;
  }
}
.btn_box .btn {
  display: block;
  text-align: center;
  height: 42px;
  line-height: 42px;
  width: 100%;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 3px;
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
  margin: 0 0 15px 0;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none !important;
}
.btn_box .btn.org {
  background: #ff8a00;
}
.btn_box .btn.org:hover {
  background: #e97e00;
}
.btn_box .btn.green {
  background: #00ac92;
}
.btn_box .btn.green:hover {
  background: #009b84;
}
.btn_box .btn.blue {
  background: #005bac;
}
.btn_box .btn.blue:hover {
  background: #004e93;
}
.btn_box .btn.red {
  background: #ed3e3e;
}
.btn_box .btn.red:hover {
  background: #db2c2c;
}
.btn_box .btn.back {
  background: #97999f;
}
.btn_box .btn.back:hover {
  background: #82848b;
}
.btn_box .btn.fb {
  background: #2f55a4;
}
.btn_box .btn.fb:hover {
  background: #254b9a;
}

.go_top {
  font-size: 2rem;
  position: fixed;
  bottom: 15px;
  right: 30px;
  z-index: 2;
  display: none;
  cursor: pointer;
}

.In_box {
  padding: 25px 25px 150px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .In_box {
    padding: 25px 15px 150px 15px;
  }
}
.In_box .title {
  font-size: 1.5rem;
  font-weight: bolder;
  color: #005bac;
  padding: 0 0 15px 0;
}
.In_box .condition_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 0.75rem;
  padding: 0 0 35px 0;
}
@media screen and (max-width: 1023px) {
  .In_box .condition_box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.In_box .condition_box p {
  margin: 0 15px 5px 0;
}
@media screen and (max-width: 1023px) {
  .In_box .condition_box p {
    width: 49%;
    margin: 0 0 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .In_box .condition_box p {
    width: 100%;
    margin: 0 0 5px 0;
  }
}
.In_box .condition_box p:last-child {
  margin: 0;
}
.In_box .condition_box p input.w100 {
  width: 100px;
}
.In_box .condition_box p input.w300 {
  width: 300px;
}
@media screen and (max-width: 1023px) {
  .In_box .condition_box p input.w300 {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .In_box .condition_box p select {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .In_box .condition_box p.price input {
    width: calc((100% - 78px) / 2);
  }
}
@media screen and (max-width: 1023px) {
  .In_box .condition_box .btn_box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 0 0 0;
  }
}
.In_box .condition_box .btn_box .btn {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .In_box .condition_box .btn_box .btn {
    margin: 0 10px;
  }
}
.In_box .other_fun {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 10px 0;
}
@media screen and (max-width: 1023px) {
  .In_box .other_fun .mnone {
    display: none !important;
  }
}
.In_box .other_fun .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .In_box .other_fun .left {
    display: none;
  }
}
.In_box .other_fun .left .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .In_box .other_fun > p {
    width: 100%;
    text-align: right;
  }
}
.In_box .other_fun p {
  margin: 0 15px 0 0;
}
.In_box .other_fun p:last-child {
  margin: 0;
}
.In_box .other_fun .btn_box .btn {
  margin: 0 0 0 5px;
}
.In_box .table_list.point_rc table tr td {
  padding: 12px 6px;
}
.In_box .table_list.Price_list table tr th {
  width: 33.333%;
  padding: 20px 6px;
  font-size: 0.9rem;
  font-weight: 600;
}
.In_box .table_list.Price_list table tr th:nth-child(1) {
  width: 33.333%;
}
.In_box .table_list.Price_list table tr td {
  font-size: 0.8rem;
}
@media screen and (max-width: 768px) {
  .In_box .table_list.Price_list table tr td {
    width: 33.3333%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .In_box .table_list.Price_list table tr td:last-child {
    width: 33.3333%;
  }
}
.In_box .table_list.Price_list table tr td div {
  line-height: 1.3;
}
.In_box .table_list.Price_list table tr td .money {
  color: #ed3e3e;
  font-weight: bolder;
}
.In_box .table_list.Price_list table tr td .money em {
  font-size: 1.5rem;
  padding: 0 5px 0 0;
}
.In_box .table_list.Price_list > .btn_box {
  margin: 25px 0;
}
.In_box .table_list table {
  width: 100%;
}
.In_box .table_list table tr:nth-child(odd) td {
  background: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr:nth-child(odd) td {
    background: none;
  }
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin: 0 0 25px 0;
    border-bottom: 5px solid #005bac;
  }
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr.mdis {
    display: none;
  }
}
.In_box .table_list table tr th,
.In_box .table_list table tr td {
  border: 1px solid #ccc;
  font-size: 0.75rem;
  background: #fff;
  padding: 10px 6px;
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr th,
.In_box .table_list table tr td {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.In_box .table_list table tr th {
  background: #333;
  color: #fff;
  vertical-align: middle;
}
.In_box .table_list table tr td {
  text-align: center;
  vertical-align: middle;
  position: relative;
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr td {
    text-align: left;
    margin: -1px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr td:last-child {
    width: 100%;
  }
}
.In_box .table_list table tr td .now {
  font-size: 1.2rem;
  cursor: pointer;
}
.In_box .table_list table tr td .now.online {
  color: #00ac92;
}
.In_box .table_list table tr td .now.obtained {
  color: #ed3e3e;
}
.In_box .table_list table tr td .now.time {
  color: #97999f;
}
.In_box .table_list table tr td .now.check {
  color: #005bac;
}
.In_box .table_list table tr td a {
  text-decoration: underline;
}
.In_box .table_list table tr td .c_blue {
  color: #005bac;
}
.In_box .table_list table tr td .c_back {
  color: #97999f;
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr td:before {
    content: attr(td_n);
    display: block;
    font-size: 0.65rem;
    padding: 0 0 7px 0;
    color: #005bac;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr td.sel {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .In_box .table_list table tr td.edit:before {
    display: none;
  }
}
.In_box .table_list table .img p {
  width: 60px;
  height: 60px;
  background: #f1f1f1;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .In_box .table_list table .img p {
    width: 100%;
    height: auto;
  }
}
.In_box .table_list table .img p img {
  max-width: 60px;
  max-height: 60px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .In_box .table_list table .img p img {
    max-width: 100%;
    max-height: 150px;
  }
}
.In_box .table_list table .btn_box .btn {
  margin: 0;
}
.In_box .table_form {
  padding: 25px 0 0 0;
  font-size: 0.75rem;
}
.In_box .table_form .sp {
  color: #ed3e3e;
  margin: 0 0 15px 0;
}
.In_box .table_form table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .In_box .table_form table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.In_box .table_form table tr th,
.In_box .table_form table tr td {
  border-bottom: 1px dashed #ccc;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .In_box .table_form table tr th,
.In_box .table_form table tr td {
    width: 100%;
  }
}
.In_box .table_form table tr th {
  font-weight: bolder;
  width: 180px;
  text-align: left;
}
.In_box .table_form table tr th b {
  color: #ed3e3e;
}
@media screen and (max-width: 768px) {
  .In_box .table_form table tr th {
    border: none;
    padding: 12px 12px 0 12px;
  }
}
.In_box .table_form table tr td > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.In_box .table_form table tr td > div label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 25px 0 0;
}
@media screen and (max-width: 768px) {
  .In_box .table_form table tr td > div label {
    width: 50%;
    margin: 3px 0 7px 0;
  }
}
.In_box .table_form table tr td > div label input {
  margin-top: 0;
}
.In_box .table_form table tr td > div p {
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .In_box .table_form table tr td > div p {
    margin: 3px 15px 7px 0;
  }
}
.In_box .table_form table tr td input[type=text].w60 {
  width: 60px;
}
.In_box .table_form table tr td input[type=text].w100 {
  width: 100px;
}
.In_box .table_form table tr td input[type=text].w120 {
  width: 120px;
}
.In_box .table_form table tr td input[type=text].w150 {
  width: 150px;
}
.In_box .table_form table tr td input[type=text].w200 {
  width: 200px;
}
.In_box .table_form table tr td input[type=text].w300 {
  width: 300px;
}
.In_box .table_form table tr td input[type=text].w400 {
  width: 400px;
}
.In_box .table_form table tr td input[type=text].mwfull {
  width: 100%;
}
.In_box .table_form table tr td .sm {
  color: #808080;
}
@media screen and (max-width: 768px) {
  .In_box .table_form table tr td .sm {
    display: block;
    padding: 5px 0 0 0;
  }
}
.In_box .table_form table tr td a {
  text-decoration: underline;
}

.point_box {
  padding: 25px 0 0 0;
  font-size: 0.8rem;
}
.point_box .now {
  border-bottom: 1px dashed #ccc;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
}
.point_box .now span {
  padding: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .point_box .now span {
    display: block;
    padding: 0 0 5px 0;
  }
}
.point_box .now b {
  font-weight: bolder;
  color: #005bac;
}
.point_box .now b.bye {
  color: #ed3e3e;
}
.point_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 15px 0 0 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .point_box ul {
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
  }
}
@media screen and (max-width: 768px) {
  .point_box ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.point_box ul li {
  width: 24%;
  margin: 0 0 25px 0;
}
@media screen and (max-width: 1023px) {
  .point_box ul li {
    width: 31.33333%;
    margin: 0 1% 25px 1%;
  }
}
@media screen and (max-width: 768px) {
  .point_box ul li {
    width: 49%;
    margin: 0 0 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .point_box ul li {
    width: 100%;
    margin: 0 0 25px 0;
  }
}
.point_box ul li input {
  opacity: 0;
  position: absolute;
}
.point_box ul li input:checked ~ div {
  background: #005bac;
}
.point_box ul li input:checked ~ div .money {
  color: #fff;
}
.point_box ul li > div {
  background: #e6e6e6;
  position: relative;
  padding: 15px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
  cursor: pointer;
}
.point_box ul li > div:hover {
  background: #005bac;
}
.point_box ul li > div:hover .money {
  color: #fff;
}
.point_box ul li > div label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.point_box ul li > div label div {
  font-weight: bolder;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.point_box ul li > div label .name {
  width: 65%;
  background: #fff;
  padding: 25px 15px;
  text-align: center;
  border-radius: 5px;
  position: relative;
}
.point_box ul li > div label .name span {
  color: #ed3e3e;
}
.point_box ul li > div label .name:after {
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #fff;
}
.point_box ul li > div label .money {
  width: 35%;
  text-align: center;
  line-height: 1.5;
  -webkit-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
}

.track_list {
  padding: 25px 0 0 0;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  .track_list {
    font-size: 0.75rem;
  }
}
.track_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.track_list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: calc((100% - 2rem) / 3);
  border-radius: 0.5rem;
  margin: 0 1rem 1rem 0;
  position: relative;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1439px) {
  .track_list ul li {
    padding: 0.35rem;
  }
}
.track_list ul li:nth-child(3n) {
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 1439px) {
  .track_list ul li:nth-child(3n) {
    margin: 0 1rem 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  .track_list ul li:nth-child(3n) {
    margin: 0 0 1rem 0;
  }
}
@media screen and (max-width: 1439px) {
  .track_list ul li {
    width: calc((100% - 1rem) / 2);
  }
  .track_list ul li:nth-child(2n) {
    margin: 0 0 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  .track_list ul li {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
.track_list ul li .img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: relative;
  border-radius: 0.5rem;
  background: #f7f7f7;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 1439px) {
  .track_list ul li .img {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .track_list ul li .img {
    width: 75px;
    height: 75px;
  }
}
.track_list ul li .img img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  -webkit-transition: -webkit-transform 5s ease-out;
  transition: -webkit-transform 5s ease-out;
  transition: transform 5s ease-out;
  transition: transform 5s ease-out, -webkit-transform 5s ease-out;
}
.track_list ul li .img:hover img {
  -webkit-transform: scale(2);
          transform: scale(2);
  -webkit-transition: -webkit-transform 20s ease-out;
  transition: -webkit-transform 20s ease-out;
  transition: transform 20s ease-out;
  transition: transform 20s ease-out, -webkit-transform 20s ease-out;
}
.track_list ul li p.com {
  font-size: 0.6rem;
  padding: 0 0 0.25rem 0;
  color: #97999f;
}
.track_list ul li p.phone {
  font-weight: bolder;
  padding: 0 0 0.25rem 0;
}
.track_list ul li p.item {
  font-size: 0.65rem;
}
.track_list ul li p.item a {
  font-weight: bolder;
  text-decoration: underline;
}
.track_list ul li div {
  padding: 0 2rem 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .track_list ul li div {
    padding: 0 1rem 0 0.5rem;
  }
}
.track_list ul li div .name {
  font-weight: bolder;
  padding: 0 0 0.25rem 0;
  font-size: 0.9rem;
  color: #3b3b3b;
  -webkit-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
}
@media screen and (max-width: 1439px) {
  .track_list ul li div .name {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .track_list ul li div .name {
    font-size: 0.75rem;
  }
}
.track_list ul li div .name:hover {
  color: #005bac;
}
.track_list ul li div .cc {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.35;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
@media screen and (max-width: 767px) {
  .track_list ul li div .cc {
    right: 0.5rem;
  }
}
.track_list ul li div .cc:hover {
  opacity: 1;
}





.indexBox {
  padding: 16px 0 0 0
}

.indexBox * {
  box-sizing: border-box
}

.indexBox .title_s {
  font-weight: bolder
}

.indexBox .item {
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
  padding: 16px 0 0 0
}

.indexBox .item li {
  width: calc((100% - 16px)/2);
  display: flex;
  padding: 16px;
  background: #fff;
  font-size: 16px;
  font-weight: bolder;
  line-height: 1.3;
  gap: 16px
}

@media screen and (max-width: 1439px) {
  .indexBox .item li {
      width: 100%
  }
}

@media screen and (max-width: 767px) {
  .indexBox .item li {
      flex-flow: row wrap;
      position: relative
  }
}

.indexBox .item li a {
  font-size: inherit
}

.indexBox .item li a.pro {
  display: flex;
  width: calc(100% - 100px - 16px)
}

@media screen and (max-width: 767px) {
  .indexBox .item li a.pro {
      width: 100%;
      flex-flow: row wrap;
      order: 2
  }
}

.indexBox .item li a.pro .img {
  width: 180px;
  flex-shrink: 0;
  border-radius: .25rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5
}

@media screen and (max-width: 767px) {
  .indexBox .item li a.pro .img {
      width: 100%;
      margin: 0 0 0 .5rem;
      order: 2;
      margin: 0
  }
}

.indexBox .item li a.pro .img img {
  max-width: 100%;
  max-height: 100%
}

.indexBox .item li a.pro .info {
  width: calc(100% - 180px);
  padding: 0 .75rem;
  border-right: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  flex-flow: row wrap;
  gap: 8px 0
}

@media screen and (max-width: 767px) {
  .indexBox .item li a.pro .info {
      width: 100%;
      order: 3;
      border: none;
      padding: .5rem 0 0 0;
      margin: .5rem 0 0 0;
      border-top: 1px dashed rgba(0, 0, 0, .1)
  }
}

.indexBox .item li a.pro .info .time {
  font-size: 16px;
  color: #ff8a00;
  font-weight: bolder
}

.indexBox .item li a.pro .info .sm {
  color: #82848b;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px
}

.indexBox .item li a.pro .info .name {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bolder
}

.indexBox .item li a.pro .info .money {
  width: 100%;
  text-align: right
}

.indexBox .item li a.pro .info .money>span {
  color: #82848b;
  text-decoration: line-through;
  line-height: 1;
  font-size: 13px
}

.indexBox .item li a.pro .info .money>span:after {
  content: "萬";
  padding: 0 0 0 .2rem;
  font-weight: 400
}

.indexBox .item li a.pro .info .money p {
  color: #ed3e3e;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-flow: row wrap;
  font-size: 15px;
  gap: 4px;
  width: 100%
}

.indexBox .item li a.pro .info .money p span {
  background: #ed3e3e;
  color: #f7ff00;
  padding: .25rem .5rem;
  line-height: 1
}

.indexBox .item li a.pro .info .money p span:before {
  content: "目前降";
  color: #fff;
  padding: 0 .25rem 0 0
}

.indexBox .item li a.pro .info .money p span:after {
  content: "%"
}

.indexBox .item li a.pro .info .money p b {
  font-size: 2rem;
  font-weight: bolder;
  line-height: 1
}

.indexBox .item li a.pro .info .money p b:after {
  content: "萬";
  font-size: 14px;
  padding: 0 0 0 .2rem
}

.indexBox .item li a.peo {
  color: #3b3b3b;
  width: 100px;
  flex-shrink: 0
}

@media screen and (max-width: 767px) {
  .indexBox .item li a.peo {
      order: 1;
      width: 100%
  }
}

@media screen and (max-width: 767px) {
  .indexBox .item li a.peo>div {
      display: flex;
      align-items: center;
      gap: 0 12px;
      width: 100%
  }
}

.indexBox .item li a.peo>div .p_img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  width: 100%;
  margin: 0 0 4px 0;
  border-radius: .25rem;
  overflow: hidden;
  aspect-ratio: 3/3
}

@media screen and (max-width: 767px) {
  .indexBox .item li a.peo>div .p_img {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, .1)
  }
}

.indexBox .item li a.peo>div .p_img img {
  max-height: 100%;
  max-width: 100%
}

.indexBox .item li a.peo>div .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center
}

.masterImg img {
  width: 120px
}

.ai_list {
  display: flex;
  gap: 16px
}

@media screen and (max-width: 767px) {
  .ai_list {
      flex-flow: column
  }
}

.ai_list label {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 16px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  opacity: .6;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: none;
  transition: opacity .15s ease-out, box-shadow .15s ease-out
}

@media screen and (max-width: 767px) {
  .ai_list label {
      padding: 16px
  }
}

.ai_list label:has(input[type=radio]:checked) {
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.ai_list label:nth-child(1) p.big {
  background: rgba(211, 189, 148, .15)
}

.ai_list label:nth-child(2) p.big {
  background: rgba(3, 200, 139, .15)
}

.ai_list label:nth-child(3) p.big {
  background: rgba(200, 10, 80, .15)
}

.ai_list label input {
  opacity: 0;
  position: absolute
}

.ai_list label img {
  width: 100%;
  max-width: 175px
}

@media screen and (max-width: 767px) {
  .ai_list label img {
      max-width: 100px
  }
}

.ai_list label p {
  line-height: 1.5
}

.ai_list label p.big {
  font-weight: bolder;
  font-size: 20px;
  line-height: 1;
  padding: 16px;
  width: 100%;
  text-align: center;
  border-radius: 8px
}

@media screen and (max-width: 767px) {
  .ai_list label p.big {
      padding: 8px 0;
      font-size: 18px
  }
}