html {
  font-size: 26.667vw;
}
body {
  font-size: 0.14rem;
}
a {
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
li,
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.row,
.col-md-6 {
  margin: 0;
  padding: 0;
}
.main-width {
  margin: 0 auto;
  width: 1400px;
}
.inc_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #28262b;
}
.header-content {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-content .logo-box {
  display: inline-block;
  width: 90px;
}
.header-content .logo-box img {
  width: 100%;
}
.header-content ul {
  display: flex;
  align-items: center;
}
.header-content ul li {
  margin: 0 20px;
}
.header-content ul li:last-child {
  margin-right: 0;
}
.header-content ul a {
  color: #fff;
  font-size: 24px;
}
.header-content ul a:hover {
  color: #8b0000;
}
.header-content ul .active-link {
  position: relative;
  color: #8b0000;
}
.header-content ul .active-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 30%;
  height: 4px;
  background-color: #8b0000;
}
.main-content {
  padding: 180px 0 80px;
  min-height: 812px;
  background-color: #f5f5f5;
}
.information-content {
  display: flex;
  justify-content: space-between;
}
.information-content .information-left {
  flex-shrink: 0;
  margin-right: 30px;
  width: 65%;
  height: 500px;
  border-radius: 5px;
  box-shadow: 0 0 4px 4px #eee;
}
.information-content .informatio-img {
  margin-bottom: 40px;
  width: 100%;
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
}
.information-content .informatio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.information-content .information-right {
  flex: 1;
  height: 500px;
  overflow: hidden;
}
.information-content .common-style {
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 0 0 4px 4px #eee;
  background-color: #fff;
}
.information-content .list-article {
  height: 500px;
}
.information-content .list-article h3 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.information-content .list-article h3::before {
  content: "";
  display: block;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background: url(/static/images/article.svg) no-repeat;
}
.information-content .list-article .article-item {
  display: block;
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  color: #333333;
}
.information-content .list-article .article-item i {
  display: inline-block;
  margin-right: 10px;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  background-color: #8b0000;
  border-radius: 50%;
}
.information-content .list-article .article-item:hover {
  color: #8b0000;
}
.information-content .list-label h3 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
}
.information-content .list-label h3::before {
  content: "";
  display: block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background: url(/static/images/label.svg) no-repeat;
}
.information-content .list-label .label-content {
  display: flex;
  flex-wrap: wrap;
}
.information-content .list-label .label-content .label-item {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 5px 10px;
  border-radius: 5px;
  background: #7794b8;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.information-content .list-label .label-content .label-item:hover {
  background: #45465a;
}
.info-content {
  display: flex;
}
.info-content .information-left {
  flex-shrink: 0;
  margin-right: 30px;
  width: 65%;
  border-radius: 5px;
}
.info-content .information-left .informatio-img {
  margin-bottom: 30px;
  width: 100%;
  box-shadow: 0 0 4px 4px #eee;
}
.info-content .information-left .informatio-img img {
  width: 100%;
}
.info-content .info-list {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 5px;
}
.info-content .info-list .information-item {
  position: relative;
  padding-left: 20px;
  border-left: 1px dashed #8b0000;
  color: #333;
}
.info-content .info-list .information-item:not(:last-child) {
  padding-bottom: 30px;
}
.info-content .info-list .information-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -7px;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 4px solid #8b0000;
  border-radius: 50%;
}
.info-content .info-list .information-item h3 {
  margin-bottom: 20px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.info-content .info-list .information-item h3 a {
  font-size: 24px;
  color: #333;
}
.info-content .info-list .information-item h3 a:hover {
  color: #8b0000;
}
.info-content .info-list .information-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}
.info-content .info-list .information-item .source-link span {
  font-size: 14px;
}
.info-content .info-list .information-item .source-link span:first-child {
  margin-right: 50px;
}
.info-content .info-list .information-item .source-link span:first-child a {
  color: #666;
}
.info-content .information-right {
  flex: 1;
  height: 500px;
  overflow: hidden;
}
.info-content .list-article {
  padding: 20px;
  height: 500px;
  background-color: #fff;
  border-radius: 5px;
}
.info-content .list-article h3 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.info-content .list-article h3::before {
  content: "";
  display: block;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background: url(/static/images/article.svg) no-repeat;
}
.info-content .list-article .article-item {
  display: block;
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  color: #333333;
}
.info-content .list-article .article-item i {
  display: inline-block;
  margin-right: 10px;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  background-color: #8b0000;
  border-radius: 50%;
}
.info-content .list-article .article-item:hover {
  color: #8b0000;
}
.info-mess {
  display: flex;
  justify-content: space-between;
}
.info-mess .information-detail {
  flex-shrink: 0;
  margin-right: 20px;
  padding: 30px 20px;
  width: 65%;
  border-radius: 5px;
  box-shadow: 0 0 4px 4px #eee;
  background-color: #fff;
}
.info-mess .information-detail h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333333;
  font-weight: 700;
  line-height: 1.6;
}
.info-mess .information-detail .publish-time {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #efefef;
}
.info-mess .information-detail .publish-time p:first-child {
  margin-right: 50px;
}
.info-mess .information-detail .detail-content {
  margin-bottom: 20px;
}
.info-mess .information-detail .detail-content p {
  line-height: 2;
  font-size: 16px;
  text-indent: 2em;
}
.info-mess .information-detail .detail-content img {
  margin-top: 10px;
  width: 90%;
}
.info-mess .information-detail .copyright-label p {
  line-height: 1.6;
  color: #999;
}
.info-mess .information-right {
  flex: 1;
  height: 500px;
  overflow: hidden;
}
.info-mess .information-right .common-style {
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 0 0 4px 4px #eee;
  background-color: #fff;
}
.info-mess .information-right .list-article {
  height: 500px;
}
.info-mess .information-right .list-article h3 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.info-mess .information-right .list-article h3::before {
  content: "";
  display: block;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background: url(/static/images/article.svg) no-repeat;
}
.info-mess .information-right .list-article .article-item {
  display: block;
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  color: #333333;
}
.info-mess .information-right .list-article .article-item i {
  display: inline-block;
  margin-right: 10px;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  background-color: #8b0000;
  border-radius: 50%;
}
.info-mess .information-right .list-article .article-item:hover {
  color: #8b0000;
}
.scenic-content {
  margin-top: 30px;
  display: flex;
}
.scenic-content .scenic-left {
  flex: 1;
}
.scenic-content .scenic-left .scenic-item {
  display: flex;
}
.scenic-content .scenic-left .scenic-item .title-box {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 50px 0;
  width: 500px;
  height: 300px;
  background-color: #fff;
}
.scenic-content .scenic-left .scenic-item .title-box::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
}
.scenic-content .scenic-left .scenic-item .title-box h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #901e13;
}
.scenic-content .scenic-left .scenic-item .title-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  text-indent: 2em;
}
.scenic-content .scenic-left .scenic-item .title-box .detail {
  position: absolute;
  bottom: 50px;
  right: 40px;
  color: #901e13;
  font-size: 14px;
  cursor: pointer;
}
.scenic-content .scenic-left .scenic-item .scenic-img {
  flex: 1;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}
