.agree input[type=checkbox]::before, .agree input[type=checkbox] {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@property --gradient-color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #436fa0;
}
@property --gradient-color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #2f4382;
}
@property --gradient-rotate {
  syntax: "<angle>";
  inherits: false;
  initial-value: 90deg;
}
.mainArea .wrap {
  max-width: 1540px;
  padding: 0 20px;
}

.albumList {
  margin: 0 -20px;
}
.albumList .albumItem {
  cursor: pointer;
  padding: 0 20px;
}
.albumList .albumItem img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (max-width: 1024px) {
  .albumList {
    margin: 0 -15px;
  }
  .albumList .albumItem {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .albumList {
    margin: 0 -8px;
  }
  .albumList .albumItem {
    padding: 0 8px;
  }
}

.agree label {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  letter-spacing: 1px;
  padding-left: 28px;
}
.agree input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
.agree input[type=checkbox]::before {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
}
.agree input[type=checkbox]:checked {
  border-color: #d3812b;
}
.agree input[type=checkbox]:checked::before {
  width: 12px;
  height: 12px;
  background-color: #d3812b;
}
.agree a {
  display: inline-block;
  padding-bottom: 4px;
  color: #666666;
  border-bottom: 1px solid #929292;
}
@media (min-width: 1201px) {
  .agree a:hover {
    color: #d3812b;
    border-color: #d3812b;
  }
}
@media (max-width: 767px) {
  .agree {
    padding-top: 6px;
  }
}

.btnBox.agreeBtn {
  width: 100%;
  margin-top: 20px;
  display: none;
}
.btnBox.agreeBtn.show {
  display: block;
}
.btnBox.agreeBtn .btn {
  width: 200px;
  background-color: #d3812b;
  border-color: #d3812b;
}
.btnBox.agreeBtn .btn:hover {
  background-color: white;
  color: #d3812b;
}

.esgListBox {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  margin-bottom: 50px;
}
.esgListBox .wrap {
  max-width: 1540px;
}
.esgListBox .esgList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.esgListBox .esgList .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.esgListBox .esgList::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
  left: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .esgListBox .esgList::before {
    width: 100px;
  }
}
@media (max-width: 720px) {
  .esgListBox .esgList::before {
    width: 60px;
  }
}
.esgListBox .esgList::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #ffffff);
  right: 0;
  top: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 2;
  pointer-events: none;
  visibility: visible;
}
@media (max-width: 1200px) {
  .esgListBox .esgList::after {
    width: 100px;
  }
}
@media (max-width: 720px) {
  .esgListBox .esgList::after {
    width: 60px;
  }
}
.esgListBox .esgList.onLeft::before {
  visibility: hidden;
}
.esgListBox .esgList.onRight::after {
  visibility: hidden;
}
.esgListBox .esgList .esgItem {
  position: relative;
  width: auto;
  height: auto;
  min-width: 180px;
  text-align: center;
}
@media (max-width: 1200px) {
  .esgListBox .esgList .esgItem {
    min-width: 120px;
  }
}
.esgListBox .esgList .esgItem::before {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 16px;
  width: 1px;
  background-color: #e5e5e5;
  position: absolute;
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: 1;
}
.esgListBox .esgList .esgItem .title {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
}
.esgListBox .esgList .esgItem .title a {
  display: block;
  padding: 25px 43px;
}
.esgListBox .esgList .esgItem .title a[href="javascript:;"] {
  color: #333333;
}
@media (max-width: 1200px) {
  .esgListBox .esgList .esgItem .title a {
    padding: 21px 40px;
  }
}
@media (max-width: 840px) {
  .esgListBox .esgList .esgItem .title a {
    padding: 21px 18px;
  }
}
@media (max-width: 1200px) {
  .esgListBox .esgList .esgItem .title {
    font-size: 18px;
  }
}
.esgListBox .esgList .esgItem.current::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d3812b;
  bottom: 0;
  left: 0;
}
.esgListBox .esgList .esgItem.current .title a {
  color: #d3812b;
}