@charset "UTF-8";

:root {
  --obc: rgba(240, 180, 60, 0.1);
}

.obc {
  background: var(--obc);
}

/* si = small item */
@media (max-width: 601px) {
  .si {
    grid-template-columns: 1fr;
  }

  .si2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .si3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .si4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .si5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .si6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.banner {
  background-color: #f5f5f5;
  padding: 30px 0;
  padding: clamp(20px, 12px + 2vw, 40px) 0;
}

.banner2 {
  padding: 30px 0 60px 0;
  padding: clamp(20px, 12px + 2vw, 40px) 0 clamp(40px, 6vw, 80px) 0;
  background-image: url('/skin/bbg2.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}

.zp {
  padding: 100px 0;
  padding: clamp(50px, 10vw, 150px) 0;
  background-image: url('/skin/zp.jpg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.banner2 ul li:nth-child(2) {
  text-align: right;
}

.banner2 img {
  height: 150px;
}

@media (max-width: 600px) {
  .banner2 {
    background-image: url('../images/bbg.svg');
    padding-bottom: 0;
    text-align: center;
    background-position: center top;
    background-size: auto 250px;
  }

  .banner2 ul li:nth-child(2) {
    text-align: center;
  }
}

.banner div h4,
.banner2 li h4 {
  color: #fa0;
  line-height: 1;
}

.banner div h6 {
  padding: 10px 0;
  padding: clamp(5px, 1vw, 15px) 0;
}

.zp div h6 {
  padding: 20px 0;
  padding: clamp(10px, 2vw, 30px) 0;
}

.banner div p {
  color: #666;
  margin-bottom: 15px;
  margin-bottom: clamp(10px, 1.5vw, 20px);
}

.zp div p {
  color: #444;
  margin-bottom: 30px;
  margin-bottom: clamp(20px, 3vw, 40px);
}

.banner2 li p {
  color: #666;
  margin: 15px 0;
  margin: clamp(10px, 1.5vw, 20px) 0;
}

.banner div h5 p {
  display: inline-block;
  color: #666;
}

.banner div h5 p i {
  font-size: 14px;
  color: #fa0;
  margin-right: 5px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .banner div h5 p {
    display: block;
  }
}

@media (min-width: 601px) {
  .banner div h5 p:first-of-type {
    margin-right: 15px;
  }

  .banner div h5 p:last-of-type {
    margin-left: 15px;
  }
}

article {
  margin-top: 60px;
  margin-top: clamp(40px, 6vw, 80px);
}

article cite {
  text-align: center;
}

article span {
  display: block;
  color: #666;
  margin-top: 5px;
}

article span i:first-of-type {
  margin-right: 20px;
}

article div {
  margin-top: 30px;
  margin-top: clamp(20px, 12px + 2vw, 40px);
}

article.only div {
  margin-top: 0;
}

article p.sub {
  text-align: center;
  margin-top: 30px;
  margin-top: clamp(20px, 12px + 2vw, 40px);
}

article p.sub a,
.banner div a,
.banner2 li a {
  display: inline-block;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  font-weight: 400;
  background: #3391ff;
  border-radius: 20px;
  color: #fff;
}

article p.sub a i,
.banner div a i,
.banner2 li a i {
  margin-left: 10px;
  color: #d00;
  font-size: 20px;
}

article p.sub a:hover,
.banner div a:hover,
.banner2 li a:hover {
  background: #60f;
  color: #fff;
}

.ecruit,
.ecruit2,
.ecruit3 {
  margin-top: 60px;
  margin-top: clamp(40px, 6vw, 80px);
}

.ecruit a,
.ecruit2 a,
.ecruit3 a {
  margin: 0 15px;
  font-size: 18px;
  font-weight: 400;
}

.tables {
  margin-top: 45px;
  margin-top: clamp(30px, 4.5vw, 60px);
}

.ecruit .rr,
.ecruit2 .rr2,
.ecruit3 .rr3 {
  color: #f80;
  border-bottom: solid #fa0 1px;
}

@media (max-width: 900px) {
  .rform {
    margin-top: 25px;
    margin-top: clamp(20px, 2.5vw, 30px);
  }
}

.rform ul li {
  float: left;
  width: 50%;
  text-align: center;
  margin-bottom: 20px;
}

.rform ul li:last-of-type {
  width: 100%;
}

.rform ul li input[type='text'],
.rform ul li input[type='password'],
.rform ul li input[type='file'],
.rform ul li input[type='email'],
.rform ul li input[type='url'],
.rform ul li input[type='tel'],
.rform ul li input[type='number'] {
  width: 90%;
}

.rform ul li textarea {
  width: 95%;
}

@media (max-width: 600px) {
  .rform ul li {
    float: none;
    width: 100%;
  }

  .rform ul li textarea {
    width: 90%;
  }
}

label {
  padding: 0 12px;
  margin-right: 10px;
}

.rform input[type='submit'] {
  background: #fa0;
}

.rform input[type='submit']:hover {
  background: #f40;
}

.banlx {
  height: 600px;
  overflow: hidden;
}

.banner_img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.banner_img li {
  width: 100%;
  height: 600px;
  display: inline-block;
  float: left;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 600px) {
  .banlx {
    height: 500px;
  }

  .banner_img li {
    height: 500px;
    background-size: auto 100%;
  }

  .banner_img li:first-of-type {
    background-size: 150% 100%;
  }
}

.banner_img li {
  position: relative;
}

.banner_img li div {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 1;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.banner_img li div h4 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3vw;
  text-align: left;
  color: #fff;
  margin-top: 250px;
}

.banner_img li div h6 {
  padding: 10px 3vw;
  padding: clamp(5px, 1vw, 15px) 3vw;
}

@media (max-width: 600px) {
  .banner_img li div h4 {
    margin-top: 200px;
  }
}

@media (min-width: 1200px) {
  .banner_img li div h4 {
    margin-top: 250px;
  }
}

.banner_list {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 14vw;
  margin-left: -7vw;
  z-index: 3;
  text-align: center;
}

.banner_list span {
  display: inline-block;
  cursor: pointer;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  margin: 0 5px;
}

.banner_list span:hover {
  border: 3px solid #f80;
}

.banner_list .spcss {
  background: rgba(255, 255, 255, 1);
}

.banner_left {
  position: absolute;
  top: 55%;
  left: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: -20px;
  transition: all 0.5s;
  z-index: 2;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}

.banner_left:hover,
.banner_right:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.banner_right {
  position: absolute;
  top: 55%;
  right: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: -20px;
  transition: all 0.5s;
  z-index: 2;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}

.banner_left img,
.banner_right img {
  height: 20px;
}

.bl {
  left: 0;
  bottom: -1px;
  z-index: 2;
}

.bl img {
  display: block;
}

article h4 {
  margin-bottom: 30px;
  margin-bottom: clamp(20px, 3vw, 40px);
}

.fbox {
  background: #fff8e9;
  padding: 30px;
  padding: clamp(20px, 3vw, 40px);
  border-radius: 15px;
}

input[type='text'],
input[type='password'],
input[type='file'],
input[type='email'],
input[type='url'],
input[type='tel'],
input[type='number'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='search'],
input[type='color'],
select,
textarea {
  border: 0;
  border-left: 0;
  border-bottom: solid #ccc 1px;
  background: none;
}

input[type='text']:hover,
input[type='password']:hover,
input[type='file']:hover,
input[type='email']:hover,
input[type='url']:hover,
input[type='tel']:hover,
input[type='number']:hover,
input[type='range']:hover,
input[type='date']:hover,
input[type='month']:hover,
input[type='week']:hover,
input[type='time']:hover,
input[type='datetime']:hover,
input[type='datetime-local']:hover,
input[type='search']:hover,
input[type='color']:hover,
select:hover,
textarea:hover {
  border: 0;
  border-left: 0;
  background: #fff;
  border-bottom: solid #888 1px;
}

input[type='text']:focus,
input[type='password']:focus,
input[type='file']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='tel']:focus,
input[type='number']:focus,
input[type='range']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='time']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='search']:focus,
input[type='color']:focus,
select:focus,
textarea:focus {
  border: 0;
  border-left: 0;
  border-bottom: solid var(--redpp) 1px;
  background: rgba(255, 0, 0, 0.1);
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #444;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #444;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #444;
}

input:-o-input-placeholder,
textarea:-o-input-placeholder {
  color: #444;
}

input:input-placeholder,
textarea:input-placeholder {
  color: #444;
}

label {
  background: #fff;
  border: 0;
}

label:hover {
  background: #fa0;
  border: 0;
  color: #fff;
}

caption,
thead th,
tbody th,
tfoot th,
th {
  font-weight: bold;
}

.tbox {
  background: #f5f5f5;
  padding: 20px;
}

.tbox strong {
  display: block;
  float: left;
  margin-top: 60px;
}

.tbox img {
  float: right;
  height: 120px;
}

.fwlc img {
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .banner_left,
  .banner_right {
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0 7px;
  }

  .banner_left img,
  .banner_right img {
    height: 14px;
  }

  .rform ul li input[type='text'],
  .rform ul li input[type='password'],
  .rform ul li input[type='file'],
  .rform ul li input[type='email'],
  .rform ul li input[type='url'],
  .rform ul li input[type='tel'],
  .rform ul li input[type='number'] {
    width: 100%;
  }
}

@media (min-width: 901px) {
  article h5 {
    float: left;
  }

  article span {
    float: right;
  }

  article div.id8,
  article div.id9 {
    column-count: auto;
  }

  .rform ul li.lbox label {
    margin: 5px;
  }
}