.scenic-content .scenic-left .scenic-item .scenic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scenic-content .scenic-left .scenic-item .scenic-img:hover img {
  transition: all 0.5s;
  transform: scale(1.1);
}
.scenic-content .scenic-left .scenic-item:nth-child(even) .title-box {
  flex: 1;
}
.scenic-content .scenic-left .scenic-item:nth-child(even) .title-box::after {
  content: "";
  left: -17px;
}
.scenic-content .scenic-left .scenic-item:nth-child(even) .scenic-img {
  flex: unset;
  flex-shrink: 0;
  width: 500px;
  height: 300px;
}
.scenic-content .scenic-left .scenic-item:nth-child(odd) .title-box {
  flex: unset;
  flex-shrink: 0;
  width: 500px;
  height: 300px;
}
.scenic-content .scenic-left .scenic-item:nth-child(odd) .title-box::after {
  content: "";
  right: -3px;
}
.scenic-content .scenic-left .scenic-item:nth-child(odd) .scenic-img {
  flex: 1;
}
.scenic-content .scenic-right {
  flex-shrink: 0;
  width: 200px;
}
.scenic-content .scenic-right .scenic-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 100%;
  height: 600px;
  background-color: #303439;
}
.scenic-content .scenic-right .scenic-top .line {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #901e13;
}
.scenic-content .scenic-right .scenic-top h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 5px;
}
.scenic-content .scenic-right .scenic-top h3 {
  margin-top: 20px;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 10px;
}
.scenic-content .scenic-right .scenic-bottom {
  width: 100%;
  height: 300px;
  background-color: #8eb6cb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.scenic-content .scenic-right .scenic-bottom span {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
}
.appreciation-content .app-title {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.appreciation-content .app-title p {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}
.appreciation-content .app-title .app-label {
  display: flex;
  align-items: center;
}
.appreciation-content .app-title .app-label li:not(:last-child) a {
  margin-right: 20px;
}
.appreciation-content .app-title .app-label li a {
  display: inline-block;
  padding: 5px 20px;
  color: #333333;
  border-radius: 20px;
}
.appreciation-content .app-title .app-label li .active-app {
  background: #577196;
  color: #fff;
}
.skill-content .skill-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}
.skill-content .skill-box {
  display: flex;
  flex-wrap: wrap;
}
.skill-content .skill-box .skill-item {
  display: inline-block;
  margin-bottom: 20px;
  padding: 20px;
  width: calc(33% - 10px);
  border-radius: 5px;
  box-shadow: 0 0 4px 4px #eee;
  background-color: #fff;
}
.skill-content .skill-box .skill-item:not(:nth-child(3n)) {
  margin-right: 20px;
}
.skill-content .skill-box .skill-item .item-top {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.skill-content .skill-box .skill-item .item-top .img-box {
  flex-shrink: 0;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #000000;
}
.skill-content .skill-box .skill-item .item-top .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.skill-content .skill-box .skill-item .item-top .skill-detail {
  overflow: hidden;
}
.skill-content .skill-box .skill-item .item-top .skill-detail h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
.skill-content .skill-box .skill-item .item-top .skill-detail p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}
.skill-content .skill-box .skill-item .item-label {
  padding-top: 15px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.skill-detail .skill-message {
  margin-bottom: 60px;
  display: flex;
}
.skill-detail .skill-message .skill-img {
  flex-shrink: 0;
  margin-right: 50px;
  padding: 20px;
  width: 350px;
  height: 250px;
  border-radius: 10px;
  background-color: #e9e9e9;
  box-shadow: 0 0 10px 1px #ddd;
}
.skill-detail .skill-message .skill-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.skill-detail .skill-message .skill-title {
  flex: 1;
}
.skill-detail .skill-message .skill-title h3 {
  margin-bottom: 20px;
  font-size: 30px;
}
.skill-detail .skill-message .skill-title .skill-desc {
  margin-bottom: 20px;
  font-size: 16px;
}
.skill-detail .skill-message .skill-title .skill-label {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.skill-detail .skill-message .skill-title .skill-label span {
  margin-bottom: 10px;
  padding: 5px 10px;
  background-color: #7794b8;
  color: #fff;
  border-radius: 5px;
}
.skill-detail .skill-message .skill-title .skill-label span:not(:last-child) {
  margin-right: 10px;
}
.skill-detail .skill-message .skill-title .golink a {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  background-color: #e9e9e9;
  color: #333;
  font-size: 16px;
}
.skill-detail .introduction-box {
  display: flex;
}
.skill-detail .introduction-box .introduction {
  margin-right: 20px;
  width: 70%;
}
.skill-detail .introduction-box .introduction p {
  line-height: 2.4;
  font-size: 16px;
  text-indent: 2em;
}
.skill-detail .introduction-box .introduction img {
  margin: 15px 0;
  width: 90%;
}
.skill-detail .introduction-box .other-skill {
  flex: 1;
  padding: 20px;
  height: fit-content;
  background-color: #fff;
  box-shadow: 0 0 10px 4px #eee;
}
.skill-detail .introduction-box .other-skill h3 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
}
.skill-detail .introduction-box .other-skill .skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.skill-detail .introduction-box .other-skill .skill-list .skill-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: 48%;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #e9e9e9;
}
.skill-detail .introduction-box .other-skill .skill-list .skill-item .img-box {
  flex-shrink: 0;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #000000;
  overflow: hidden;
}
.skill-detail .introduction-box .other-skill .skill-list .skill-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.skill-detail .introduction-box .other-skill .skill-list .skill-item span {
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.inc_footer {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inc_footer .footer_left img {
  width: 60px;
  height: 30px;
  fill: #000000;
}
.inc_footer .footer_left h1 {
  margin-bottom: 20px;
  font-size: 24px;
}
.inc_footer .footer_left p {
  line-height: 1.6;
}
.inc_footer .footer_left .fixed_infor {
  font-size: 14px;
}
.inc_footer .footer_left a {
  color: #333333;
}
.inc_footer .footer_right ul {
  display: flex;
  align-items: center;
}
.inc_footer .footer_right ul li {
  margin: 0 20px;
}
.inc_footer .footer_right ul li a {
  font-size: 16px;
  color: #333333;
}
.inc_footer .footer_right ul li a:hover {
  color: #577196;
  font-weight: 700;
}
