@charset "UTF-8";
@keyframes subNav {
  0% {
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: translate(0, 20px);
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes bookFlipOut {
  from {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(600px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    -webkit-transform: perspective(600px);
    transform: perspective(600px);
  }
}
@keyframes bookFlipIn {
  from {
    -webkit-transform: perspective(600px);
    transform: perspective(600px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(600px) rotate3d(0, 1, 0, -20deg);
  }
}
@keyframes sideFlipOut {
  from {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 70deg) translateX(10px);
    transform: perspective(600px) rotate3d(0, 1, 0, 70deg) translateX(10px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 90deg) translateX(10px);
    transform: perspective(600px) rotate3d(0, 1, 0, 90deg) translateX(10px);
  }
}
@keyframes sideFlipIn {
  from {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 90deg) translateX(10px);
    transform: perspective(600px) rotate3d(0, 1, 0, 90deg) translateX(10px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(600px) rotate3d(0, 1, 0, 60deg) translateX(10px);
    transform: perspective(600px) rotate3d(0, 1, 0, 60deg) translateX(10px);
  }
}
@keyframes popIn {
  0% {
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -ms-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  75% {
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  85% {
    -ms-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  95% {
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
html, body, select, option, .modal, input {
  font-family: "Noto Sans TC", "Heiti TC", "儷黑 Pro", "LiHei Pro", "文泉驛正黑", "WenQuanYi Zen Hei", "微軟正黑體", "Microsoft JhengHei", "新細明體", sans-serif, Arial, Helvetica, "Montserrat";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

body {
  padding-top: 150px;
}
@media screen and (max-width: 1000px) {
  body {
    padding-top: 50px;
  }
}

.editor {
  position: relative;
  line-height: 1.8;
  max-height: 350px;
  overflow: hidden;
}
.editor.active {
  max-height: none;
  padding-bottom: 40px;
}
.editor.active .expand {
  background: none;
  top: auto;
  bottom: 0;
}
.editor.active .expand:before {
  content: "收回";
}
.editor.active .expand:after {
  margin-left: 8px;
  content: "";
  font-family: "fontawesome";
}
.editor .expand {
  position: absolute;
  z-index: 5;
  font-size: 13px;
  color: #65a74e;
  text-align: center;
  line-height: 15px;
  padding-top: 35px;
  width: 100%;
  height: 50px;
  left: 0;
  top: 300px;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #fff 80%, #fff);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.editor .expand:before {
  content: "看更多";
}
.editor .expand:after {
  margin-left: 8px;
  content: "";
  font-family: "fontawesome";
}
@media screen and (max-width: 700px) {
  .editor .expand {
    text-align: center;
  }
}

.anchor {
  position: relative;
  top: -200px;
  pointer-events: none;
}

.normal-content h3, .normal-content h2, .normal-content h1, .normal-content p {
  margin-bottom: 1em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 40px;
  z-index: 999;
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 0;
    min-height: 50px;
    height: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
  }
  .header.active {
    height: 100vh;
    padding: 100px 0 50px;
    background: #3d4851;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: auto;
  }
  .header.active .cart {
    display: block !important;
  }
  .header.active .member {
    display: block !important;
  }
  .header.active .main-nav, .header.active .top-nav {
    height: auto;
    display: block;
  }
  .header.active .fixed-nav {
    height: 100px;
    border-bottom: 1px solid #65a74e;
  }
}
.header .fixed-nav {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .header .fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: #3d4851;
    width: 100%;
    height: 50px;
  }
}
.header .fixed-nav .menu {
  position: absolute;
  width: 25px;
  height: 15px;
  top: 15px;
  left: 1rem;
  z-index: 998;
  display: none;
  font-size: 25px;
  line-height: 50px;
  text-align: center;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.header .fixed-nav .menu.active {
  border: none;
}
.header .fixed-nav .menu.active::before {
  width: 25px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header .fixed-nav .menu.active::after {
  left: 0;
  width: 25px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header .fixed-nav .menu::after, .header .fixed-nav .menu::before {
  content: "";
  width: 25px;
  height: 3px;
  background: #fff;
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.header .fixed-nav .menu::after {
  width: 0;
  left: 50%;
}
@media screen and (max-width: 1000px) {
  .header .fixed-nav .menu {
    display: block;
  }
}
.header .fixed-nav .logo {
  position: absolute;
  top: 12px;
  left: 1rem;
  z-index: 1;
}
.header .fixed-nav .logo a {
  display: inline-block;
  width: 219px;
  height: 42px;
  background: url("../images/logo.png") no-repeat top left;
  background-size: 100% 100%;
}
@media screen and (max-width: 1000px) {
  .header .fixed-nav .logo {
    position: static;
    text-align: center;
    padding: 12.5px 0;
  }
  .header .fixed-nav .logo a {
    width: 130px;
    height: 25px;
  }
}
.header .fixed-nav .msb {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 50px;
  height: 51px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #fff;
  display: none;
}
.header .fixed-nav .msb::before {
  content: "";
  font-family: "fontawesome";
  text-align: center;
}
.header .fixed-nav .msb.active {
  background: #47525b;
}
.header .fixed-nav .msb.active::before {
  content: "";
}
@media screen and (max-width: 1000px) {
  .header .fixed-nav .msb {
    display: inline-block;
  }
}
.header .fixed-nav .cart {
  position: absolute;
  top: 75px;
  right: 1rem;
  z-index: 1;
}
.header .fixed-nav .cart span {
  display: inline-block;
  background: #65a74e;
  width: 26px;
  height: 26px;
  text-align: center;
  font-size: 14px;
  font-family: "Montserrat";
  color: #fff;
  margin-left: 8px;
  border-radius: 13px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
}
.header .fixed-nav .cart a {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  text-decoration: none;
  display: inline-block;
}
.header .fixed-nav .cart a::before {
  content: "";
  font-family: "fontawesome";
}
@media screen and (max-width: 1000px) {
  .header .fixed-nav .cart {
    top: 13px;
    right: 60px;
  }
  .header .fixed-nav .cart a {
    font-size: 20px;
  }
  .header .fixed-nav .cart span {
    position: absolute;
    top: -4px;
    right: -8px;
    width: auto;
    min-width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
  }
}
.header .fixed-nav .member {
  position: absolute;
  top: -34px;
  right: 1rem;
  z-index: 2;
}
.header .fixed-nav .member > a {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #3e4754;
  text-decoration: none;
  padding: 0 5px;
}
@media screen and (max-width: 1000px) {
  .header .fixed-nav .member > a {
    color: #fff;
  }
}
.header .fixed-nav .member > a img {
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-right: 3px;
}
.header .fixed-nav .member.is-login > a {
  min-width: 100px;
  padding: 0;
  font-size: 15px;
  border: 1px solid #cad2d9;
  border-radius: 13px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .header .fixed-nav .member.is-login > a {
    border-color: rgba(255, 255, 255, 0.2);
  }
}
.header .fixed-nav .member.is-login > a span {
  display: inline-block;
  background: #65a74e;
  width: 26px;
  height: 26px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-top: -1px;
  margin-left: -1px;
  border-radius: 13px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  margin-right: 5px;
}
.header .fixed-nav .member.is-login > a::after {
  content: "";
  font-family: "fontawesome";
  margin: 0 0.5em 0 1em;
  float: right;
  color: #65a74e;
}
.header .fixed-nav .member:hover.is-login ul {
  display: block;
  animation-name: subNav;
  animation-iteration-count: 1;
  animation-duration: 0.3s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.header .fixed-nav .member ul {
  position: relative;
  width: 100%;
  left: 0;
  top: 5px;
  background: #2c343b;
  padding: 5px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  display: none;
}
.header .fixed-nav .member ul li a {
  display: block;
  font-size: 13px;
  color: #fff;
  line-height: 35px;
  padding: 0 0.5em;
  text-decoration: none;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header .fixed-nav .member ul li a img {
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5em;
}
.header .fixed-nav .member ul li a:hover {
  background: #65a74e;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.header .fixed-nav .member ul::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #2c343b transparent;
}
@media screen and (max-width: 1000px) {
  .header .fixed-nav .member {
    top: 58px;
    right: auto;
    left: 1rem;
    display: none;
  }
}
.header .top-nav {
  z-index: 1;
  height: 40px;
  background: #f4f4f4;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.header .top-nav .links li {
  display: inline-block;
  margin-left: 1rem;
}
.header .top-nav .links li a {
  line-height: 40px;
  font-size: 13px;
  color: #3e4754;
  text-decoration: none;
}
.header .top-nav .links li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  .header .top-nav {
    position: relative;
    display: none;
    background: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .header .top-nav .links li {
    width: calc(49% - 1rem);
    margin-left: 0;
    margin-right: 1rem;
  }
  .header .top-nav .links li a {
    color: #fff;
    font-size: 14px;
  }
  .header .top-nav .links li a::before {
    content: "．";
  }
}
.header .main-nav {
  height: 65px;
  background: #3d4851;
  text-align: right;
  position: relative;
  z-index: 2;
}
.header .main-nav .links {
  display: inline-block;
  position: relative;
}
.header .main-nav .links li {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.header .main-nav .links li a {
  white-space: nowrap;
  display: inline-block;
  line-height: 65px;
  font-size: 15px;
  color: #fff;
  padding: 0 1vw;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.header .main-nav .links li.home a::before {
  content: "";
  font-family: "fontawesome";
  margin-right: 5px;
}
.header .main-nav .links li.download {
  float: right;
}
.header .main-nav .links li.download a {
  border: none;
  color: #65a74e;
}
.header .main-nav .links li.download a::before {
  content: "";
  font-family: "fontawesome";
  margin-right: 5px;
}
@media screen and (max-width: 1000px) {
  .header .main-nav .links li.download {
    float: none;
  }
}
.header .main-nav .links li.filter > a {
  display: none;
}
.header .main-nav .links li.filter::after {
  display: none;
}
@media screen and (min-width: 1000px) {
  .header .main-nav .links li.has-children:hover > ul {
    display: block;
  }
}
.header .main-nav .links li.has-children > ul {
  display: none;
}
.header .main-nav .links > li > a {
  line-height: 62px;
}
.header .main-nav .links > li:hover {
  border-bottom: 3px solid #65a74e;
}
.header .main-nav .links > li > ul {
  text-align: left;
  position: absolute;
  width: calc(100% - 70px);
  max-width: 700px;
  top: 65px;
  left: 0;
  background: #fff;
  white-space: nowrap;
  z-index: 999;
}
.header .main-nav .links > li > ul > li {
  display: inline-block;
  padding: 10px 5px;
}
.header .main-nav .links > li > ul > li > a {
  line-height: 30px;
  border: 1px solid #ddd;
  padding: 0 20px;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
}
.header .main-nav .links > li > ul > li > a:hover {
  background: #65a74e;
  color: #fff;
}
.header .main-nav .links > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 700px;
  background: #fff;
  white-space: normal;
  border-top: 1px solid #ddd;
  max-height: calc(100vh - 180px);
  overflow: auto;
  display: block !important;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.header .main-nav .links > li > ul > li > ul > li {
  width: 49%;
  display: inline-block;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header .main-nav .links > li > ul > li > ul > li:nth-child(1) > a, .header .main-nav .links > li > ul > li > ul > li:nth-child(2) > a {
  border-top: 0px dashed #ddd;
}
.header .main-nav .links > li > ul > li > ul > li > a {
  display: block;
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
}
.header .main-nav .links > li > ul > li > ul > li > a:hover {
  color: #65a74e;
}
.header .main-nav .links > li > ul > li > ul > li.has-children > a::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  background: url("../images/icon_group.png") no-repeat center left;
  background-size: auto 100%;
}
.header .main-nav .links > li > ul > li > ul > li > ul {
  display: block !important;
  padding: 6px 0;
}
.header .main-nav .links > li > ul > li > ul > li > ul > li > a {
  font-size: 13px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
}
.header .main-nav .links > li > ul > li > ul > li > ul > li > a::before {
  content: "．";
}
.header .main-nav .links > li > ul > li > ul > li > ul > li > a:hover {
  color: #fff;
  background: #65a74e;
}
.header .main-nav .links > li > ul a {
  line-height: 45px;
  color: #3e4754;
}
@media screen and (max-width: 1000px) {
  .header .main-nav {
    display: none;
    position: relative;
    height: 0;
    background: #212A30;
    text-align: left;
  }
  .header .main-nav .links {
    display: block;
  }
  .header .main-nav .links li {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .main-nav .links li a {
    line-height: 50px;
    padding: 0 1rem;
    display: block;
  }
  .header .main-nav .links li:hover {
    border-bottom: 0px solid #65a74e;
  }
  .header .main-nav .links li.active > ul {
    display: block !important;
  }
  .header .main-nav .links li.has-children {
    position: relative;
  }
  .header .main-nav .links li.has-children > a {
    display: inline-block;
  }
  .header .main-nav .links li.has-children::after {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: "";
    font-family: "fontawesome";
    right: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    top: 20px;
  }
  .header .main-nav .links li.has-children.active::after {
    content: "";
    color: #fff;
  }
  .header .main-nav .links > li {
    display: block;
  }
  .header .main-nav .links > li > ul {
    position: static;
    width: 100%;
  }
  .header .main-nav .links > li > ul a {
    line-height: 50px;
  }
  .header .main-nav .links > li > ul > li {
    display: block;
    background: #3D4851;
    padding: 0;
  }
  .header .main-nav .links > li > ul > li > a {
    color: #fff;
    margin-left: 1em;
    line-height: 50px;
    border: none;
    display: block;
  }
  .header .main-nav .links > li > ul > li > a:hover {
    background: none;
  }
  .header .main-nav .links > li > ul > li > ul {
    position: static;
    max-height: none;
    border: none;
  }
  .header .main-nav .links > li > ul > li > ul > li {
    background: #55616B;
    width: 100%;
  }
  .header .main-nav .links > li > ul > li > ul > li > a {
    margin-left: 2em;
    border: none;
    color: #fff;
  }
  .header .main-nav .links > li > ul > li > ul > li > a:hover {
    color: #fff;
  }
  .header .main-nav .links > li > ul > li > ul > li.has-children > a::before {
    background-image: url("../images/icon_group_w.png");
  }
  .header .main-nav .links > li > ul > li > ul > li > ul {
    padding-left: 2rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none !important;
  }
  .header .main-nav .links > li > ul > li > ul > li > ul > li {
    display: inline-block;
    border: none;
    margin: 3px;
  }
  .header .main-nav .links > li > ul > li > ul > li > ul > li > a {
    line-height: 30px;
    font-size: 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
  }
  .header .main-nav .links > li > ul > li > ul > li > ul > li > a::before {
    display: none;
  }
}
.header .search-nav {
  height: 45px;
  background: #47525b;
  position: relative;
  z-index: 1;
}
.header .search-nav .search {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  z-index: 1;
  float: right;
  margin: 7.5px 80px 7.5px 10px;
}
.header .search-nav .search select {
  vertical-align: middle;
  display: inline-block;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  padding-left: 1em;
  background-color: #65a74e;
  height: 30px;
  flex: 0 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  border-radius: 15px 0 0 15px;
  -moz-border-radius: 15px 0 0 15px;
  -webkit-border-radius: 15px 0 0 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header .search-nav .search option {
  color: #3e4754;
}
.header .search-nav .search input[type=text] {
  vertical-align: middle;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  font-size: 14px;
  color: #fff;
  width: 180px;
  padding: 0 1em;
  padding-right: 30px;
  background: #2c343b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  border-radius: 0 15px 15px 0;
  -moz-border-radius: 0 15px 15px 0;
  -webkit-border-radius: 0 15px 15px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header .search-nav .search input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  vertical-align: middle;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.header .search-nav .search::after {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  font-family: "fontawesome";
  text-align: center;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .header .search-nav .search {
    float: none;
    margin: 1%;
    margin-bottom: 20px;
    z-index: 3;
  }
  .header .search-nav .search form {
    display: flex;
  }
  .header .search-nav .search form select {
    width: auto;
  }
  .header .search-nav .search form input[type=text] {
    width: 100%;
  }
}
.header .search-nav .links {
  white-space: nowrap;
  overflow-x: hidden;
}
.header .search-nav .links li {
  display: inline-block;
  margin-left: 1rem;
}
.header .search-nav .links li a {
  line-height: 45px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
.header .search-nav .links li a::before {
  content: "";
  font-family: "fontawesome";
  margin-right: 0.3em;
}
.header .search-nav .links li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  .header .search-nav {
    position: relative;
    top: 50px;
    width: 100%;
    left: 0;
    height: auto;
    padding: 1rem;
    z-index: 3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
  }
  .header .search-nav.active {
    display: block;
  }
  .header .search-nav .links {
    white-space: normal;
  }
  .header .search-nav .links li {
    width: 17%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 1%;
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .header .search-nav .links li a {
    line-height: 30px;
  }
}
@media screen and (max-width: 600px) {
  .header .search-nav .links li {
    width: 30%;
  }
}
@media screen and (max-width: 250px) {
  .header .search-nav .links li {
    width: 47%;
  }
}

.banner {
  width: 100%;
}
.banner .swiper-container {
  width: 100%;
  height: auto;
}
.banner .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: 500px;
}
.banner .swiper-container .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.36);
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .banner .swiper-container .swiper-wrapper .swiper-slide {
    height: 50vh;
  }
  .banner .swiper-container .swiper-wrapper .swiper-slide::after {
    display: none;
  }
}
.banner .swiper-container .swiper-button-disabled {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.banner .swiper-container .swiper-pagination-bullet-active {
  background: #65a74e;
}
.banner .swiper-container .swiper-button-next, .banner .swiper-container .swiper-button-prev {
  outline: none;
}
.banner.inverse .intro a {
  right: auto;
  left: 7%;
}
.banner .intro {
  position: relative;
  height: 100%;
}
.banner .intro a {
  position: absolute;
  text-decoration: none;
  max-width: 40vw;
  min-width: 350px;
  color: #fff;
  text-shadow: #000 0 0 3px;
  top: 50%;
  right: 7%;
  z-index: 2;
  border: 15px solid #fff;
  padding: 10px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 700px) {
  .banner .intro a {
    top: auto;
    bottom: 0;
    left: 0 !important;
    width: 100%;
    padding: 1rem;
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    max-width: none;
    min-width: 0;
    border: none;
    background: rgba(0, 0, 0, 0.46);
  }
}
.banner .intro:hover p {
  text-decoration: underline;
}
.banner .intro h3 {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  display: -webkit-box;
  max-height: 2.4em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 700px) {
  .banner .intro h3 {
    font-size: 20px;
    max-height: 1.2em;
    -webkit-line-clamp: 1;
    border-left: 4px solid #65a74e;
    padding-left: 0.5rem;
  }
}
.banner .intro p {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 7vh;
  display: -webkit-box;
  max-height: 4.2em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 700px) {
  .banner .intro p {
    font-size: 14px;
    margin-bottom: 0;
    max-height: 2.8em;
    -webkit-line-clamp: 2;
    padding-left: 0.8rem;
  }
}
.banner .intro .deco {
  font-size: 20px;
  line-height: 41px;
  color: #fff;
  margin-bottom: 7vh;
}
.banner .intro .deco::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 41px;
  background: url("../images/icon_ylib.png") no-repeat center center;
  background-size: 100% 100%;
  margin-right: 8px;
  vertical-align: middle;
}
@media screen and (max-width: 700px) {
  .banner .intro .deco {
    display: none;
  }
}

.group-books4 {
  padding: 30px 0;
}
.group-books4::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.group-books4 .group-book {
  position: relative;
  border-right: 1px solid #f4f4f4;
  padding: 0 25px;
  width: 25%;
  float: left;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.group-books4 .group-book:nth-child(4n) {
  border: none;
}
@media screen and (max-width: 1000px) {
  .group-books4 .group-book {
    width: 33.33%;
  }
  .group-books4 .group-book:nth-child(4n) {
    border-right: 1px solid #f4f4f4;
  }
  .group-books4 .group-book:nth-child(3n) {
    border: none;
  }
}
@media screen and (max-width: 700px) {
  .group-books4 .group-book {
    width: 50%;
  }
  .group-books4 .group-book:nth-child(3n) {
    border-right: 1px solid #f4f4f4;
  }
  .group-books4 .group-book:nth-child(2n) {
    border: none;
  }
}
@media screen and (max-width: 600px) {
  .group-books4 .group-book {
    width: 100%;
    border: none;
  }
}
.group-books4 .group-book > div > span {
  display: block;
}
.group-books4 .group-book a {
  text-decoration: none;
}
.group-books4 .group-book a > span {
  display: block;
}
.group-books4 .group-book:hover .thumb {
  -ms-transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.group-books4 .group-book:hover .thumb3d {
  animation-name: bookFlipIn;
}
.group-books4 .group-book:hover .thumb3d > span {
  -webkit-box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
  box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
}
.group-books4 .group-book:hover .thumb3d > span img {
  opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  filter: alpha(opacity=30);
}
.group-books4 .group-book:hover .thumb3d > span::after {
  animation-name: sideFlipIn;
}
.group-books4 .group-book:hover .thumb3d .cart {
  margin-left: 5px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.group-books4 .group-book:hover .thumb3d .discover {
  margin-right: 5px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.group-books4 .group-book:hover > .cart {
  opacity: 0.4;
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  filter: alpha(opacity=40);
}
.group-books4 .group-book .cart {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0px;
  right: 30px;
  z-index: 5;
  background: url("../images/icon_buy.png") no-repeat center center;
  background-size: 19.5px 19px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.group-books4 .group-book .cart:hover {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
@media screen and (max-width: 700px) {
  .group-books4 .group-book .cart {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    filter: alpha(opacity=100);
  }
}
.group-books4 .group-book .discount {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #65a74e;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
}
.group-books4 .group-book .cat {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #65a74e;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.group-books4 .group-book .life {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #ff4141;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.group-books4 .group-book .rank {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 15px 0 8px;
  background: #f7b100;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.group-books4 .group-book .rank::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 11px 0;
  border-color: transparent #fff transparent transparent;
}
.group-books4 .group-book .thumb {
  text-align: center;
  margin-bottom: 20px;
  height: 189px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.group-books4 .group-book .thumb img {
  max-height: 189px;
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .group-books4 .group-book .thumb img {
    max-height: 220px;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .group-books4 .group-book .thumb {
    height: 220px;
  }
}
.group-books4 .group-book .thumb3d {
  text-align: center;
  margin-bottom: 20px;
  height: 189px;
  animation-name: bookFlipOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.group-books4 .group-book .thumb3d > span {
  display: inline-block;
  position: relative;
  background: #3e4754;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.group-books4 .group-book .thumb3d > span img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.group-books4 .group-book .thumb3d > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 100%;
  background-image: linear-gradient(#777, #3d4851);
  animation-name: sideFlipOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
.group-books4 .group-book .thumb3d .cart {
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  margin-top: -20px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background-image: url("../images/icon_cart.png");
  background-size: 25px 20px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.group-books4 .group-book .thumb3d .cart:hover {
  border: 1px solid #fff;
}
.group-books4 .group-book .thumb3d .discover {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -20px;
  margin-right: 15px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 40px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  color: #fff;
  text-decoration: none;
}
.group-books4 .group-book .thumb3d .discover:hover {
  border: 1px solid #fff;
}
.group-books4 .group-book .thumb3d .discover::after {
  content: "";
  font-family: "fontawesome";
  font-size: 22px;
}
.group-books4 .group-book .thumb3d img {
  max-height: 189px;
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .group-books4 .group-book .thumb3d img {
    max-height: 220px;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .group-books4 .group-book .thumb3d {
    height: 220px;
  }
}
.group-books4 .group-book h3 {
  color: #3e4754;
  font-size: 15px;
  line-height: 22px;
  display: block;
  display: -webkit-box;
  height: 44px;
  max-height: 44px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 700px) {
  .group-books4 .group-book h3 {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    max-height: 48px;
  }
}
.group-books4 .group-book .author {
  text-align: center;
  font-size: 13px;
  line-height: 13px;
  color: #3e4754;
  margin: 0 auto 20px;
  max-height: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.group-books4 .group-book .author::before {
  content: "";
  font-family: "fontawesome";
  color: #65a74e;
  margin-right: 5px;
}
.group-books4 .group-book .price {
  display: block;
  text-align: center;
  margin: 0 auto;
  line-height: 40px;
  font-weight: 100;
  color: #c92929;
}
.group-books4 .group-book .price span {
  position: relative;
  font-size: 40px;
  font-family: "Montserrat";
  margin-left: 20px;
}
.group-books4 .group-book .price span.dis {
  font-size: 12px;
  color: #65a74e;
  line-height: 18px;
  height: 18px;
  padding: 0 6px;
  border: 1px solid #65a74e;
  width: auto;
  display: inline-block;
  margin: 0 5px;
}
.group-books4 .group-book .price span.dis::after {
  display: none;
}
.group-books4 .group-book .price span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -20px;
  width: 15px;
  height: 15px;
  background: url("../images/icon_money.png") no-repeat center center;
  background-size: 14px 14px;
}

.search-books4 {
  padding: 30px 0;
}
.search-books4::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.search-books4.list .group-book {
  width: 100%;
  float: none;
  border: none;
  border-bottom: 1px solid #ddd !important;
}
.search-books4.list .group-book .thumb3d {
  width: 230px;
  float: left;
}
@media screen and (max-width: 700px) {
  .search-books4.list .group-book .thumb3d {
    width: 100%;
    float: none;
  }
}
.search-books4.list .group-book .thumb {
  width: 230px;
  float: left;
}
@media screen and (max-width: 700px) {
  .search-books4.list .group-book .thumb {
    width: 100%;
    float: none;
  }
}
.search-books4.list .group-book > div::after, .search-books4.list .group-book > a::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.search-books4.list .group-book h3 {
  text-align: left;
  height: auto;
  max-height: none;
  -webkit-line-clamp: 10;
  max-width: none;
  margin: 0 auto 10px;
}
.search-books4.list .group-book .author {
  text-align: left;
  max-height: none;
  line-height: 1.5;
  -webkit-line-clamp: 10;
}
.search-books4.list .group-book .price {
  text-align: left;
  margin: 0 auto 10px;
  line-height: 20px;
}
.search-books4.list .group-book .price span {
  font-size: 18px;
}
.search-books4.list .group-book .fulldetail {
  display: block;
  overflow: auto;
}
.search-books4.grid .group-book .fulldetail {
  display: none;
}
.search-books4 .group-book {
  position: relative;
  border-right: 1px solid #f4f4f4;
  padding: 0 25px;
  width: 25%;
  float: left;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.search-books4 .group-book:nth-child(4n) {
  border: none;
}
@media screen and (max-width: 1000px) {
  .search-books4 .group-book {
    width: 33.33%;
  }
  .search-books4 .group-book:nth-child(4n) {
    border-right: 1px solid #f4f4f4;
  }
  .search-books4 .group-book:nth-child(3n) {
    border: none;
  }
}
@media screen and (max-width: 700px) {
  .search-books4 .group-book {
    width: 50%;
  }
  .search-books4 .group-book:nth-child(3n) {
    border-right: 1px solid #f4f4f4;
  }
  .search-books4 .group-book:nth-child(2n) {
    border: none;
  }
}
@media screen and (max-width: 600px) {
  .search-books4 .group-book {
    width: 100%;
    border: none;
  }
}
.search-books4 .group-book > div > span {
  display: block;
}
.search-books4 .group-book a {
  text-decoration: none;
}
.search-books4 .group-book a > span {
  display: block;
}
.search-books4 .group-book:hover .thumb {
  -ms-transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.search-books4 .group-book:hover .thumb > span img {
  opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  filter: alpha(opacity=30);
}
.search-books4 .group-book:hover .thumb .cart {
  margin-left: 5px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.search-books4 .group-book:hover .thumb .discover {
  margin-right: 5px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.search-books4 .group-book:hover .thumb3d {
  animation-name: bookFlipIn;
}
.search-books4 .group-book:hover .thumb3d > span {
  -webkit-box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
  box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
}
.search-books4 .group-book:hover .thumb3d > span img {
  opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  filter: alpha(opacity=30);
}
.search-books4 .group-book:hover .thumb3d > span::after {
  animation-name: sideFlipIn;
}
.search-books4 .group-book:hover .thumb3d .cart {
  margin-left: 5px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.search-books4 .group-book:hover .thumb3d .discover {
  margin-right: 5px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.search-books4 .group-book:hover > .cart {
  opacity: 0.4;
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  filter: alpha(opacity=40);
}
.search-books4 .group-book .fulldetail {
  color: #3e4754;
  font-size: 15px;
  line-height: 22px;
  margin: 0 auto 30px;
}
.search-books4 .group-book .fulldetail p {
  width: 47%;
  display: inline-block;
  margin-right: 2%;
  margin-bottom: 5px;
}
.search-books4 .group-book .fulldetail p span {
  color: #65a74e;
}
.search-books4 .group-book .fulldetail p a {
  color: #3e4754;
  text-decoration: underline;
}
.search-books4 .group-book .fulldetail p a:hover {
  color: #65a74e;
}
@media screen and (max-width: 700px) {
  .search-books4 .group-book .fulldetail p {
    width: 100%;
    margin-right: 0;
  }
}
.search-books4 .group-book .cart {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0px;
  right: 30px;
  z-index: 5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.search-books4 .group-book .cart:hover {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
@media screen and (max-width: 700px) {
  .search-books4 .group-book .cart {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    filter: alpha(opacity=100);
  }
}
.search-books4 .group-book .discount {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #65a74e;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
}
.search-books4 .group-book .cat {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #65a74e;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.search-books4 .group-book .life {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #ff4141;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.search-books4 .group-book .rank {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 15px 0 8px;
  background: #f7b100;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.search-books4 .group-book .rank::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 11px 0;
  border-color: transparent #fff transparent transparent;
}
.search-books4 .group-book .thumb {
  text-align: center;
  margin-bottom: 20px;
  height: 189px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.search-books4 .group-book .thumb > span {
  display: inline-block;
  position: relative;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.search-books4 .group-book .thumb > span img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.search-books4 .group-book .thumb .cart {
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  margin-top: -20px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  z-index: 5;
  border: 1px solid rgba(101, 167, 78, 0.3);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.search-books4 .group-book .thumb .cart::after {
  content: "";
  font-family: "fontawesome";
  font-size: 22px;
  color: #65a74e;
}
.search-books4 .group-book .thumb .cart:hover {
  border: 1px solid #65a74e;
}
.search-books4 .group-book .thumb .discover {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -20px;
  margin-right: 15px;
  z-index: 5;
  border: 1px solid rgba(101, 167, 78, 0.3);
  line-height: 40px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  color: #65a74e;
  text-decoration: none;
}
.search-books4 .group-book .thumb .discover:hover {
  border: 1px solid #65a74e;
}
.search-books4 .group-book .thumb .discover::after {
  content: "";
  font-family: "fontawesome";
  font-size: 22px;
}
.search-books4 .group-book .thumb img {
  max-height: 189px;
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .search-books4 .group-book .thumb img {
    max-height: 220px;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .search-books4 .group-book .thumb {
    height: 220px;
  }
}
.search-books4 .group-book .thumb3d {
  text-align: center;
  margin-bottom: 20px;
  height: 189px;
  animation-name: bookFlipOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.search-books4 .group-book .thumb3d > span {
  display: inline-block;
  position: relative;
  background: #3e4754;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.search-books4 .group-book .thumb3d > span img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.search-books4 .group-book .thumb3d > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 100%;
  background-image: linear-gradient(#777, #3d4851);
  animation-name: sideFlipOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
.search-books4 .group-book .thumb3d .cart {
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  margin-top: -20px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.search-books4 .group-book .thumb3d .cart::after {
  content: "";
  font-family: "fontawesome";
  font-size: 22px;
  color: #fff;
}
.search-books4 .group-book .thumb3d .cart:hover {
  border: 1px solid #fff;
}
.search-books4 .group-book .thumb3d .discover {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -20px;
  margin-right: 15px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 40px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  color: #fff;
  text-decoration: none;
}
.search-books4 .group-book .thumb3d .discover:hover {
  border: 1px solid #fff;
}
.search-books4 .group-book .thumb3d .discover::after {
  content: "";
  font-family: "fontawesome";
  font-size: 22px;
}
.search-books4 .group-book .thumb3d img {
  max-height: 189px;
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .search-books4 .group-book .thumb3d img {
    max-height: 220px;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .search-books4 .group-book .thumb3d {
    height: 220px;
  }
}
.search-books4 .group-book h3 {
  color: #3e4754;
  font-size: 15px;
  line-height: 22px;
  display: block;
  display: -webkit-box;
  height: 44px;
  max-height: 44px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 700px) {
  .search-books4 .group-book h3 {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    max-height: 48px;
  }
}
.search-books4 .group-book .author {
  text-align: center;
  font-size: 13px;
  line-height: 13px;
  color: #3e4754;
  margin: 0 auto 20px;
  max-height: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-books4 .group-book .author::before {
  content: "";
  font-family: "fontawesome";
  color: #65a74e;
  margin-right: 5px;
}
.search-books4 .group-book .price {
  display: block;
  text-align: center;
  margin: 0 auto;
  line-height: 40px;
  font-weight: 100;
  color: #c92929;
}
.search-books4 .group-book .price span {
  position: relative;
  font-size: 40px;
  font-family: "Montserrat";
  margin-left: 20px;
}
.search-books4 .group-book .price span.dis {
  font-size: 12px;
  color: #65a74e;
  line-height: 18px;
  height: 18px;
  padding: 0 6px;
  border: 1px solid #65a74e;
  width: auto;
  display: inline-block;
  margin: 0 5px;
}
.search-books4 .group-book .price span.dis::after {
  display: none;
}
.search-books4 .group-book .price span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -20px;
  width: 15px;
  height: 15px;
  background: url("../images/icon_money.png") no-repeat center center;
  background-size: 14px 14px;
}

.swiper {
  width: 100%;
  padding: 50px 0;
  position: relative;
}
.swiper h2 {
  font-size: 17px;
  line-height: 2;
  color: #3e4754;
  font-weight: 500;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}
.swiper .group-filter {
  text-align: right;
  margin-top: -25px;
}
@media screen and (max-width: 700px) {
  .swiper .group-filter {
    margin-top: 20px;
    text-align: center;
  }
  .swiper .group-filter a::before {
    display: none;
  }
}
.swiper .group-filter a {
  font-size: 17px;
  text-decoration: none;
  line-height: 17px;
  color: #c2c2c2;
  font-weight: 500;
  padding: 0 15px;
  border-right: 1px solid #ddd;
  cursor: pointer;
}
.swiper .group-filter a::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 17px;
  background: url("../images/icon_group.png") no-repeat center left;
  background-size: auto 100%;
  opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  filter: alpha(opacity=30);
}
.swiper .group-filter a:last-child {
  border: none;
}
.swiper .group-filter a:hover, .swiper .group-filter a.selected {
  color: #3e4754;
}
.swiper .group-filter a:hover::before, .swiper .group-filter a.selected::before {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.swiper .swiper-container {
  width: 100%;
}
.swiper .swiper-container.swiper-container-books4-col2 .swiper-wrapper {
  height: 700px !important;
}
@media screen and (max-width: 800px) {
  .swiper .swiper-container.swiper-container-books4-col2 .swiper-wrapper {
    height: auto !important;
  }
}
.swiper .swiper-container.swiper-container-article3 .swiper-wrapper .swiper-slide {
  border: none !important;
  padding: 0 33px;
}
.swiper .swiper-container.swiper-container-article3 .swiper-wrapper .swiper-slide .thumb {
  text-align: center;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.swiper .swiper-container.swiper-container-article3 .swiper-wrapper .swiper-slide .thumb img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .swiper .swiper-container.swiper-container-article3 .swiper-wrapper .swiper-slide .thumb img {
    height: auto;
  }
}
.swiper .swiper-container.swiper-container-article3 .swiper-wrapper .swiper-slide h3 {
  max-width: none;
}
.swiper .swiper-container.swiper-container-article3 .swiper-wrapper .swiper-slide:hover .thumb {
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  filter: alpha(opacity=70);
}
.swiper .swiper-container .swiper-wrapper {
  padding: 50px 0;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  border-right: 1px solid #f4f4f4;
  padding: 0 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:last-child {
  border: none;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide > div {
  text-decoration: none;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide > div > span {
  display: block;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide > a {
  text-decoration: none;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide > a > span {
  display: block;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:hover .thumb {
  -ms-transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:hover .thumb3d {
  animation-name: bookFlipIn;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:hover .thumb3d > span {
  -webkit-box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
  box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.4);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:hover .thumb3d > span img {
  opacity: 0.3;
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  filter: alpha(opacity=30);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:hover .thumb3d > span::after {
  animation-name: sideFlipIn;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:hover .thumb3d .cart {
  margin-left: 5px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:hover .thumb3d .discover {
  margin-right: 5px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide:hover > .cart {
  opacity: 0.4;
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  filter: alpha(opacity=40);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .cart {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0px;
  right: 30px;
  z-index: 5;
  background: url("../images/icon_buy.png") no-repeat center center;
  background-size: 19.5px 19px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .cart:hover {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  filter: alpha(opacity=100);
}
@media screen and (max-width: 700px) {
  .swiper .swiper-container .swiper-wrapper .swiper-slide .cart {
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    filter: alpha(opacity=100);
  }
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .discount {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #65a74e;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .cat {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #65a74e;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .life {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #ff4141;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .rank {
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 15px 0 8px;
  background: #f7b100;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .rank::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 11px 0;
  border-color: transparent #fff transparent transparent;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb {
  text-align: center;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb img {
  max-width: 100%;
  max-height: 189px;
  height: auto;
  width: auto;
}
@media screen and (max-width: 700px) {
  .swiper .swiper-container .swiper-wrapper .swiper-slide .thumb img {
    max-width: 100%;
    height: 220px;
  }
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d {
  text-align: center;
  margin-bottom: 20px;
  height: 189px;
  animation-name: bookFlipOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d > span {
  display: inline-block;
  position: relative;
  background: #3e4754;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d > span img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 100%;
  background-image: linear-gradient(#777, #3d4851);
  animation-name: sideFlipOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d .cart {
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  margin-top: -20px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  background-image: url("../images/icon_cart.png");
  background-size: 25px 20px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d .cart:hover {
  border: 1px solid #fff;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d .discover {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -20px;
  margin-right: 15px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 40px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  color: #fff;
  text-decoration: none;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d .discover:hover {
  border: 1px solid #fff;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d .discover::after {
  content: "";
  font-family: "fontawesome";
  font-size: 22px;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d img {
  max-height: 189px;
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d img {
    max-height: 220px;
    max-width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .swiper .swiper-container .swiper-wrapper .swiper-slide .thumb3d {
    height: 220px;
  }
}
.swiper .swiper-container .swiper-wrapper .swiper-slide h3 {
  color: #3e4754;
  font-size: 15px;
  line-height: 22px;
  display: block;
  display: -webkit-box;
  height: 44px;
  max-height: 44px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 700px) {
  .swiper .swiper-container .swiper-wrapper .swiper-slide h3 {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    max-height: 48px;
  }
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .author {
  text-align: center;
  font-size: 13px;
  line-height: 13px;
  color: #3e4754;
  margin: 0 auto 20px;
  max-height: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .author::before {
  content: "";
  font-family: "fontawesome";
  color: #65a74e;
  margin-right: 5px;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .price {
  display: block;
  text-align: center;
  margin: 0 auto;
  line-height: 40px;
  font-weight: 100;
  color: #c92929;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .price span {
  position: relative;
  font-size: 40px;
  font-family: "Montserrat";
  margin-left: 20px;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .price span.dis {
  font-size: 12px;
  color: #65a74e;
  line-height: 18px;
  height: 18px;
  padding: 0 6px;
  border: 1px solid #65a74e;
  width: auto;
  display: inline-block;
  margin: 0 5px;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .price span.dis::after {
  display: none;
}
.swiper .swiper-container .swiper-wrapper .swiper-slide .price span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: -20px;
  width: 15px;
  height: 15px;
  background: url("../images/icon_money.png") no-repeat center center;
  background-size: 14px 14px;
}
.swiper .swiper-container .swiper-button-disabled {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.swiper .swiper-container .swiper-pagination-bullet-active {
  background: #65a74e;
}
.swiper .swiper-container .swiper-button-next, .swiper .swiper-container .swiper-button-prev {
  background: none;
  outline: none;
}
.swiper .swiper-container .swiper-button-next::after, .swiper .swiper-container .swiper-button-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 23px;
  text-align: center;
  color: #999;
  font-size: 18px;
  border: 1px solid #999;
  font-family: "fontawesome";
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
@media screen and (max-width: 700px) {
  .swiper .swiper-container .swiper-button-next::after, .swiper .swiper-container .swiper-button-prev::after {
    border: none;
    font-size: 25px;
    background: none;
  }
}
.swiper .swiper-container .swiper-button-next {
  right: 0px;
}
.swiper .swiper-container .swiper-button-prev {
  left: 0px;
}
.swiper .swiper-container .swiper-button-prev::after {
  content: "";
}

.breadcrumb {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 30px 1rem;
}
.breadcrumb li {
  display: inline-block;
  font-size: 12px;
  color: #65a74e;
  line-height: 12px;
}
.breadcrumb li + li::before {
  content: ">";
  padding: 0 3px;
}
.breadcrumb a {
  color: #3e4754;
  font-size: 12px;
  text-decoration: none;
  line-height: 12px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.cart-content {
  background: #f4f4f4;
}
.cart-content h2 {
  font-size: 17px;
  color: #3e4754;
  line-height: 2;
  font-weight: 500;
  text-align: center;
  margin: 20px auto;
  letter-spacing: 0.05em;
}
.cart-content .main {
  max-width: 1320px;
  margin: 0 auto 0;
  padding: 50px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cart-content .progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  text-align: center;
  padding: 50px 0;
  border-bottom: 1px solid #ddd;
}
.cart-content .progress > div {
  display: inline-block;
  width: 32%;
  max-width: 250px;
  position: relative;
}
.cart-content .progress > div::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  border-top: 1px solid #ddd;
  top: 20px;
  right: 50%;
  z-index: 1;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.cart-content .progress > div:first-child::after {
  display: none;
}
.cart-content .progress > div span:first-child {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
  color: #ccc;
  border: 1px solid #ddd;
  background: #fff;
  position: relative;
  z-index: 2;
  font-family: "Montserrat";
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.cart-content .progress > div span:last-child {
  display: inline-block;
  position: absolute;
  font-size: 14px;
  color: #3e4754;
  bottom: -30px;
  left: 50%;
  white-space: nowrap;
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.cart-content .progress > div.active span:first-child {
  background: #65a74e;
  color: #fff;
  border-color: #65a74e;
  animation-name: popIn;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}
.cart-content .progress > div.active::after {
  border-color: #65a74e;
}
.cart-content .progress > div.active span:last-child {
  color: #65a74e;
  font-weight: 500;
}
.cart-content .progress > div.done span:first-child {
  color: #65a74e;
  border-color: #65a74e;
}
.cart-content .progress > div.done::after {
  border-top: 1px solid #65a74e;
}
.cart-content ul.action {
  margin-top: 30px;
}

.main-content {
  padding-top: 1rem;
}
.main-content .banner-title {
  font-size: 28px;
  letter-spacing: 0.1em;
  color: #3e4754;
  text-align: center;
  line-height: 80px;
  margin-bottom: 50px;
}
.main-content.bookintro {
  background: url("../images/bg_books.jpg") repeat-x center top;
}
.main-content.bookintro .wrapper-with-aside {
  margin-top: 200px;
}
.main-content.bookintro .banner-title {
  font-size: 36px;
  color: #fff;
  line-height: 250px;
  margin-top: -250px;
  margin-bottom: 0px;
}
.main-content.bookintro .breadcrumb a {
  color: #fff;
}

.wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.wrapper-with-aside {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper-with-aside .aside {
  width: 250px;
  display: inline-block;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1000px) {
  .wrapper-with-aside .aside {
    width: 100%;
    height: 50px;
    position: fixed;
    left: 0;
    bottom: 0px;
    display: flex;
    background: #fff;
    z-index: 1000;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  }
  .wrapper-with-aside .aside.back {
    z-index: 1;
  }
  .wrapper-with-aside .aside .close {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 50px;
    z-index: 2;
    font-size: 17px;
    line-height: 50px;
    background: #3d4851;
    color: #fff;
    display: none;
    padding: 0 1rem;
    font-weight: bold;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .wrapper-with-aside .aside .close::after {
    content: "";
    font-family: "fontawesome";
    color: #fff;
    float: right;
  }
  .wrapper-with-aside .aside .period {
    width: 100%;
    padding: 0;
    border: none;
    margin-bottom: 0;
    text-align: center;
    background: #f4f4f4;
  }
  .wrapper-with-aside .aside .period h3 {
    line-height: 50px;
    border: none;
  }
  .wrapper-with-aside .aside .period h3::before {
    margin-left: 0;
  }
  .wrapper-with-aside .aside .period form {
    text-align: left;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 30px;
    padding-top: 70px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
  }
  .wrapper-with-aside .aside .period.active form {
    display: block;
  }
  .wrapper-with-aside .aside .period.active .close {
    display: block;
  }
  .wrapper-with-aside .aside .catalog, .wrapper-with-aside .aside .links {
    width: 100%;
    padding: 0;
    border: none;
    margin-bottom: 0;
    text-align: center;
    border-right: 1px solid #aaa;
    background: #f4f4f4;
  }
  .wrapper-with-aside .aside .catalog h3, .wrapper-with-aside .aside .links h3 {
    line-height: 50px;
    border: none;
  }
  .wrapper-with-aside .aside .catalog h3::before, .wrapper-with-aside .aside .links h3::before {
    margin-left: 0;
  }
  .wrapper-with-aside .aside .catalog:last-child, .wrapper-with-aside .aside .links:last-child {
    border-right: none;
  }
  .wrapper-with-aside .aside .catalog > ul, .wrapper-with-aside .aside .links > ul {
    text-align: left;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1;
    padding: 30px;
    padding-top: 50px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
  }
  .wrapper-with-aside .aside .catalog > ul > li > ul > li, .wrapper-with-aside .aside .links > ul > li > ul > li {
    min-width: 0 !important;
    width: auto;
    margin-right: 15px;
  }
  .wrapper-with-aside .aside .catalog.active > ul, .wrapper-with-aside .aside .links.active > ul {
    display: block;
  }
  .wrapper-with-aside .aside .catalog.active .close, .wrapper-with-aside .aside .links.active .close {
    display: block;
  }
}
.wrapper-with-aside .main {
  width: calc(100% - 280px);
  margin-left: 25px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .wrapper-with-aside .main {
    width: 100%;
    margin-left: 0;
    display: block;
  }
}
.wrapper-with-aside::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}

.main .note-box {
  padding: 2rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #ddd;
}
.main .note-box.alert {
  background: #eee;
}
.main .note-box hr {
  border: none;
  border-top: 1px solid #3e4754;
  margin: 20px 0;
}
.main .note-box .section-title {
  margin-bottom: 30px;
}
.main .note-box p {
  color: #3e4754;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0.7em;
}
.main .note-box p.hl::before {
  content: "";
  font-family: "fontawesome";
  color: #f7b100;
  margin-right: 5px;
}
.main .note-box p.hl span {
  font-weight: 700;
}
.main .note-box p span {
  color: #65a74e;
  margin: 0 5px;
}
.main .note-box .group.col2 > div {
  display: inline-block;
  width: 42%;
  margin-right: 3%;
}
@media screen and (max-width: 700px) {
  .main .note-box .group.col2 > div {
    width: 100%;
    margin-right: 0;
  }
}
.main .note-box .group a {
  white-space: nowrap;
}
.main .note-box .group > div {
  margin-bottom: 1em;
}
.main .note-box .group > div input[type=radio] {
  margin: 5px 3px 0 0;
}
.main .note-box .group > div input[type=radio]:checked ~ label select {
  display: inline-block;
}
.main .note-box .group > div input[type=radio] + label {
  width: calc(100% - 20px);
  float: right;
}
.main .note-box .group > div input[type=text], .main .note-box .group > div input[type=email], .main .note-box .group > div input[type=password], .main .note-box .group > div input[type=tel], .main .note-box .group > div input[type=number] {
  display: inline-block;
  width: auto;
  height: 30px;
  border: 1px solid #ccc;
  padding: 0 5px;
  margin: 0 4px;
  max-width: 100%;
  border-radius: 4px;
}
.main .note-box .group > div input[type=text]:focus, .main .note-box .group > div input[type=email]:focus, .main .note-box .group > div input[type=password]:focus, .main .note-box .group > div input[type=tel]:focus, .main .note-box .group > div input[type=number]:focus {
  border-color: #65a74e;
}
.main .note-box .group > div select, .main .note-box .group > div option {
  padding-left: 5px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border: 1px solid #999;
  max-width: 100%;
  background-color: #fff;
}
.main .note-box .group > div select {
  margin: 0 4px;
  background-image: url("../images/btn_dropdown_dark.png");
}
.main .note-box .group > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .note-box .group > div span {
  color: #888;
  font-size: 13px;
}
.main .note-box .group > div label > div {
  margin-bottom: 0.5em;
}
.main .note-box ul.text {
  list-style-type: disc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 20px;
}
.main .note-box ul.text li {
  margin-bottom: 0.7em;
}
.main .note-box ul.action {
  text-align: right;
}
.main .note-box ul.action input[type=submit] {
  background: #65a74e;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  height: 40px;
  width: 150px;
  display: inline-block;
}
.main .note-box ul.action input[type=submit]:hover {
  background: #65a74e;
}
.main .note-box ul.action li {
  display: inline-block;
  margin: 5px;
}
.main .note-box ul.action li.cta {
  margin-right: 0;
}
.main .note-box ul.action li.cta a {
  padding: 0 80px;
  border-color: #65a74e;
  background: #65a74e;
  color: #fff;
}
.main .note-box ul.action li.cta a:hover {
  background: #65a74e;
  color: #fff;
}
.main .note-box ul.action li a, .main .note-box ul.action li select {
  border: 1px solid #3e4754;
  text-decoration: none;
  display: block;
  font-size: 17px;
  color: #3e4754;
  line-height: 38px;
  height: 38px;
  padding: 0 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.main .note-box ul.action li a:hover, .main .note-box ul.action li select:hover {
  border-color: #65a74e;
  color: #65a74e;
}
.main .note-box ul.action li select {
  background-color: #fff;
  background-image: url("../images/btn_dropdown_dark.png");
}
@media screen and (max-width: 700px) {
  .main .note-box ul.action {
    text-align: center;
  }
  .main .note-box ul.action li {
    width: 100%;
  }
  .main .note-box ul.action li a, .main .note-box ul.action li select {
    width: 100%;
    padding: 0 !important;
  }
}
.main .note-box a {
  color: #65a74e;
}
.main .addup-list {
  padding: 2rem 2rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #65a74e;
}
.main .addup-list .group-filter {
  text-align: left;
}
@media screen and (max-width: 700px) {
  .main .addup-list .group-filter {
    margin-top: 20px;
    text-align: center;
  }
  .main .addup-list .group-filter a::before {
    display: none;
  }
}
.main .shopping-list {
  padding: 2rem 2rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 50px;
  background: #fff;
  border: 1px solid #eee;
}
.main .shopping-list .result {
  padding: 30px 10px;
  border-top: 2px solid #3e4754;
  text-align: right;
}
.main .shopping-list .result p {
  color: #3e4754;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0.7em;
}
.main .shopping-list .result p span {
  color: #65a74e;
  font-weight: 700;
}
.main .shopping-list .result p .price {
  font-size: 24px;
  line-height: 24px;
  vertical-align: bottom;
}
.main .shopping-list .result .action {
  margin-top: 30px;
}
.main .shopping-list .result .action li {
  display: inline-block;
  margin: 5px;
}
.main .shopping-list .result .action li.cta {
  margin-right: 0;
}
.main .shopping-list .result .action li.cta a {
  padding: 0 80px;
  border-color: #65a74e;
  background: #65a74e;
  color: #fff;
}
.main .shopping-list .result .action li.cta a:hover {
  background: #65a74e;
  color: #fff;
}
.main .shopping-list .result .action li a, .main .shopping-list .result .action li select {
  border: 1px solid #3e4754;
  text-decoration: none;
  display: block;
  font-size: 17px;
  color: #3e4754;
  line-height: 38px;
  height: 38px;
  padding: 0 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.main .shopping-list .result .action li a:hover, .main .shopping-list .result .action li select:hover {
  border-color: #65a74e;
  color: #65a74e;
}
.main .shopping-list .result .action li select {
  background-color: #fff;
  background-image: url("../images/btn_dropdown_dark.png");
}
@media screen and (max-width: 700px) {
  .main .shopping-list .result {
    text-align: center;
  }
  .main .shopping-list .result .action li {
    width: 100%;
  }
  .main .shopping-list .result .action li a, .main .shopping-list .result .action li select {
    width: 100%;
    padding: 0 !important;
  }
}
.main .shopping-list .coupon {
  font-size: 15px;
  color: #3e4754;
  line-height: 1.5;
  padding: 30px 10px;
  border-top: 1px solid #999;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .shopping-list .coupon input[type=checkbox]:checked ~ div.coupon-list {
  display: block;
}
.main .shopping-list .coupon h3 {
  display: inline-block;
}
.main .shopping-list .coupon .coupon-list {
  width: 650px;
  display: none;
  float: right;
}
@media screen and (max-width: 700px) {
  .main .shopping-list .coupon .coupon-list {
    width: 100%;
    float: none;
    margin-top: 20px;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.main .shopping-list .coupon .coupon-list > div {
  margin-bottom: 8px;
}
.main .shopping-list .coupon .coupon-list > div input[type=radio] {
  margin: 5px 3px 0 0;
}
.main .shopping-list .coupon .coupon-list > div input[type=radio]:checked ~ label select {
  display: inline-block;
}
.main .shopping-list .coupon .coupon-list > div input[type=radio] + label {
  width: calc(100% - 20px);
  float: right;
}
.main .shopping-list .coupon .coupon-list > div select, .main .shopping-list .coupon .coupon-list > div option {
  width: auto;
  padding-left: 5px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border: 1px solid #999;
  background-color: #fff;
}
.main .shopping-list .coupon .coupon-list > div select {
  margin-left: 8px;
  display: none;
  background-image: url("../images/btn_dropdown_dark.png");
}
.main .shopping-list .coupon .coupon-list > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .shopping-list .coupon .coupon-list > div span {
  color: #65a74e;
  font-size: 13px;
}
.main .shopping-list .coupon::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .shopping-list .bonus {
  font-size: 15px;
  color: #3e4754;
  line-height: 1.5;
  padding: 30px 10px;
  border-top: 1px solid #999;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .shopping-list .bonus input[type=checkbox]:checked ~ div.coupon-list {
  display: block;
}
.main .shopping-list .bonus h3 {
  display: inline-block;
}
.main .shopping-list .bonus h3::before {
  content: "";
  font-family: "fontawesome";
  color: #f7b100;
  margin-right: 10px;
}
.main .shopping-list .bonus .coupon-list {
  width: 650px;
  display: block;
  float: right;
}
@media screen and (max-width: 700px) {
  .main .shopping-list .bonus .coupon-list {
    width: 100%;
    float: none;
    margin-top: 20px;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.main .shopping-list .bonus .coupon-list > div {
  margin-bottom: 8px;
}
.main .shopping-list .bonus .coupon-list > div input[type=radio] {
  margin: 5px 3px 0 0;
}
.main .shopping-list .bonus .coupon-list > div input[type=radio]:checked ~ label select {
  display: inline-block;
}
.main .shopping-list .bonus .coupon-list > div input[type=radio] + label {
  width: calc(100% - 20px);
  float: right;
}
.main .shopping-list .bonus .coupon-list > div select, .main .shopping-list .bonus .coupon-list > div option {
  width: 65px;
  padding-left: 5px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border: 1px solid #999;
  background-color: #fff;
}
.main .shopping-list .bonus .coupon-list > div select {
  margin-left: 8px;
  display: inline-block;
  background-image: url("../images/btn_dropdown_dark.png");
}
.main .shopping-list .bonus .coupon-list > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .shopping-list .bonus .coupon-list > div span {
  color: #65a74e;
  font-size: 13px;
}
.main .shopping-list .bonus::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .shopping-list .table {
  font-size: 15px;
  color: #3e4754;
  line-height: 1.5;
}
.main .shopping-list .table .head, .main .shopping-list .table .item {
  display: flex;
  align-items: stretch;
}
.main .shopping-list .table .head .quantity > span, .main .shopping-list .table .item .quantity > span {
  display: inline-block;
  width: 26px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  float: left;
}
@media screen and (max-width: 700px) {
  .main .shopping-list .table .head .quantity > span, .main .shopping-list .table .item .quantity > span {
    width: 35px;
    font-size: 22px;
  }
}
.main .shopping-list .table .head .quantity > span::after, .main .shopping-list .table .item .quantity > span::after {
  content: "";
  display: inline-block;
  font-family: "fontawesome";
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.main .shopping-list .table .head .quantity > span.decrease::after, .main .shopping-list .table .item .quantity > span.decrease::after {
  content: "";
}
.main .shopping-list .table .head .quantity > span:hover::after, .main .shopping-list .table .item .quantity > span:hover::after {
  color: #65a74e;
}
.main .shopping-list .table .head .quantity input, .main .shopping-list .table .item .quantity input {
  width: calc(100% - 52px) !important;
  display: inline-block;
  float: left;
  height: 27px !important;
  line-height: 27px !important;
  padding: 0 !important;
}
@media screen and (max-width: 700px) {
  .main .shopping-list .table .head .quantity input, .main .shopping-list .table .item .quantity input {
    width: 50px !important;
  }
}
.main .shopping-list .table .head .quantity::after, .main .shopping-list .table .item .quantity::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .shopping-list .table .head > div, .main .shopping-list .table .item > div {
  padding: 30px 10px;
  min-height: 28px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  flex: 0 0 85px;
  position: relative;
}
.main .shopping-list .table .head > div h3, .main .shopping-list .table .item > div h3 {
  display: none;
}
.main .shopping-list .table .head > div:nth-child(1), .main .shopping-list .table .item > div:nth-child(1) {
  flex: 1 1 100%;
}
.main .shopping-list .table .head > div:nth-child(1) span, .main .shopping-list .table .item > div:nth-child(1) span {
  font-weight: 300;
}
.main .shopping-list .table .head > div.lg, .main .shopping-list .table .item > div.lg {
  flex: 0 0 150px;
}
.main .shopping-list .table .head > div.md, .main .shopping-list .table .item > div.md {
  flex: 0 0 105px;
}
.main .shopping-list .table .head > div input[type=number], .main .shopping-list .table .head > div input[type=text], .main .shopping-list .table .item > div input[type=number], .main .shopping-list .table .item > div input[type=text] {
  max-width: 100%;
  min-width: 1px;
  width: 50px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border: none;
  border: 1px solid #999;
}
.main .shopping-list .table .head > div input[type=radio], .main .shopping-list .table .item > div input[type=radio] {
  margin: 5px 3px 0 0;
}
.main .shopping-list .table .head > div input[type=radio] + label, .main .shopping-list .table .item > div input[type=radio] + label {
  width: calc(100% - 20px);
  float: right;
}
.main .shopping-list .table .head > div > div::after, .main .shopping-list .table .item > div > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .shopping-list .table .head > div select, .main .shopping-list .table .head > div option, .main .shopping-list .table .item > div select, .main .shopping-list .table .item > div option {
  width: auto;
  padding-left: 5px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border: 1px solid #999;
  background-color: #fff;
}
.main .shopping-list .table .head > div select, .main .shopping-list .table .item > div select {
  background-image: url("../images/btn_dropdown_dark.png");
}
.main .shopping-list .table .head > div span, .main .shopping-list .table .item > div span {
  color: #65a74e;
  font-weight: 700;
}
.main .shopping-list .table .head > div a.save, .main .shopping-list .table .head > div a.delete, .main .shopping-list .table .item > div a.save, .main .shopping-list .table .item > div a.delete {
  display: block;
  text-decoration: none;
  color: #65a74e;
  font-size: 13px;
  line-height: 23px;
  margin-bottom: 4px;
  text-align: center;
  border: 1px solid #65a74e;
}
.main .shopping-list .table .head > div a.save::before, .main .shopping-list .table .head > div a.delete::before, .main .shopping-list .table .item > div a.save::before, .main .shopping-list .table .item > div a.delete::before {
  content: "";
  font-family: "fontawesome";
  margin-right: 5px;
}
.main .shopping-list .table .head > div a.save:hover, .main .shopping-list .table .item > div a.save:hover {
  background: #65a74e;
  color: #fff;
}
.main .shopping-list .table .head > div a.delete, .main .shopping-list .table .item > div a.delete {
  color: #aaa;
  border: 1px solid #aaa;
}
.main .shopping-list .table .head > div a.delete::before, .main .shopping-list .table .item > div a.delete::before {
  content: "";
  font-family: "fontawesome";
  margin-right: 5px;
}
.main .shopping-list .table .head > div a.delete:hover, .main .shopping-list .table .item > div a.delete:hover {
  color: #c92929;
  border: 1px solid #c92929;
}
.main .shopping-list .table .head > div .thumb, .main .shopping-list .table .item > div .thumb {
  width: 40%;
  max-width: 80px;
  float: left;
  margin-right: 15px;
}
.main .shopping-list .table .head > div .thumb img, .main .shopping-list .table .item > div .thumb img {
  width: 100%;
  height: auto;
}
.main .shopping-list .table .head > div .title, .main .shopping-list .table .item > div .title {
  overflow: visible;
}
.main .shopping-list .table .head > div .title a, .main .shopping-list .table .item > div .title a {
  text-decoration: none;
  color: #3e4754;
}
.main .shopping-list .table .head > div .title a:hover, .main .shopping-list .table .item > div .title a:hover {
  text-decoration: underline;
}
.main .shopping-list .table .head > div .title span, .main .shopping-list .table .item > div .title span {
  color: #c92929;
  display: block;
  font-size: 12px;
  margin: 5px 0;
}
.main .shopping-list .table .head > div .title span.lowkey, .main .shopping-list .table .item > div .title span.lowkey {
  color: #65a74e;
}
.main .shopping-list .table .head > div::after, .main .shopping-list .table .item > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .shopping-list .table .head {
  border-bottom: 2px solid #3e4754;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.main .shopping-list .table .head.saved > div:nth-child(1)::before {
  content: "";
}
.main .shopping-list .table .head > div:nth-child(1)::before {
  color: #65a74e;
  content: "";
  font-family: "fontawesome";
  margin-right: 5px;
}
.main .shopping-list .table .item {
  border-bottom: 1px solid #ddd;
}
.main .shopping-list .table .item:hover {
  background: #fafafa;
}
@media screen and (max-width: 700px) {
  .main .shopping-list .table .head {
    display: block;
  }
  .main .shopping-list .table .head > div {
    padding: 10px 0;
    display: none;
  }
  .main .shopping-list .table .head > div:nth-child(1) {
    display: inline-block;
    width: 100%;
  }
  .main .shopping-list .table .item {
    display: block;
    padding: 20px 10px;
  }
  .main .shopping-list .table .item > div {
    padding: 5px 0;
    width: 100%;
    padding-left: 30%;
  }
  .main .shopping-list .table .item > div h3 {
    display: block;
    position: absolute;
    top: 5px;
    left: 10px;
    width: 20%;
  }
  .main .shopping-list .table .item > div:nth-child(1) {
    width: 100%;
    padding-left: 0;
  }
  .main .shopping-list .table .item > div a.save, .main .shopping-list .table .item > div a.delete {
    display: inline-block;
    min-width: 50%;
    margin: 4px;
  }
  .main .shopping-list .table .item > div .thumb {
    width: 28%;
    margin-right: 2%;
    max-width: 9999px;
  }
}
.main .order-list {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.main .order-list .table {
  font-size: 15px;
  color: #3e4754;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .order-list .table .head, .main .order-list .table .item {
  display: flex;
  align-items: stretch;
}
.main .order-list .table .head .quantity > span, .main .order-list .table .item .quantity > span {
  display: inline-block;
  width: 26px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  float: left;
}
@media screen and (max-width: 700px) {
  .main .order-list .table .head .quantity > span, .main .order-list .table .item .quantity > span {
    width: 35px;
    font-size: 22px;
  }
}
.main .order-list .table .head .quantity > span::after, .main .order-list .table .item .quantity > span::after {
  content: "";
  display: inline-block;
  font-family: "fontawesome";
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
.main .order-list .table .head .quantity > span.decrease::after, .main .order-list .table .item .quantity > span.decrease::after {
  content: "";
}
.main .order-list .table .head .quantity > span:hover::after, .main .order-list .table .item .quantity > span:hover::after {
  color: #65a74e;
}
.main .order-list .table .head .quantity input, .main .order-list .table .item .quantity input {
  width: calc(100% - 52px) !important;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 700px) {
  .main .order-list .table .head .quantity input, .main .order-list .table .item .quantity input {
    width: 50px !important;
  }
}
.main .order-list .table .head .quantity::after, .main .order-list .table .item .quantity::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .order-list .table .head > div, .main .order-list .table .item > div {
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  flex: 0 0 105px;
  position: relative;
  min-height: 28px;
}
.main .order-list .table .head > div h3, .main .order-list .table .item > div h3 {
  display: none;
}
.main .order-list .table .head > div.flex, .main .order-list .table .item > div.flex {
  flex: 1 1 100%;
}
.main .order-list .table .head > div.lg, .main .order-list .table .item > div.lg {
  flex: 0 0 180px;
}
.main .order-list .table .head > div.md, .main .order-list .table .item > div.md {
  flex: 0 0 120px;
}
.main .order-list .table .head > div.sm, .main .order-list .table .item > div.sm {
  flex: 0 0 70px;
}
.main .order-list .table .head > div input[type=number], .main .order-list .table .head > div input[type=text], .main .order-list .table .item > div input[type=number], .main .order-list .table .item > div input[type=text] {
  max-width: 100%;
  min-width: 1px;
  width: 50px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border: none;
  border: 1px solid #999;
}
.main .order-list .table .head > div input[type=radio], .main .order-list .table .item > div input[type=radio] {
  margin: 5px 3px 0 0;
}
.main .order-list .table .head > div input[type=radio] + label, .main .order-list .table .item > div input[type=radio] + label {
  width: calc(100% - 20px);
  float: right;
}
.main .order-list .table .head > div > div::after, .main .order-list .table .item > div > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .order-list .table .head > div select, .main .order-list .table .head > div option, .main .order-list .table .item > div select, .main .order-list .table .item > div option {
  width: auto;
  padding-left: 5px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  border: 1px solid #999;
  background-color: #fff;
}
.main .order-list .table .head > div select, .main .order-list .table .item > div select {
  background-image: url("../images/btn_dropdown_dark.png");
}
.main .order-list .table .head > div span, .main .order-list .table .item > div span {
  color: #65a74e;
  font-weight: 700;
}
.main .order-list .table .head > div a, .main .order-list .table .item > div a {
  color: #65a74e;
}
.main .order-list .table .head > div a.order, .main .order-list .table .item > div a.order {
  color: #65a74e;
}
.main .order-list .table .head > div a.order::before, .main .order-list .table .item > div a.order::before {
  content: "";
  font-family: "fontawesome";
  margin-right: 8px;
}
.main .order-list .table .head > div a.func, .main .order-list .table .item > div a.func {
  display: block;
  text-decoration: none;
  color: #65a74e;
  font-size: 13px;
  line-height: 23px;
  margin-bottom: 4px;
  text-align: center;
  border: 1px solid #65a74e;
}
.main .order-list .table .head > div a.func:hover, .main .order-list .table .item > div a.func:hover {
  background: #65a74e;
  color: #fff;
}
.main .order-list .table .head > div .thumb, .main .order-list .table .item > div .thumb {
  width: 40%;
  max-width: 80px;
  float: left;
  margin-right: 15px;
}
.main .order-list .table .head > div .thumb img, .main .order-list .table .item > div .thumb img {
  width: 100%;
  height: auto;
}
.main .order-list .table .head > div .title, .main .order-list .table .item > div .title {
  overflow: visible;
}
.main .order-list .table .head > div .title a, .main .order-list .table .item > div .title a {
  text-decoration: none;
  color: #3e4754;
}
.main .order-list .table .head > div .title a:hover, .main .order-list .table .item > div .title a:hover {
  text-decoration: underline;
}
.main .order-list .table .head > div .title span, .main .order-list .table .item > div .title span {
  color: #c92929;
  display: block;
  font-size: 12px;
  margin: 5px 0;
}
.main .order-list .table .head > div .title span.lowkey, .main .order-list .table .item > div .title span.lowkey {
  color: #65a74e;
}
.main .order-list .table .head > div::after, .main .order-list .table .item > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .order-list .table .head {
  border-bottom: 1px solid #3e4754;
  letter-spacing: 0.1em;
  background: #65a74e;
}
.main .order-list .table .head > div {
  color: #fff;
}
.main .order-list .table .item {
  border-bottom: 1px solid #ddd;
}
.main .order-list .table .item:hover {
  background: #fafafa;
}
@media screen and (max-width: 700px) {
  .main .order-list .table {
    border: 1px solid #ddd;
  }
  .main .order-list .table .head {
    display: block;
  }
  .main .order-list .table .head > div {
    padding: 5px 0;
    display: none;
  }
  .main .order-list .table .head > div:first-child {
    text-align: center;
    display: block;
  }
  .main .order-list .table .item {
    display: block;
    padding: 20px 0;
  }
  .main .order-list .table .item > div {
    padding: 5px 0;
    width: 100%;
    padding-left: 40%;
  }
  .main .order-list .table .item > div h3 {
    display: block;
    position: absolute;
    top: 5px;
    left: 10px;
    width: 30%;
  }
  .main .order-list .table .item > div a.func {
    display: inline-block;
    min-width: 50%;
    margin: 4px;
  }
  .main .order-list .table .item > div .thumb {
    width: 28%;
    margin-right: 2%;
    max-width: 9999px;
  }
}
.main .period-box {
  text-align: center;
  background: #f4f4f4;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .main .period-box {
    display: none;
  }
}
.main .period-box form input[type=text] {
  font-size: 13px;
  color: #3e4754;
  border: 1px solid #e5e5e5;
  width: 150px;
  line-height: 40px;
  height: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2rem 0 1rem;
  background: #fff url("../images/icon_calendar.png") no-repeat center right 1rem;
  background-size: 12px 12px;
  display: inline-block;
  margin-right: 20px;
}
.main .period-box form label {
  font-size: 13px;
  color: #65a74e;
  line-height: 20px;
  width: 35px;
  display: inline-block;
  letter-spacing: 0.1em;
}
.main .period-box form input[type=submit] {
  background: #65a74e;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  height: 40px;
  width: 150px;
  display: inline-block;
}
.main .period-box form input[type=submit]:hover {
  background: #65a74e;
}
.main > .category ul {
  padding: 20px 0;
}
.main > .category ul li {
  width: 100px;
}
.main > .swiper {
  padding: 20px 0 50px !important;
}
.main > .swiper .swiper-wrapper {
  padding: 0 0px 50px !important;
}
.main > .brief {
  height: auto;
  margin-bottom: 30px;
}
.main > .brief .gallery {
  margin-top: -200px;
  width: 350px;
  float: left;
}
@media screen and (max-width: 700px) {
  .main > .brief .gallery {
    width: 100%;
    float: none;
    margin-top: -200px;
    margin-bottom: 30px;
  }
}
.main > .brief .gallery .gallerytop {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .main > .brief .gallery .gallerytop {
    width: 88%;
    margin-left: 6%;
  }
}
.main > .brief .gallery .gallerytop .swiper-wrapper {
  width: 100%;
}
.main > .brief .gallery .gallerytop .swiper-wrapper .swiper-slide {
  width: 100%;
}
.main > .brief .gallery .gallerytop .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}
.main > .brief .gallery .gallerytop .swiper-wrapper .swiper-slide:hover::after {
  content: "";
  font-family: "fontawesome";
  line-height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -20px;
  margin-top: -20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 20px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.main > .brief .gallery .gallerythumbs {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.main > .brief .gallery .gallerythumbs .swiper-wrapper {
  width: 100%;
  height: 80px;
}
.main > .brief .gallery .gallerythumbs .swiper-wrapper .swiper-slide {
  height: 80px;
  width: auto;
  position: relative;
}
.main > .brief .gallery .gallerythumbs .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: auto;
}
.main > .brief .gallery .gallerythumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::after {
  content: "";
  font-family: "fontawesome";
  line-height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  color: #3e4754;
  font-size: 20px;
}
.main > .brief .info {
  margin-left: 370px;
}
.main > .brief .info h2 {
  font-size: 21px;
  color: #3e4754;
  line-height: 1.5;
  font-weight: 500;
}
.main > .brief .info h3 {
  font-size: 13px;
  color: #3e4754;
  line-height: 1.5;
}
.main > .brief .info p {
  font-size: 15px;
  color: #3e4754;
  line-height: 1.5;
  margin-bottom: 0.6em;
}
.main > .brief .info p.event::before {
  content: "";
  font-family: "fontawesome";
  color: #f7b100;
  margin-right: 5px;
}
.main > .brief .info p span {
  vertical-align: bottom;
  margin-right: 5px;
}
.main > .brief .info p span.hl {
  color: #65a74e;
}
.main > .brief .info p span.discount {
  font-size: 13px;
  color: #fff;
  background: #65a74e;
  padding: 2px 8px;
}
.main > .brief .info p span.price {
  color: #c92929;
  font-size: 30px;
  line-height: 1em;
  font-family: "Montserrat";
  font-weight: 100;
}
.main > .brief .info p span.bonus {
  color: #c92929;
}
.main > .brief .info p span.keys a {
  white-space: nowrap;
  border: 1px solid #65a74e;
  padding: 1px 8px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  font-size: 13px;
  margin: 1px;
  text-decoration: none;
}
.main > .brief .info p span.keys a:hover {
  background: #65a74e;
  color: #fff;
  text-decoration: none;
}
.main > .brief .info p span a {
  color: #65a74e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.main > .brief .info p span a:hover {
  color: #65a74e;
  text-decoration: underline;
}
@media screen and (max-width: 700px) {
  .main > .brief .info {
    margin-left: 0;
  }
  .main > .brief .info p span.keys {
    margin-top: 5px;
    display: block;
  }
}
.main > .brief .info::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main > .topics-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 120px 0;
  background-image: linear-gradient(#fff, #f9f9f9);
  position: relative;
  margin-bottom: 50px;
}
.main > .topics-container .book-cover {
  position: absolute;
  display: inline-block;
  top: 50%;
  width: 250px;
  height: 100px;
  right: 50px;
  text-align: center;
}
.main > .topics-container .book-cover img {
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 250px;
  max-height: 290px;
  box-shadow: 1px 1px 1px rgba(125, 125, 125, 0.2), 2px 2px 0px rgba(125, 125, 125, 0.2), 3px 3px 0px rgba(125, 125, 125, 0.2), 4px 4px 0px rgba(125, 125, 125, 0.2), 5px 5px 2px rgba(50, 50, 50, 0.2), 6px 6px 4px rgba(50, 50, 50, 0.1), 7px 7px 8px rgba(50, 50, 50, 0.1), 8px 8px 16px rgba(50, 50, 50, 0.1);
}
.main > .topics-container .topics {
  width: calc(100% - 400px);
  margin-left: 30px;
  background: url("../images/bg_at.png") no-repeat center center;
  background-size: 317px 321px;
}
.main > .topics-container .topics h2 {
  font-size: 21px;
  line-height: 1.5;
  color: #3e4754;
  margin-bottom: 1em;
  font-weight: 500;
  text-align: center;
}
.main > .topics-container .topics ul li {
  font-size: 15px;
  margin-bottom: 1em;
}
.main > .topics-container .topics ul li a {
  font-size: 15px;
  color: #3e4754;
  line-height: 25px;
  text-decoration: none;
  display: -webkit-box;
  max-height: 25px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main > .topics-container .topics ul li a span {
  color: #65a74e;
}
.main > .topics-container .topics ul li a span::after {
  content: "】";
}
.main > .topics-container .topics ul li a span::before {
  content: "【";
}
.main > .topics-container .topics ul li a:hover {
  color: #65a74e;
  text-decoration: underline;
}
.main > .topics-container .topics ul li a:hover span {
  color: #65a74e;
}
@media screen and (max-width: 700px) {
  .main > .topics-container {
    padding: 80px 0;
  }
  .main > .topics-container .book-cover {
    display: none;
  }
  .main > .topics-container .topics {
    width: calc(100% - 40px);
    margin-left: 20px;
  }
  .main > .topics-container .topics ul li a {
    max-height: 50px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.main .postage > div {
  margin-bottom: 50px;
}
.main .postage .shortcuts {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px 1rem;
  background: #65a74e;
}
.main .postage .shortcuts li {
  display: inline-block;
  margin: 5px;
}
.main .postage .shortcuts li a {
  color: #fff;
  text-decoration: none;
}
.main .postage .shortcuts li a:hover {
  text-decoration: underline;
}
.main .postage .table {
  border: 1px solid #ddd;
}
.main .postage .table li {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #ddd;
}
.main .postage .table li span {
  width: 100%;
  padding: 1rem;
  color: #3e4754;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .postage .table li span:first-child {
  background: #65a74e;
  color: #fff;
}
.main .postage .area li {
  float: left;
  width: 50%;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .postage .area li a {
  padding: 5px 1rem;
  display: block;
  color: #3e4754;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.5;
  min-height: 24px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .postage .area li a:hover {
  color: #65a74e;
  text-decoration: underline;
}
@media screen and (max-width: 700px) {
  .main .postage .area li {
    float: none;
    width: 100%;
  }
}
.main .postage .area::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .postage .fees li a {
  display: block;
  color: #3e4754;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.5;
  min-height: 24px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .postage .fees li a:hover {
  color: #65a74e;
  text-decoration: underline;
}
.main .postage .fees li:nth-child(odd) {
  background: #f4f4f4;
}
.main .postage .fees li.head {
  background: #3d4851;
  color: #fff;
}
.main .postage .fees li span {
  float: left;
  display: inline-block;
  padding: 8px 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .postage .fees li span:nth-child(1) {
  width: 60%;
}
.main .postage .fees li span:nth-child(2), .main .postage .fees li span:nth-child(3) {
  width: 20%;
}
.main .postage .fees li::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.main .page-article {
  padding-bottom: 100px;
}
.main .page-article.center {
  text-align: center;
}
.main .page-article .hl::before {
  content: "";
  font-family: "fontawesome";
  color: #f7b100;
  margin-right: 10px;
}
.main .page-article .qna {
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .page-article .qna.active .ques {
  color: #fff;
  background: #65a74e !important;
}
.main .page-article .qna.active .ques::before {
  color: #fff;
}
.main .page-article .qna.active .ques::after {
  color: #fff;
  content: "";
}
.main .page-article .qna.active .ques span {
  color: #fff;
}
.main .page-article .qna .ques, .main .page-article .qna .ans {
  padding: 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .page-article .qna .ques {
  position: relative;
  font-size: 17px;
  line-height: 30px;
  min-height: 30px;
  color: #3e4754;
  font-weight: 400;
  cursor: pointer;
  padding-right: 2em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .page-article .qna .ques span {
  color: #65a74e;
  font-weight: 700;
}
.main .page-article .qna .ques::before {
  content: "Q：";
  color: #65a74e;
}
.main .page-article .qna .ques::after {
  content: "";
  font-family: "fontawesome";
  color: #65a74e;
  position: absolute;
  top: 1rem;
  right: 0.5rem;
}
.main .page-article .qna .ques:hover {
  background: #f4f4f4;
}
.main .page-article .qna.steps .ques::before {
  display: none;
}
.main .page-article hr {
  border: none;
  border-top: 1px dashed #ddd;
  margin: 1rem auto;
}
.main .page-article sup, .main .page-article sub {
  color: #65a74e;
  margin: 0 4px;
}
.main .page-article h3 {
  font-size: 17px;
  line-height: 30px;
  height: 30px;
  color: #3e4754;
  margin-bottom: 20px;
  font-weight: 700;
}
.main .page-article h3 span {
  display: inline-block;
  border: 1px solid #65a74e;
  color: #65a74e;
  padding: 0 1rem;
  font-weight: 400;
}
.main .page-article h3 span.author {
  font-size: 15px;
  border: none;
  background-color: #65a74e;
  color: #fff;
  background-image: url("../images/icon_user.png");
  background-repeat: no-repeat;
  background-position: center left 1rem;
  background-size: auto 15px;
  padding-left: 37px;
}
.main .page-article p {
  font-size: 15px;
  line-height: 1.5;
  color: #3e4754;
  margin-bottom: 20px;
}
.main .page-article p span {
  color: #65a74e;
}
.main .page-article ul {
  font-size: 15px;
  color: #3e4754;
  line-height: 1.5;
  list-style-type: square;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 20px;
  margin-bottom: 1rem;
}
.main .page-article ul > li {
  line-height: 1.5;
  margin-bottom: 0.7em;
}
.main .page-article ul > li > ul, .main .page-article ul > li > ol {
  margin-top: 0.7em;
}
.main .page-article ul > li span {
  color: #65a74e;
}
.main .page-article ol {
  font-size: 15px;
  color: #3e4754;
  line-height: 1.5;
  list-style-type: decimal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 20px;
  margin-bottom: 1rem;
}
.main .page-article ol > li {
  line-height: 1.5;
  margin-bottom: 0.7em;
}
.main .page-article ol > li > ul, .main .page-article ol > li > ol {
  margin-top: 0.7em;
}
.main .page-article ol > li span {
  color: #65a74e;
}
.main .page-article a {
  color: #65a74e;
}
.main .page-article form.type1 {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.main .page-article form.type1 .multicol {
  display: flex;
}
.main .page-article form.type1 .captcha {
  font-size: 15px;
  line-height: 40px;
  height: 40px;
  background: #ddd;
  margin-left: 5px;
  color: #65a74e;
  flex: 0 0 100px;
}
.main .page-article form.type1 input[type=text], .main .page-article form.type1 input[type=password], .main .page-article form.type1 input[type=tel] {
  font-size: 15px;
  color: #3e4754;
  border: 1px solid #e5e5e5;
  width: 100%;
  line-height: 40px;
  height: 40px;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 1rem;
  display: block;
  margin-bottom: 1rem;
}
.main .page-article form.type1 input[type=submit] {
  background: #65a74e;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  height: 40px;
  width: 100%;
  display: block;
}
.main .page-article form.type1 input[type=submit]:hover {
  background: #65a74e;
}
.main .page-article form.type1 h5 {
  font-size: 15px;
  line-height: 1.5;
  color: #3e4754;
  text-align: left;
  margin-bottom: 0.5rem;
}
.main .page-title {
  line-height: 20px;
  font-size: 20px;
  color: #3e4754;
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 30px 1rem;
  background-image: linear-gradient(#fff, #f9f9f9);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main .page-title > span {
  position: relative;
  z-index: 1;
}
.main .page-title form.type1 {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.main .page-title form.type1 .multicol {
  display: flex;
}
.main .page-title form.type1 .captcha {
  font-size: 15px;
  line-height: 40px;
  height: 40px;
  background: #ddd;
  margin-left: 5px;
  color: #65a74e;
  flex: 0 0 100px;
}
.main .page-title form.type1 input[type=text], .main .page-title form.type1 input[type=password] {
  font-size: 15px;
  color: #3e4754;
  border: 1px solid #e5e5e5;
  width: 100%;
  line-height: 40px;
  height: 40px;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 1rem;
  display: block;
  margin-bottom: 1rem;
}
.main .page-title form.type1 input[type=submit] {
  background: #65a74e;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
  height: 40px;
  width: 100%;
  display: block;
}
.main .page-title form.type1 input[type=submit]:hover {
  background: #65a74e;
}
.main .page-title h3 {
  font-size: 15px;
  line-height: 1.5;
  color: #3e4754;
  text-align: left;
  margin-bottom: 0.5rem;
}
.main .page-title p {
  font-size: 15px;
  line-height: 1.5;
  color: #3e4754;
}
.main .page-title p a, .main .page-title p span {
  color: #65a74e;
}
.main .page-title p .points {
  font-size: 25px;
  line-height: 1em;
  font-family: "Montserrat";
  font-weight: bold;
  vertical-align: middle;
  margin: 0 5px;
  color: #c92929;
}
.main .page-title.filter > span::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("../images/icon_filter.png") no-repeat center left;
  background-size: auto 100%;
}
.main .page-title.period > span::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("../images/icon_calendar.png") no-repeat center left;
  background-size: auto 100%;
}
.main .page-title.cart > span::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("../images/icon_buy.png") no-repeat center left;
  background-size: auto 100%;
}
.main .page-title.brief > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.checked > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.membership > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #f7b100;
  margin-right: 8px;
}
.main .page-title.recommand > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.author > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.spec > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.leading > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.catalog > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.foward > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.note > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .page-title.tryout > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
  margin-right: 8px;
}
.main .section-title {
  line-height: 17px;
  font-size: 17px;
  color: #3e4754;
  width: auto;
  overflow: hidden;
  margin-bottom: 20px;
}
.main .section-title > span {
  position: relative;
  z-index: 1;
}
.main .section-title > span > span {
  color: #65a74e;
}
.main .section-title > span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background: url("../images/icon_group.png") no-repeat center left;
  background-size: auto 100%;
}
.main .section-title > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  width: 100vw;
  height: 1px;
  border-top: 1px solid #ddd;
}
.main .section-title > span.result {
  background: #fff;
  float: right;
  padding-left: 10px;
}
.main .section-title > span.result::before, .main .section-title > span.result::after {
  display: none !important;
}
.main .section-title > span.result > span {
  color: #65a74e;
  font-weight: bold;
  font-size: 14px;
}
.main .section-title > span.view-filter {
  background: #fff;
  float: right;
  padding-left: 10px;
}
.main .section-title > span.view-filter::before, .main .section-title > span.view-filter::after {
  display: none !important;
}
.main .section-title > span.view-filter > span {
  color: #c2c2c2;
  font-size: 16px;
  cursor: pointer;
}
.main .section-title > span.view-filter > span.selected {
  color: #3e4754;
}
.main .section-title > span.view-filter > span.list::before {
  content: "";
  font-family: "fontawesome";
  margin-left: 5px;
}
.main .section-title > span.view-filter > span.grid::before {
  content: "";
  font-family: "fontawesome";
  margin-left: 5px;
}
.main .section-title.filter > span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 17px;
  background: url("../images/icon_filter.png") no-repeat center left;
  background-size: auto 100%;
}
.main .section-title.period > span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 17px;
  background: url("../images/icon_calendar.png") no-repeat center left;
  background-size: auto 100%;
}
.main .section-title.brief > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title.recommand > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title.author > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title.spec > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title.leading > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title.catalog > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title.foward > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title.note > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title.tryout > span::before {
  content: "";
  font-family: "fontawesome";
  background: none;
  color: #65a74e;
}
.main .section-title a {
  position: relative;
  float: right;
  background: #fff;
  z-index: 2;
  color: #3e4754;
  padding-left: 10px;
  text-decoration: none;
  font-size: 14px;
}
.main .section-title a.more::before {
  content: "";
  font-family: "fontawesome";
  margin-right: 5px;
}
.main .section-title a:hover {
  color: #65a74e;
}
.main > .trivia-container {
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 50px;
}
.main > .trivia-container .trivia {
  width: 100%;
  position: relative;
}
.main > .trivia-container .trivia .swiper-button-next, .main > .trivia-container .trivia .swiper-button-prev {
  outline: none;
  background: none;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #65a74e;
  font-size: 15px;
  top: 20px;
  right: -25px;
}
.main > .trivia-container .trivia .swiper-button-next::after, .main > .trivia-container .trivia .swiper-button-prev::after {
  content: "";
  font-family: "fontawesome";
}
.main > .trivia-container .trivia .swiper-button-prev {
  right: auto;
  left: -25px;
}
.main > .trivia-container .trivia .swiper-button-prev::after {
  content: "";
}
.main > .trivia-container .trivia .swiper-button-disabled {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}
.main > .trivia-container .trivia .trivia-content {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.main > .trivia-container .trivia .trivia-content > div {
  width: 100%;
  background: #fff;
  margin-bottom: 80px;
}
@media screen and (max-width: 1250px) {
  .main > .trivia-container .trivia .trivia-content > div .section-title a {
    display: none;
  }
}
.main > .trivia-container .trivia .trivia-tabs {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.main > .trivia-container .trivia .trivia-tabs > a {
  height: 15px;
  width: auto;
  position: relative;
  font-size: 15px;
  color: #3e4754;
  line-height: 28px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #3e4754;
  margin-right: 3px;
  margin-bottom: 5px;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.main > .trivia-container .trivia .trivia-tabs > a::after, .main > .trivia-container .trivia .trivia-tabs > a::before {
  content: "";
  display: inline-block;
  width: 15px;
}
.main > .trivia-container .trivia .trivia-tabs > a:hover {
  background: #65a74e;
  border-color: #65a74e;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .main > .trivia-container .trivia .trivia-tabs {
    display: none;
  }
}
.main .btns {
  text-align: right;
  margin-bottom: 30px;
}
.main .btns .share {
  float: left;
}
.main .btns .share li {
  display: inline-block;
  margin: 5px;
  line-height: 40px;
}
.main .btns .share li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.main .btns .share li a img {
  height: 40px;
  width: auto;
}
.main .btns .share li a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  filter: alpha(opacity=70);
}
.main .btns .action li {
  display: inline-block;
  margin: 5px;
}
.main .btns .action li.cta a {
  border-color: #65a74e;
  background: #65a74e;
  color: #fff;
}
.main .btns .action li.cta a:hover {
  background: #65a74e;
  color: #fff;
}
.main .btns .action li a, .main .btns .action li select {
  border: 1px solid #3e4754;
  text-decoration: none;
  display: block;
  font-size: 17px;
  color: #3e4754;
  line-height: 38px;
  height: 38px;
  padding: 0 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.main .btns .action li a:hover, .main .btns .action li select:hover {
  border-color: #65a74e;
  color: #65a74e;
}
.main .btns .action li select {
  background-color: #fff;
  background-image: url("../images/btn_dropdown_dark.png");
}
@media screen and (max-width: 700px) {
  .main .btns {
    text-align: center;
  }
  .main .btns .share {
    display: block;
    float: none;
    margin-bottom: 30px;
  }
  .main .btns .action {
    display: block;
    float: none;
  }
  .main .btns .action li:first-child {
    width: 100%;
    max-width: 320px;
  }
}

.aside {
  width: 250px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.aside .close {
  display: none;
}
.aside .period {
  padding: 5px 15px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.aside .period h3 {
  font-size: 17px;
  font-weight: bold;
  line-height: 50px;
  color: #3e4754;
  border-bottom: 1px solid #e5e5e5;
}
.aside .period h3::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 15px;
  background: url("../images/icon_calendar.png") no-repeat center left;
  background-size: auto 100%;
  margin-left: -5px;
}
.aside .period form {
  padding-top: 20px;
}
.aside .period form input[type=text] {
  font-size: 13px;
  color: #3e4754;
  border: 1px solid #e5e5e5;
  width: 100%;
  line-height: 30px;
  height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2rem 0 1rem;
  background: #fff url("../images/icon_calendar.png") no-repeat center right 1rem;
  background-size: 12px 12px;
  margin-bottom: 20px;
}
.aside .period form label {
  font-size: 13px;
  color: #65a74e;
  line-height: 2;
}
.aside .period form input[type=submit] {
  background: #65a74e;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 40px;
  height: 40px;
  width: 100%;
}
.aside .period form input[type=submit]:hover {
  background: #65a74e;
}
.aside .period form::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.aside .catalog {
  padding: 5px 15px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.aside .catalog h3 {
  font-size: 17px;
  font-weight: bold;
  line-height: 50px;
  color: #3e4754;
  border-bottom: 1px solid #e5e5e5;
}
.aside .catalog h3::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 15px;
  background: url("../images/icon_filter.png") no-repeat center left;
  background-size: auto 100%;
  margin-left: -5px;
}
.aside .catalog > ul {
  margin-bottom: 20px;
}
.aside .catalog > ul > li {
  font-size: 14px;
  color: #3e4754;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.aside .catalog > ul > li::before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  content: "";
  font-family: "fontawesome";
  float: right;
  margin-right: 5px;
}
.aside .catalog > ul > li.has-children::before {
  content: "";
}
.aside .catalog > ul > li.has-children.active > ul {
  display: block;
}
.aside .catalog > ul > li.has-children.active::before {
  content: "";
  color: #65a74e;
}
.aside .catalog > ul > li.has-children > ul {
  display: none;
  padding: 10px 0 20px;
}
.aside .catalog > ul > li.has-children > ul > li {
  display: inline-block;
  line-height: 24px;
  min-width: 50%;
  margin-bottom: 2px;
  float: left;
}
.aside .catalog > ul > li.has-children > ul > li > a {
  display: inline-block;
  color: #3e4754;
  line-height: 24px;
  text-decoration: none;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
}
.aside .catalog > ul > li.has-children > ul > li > a::before {
  content: "．";
}
.aside .catalog > ul > li.has-children > ul > li > a:hover {
  color: #65a74e;
}
.aside .catalog > ul > li.has-children > ul::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.aside .catalog > ul > li.has-children:hover::before {
  color: #65a74e;
}
.aside .catalog > ul > li > a {
  display: inline-block;
  color: #3e4754;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.aside .catalog > ul > li > a::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 15px;
  background: url("../images/icon_group.png") no-repeat center left;
  background-size: auto 100%;
}
.aside .catalog > ul > li > a:hover {
  color: #65a74e;
}
.aside .catalog > ul > li > a:hover::after {
  margin-right: 0;
}
.aside .catalog > ul > li:last-child {
  border: none;
}
.aside .catalog > ul > li.download {
  margin-top: 20px;
  line-height: 40px;
}
.aside .catalog > ul > li.download::before {
  display: none !important;
}
.aside .catalog > ul > li.download > a {
  display: block;
  text-align: center;
  font-size: 15px;
  border: 1px solid #65a74e;
  color: #65a74e;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.aside .catalog > ul > li.download > a::after {
  display: none;
}
.aside .catalog > ul > li.download > a::before {
  content: "";
  font-family: "fontawesome";
  margin-right: 5px;
  background: none;
  width: auto;
  height: auto;
}
.aside .catalog > ul > li.download > a:hover {
  color: #fff;
  background: #65a74e;
}
.aside .links {
  padding: 5px 15px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.aside .links h3 {
  font-size: 17px;
  font-weight: bold;
  line-height: 50px;
  color: #3e4754;
  border-bottom: 1px solid #e5e5e5;
}
.aside .links h3::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 15px;
  background: url("../images/icon_group.png") no-repeat center left;
  background-size: auto 100%;
  margin-left: -5px;
}
.aside .links > ul {
  margin-bottom: 20px;
}
.aside .links > ul > li {
  font-size: 14px;
  color: #3e4754;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.aside .links > ul > li::before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  content: "";
  font-family: "fontawesome";
  float: right;
  margin-right: 5px;
}
.aside .links > ul > li.has-children::before {
  content: "";
}
.aside .links > ul > li.has-children.active > ul {
  display: block;
}
.aside .links > ul > li.has-children.active::before {
  content: "";
  color: #65a74e;
}
.aside .links > ul > li.has-children > ul {
  display: none;
  padding: 10px 0 20px;
}
.aside .links > ul > li.has-children > ul > li {
  display: inline-block;
  line-height: 24px;
  min-width: 50%;
  margin-bottom: 2px;
  float: left;
}
.aside .links > ul > li.has-children > ul > li > a {
  display: inline-block;
  color: #3e4754;
  line-height: 24px;
  text-decoration: none;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
}
.aside .links > ul > li.has-children > ul > li > a::before {
  content: "．";
}
.aside .links > ul > li.has-children > ul > li > a:hover {
  color: #65a74e;
}
.aside .links > ul > li.has-children > ul::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.aside .links > ul > li.has-children:hover::before {
  color: #65a74e;
}
.aside .links > ul > li > a {
  display: inline-block;
  color: #3e4754;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.aside .links > ul > li > a:hover {
  color: #65a74e;
}
.aside .links > ul > li > a:hover::after {
  margin-right: 0;
}
.aside .links > ul > li:last-child {
  border: none;
}

.flexbox2 {
  display: flex;
  align-items: stretch;
  padding: 50px 0 0;
}
.flexbox2 > div {
  width: 100%;
}
.flexbox2 > div:first-child {
  padding: 0 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .flexbox2 {
    display: block;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
}

.news {
  margin-bottom: 20px;
}
.news h2 {
  font-size: 17px;
  line-height: 2;
  color: #3e4754;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .news h2 {
    text-align: center;
    width: 80%;
    text-align: center;
    margin: 0 auto 20px;
  }
}
.news ul li {
  display: block;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}
.news ul li a {
  font-size: 13px;
  color: #3e4754;
  line-height: 20px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.news ul li a:hover, .news ul li a.selected {
  color: #65a74e;
}
.news ul li a span:nth-child(2) {
  display: -webkit-box;
  max-height: 40px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news ul li a span:nth-child(1) {
  float: right;
  margin-left: 4rem;
}
@media screen and (max-width: 700px) {
  .news ul li a span {
    display: block;
  }
  .news ul li a span:nth-child(1) {
    float: left;
    margin-right: 1rem;
    margin-left: 0;
    color: #65a74e;
    text-align: left;
    display: inline-block;
    font-size: 12px;
  }
}
.news .more {
  text-align: right;
  margin-top: 12px;
}
.news .more a {
  font-size: 13px;
  line-height: 20px;
  color: #3e4754;
}
.news .more a:hover {
  color: #65a74e;
}
@media screen and (max-width: 700px) {
  .news .more {
    text-align: center;
  }
}

@media screen and (max-width: 700px) {
  .category {
    padding: 50px 0;
  }
}
.category h2 {
  font-size: 17px;
  line-height: 2;
  color: #3e4754;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .category h2 {
    text-align: center;
    width: 80%;
    text-align: center;
    margin: 0 auto 20px;
  }
}
.category ul li {
  display: inline-block;
  width: 20%;
  float: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .category ul li {
    width: 33.33% !important;
  }
}
.category ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  font-size: 14px;
  color: #3e4754;
  line-height: 40px;
}
.category ul li a span {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin: 0 auto;
}
.category ul li a span img {
  position: relative;
  width: 60px;
  height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.category ul li a:hover {
  color: #65a74e;
}
.category ul li a:hover span img {
  -ms-transform: translate(-30px, 0);
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
}
.category ul li.selected a {
  color: #65a74e;
}
.category ul li.selected a span img {
  -ms-transform: translate(-30px, 0);
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
}
.category ul::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}

.life {
  position: relative;
}
.life .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .life .swiper-container {
    position: relative;
    height: 45vh;
  }
}
.life .swiper-container h2 {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 13px;
  color: #fff;
  line-height: 22px;
  padding: 0 8px;
  background: #ff4141;
  z-index: 5;
}
.life .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.life .swiper-container .swiper-wrapper .swiper-slide .intro {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.46);
  padding: 20px;
  width: 100%;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  color: #fff;
}
.life .swiper-container .swiper-wrapper .swiper-slide .intro:hover {
  background: rgba(0, 0, 0, 0.7);
}
.life .swiper-container .swiper-wrapper .swiper-slide .intro:hover p {
  text-decoration: underline;
}
.life .swiper-container .swiper-wrapper .swiper-slide .intro h3 {
  font-size: 20px;
  line-height: 30px;
  display: -webkit-box;
  max-height: 60px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}
.life .swiper-container .swiper-wrapper .swiper-slide .intro p {
  font-size: 15px;
  line-height: 22px;
  display: -webkit-box;
  max-height: 44px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 700px) {
  .life .swiper-container .swiper-wrapper .swiper-slide .intro h3 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .life .swiper-container .swiper-wrapper .swiper-slide .intro p {
    display: none;
  }
}
.life .swiper-container .swiper-button-next, .life .swiper-container .swiper-button-prev {
  outline: none;
}
.life .swiper-container .swiper-button-disabled {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
}

.videos {
  width: 100%;
  padding: 50px 0;
  background: #f4f4f4;
}
@media screen and (max-width: 700px) {
  .videos {
    padding: 50px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.videos h2 {
  font-size: 17px;
  line-height: 2;
  color: #3e4754;
  font-weight: 500;
  width: 80%;
  text-align: center;
  margin: 0 auto 50px;
}
.videos > div {
  text-align: center;
}
.videos .yt {
  display: inline-block;
  width: 31%;
  height: 0;
  padding-top: 14.9%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.videos .yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .videos .yt {
    width: 49%;
    padding-top: 28%;
    margin-bottom: 1rem;
  }
  .videos .yt iframe {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .videos .yt {
    width: 100%;
    padding-top: 56.25%;
  }
  .videos .yt iframe {
    padding: 0;
  }
}

.social {
  width: 100%;
  padding: 50px 0;
  text-align: center;
}
.social h2 {
  font-size: 17px;
  line-height: 2;
  color: #3e4754;
  font-weight: 500;
  width: 80%;
  text-align: center;
  margin: 0 auto 50px;
}
.social .share {
  margin-bottom: 50px;
}
.social .share a {
  width: 231px;
  height: 46px;
  display: inline-block;
  margin: 5px 10px;
  font-size: 17px;
  color: #fff;
  line-height: 46px;
  text-indent: 60px;
  text-align: left;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.social .share a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  filter: alpha(opacity=70);
}
.social .share a.fb {
  background: url("../images/btn_fb.png") no-repeat center center;
  background-size: 100% 100%;
}
.social .share a.yt {
  background: url("../images/btn_yt.png") no-repeat center center;
  background-size: 100% 100%;
}
.social .share a.ig {
  background: url("../images/btn_ig.png") no-repeat center center;
  background-size: 100% 100%;
}
.social .share a.line {
  background: url("../images/btn_line.png") no-repeat center center;
  background-size: 100% 100%;
}
.social .ads a {
  display: inline-block;
  margin: 5px 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.social .ads a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  filter: alpha(opacity=70);
}

.pager {
  width: 100%;
  text-align: center;
  margin: 20px auto;
}
.pager ul li {
  display: inline-block;
}
.pager ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  color: #666;
  margin: 1px;
  text-decoration: none;
}
.pager ul li:hover a {
  background: #eee;
}
.pager ul li.selected a {
  background: #65a74e;
  color: #fff;
}

.footer {
  background: #3d4851;
}
.footer .gotop {
  display: none;
  width: 34px;
  height: 34px;
  position: fixed;
  bottom: 60px;
  right: 1rem;
  padding: 0;
  background: url("../images/icon_gotop.png") no-repeat center center;
  background-size: 100% 100%;
  z-index: 100;
  cursor: pointer;
}
.footer > div {
  padding: 25px 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.footer > div::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  width: 100%;
}
.footer .sitemap {
  width: calc(100% - 400px);
  float: left;
}
.footer .sitemap ul {
  display: inline-block;
  margin: 0 40px 1rem;
}
.footer .sitemap ul h3 {
  font-size: 17px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}
.footer .sitemap ul h3::before {
  content: "";
  display: inline-block;
  margin-left: -20px;
  width: 20px;
  height: 17px;
  vertical-align: middle;
  background: url("../images/icon_group_w.png") no-repeat center left;
  background-size: auto 100%;
}
.footer .sitemap ul li {
  color: rgba(255, 255, 255, 0.5);
  list-style: disc;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 10px;
  max-width: 200px;
}
.footer .sitemap ul li a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.footer .sitemap ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 700px) {
  .footer .sitemap {
    width: 100%;
    float: none;
  }
  .footer .sitemap ul {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer .sitemap ul li {
    display: inline-block;
    margin-right: 0.5rem;
  }
}
.footer .contact {
  float: right;
  width: 400px;
}
@media screen and (max-width: 700px) {
  .footer .contact {
    width: calc(100% - 50px);
    float: none;
    margin: 20px 25px 0;
  }
}
.footer .contact .footer-logo {
  margin-bottom: 25px;
}
.footer .contact .footer-logo img {
  width: 230px;
  height: auto;
}
.footer .contact a {
  display: inline-block;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 15px;
  margin-right: 1rem;
  color: #fff;
  text-decoration: none;
}
.footer .contact a:hover {
  text-decoration: underline;
}
.footer .contact a img {
  height: 15px;
  width: auto;
}
.footer .copyright {
  display: block;
  text-align: center;
  background: #f4f4f4;
  color: #3e4754;
  font-size: 13px;
  line-height: 1.5;
  padding: 1rem 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bgImg > img {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 10px;
  height: auto;
}

.maxw {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.disabled {
  pointer-events: none !important;
}

input[type=text], input[type=password], input[type=number], input[type=email], input[type=tel], input[type=number] {
  margin: 0;
  letter-spacing: 0;
  display: block;
  background: #fff;
  min-width: 1px;
  margin: 0;
  border: 0;
  outline: none;
  color: #3e4754;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=submit] {
  display: inline-block;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  color: #3e4754;
  background: #fff;
}

select, option {
  margin: 0;
  border: 0;
  min-width: 0;
  outline: none;
  background-image: url("../images/btn_dropdown.png");
  background-repeat: no-repeat;
  background-position: center right 8px;
  background-size: 6px 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 20px;
  color: #3e4754;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
select::-ms-expand, option::-ms-expand {
  /* for IE 11 */
  display: none;
}
select:focus, option:focus {
  outline: none;
}

option {
  background: #fff;
}

.ui-datepicker {
  width: 340px !important;
  font-size: 18px !important;
  z-index: 1200 !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ui-datepicker .ui-datepicker-year, .ui-datepicker .ui-datepicker-month {
  margin: 5px !important;
  padding: 2px 20px 2px 5px;
  text-align: center !important;
  width: auto !important;
  border: 1px solid #ddd;
  background-image: url("../images/btn_dropdown_dark.png");
}
.ui-datepicker .ui-datepicker-calendar {
  display: none;
}
.ui-datepicker .ui-datepicker-next {
  text-align: center;
}
.ui-datepicker .ui-datepicker-next::after {
  color: #3e4754;
  line-height: 32px;
  content: "";
  font-family: "fontawesome";
}
.ui-datepicker .ui-datepicker-prev {
  text-align: center;
}
.ui-datepicker .ui-datepicker-prev::after {
  color: #3e4754;
  line-height: 32px;
  content: "";
  font-family: "fontawesome";
}
.ui-datepicker .ui-state-default {
  text-align: center;
}
.ui-datepicker .ui-state-default.ui-state-highlight {
  background: #f7b100;
  color: #fff;
}
.ui-datepicker .ui-state-default.ui-state-active {
  background: #65a74e;
  color: #fff;
}
@media screen and (max-width: 700px) {
  .ui-datepicker {
    width: 280px !important;
    left: calc(50vw - 140px) !important;
  }
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aaa;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #aaa;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #aaa;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #aaa;
}

/*# sourceMappingURL=layout.css.map */
